@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&amp;family=Rubik:wght@300;400;500;600;700;800;900&amp;family=Sono:wght@200;300;400;500;600;700;800&amp;display=swap");

@font-face {
  font-family: "Gilroy-Black";
  src: url("../fonts/Gilroy-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../fonts/Gilroy-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/Gilroy-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilroy-SemiBold";
  text-transform: capitalize;
}

span,
input,
textarea,
p,
ul {
  font-family: "Gilroy-Medium";
  margin: 0;
  padding: 0;
  list-style: none;
}

a,
button {
  font-family: "Gilroy-SemiBold";
  text-transform: capitalize;
}

a:hover {
  color: inherit;
}

body {
  overflow-x: hidden;
  background: #f8fbff;
}

main {
  overflow: hidden;
}

a,
button,
input,
textarea:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.form-group input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
/*KeyFrames Css Here*/
@keyframes cta1 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cta2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}
@keyframes cta3 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}
@keyframes bounceup {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}
@keyframes bouncedown {
  0% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(5px);
  }
}
/*KeyFrames Css Here*/

/*Website Custom Style Css For Single Items Start Here*/

/*Heading & Para Style Css*/
h1 {
  font-size: 60px;
  line-height: 68px;
}
h2 {
  font-size: 46px;
  line-height: 54px;
}
h3 {
  font-size: 22px;
  line-height: 28px;
}
p {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 10px;
  text-transform: unset;
}
/*Heading & Para Style Css*/

/*Buttons Style Css*/
.website-main-buttons {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
}
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn {
  font-size: 16px;
  width: 250px;
  border-radius: 50px;
  padding: 10px 10px;
  margin: 0 10px 0 0;
  transition: all 0.3s ease-in-out;
}
/*Buttons Style Css*/

/*Website Custom Style Css For Single Items End Here*/

/*Header Css Start Here*/
header {
  background: #f8fbff;
  width: 100%;
  padding:20px 0;
  top: 0;
  box-shadow: 0 10px 12px -20px #0a2840;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  /* position: relative; */
  z-index: 9999;
}
.top-head ul {
  gap: 25px;
}
.top-head ul li a {
  color: #000;
}
.top-head ul li i {
  margin-right: 5px;
}
.top-head-popup-btn {
  background: #002868;
  color: #fff;
  font-size: 16px;
  width: 175px;
  border: 2px solid #002868;
  border-radius: 50px;
  padding: 10px 10px;
  margin: 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  animation: cta3 3s infinite linear;
}

header nav.navbar {
  padding: 0;
}
.top-head {
  margin-top: 10px;
}
header nav.navbar .navbar-brand {
  padding: 0;
  margin: 0;
}
header nav.navbar .navbar-brand .logo {
  width: 250px;
  margin: 0;
  transition: all 0.5s ease-in-out;
  display: block;
  position: absolute;
  top: -65px;
}
header.sticky .navbar-brand .logo {
  width: 250px !important;
  transition: all 0.5s ease-in-out;
}
header .navbar-toggler {
  background-color: #fff;
  color: #0a2840;
  border: 1px solid #0a2840;
  border-radius: 0px;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
}
header .navbar-collapse ul.navbar-nav {
  width: 100%;
  margin: 0 10px 0;
  justify-content: end;
}
header .navbar-collapse ul.navbar-nav li.nav-item {
  margin: 0 15px 0;
}
header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
  color: #000;
  font-size: 18px;
  padding: 10px 0px;
  transition: all 0.3s ease-in-out;
}
header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link.active {
  color: #bf0a30;
}
header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link:hover {
  color: #bf0a30;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
  display: block;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  display: none;
}
header .navbar-nav .nav-item ul.dropdown-menu {
  position: absolute;
  top: calc(100%);
  left: 0;
  background: #f8fbff;
  border: none;
  border-radius: 0px;
  box-shadow: 0 0px 15px -10px #0a2840;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: block;
}
header .navbar-nav .nav-item ul.dropdown-menu li {
}
header .navbar-nav .nav-item ul.dropdown-menu li a {
  color: #0a2840;
  font-size: 14px;
  border-bottom: 1px solid #dcf5fc;
  border-radius: 0px;
  padding: 8px 10px;
  margin: 0;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-item ul.dropdown-menu li:last-child a {
  border-bottom: 1px solid transparent;
  margin: 0;
}
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item:focus,
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item:hover,
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item.active {
  background: #bf0a30;
  color: #fff;
}
header nav.navbar .navbar-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav.navbar .navbar-buttons a.call-btn {
  background: #002868;
  color: #fff;
  font-size: 16px;
  width: 175px;
  border: 2px solid #002868;
  border-radius: 50px;
  padding: 10px 10px;
  margin: 0 5px 0 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  animation: cta3 3s infinite linear;
}
header nav.navbar .navbar-buttons a.call-btn:hover {
  color: #bf0a30;
  background: transparent;
  border: 2px solid #bf0a30;
}
header nav.navbar .navbar-buttons button.popup-btn {
  background: #002868;
  color: #fff;
  font-size: 16px;
  width: 175px;
  border: 2px solid #002868;
  border-radius: 50px;
  padding: 10px 10px;
  margin: 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  animation: cta3 3s infinite linear;
}
header nav.navbar .navbar-buttons button.popup-btn:hover {
  color: #0a2840;
  background: transparent;
  border: 2px solid #0a2840;
}
/*Header Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css Start Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Css Start Here*/
section.banner-main-sec {
  background-image: url(../images/banner-main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0 50px;
  position: relative;
  z-index: 1;
}
video#myVideo {
  width: 100%;
  /* object-fit: 100%; */
  object-fit: cover;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
section.home-banner {
  position: relative;
  /* padding: 150px 0; */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-inner-content {
  position: relative;
  z-index: 1;
}
.home-banner:before {
  position: absolute;
  content: "";
  background: #000000ab;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.banner-main-sec .banner-inner-content {
}
.banner-inner-content h1 {
  color: #fff;
  margin: 0 0 20px;
}
.banner-inner-content h1 b {
  color: #bf0a30;
}
.banner-inner-content p {
  color: #fff;
}
.banner-inner-content .website-main-buttons {
}
.banner-inner-content .website-main-buttons button.popup-btn {
  background: #bf0a30;
  color: #fff;
  border: 2px solid #bf0a30;
}
.banner-inner-content .website-main-buttons button.popup-btn:hover {
  background: #bf0a30;
  color: #dcf5fc;
  border: 2px solid #bf0a30;
}
.banner-inner-content .website-main-buttons button.chat-btn {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}
.sticky {
  background: #f8fbff;
  box-shadow: 0 10px 12px -20px #002868;
}
.sticky .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
  color: #000;
}
.banner-inner-content .website-main-buttons button.chat-btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}
/*Banner Inner Published Form Css Start*/
.banner-inner-published-form {
  background: #002868;
  width: 85%;
  border-radius: 0;
  box-shadow: 0 0px 15px -5px #0a2840;
  padding: 30px 30px;
  margin: 0 auto;
}
.banner-inner-published-form h4 {
  color: #ffffff;
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 10px;
}
.banner-inner-published-form .form-group {
  margin: 0 0 10px 0;
}
.banner-inner-published-form .form-group.form-group-last {
  margin: 0;
}
.banner-inner-published-form .form-group .form-select {
  font-family: "Gilroy-Medium";
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  outline: none;
  box-shadow: none;
  padding: 10px 30px 10px 10px;
  cursor: pointer;
}
.banner-inner-published-form .form-group .form-select option {
  font-family: "Gilroy-Medium";
  color: #0a2840;
}
.banner-inner-published-form .form-group-select {
  margin: 0 0 10px 0;
}
.banner-inner-published-form .form-group-select h3 {
  color: #ffffff;
  margin: 0px 0 10px;
}
.banner-inner-published-form .form-group-select .form-check-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.banner-inner-published-form .form-group-select .form-check-flex .form-check {
  margin: 0 5px 10px;
  width: 45%;
  display: flex;
  align-items: center;
  padding: 0;
}
.banner-inner-published-form
  .form-group-select
  .form-check-flex
  .form-check
  .form-check-input {
  background-color: #bf0a30;
  border: 1px solid #ffffff;
  outline: none;
  box-shadow: none;
  margin: 0 5px 0 0;
  cursor: pointer;
}
.banner-inner-published-form
  .form-group-select
  .form-check-flex
  .form-check
  .form-check-input:checked[type="checkbox"] {
  background-color: #0a2840;
}
.banner-inner-published-form
  .form-group-select
  .form-check-flex
  .form-check
  .form-check-label {
  font-family: "Gilroy-Medium";
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}
.banner-inner-published-form .form-group input {
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  width: 100%;
  height: 60px;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0px;
  padding: 10px 5px;
}
.banner-inner-published-form .form-group input::placeholder {
  color: #ffffff;
  font-size: 18px;
}
.banner-inner-published-form .form-group button.submit-btn {
  background: #bf0a30;
  color: #fff;
  font-size: 18px;
  width: 100%;
  border: 2px solid #bf0a30;
  border-radius: 15px;
  padding: 10px 10px;
  margin: 20px 0 0;
  transition: all 0.3s ease-in-out;
}
/* new-css */
.banner-hd-color h1 {
  color: #000 !important;
  text-shadow: 1px 6px 10px #00000045;
}
.banner-hd-color p {
  color: #000 !important;
}
.talk-inner-btn {
  background-color: #002868 !important ;
  color: #fff !important;
}
.banner-inner-published-form .form-group button.submit-btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}
/*Banner Inner Published Form Css End*/
section.banner-main-sec .service-banner-img {
  text-align: center;
}
.service-banner-img img {
  width: 90%;
}
section.banner-main-sec.about-banner-sec {
  background: #f8fbff;
}
section.banner-main-sec.contact-banner-sec {
  background-image: url(../images/contact-banner-bg.png);
}
/*Banner Main Section Css End Here*/

/*Banner Down Brands Section Css Start Here*/
.style-change {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.brand-partner-logos {
  position: absolute;
  bottom: -246px;
}
.bandown-brands-wrap {
  padding: 20px 0;
}
.bandown-brands-wrap .bandown-brands-head {
  margin: 0 0 20px;
  text-align: center;
}
.bandown-brands-head h2 {
  color: #bf0a30;
  margin: 0 0 10px;
}
.bandown-brands-wrap .bandown-brands-inner {
}
.bandown-brands-inner .bandown-brands-item {
}
.bandown-brands-item img {
  height: 50px !important;
  object-fit: scale-down;
  margin: 0 10px 0;
  /* filter: brightness(0); */
}
/*Banner Down Brands Section Css End Here*/

/*Portfolio Skills Section Css Start Here*/
section.portfolio-skill-wrap {
  /* background: #002868; */
  padding: 70px 0;
}
.portfolio-skill-tablist .portfolio-tablist-buttons {
  margin: 0 0 30px;
}
.portfolio-tablist-buttons ul.nav-pills {
  justify-content: center;
  align-items: center;
}
.portfolio-tablist-buttons ul.nav-pills li.nav-item {
  margin: 0 15px 10px;
}
.portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
  /* background: #002868; */
  color: #002868;
  font-size: 16px;
  width: 220px;
  /* border: 2px solid #002868; */
  border-radius: 50px;
  box-shadow: 0 0px 20px -15px #0a2840;
  padding: 10px 10px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link img {
  width: 14px;
  height: 14px;
  object-fit: scale-down;
  margin: 0 5px 0 0;
}
.portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link.active
/* .portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link:hover */ {
  background: transparent;
  color: #fff;
  background-color: #002868;
  /* border: 2px solid #002868a6; */
}
.portfolio-skill-tablist .portfolio-tablist-content {
}
.portfolio-tablist-content .portfolio-tablist-inner {
}
.portfolio-tablist-inner img {
}
.portfolio-tablist-inner .portfolio-inner-content {
  text-align: center;
}
.portfolio-tablist-inner .portfolio-inner-content h3 {
  color: #bf0a30;
  margin: 0;
  font-size: 16px;
}
.portfolio-tablist-inner .portfolio-inner-content span {
  color: #002868;
  font-size: 16px;
  line-height: 22px;
  display: block;
  margin: 0 0 10px;
}
.portfolio-inner-content .portfolio-inner-btns {
}
.portfolio-inner-btns a.view-btn {
  background: #002868;
  color: #fff;
  font-size: 16px;
  width: 150px;
  border: 2px solid #002868;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 0 auto 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  display: block;
}
/* .portfolio-inner-btns a.view-btn:hover{
    background: #0A2840;
    color: #FFFFFF;
    border: 2px solid #0A2840;
} */
/*Portfolio Skills Section Css End Here*/

/*Step Works Section Css Start Here*/
section.step-works-wrap {
  padding: 30px 0;
}
.step-works-wrap .stepworks-brands-inner {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0px 20px -15px #0a2840;
  padding: 30px 30px;
  margin: 0 0 30px;
}
.stepworks-brands-item img {
  height: 50px;
  object-fit: scale-down;
  margin: 0 10px 0;
}
.step-works-wrap .step-works-inner {
}
.step-works-inner .step-works-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.step-works-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.step-works-wrap .step-works-inner {
}
.step-works-inner .step-works-box {
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.step-works-box span {
  font-size: 300px;
  color: #bf0a30;
  display: block;
  margin: -75px 0 -170px 0;
  position: relative;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.step-works-box:hover span {
  margin: -75px 0 -100px;
  animation: bounceup 2s infinite linear;
}
.step-works-box .stepworks-box-content {
  background: #f8fbff;
  box-shadow: 0px -25px 50px -55px #000;
  padding: 10px 0;
}
.step-works-box .stepworks-box-content h3 {
  color: #002868;
  margin: 0 0 10px;
}
.step-works-box p {
  color: #0a2840;
}

/* Portfolio Brands Section Css Here */
section.step-works-wrap.portfolio-brands-wrap {
  padding: 0;
}
.portfolio-brands-wrap .stepworks-brands-inner {
  background: inherit;
  border-top: 1px solid #f6f6f6;
  border-radius: 0%;
  box-shadow: inherit;
  padding: 30px 0;
  margin: 0;
}
/* Portfolio Brands Section Css Here */

/*Step Works Section Css End Here*/

/*Browse Books Section Css Start Here*/
section.browse-books-wrap {
  padding: 30px 0;
}
.browse-books-wrap .browse-books-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 75px;
}
.browse-books-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.browse-books-wrap .browse-books-inner {
}
.browse-books-inner .browse-books-box {
  background: linear-gradient(180deg, #002868 0%, #002868 100%);
  border-radius: 20px 20px;
}
.browse-box-content a h3 {
  color: #fff;
}
.browse-books-box.browse-books-box-last {
  margin: 0 !important;
}
.browse-books-box img {
  margin: -40px 0 0 0;
}
.browse-books-box-mt {
  margin: 70px 0 0 0 !important;
}
.browse-books-box .browse-box-content {
  padding: 10px 20px 20px;
  text-align: center;
}
.browse-box-content a {
  color: #002868;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
}
.browse-box-content a:hover {
  color: #bf0a30;
}
/*Browse Books Section Css End Here*/

/*CTA Main Section Css Start Here*/
section.cta-main-wrap {
  padding: 30px 0;
}
.cta-main-wrap .cta-main-inner {
}
.cta-main-inner .cta-main-content {
}
.cta-main-content h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.cta-main-content p {
  color: #0a2840;
}
.cta-main-content .website-main-buttons {
}
.cta-main-content .website-main-buttons button.popup-btn {
  background: transparent;
  color: #000;
  border: 2px solid #002868;
}
.cta-main-content .website-main-buttons button.popup-btn:hover {
  background: #bf0a30;
  color: #fff;
}
.cta-main-content .website-main-buttons button.chat-btn {
  background: #bf0a30;
  color: #fff;
  border: 2px solid #bf0a30;
}
.cta-main-content .website-main-buttons button.chat-btn:hover {
  background: #002868;
  color: #fff;
  border: 2px solid #002868;
}
.cta-main-inner .cta-main-image {
  position: relative;
  text-align: right;
}
.cta-main-image img {
  width: 400px;
}
section.cta-main-wrap.cta-main-about {
}
.cta-main-wrap.cta-main-about .website-main-buttons a.call-btn {
  background: #bf0a30;
  color: #fff;
  border: 2px solid #bf0a30;
  text-align: center;
  display: block;
}
.cta-main-wrap.cta-main-about .website-main-buttons a.call-btn:hover {
  background: #002868;
  color: #f8fbff;
  border: 2px solid #002868;
}
section.cta-main-wrap.cta-main-contact {
}
.cta-main-wrap.cta-main-contact ul {
  margin: 0 0 20px;
}
.cta-main-wrap.cta-main-contact ul li {
  margin: 0 0 5px;
}
.cta-main-wrap.cta-main-contact ul li a {
  color: #0a2840;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  display: block;
  transition: all 0.3s ease-in-out;
  text-transform: lowercase;
}
.cta-main-wrap.cta-main-contact ul li a:hover {
  color: #bf0a30;
}
.cta-main-wrap.cta-main-contact .cta-main-image img {
  width: 100%;
}
.cta-main-wrap.cta-main-contact .website-main-buttons button.popup-btn {
  background: #bf0a30;
  color: #fff;
  border: 2px solid #bf0a30;
}
.cta-main-wrap.cta-main-contact .website-main-buttons button.popup-btn:hover {
  background: transparent;
  color: #000;
}
.cta-main-wrap.cta-main-contact .website-main-buttons button.chat-btn {
  background: #002868;
  color: #f8fbff;
  border: 2px solid #002868;
}
.cta-main-wrap.cta-main-contact .website-main-buttons button.chat-btn:hover {
  background: transparent;
  color: #002868;
}
/*CTA Main Section Css End Here*/

/*How Help Section Css Start Here*/
section.how-help-wrap {
  padding: 30px 0 40px;
}
.how-help-wrap .how-help-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.how-help-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.slick-slide {
  height: auto !important;
}
.how-help-wrap .how-help-inner {
}
.how-help-wrap .how-help-slider {
}
.how-help-slider .slick-arrow {
  width: 40px;
  height: 40px;
  top: inherit;
  bottom: -55px;
  left: inherit;
  position: absolute;
  background: none;
  border: none;
  font-size: 0;
  z-index: 9;
}
.how-help-slider .slick-arrow:hover::before {
  background: #bf0a30;
  color: #fff;
}
.how-help-slider .slick-prev {
  right: 75px;
}
.how-help-slider .slick-prev::before {
  content: "\f104";
}
.how-help-slider .slick-next {
  right: 20px;
}
.how-help-slider .slick-next::before {
  content: "\f105";
}
.how-help-slider .slick-prev::before,
.how-help-slider .slick-next::before {
  font-family: "Font Awesome 6 free";
  font-size: 20px;
  background: #fff;
  color: #bf0a30;
  font-weight: 600;
  text-align: center;
  border: 2px solid #bf0a30;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  line-height: 37px;
  display: block;
  opacity: 1;
}
.how-help-inner .how-help-box {
  background: #fff;
  box-shadow: 0 5px 20px -15px #0a2840;
  border-radius: 40px 40px;
  padding: 20px 20px;
  margin: 20px 10px;
  transition: all 0.3s ease-in-out;
}
.how-help-inner .how-help-box:hover {
  /* background: linear-gradient(180deg, rgba(230,250,255,1) 0%, rgba(220,227,229,1) 100%); */
  transform: translateY(-10px);
}
.how-help-box img {
  width: 100%;
  border-radius: 30px 30px;
  margin: 0 0 20px 0;
}
.how-help-box .howhelp-box-content {
  text-align: center;
  padding: 0 5px 10px 5px;
  min-height: 175px;
  max-height: 175px;
  overflow-y: auto;
}
.howhelp-box-content h3 {
  color: #bf0a30;
  margin: 0 0 10px;
}
.howhelp-box-content p {
  color: #0a2840;
}
.howhelp-box-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.howhelp-box-content::-webkit-scrollbar {
  width: 3px;
  background: #eee3ff;
  border-radius: 10px;
}
.howhelp-box-content::-webkit-scrollbar-thumb {
  background-color: #0a2840;
  border-radius: 10px;
}
/*How Help Section Css End Here*/

/*Comparison Table Section Css Start Here*/
section.comparison-table-wrap {
  padding: 30px 0;
}
.comparison-table-wrap .comparison-table-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.comparison-table-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.comparison-table-head p {
  color: #0a2840;
}
.comparison-table-wrap .comparison-table-inner {
  background: #dcd8c7;
  border-radius: 50px 50px;
  padding: 30px 30px;
  margin: 170px 0 0 0;
}
.comparison-table-inner .comparison-table-left {
}
.comparison-table-left ul {
}
.comparison-table-left ul li {
  width: 100%;
  height: 60px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comparison-table-left ul li h4 {
  color: #0a2840;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  text-transform: uppercase;
}
.comparison-table-left ul li .comparison-table-info {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.comparison-table-info i {
  color: #0a2840;
  font-size: 18px;
  cursor: pointer;
}
.comparison-table-info .comparison-info-hover {
  position: absolute;
  background: #fff;
  width: 225px;
  top: inherit;
  right: 25%;
  padding: 8px 8px;
  border-radius: 5px;
  display: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.comparison-table-info:hover .comparison-info-hover {
  display: block;
}
.comparison-table-info .comparison-info-hover span {
  font-family: "Gilroy-Bold";
  color: #0a2840;
  font-size: 14px;
  line-height: 18px;
  display: block;
}
.comparison-table-inner .comparison-table-right {
  position: relative;
  margin: -170px 0 0 0;
  border-radius: 50px 50px 0px 0px;
  border-width: 2px 2px 0px 2px;
  border-style: solid;
  border-color: #bf0a30;
}
.comparison-table-right.table-responsive::-webkit-scrollbar-track {
  background: #b2b2b2;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 20px;
}
.comparison-table-right.table-responsive::-webkit-scrollbar {
  height: 3px;
  background: #b2b2b2;
  border-radius: 20px;
}
.comparison-table-right.table-responsive::-webkit-scrollbar-thumb {
  background-color: #0a2840;
  border-radius: 20px;
}
.comparison-table-right table {
}
.comparison-table-right table thead {
  vertical-align: middle;
}
.comparison-table-right table thead tr {
  background: #fff;
}
.comparison-table-right table thead tr th {
  padding: 10px 10px;
  text-align: center;
  border-right: 1px solid #bf0a30;
  border-bottom: inherit;
  width: 50%;
}
.comparison-table-right table thead tr th:first-child {
  border-radius: 50px 0 0 0;
}
.comparison-table-right table thead tr th:last-child {
  border-right: inherit;
  border-radius: 0 50px 0 0;
}
.comparison-table-right table thead tr th h5 {
  color: #0a2840;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  margin: 0;
}
.comparison-table-right table thead tr th .table-web-logo {
  width: 150px;
  height: 150px;
  line-height: 150px;
  margin: 0 auto;
}
.comparison-table-right table thead tr th .table-web-logo img {
  width: 150px;
  object-fit: scale-down;
}
.comparison-table-right table tbody {
  vertical-align: middle;
}
.comparison-table-right table tbody tr {
  background: #fff;
}
.comparison-table-right table tbody tr:nth-child(odd) {
  background: #dcd8c7;
}
.comparison-table-right table tbody tr td {
  padding: 10px 10px;
  text-align: center;
  border-right: 1px solid #bf0a30;
  border-bottom: inherit;
  width: 50%;
  height: 60px;
}
.comparison-table-right table tbody tr td:last-child {
  border-right: inherit;
}
.comparison-table-right table tbody tr td .table-list-icon {
}
.comparison-table-right table tbody tr td .table-list-icon.table-listicon-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-table-right table tbody tr td .table-list-icon i {
  font-size: 20px;
  color: #0a2840;
  font-weight: 500;
}
.comparison-table-right table tbody tr td:last-child .table-list-icon i {
  color: #bf0a30;
}
.comparison-table-right
  table
  tbody
  tr
  td
  .table-list-icon.table-listicon-flex
  i {
  margin: 0 2px 0;
}
.comparison-table-right table tbody tr td .table-list-icon img {
  width: 15px;
  height: 15px;
}
.comparison-table-right
  table
  tbody
  tr
  td
  .table-list-icon.table-listicon-flex
  img {
  margin: 0 2px 0;
}
.comparison-table-right table tbody tr td .table-list-logo {
  text-align: center;
}
.comparison-table-right table tbody tr td .table-list-logo img {
  width: 100px;
}
.comparison-table-right table tbody tr td .table-list-text {
  text-align: center;
}
.comparison-table-right table tbody tr td .table-list-text span {
  font-family: "Gilroy-Bold";
  color: #0a2840;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0;
  display: block;
}
.comparison-table-right table tbody tr td:last-child .table-list-text span {
  color: #bf0a30;
}
/*Comparison Table Section Css End Here*/

/*Meet Team Section Css Start Here*/
section.meet-team-wrap {
  padding: 30px 0;
}
.meet-team-wrap .meet-team-content {
}
.meet-team-content h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.meet-team-content p {
  color: #0a2840;
}
.meet-team-wrap .meet-team-inner {
}
.meet-team-inner .meet-team-slider {
}
.meet-team-inner .meet-team-box {
  background: #ffffff;
  border-radius: 30px 30px;
  box-shadow: 0 5px 20px -15px #002868;
  padding: 20px 20px;
  margin: 20px 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.meet-team-inner .meet-team-box:hover {
  /* background: linear-gradient(180deg, rgba(230,250,255,1) 0%, rgba(220,227,229,1) 100%); */
  transform: skewY(5deg);
}
.meet-team-box img {
  width: 100%;
  border-radius: 30px 30px;
  margin: 0 0 20px 0;
}
.meet-team-box h4 {
  color: #002868;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 10px;
}
/*Meet Team Section Css End Here*/

/*CTA Form Section Css Start Here*/
section.cta-form-wrap {
  padding: 30px 0;
}
.cta-form-wrap .cta-form-inner {
}
.cta-form-inner .cta-form-content {
}
.cta-form-content h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.cta-form-content p {
  color: #0a2840;
}
.cta-form-inner .cta-inner-form {
}
.cta-inner-form form {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 0;
}
.cta-inner-form .form-group {
  width: 50%;
  padding: 0 10px;
}
.cta-inner-form .form-group input {
  background: #dcd8c7;
  color: #000;
  font-size: 16px;
  border: 1px solid #bf0a30;
  padding: 10px 10px;
  border-radius: 40px;
  width: 100%;
}
.cta-inner-form .form-group input::placeholder {
  color: #000;
}
.cta-inner-form .form-group button.submit-btn {
  background: #002868;
  color: #fff;
  font-size: 16px;
  width: 175px;
  border: 2px solid #002868;
  border-radius: 50px;
  text-align: center;
  padding: 10px 10px;
  transition: all 0.3s ease-in-out;
}
.cta-inner-form .form-group button.submit-btn:hover {
  background: #002868;
  color: #f8fbff;
  border: 2px solid #002868;
}
/*CTA Form Section Css End Here*/

/*Sets Apart Section Css Start Here*/
section.sets-apart-wrap {
  padding: 30px 0;
}
.sets-apart-wrap .sets-apart-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.sets-apart-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.sets-apart-wrap .sets-apart-inner {
}
.sets-apart-inner .sets-apart-box {
  background: #ffffff;
  border-radius: 40px 40px;
  box-shadow: 0 5px 20px -15px #0a2840;
  padding: 10px 10px;
  margin: 20px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.sets-apart-box:hover {
  /* background: linear-gradient(180deg, rgba(230,250,255,1) 0%, rgba(220,227,229,1) 100%); */
}
.sets-apart-box img {
  width: 100%;
  border-radius: 30px 30px;
  margin: 0 0 20px;
}
.sets-apart-content a {
  color: #002868;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
}
.sets-apart-content a:hover {
  color: #002868;
}
/*Sets Apart Section Css End Here*/

/*Testimonials Main Section Css Start Here*/
section.testimonials-main-wrap {
  background: #002868;
  padding: 30px 0;
}
.testimonials-main-wrap .testimonials-main-head {
  width: 75%;
  text-align: center;
  margin: 0 auto 30px;
}
.testimonials-main-head h2 {
  color: #fff;
  margin: 0 0 10px;
}
.testimonials-main-wrap .testimonials-main-inner {
}
.testimonials-main-inner .testimonials-inner-box {
  background: #fff;
  border-radius: 35px 35px;
  box-shadow: 0 5px 20px -15px #002868;
  padding: 30px 30px;
  margin: 20px 20px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  position: relative;
  transition: all 0.3s ease-in-out;
}
.testimonials-main-inner .testimonials-inner-box:hover {
  /* background: linear-gradient(180deg, rgba(230,250,255,1) 0%, rgba(220,227,229,1) 100%); */
  transform: scale(0.9);
}
.testimonials-inner-box::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 80px;
  height: 80px;
  background: transparent;
  border-width: 0px 0px 10px 10px;
  border-style: solid;
  border-color: #bf0a30;
  border-radius: 0px 0px 0 50px;
}
.testimonials-inner-box .testimonials-box-left {
  width: 100%;
  margin: 0 10px 0 0;
}
.testimonials-box-left .testimonials-box-head {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.testimonials-box-head .testimonials-box-thumb {
  margin: 0 5px 0px 0;
  border-radius: 20px;
}
.testimonials-box-thumb img {
  width: 80px;
  height: 80px;
  object-fit: scale-down;
}
.testimonials-box-head .testimonials-box-text {
}
.testimonials-box-text h3 {
  color: #bf0a30;
  margin: 0;
}
.testimonials-box-text span {
  color: #0a2840;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  display: block;
}
.testimonials-box-left .testimonials-box-content {
}
.testimonials-box-content p {
  color: #0a2840;
  padding: 0 10px 0 0;
}
.testimonials-box-content p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.testimonials-box-content p::-webkit-scrollbar {
  width: 3px;
  background: #eee3ff;
  border-radius: 10px;
}
.testimonials-box-content p::-webkit-scrollbar-thumb {
  background-color: #0a2840;
  border-radius: 10px;
}
.testimonials-box-content .testimonials-box-ratings {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
.testimonials-box-ratings img {
  width: 18px;
  height: 18px;
  margin: 0 4px 0px 0;
}
.testimonials-inner-box .testimonials-box-right {
  width: 50%;
}
.testimonials-box-right .testimonials-box-image {
}
.testimonials-box-image img {
  width: 100%;
}
/*Testimonials Main Section Css End Here*/

/*FAQS Section Css Start Here*/
section.faqs-sec-wrap {
  padding: 30px 0;
}
.faqs-sec-wrap .faqs-sec-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.faqs-sec-head h2 {
  color: #bf0a30;
  margin: 0 0 10px;
}
.faqs-sec-head p {
  color: #0a2840;
}
.faqs-sec-wrap .faqs-sec-item {
}
.faqs-sec-item .accordion .accordion-item {
  margin: 0 0 0px;
  border-radius: 0px;
  background: #f9f9f9;
  border: none;
  border-bottom: 2px solid #0a2840;
}
.faqs-sec-item .accordion .accordion-item .accordion-header {
}
.faqs-sec-item .accordion-item .accordion-header button.accordion-button {
  font-family: "Gilroy-SemiBold";
  background: transparent;
  color: #0a2840;
  font-size: 22px;
  line-height: 28px;
  box-shadow: none;
  border-radius: 0px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  margin: 0;
  text-transform: capitalize;
}
.faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  background: #fbfbfb;
  color: #0a2840;
  font-size: 22px;
  border-radius: 0px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
}
.faqs-sec-item
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  transform: rotate(0deg);
}
.faqs-sec-item .accordion-item .accordion-collapse {
}
.faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
  font-family: "Gilroy-Medium";
  background: transparent;
  color: #0a2840;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  padding: 10px 10px;
  border-radius: 0px;
}
/*FAQS Section Css End Here*/

/*Contact Main Section Css Start Here*/
section.contact-main-wrap {
  background-image: url(../images/contact-main-form-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.contact-main-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  width: 100%;
  opacity: 0.5;
  z-index: -1;
}
.contact-main-wrap .contact-main-inner {
  width: 100%;
}
.contact-main-inner .contact-inner-head {
  margin: 0 0 30px;
}
.contact-inner-head h2 {
  color: #f8fbff;
  margin: 0 0 10px;
}
.contact-inner-head p {
  color: #f8fbff;
}
.contact-main-inner .contact-main-form {
  width: 90%;
}
.contact-main-form .form-group {
  margin: 0 0 25px 0;
}
.contact-main-form .form-group.form-group-last {
  margin: 0;
}
.contact-main-form .form-group input {
  background: transparent;
  color: #f8fbff;
  font-size: 18px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0px;
  padding: 20px 5px;
}
.contact-main-form .form-group input::placeholder {
  font-size: 18px;
  color: #f8fbff;
}
.contact-main-form .form-group button.submit-btn {
  background: #bf0a30;
  color: #fff;
  font-size: 18px;
  width: 100%;
  border: 2px solid #bf0a30;
  border-radius: 15px;
  padding: 10px 10px;
  margin: 20px 0 0;
  transition: all 0.3s ease-in-out;
}
.contact-main-form .form-group button.submit-btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}
.contact-main-wrap .contact-main-image {
  text-align: center;
}
.contact-main-wrap .contact-main-image img {
  width: 375px;
}
/*Contact Main Section Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css End Here -----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 --------------------- Service Page Folds Css Start Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Book Distribution Section Css Start Here*/
section.book-distrib-wrap {
  padding: 30px 0;
}
.book-distrib-wrap .book-distrib-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.book-distrib-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.book-distrib-head p {
  color: #0a2840;
}
.book-distrib-wrap .book-distrib-inner {
}
.book-distrib-inner .book-distrib-box {
  background: #ffffff;
  box-shadow: 0 5px 20px -15px #002868;
  border-radius: 10px;
  padding: 20px 20px;
  margin: 0 0 20px;
  min-height: 350px;
  max-height: 350px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.book-distrib-box:hover {
  background: linear-gradient(180deg, #dcd8c7 0%, #dcd8c7 100%);
  transform: scale(0.9) !important;
}
.book-distrib-box .distrib-box-img {
  margin: 0 0 15px;
}
.distrib-box-img img {
  width: 60px;
  height: 60px;
  object-fit: scale-down;
  filter: invert(66%) sepia(34%) saturate(598%) hue-rotate(360deg)
    brightness(82%) contrast(91%);
}
.book-distrib-box .distrib-box-content {
}
.book-distrib-box .distrib-box-content h3 {
  color: #0a2840;
  margin: 0 0 10px;
}
.distrib-box-content p {
  color: #0a2840;
  padding: 0 10px 0;
  min-height: 150px;
  max-height: 150px;
  overflow-y: auto;
}
.distrib-box-content p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.distrib-box-content p::-webkit-scrollbar {
  width: 3px;
  background: #eee3ff;
  border-radius: 10px;
}
.distrib-box-content p::-webkit-scrollbar-thumb {
  background-color: #0a2840;
  border-radius: 10px;
}
/*Book Distribution Section Css End Here*/

/*What Expect Section Css Start Here*/
section.what-expect-wrap {
  background: #dcd8c7;
  padding: 30px 0;
}
.what-expect-wrap .what-expect-head {
  text-align: center;
  width: 75%;
  margin: 0 auto 30px;
}
.what-expect-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.what-expect-head p {
  color: #0a2840;
}
.what-expect-wrap .what-expect-content {
}
.what-expect-content p {
  color: #0a2840;
}
.what-expect-content ul {
  margin: 0 0 10px 0;
  padding: 0;
}
.what-expect-content ul li {
  color: #0a2840;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 10px;
  display: flex;
}
.what-expect-content ul i {
  color: #0a2840;
  border: 2px solid #0a2840;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  line-height: 14px;
  text-align: center;
  padding: 2px;
  margin: 0 10px 0 0;
}
/*What Expect Section Css End Here*/

/*Why Info Section Css Start Here*/
section.why-info-wrap {
  padding: 30px 0;
}
.why-info-wrap .why-info-img {
  text-align: center;
}
.why-info-img img {
}
.why-info-wrap .why-info-content {
}
.why-info-content h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.why-info-content p {
  color: #0a2840;
  margin: 0 0 10px;
}
.why-info-content ul {
  margin: 0 0 10px;
  padding: 0 0 0 20px;
}
.why-info-content ul li {
  color: #0a2840;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 5px;
  list-style: disc;
}
.why-info-content ul li::marker {
  color: #0a2840;
}
.why-info-content .website-main-buttons {
}
.why-info-content .website-main-buttons a.call-btn {
  background: #bf0a30;
  color: #fff;
  border: 2px solid #bf0a30;
  display: block;
  text-align: center;
}
.why-info-content .website-main-buttons a.call-btn:hover {
  background: #002868;
  color: #fff;
  border: 2px solid #002868;
}
/*Why Info Section Css End Here*/

/**************************************************************************
 --------------------- Service Page Folds Css End Here --------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------------ Portfolio Page Folds Css Start Here -------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Portfolio Notable Section Css Start Here*/
section.portfolio-notable-wrap {
  background: #dcf5fc;
  padding: 30px 0;
}
.portfolio-notable-wrap .porfolio-notable-inner {
}
.porfolio-notable-inner .portfolio-notable-img {
  margin: 0 0 20px;
}
.porfolio-notable-inner .portfolio-notable-img img {
  width: 100%;
}
/*Portfolio Notable Section Css End Here*/

/*Portfolio Page Skills Section Css Start Here*/
section.portfolio-page-wrap {
  background: #f8fbff;
  padding: 30px 0;
}
.portfolio-page-tablist .portfolio-page-tablist-buttons {
  margin: 0 0 30px;
}
.portfolio-page-tablist-buttons ul.nav-pills {
  justify-content: center;
  align-items: center;
}
.portfolio-page-tablist-buttons ul.nav-pills li.nav-item {
  margin: 0 15px 10px;
}
.portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
  background: #f8fbff;
  color: #bf0a30;
  font-size: 16px;
  width: 220px;
  border: 2px solid #f8fbff;
  border-radius: 50px;
  box-shadow: 0 0px 20px -15px #0a2840;
  padding: 10px 10px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link img {
  width: 14px;
  height: 14px;
  object-fit: scale-down;
  margin: 0 5px 0 0;
}
.portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link.active,
.portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link:hover {
  background: transparent;
  color: #0a2840;
  border: 2px solid #0a2840;
}
.portfolio-page-wrap .portfolio-page-tablist-content {
}
.portfolio-page-tablist-content .portfolio-page-tablist-inner {
  display: flex;
  align-items: center;
}
.portfolio-page-tablist-inner .portfolio-page-tablist-item {
  margin: 0 10px 20px;
}
.portfolio-page-tablist-item a {
  display: block;
}
.portfolio-page-tablist-item a img {
  width: 100%;
}
/*Portfolio Page Skills Section Css End Here*/

/**************************************************************************
 ------------------- Portfolio Page Folds Css End Here --------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 ------------------ Reviews Page Folds Css Start Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Reviews Banner Section Css Start Here*/
section.reviews-banner-sec {
  background: #f8fbff;
  padding: 100px 0 20px;
  position: relative;
  z-index: 1;
}
.reviews-banner-sec .reviews-inner-content {
}
.reviews-inner-content h1 {
  color: #0a2840;
  margin: 0 0 20px;
}
.reviews-inner-content h1 b {
  color: #bf0a30;
}
.reviews-inner-content p {
  color: #0a2840;
}
.reviews-inner-content .website-main-buttons {
}
.reviews-inner-content .website-main-buttons button.popup-btn {
  background: transparent;
  color: #bf0a30;
  border: 2px solid #bf0a30;
}
.reviews-inner-content .website-main-buttons button.popup-btn:hover {
  background: #bf0a30;
  color: #fff;
  border: 2px solid #bf0a30;
}
.reviews-inner-content .website-main-buttons button.chat-btn {
  background: #002868;
  color: #f8fbff;
  border: 2px solid #002868;
}
.reviews-inner-content .website-main-buttons button.chat-btn:hover {
  background: transparent;
  color: #0a2840;
  border: 2px solid #0a2840;
}
.reviews-banner-sec .reviews-banner-img {
  text-align: center;
  position: relative;
}
.reviews-banner-img img {
}
.reviews-banner-img .reviews-banner-small-img1 {
  position: absolute;
  top: 15%;
  right: 15%;
  text-align: left;
}
.reviews-banner-small-img1 img {
  border-radius: 18px;
  box-shadow: 0 5px 20px -10px #000000;
}
.reviews-banner-small-img1 .reviews-small-stars {
  background: #ffffff;
  width: 120px;
  border-radius: 8px;
  box-shadow: 0 5px 20px -10px #000000;
  padding: 5px 5px;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: space-between;
}
.reviews-small-stars img {
  width: 15px;
  height: 15px;
  margin: 0 2px 0px 0;
  border-radius: 0px;
  box-shadow: none;
}
.reviews-banner-img .reviews-banner-small-img2 {
  position: absolute;
  top: 22%;
  left: 20%;
  text-align: left;
}
.reviews-banner-small-img2 img {
  border-radius: 15px;
  box-shadow: 0 5px 20px -10px #000000;
}
.reviews-banner-img .reviews-banner-small-img3 {
  position: absolute;
  top: 37%;
  left: 10%;
  text-align: left;
}
.reviews-banner-small-img3 img {
  border-radius: 25px;
  box-shadow: 0 5px 20px -10px #000000;
}
.reviews-banner-img .reviews-banner-small-img4 {
  position: absolute;
  top: 55%;
  right: 20%;
  text-align: left;
}
.reviews-banner-small-img4 img {
  border-radius: 15px;
  box-shadow: 0 5px 20px -10px #000000;
}
/*Reviews Banner Section Css End Here*/

/*Counter Satisfy Section Css Start Here*/
section.counter-satisfy-wrap {
  background: #f8fbff;
  border-top: 1px solid #f6f6f6;
  padding: 30px 0;
  margin: 0;
}
.counter-satisfy-wrap .counter-satisfy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.counter-satisfy-inner .counter-satisfy-box {
  text-align: center;
  margin: 0 10px;
}
.counter-satisfy-box .counter-box-head {
}
.counter-satisfy-box .counter-box-head h4 {
  color: #0a2840;
  font-size: 60px;
  line-height: 68px;
  margin: 0;
}
.counter-satisfy-box .counter-box-head h4 span {
}
.counter-satisfy-box p {
  color: #0a2840;
  margin: 0;
}
/*Counter Satisfy Section Css End Here*/

/*Reviews Tabs Section Css Start Here*/
section.reviews-tabs-wrap {
  background: #002868;
  padding: 30px 0;
}
.reviews-tabs-wrap .reviews-tabs-inner {
}
.reviews-tabs-inner .reviews-tabs-buttons {
  margin: 0 0 30px;
}
.reviews-tabs-buttons ul.nav-pills {
  justify-content: center;
  align-items: center;
}
.reviews-tabs-buttons ul.nav-pills li.nav-item {
  margin: 0 15px 10px;
}
.reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link {
  background: #ffffff;
  color: #000;
  font-size: 16px;
  width: 220px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  box-shadow: 0 0px 20px -15px #0a2840;
  padding: 10px 10px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link.active,
.reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link:hover {
  background: transparent;
  color: #bf0a30;
  border: 2px solid #bf0a30;
}
.reviews-tabs-inner .reviews-tabs-content {
}
.reviews-tabs-content .reviews-tabscontent-items {
}
.reviews-tabscontent-items .reviews-tabscontent-box,
.reviews-socialmedia-items .reviews-tabscontent-box {
  background: #fff;
  border-radius: 35px 35px;
  box-shadow: 0 5px 20px -15px #0a2840;
  padding: 30px 30px;
  margin: 10px 10px;
  transition: all 0.3s ease-in-out;
}
.reviews-tabscontent-box:hover {
  background: linear-gradient(180deg, #dcd8c7 0%, #dcd8c7 100%);
  transform: scale(0.9);
}
.reviews-tabscontent-box:hover span {
  color: #000;
}
.reviews-tabscontent-box .reviews-tabscontent-head {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.reviews-tabscontent-head .reviews-tabscontent-thumb {
  margin: 0 20px 0 0;
}
.reviews-tabscontent-head .reviews-tabscontent-thumb img {
  width: 75px;
  height: 75px;
  border-radius: 25px;
  box-shadow: 0 2px 20px -10px #000000;
}
.reviews-tabscontent-head .reviews-tabscontent-text {
}
.reviews-tabscontent-text h3 {
  color: #0a2840;
  margin: 0 0 5px;
}
.reviews-tabscontent-text .reviews-social-add {
  display: flex;
  align-items: center;
}
.reviews-social-add .reviews-social-icon {
  margin: 0 0 0 10px;
}
.reviews-social-add .reviews-social-icon i {
  font-size: 30px;
}
.reviews-social-add .reviews-social-icon i.fa-facebook-square {
  color: #0080ff;
}
.reviews-social-add .reviews-social-icon i.fa-twitter-square {
  color: #00ccff;
}
.reviews-tabscontent-text .reviews-tabscontent-ratings {
  background: #bf0a30;
  padding: 7px 7px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
}
.reviews-tabscontent-box:hover .reviews-tabscontent-ratings {
  background: #ffffff;
}
.reviews-tabscontent-ratings .ratings-stars-img {
  display: flex;
  align-items: center;
  line-height: 0;
  margin: 0 10px 0 0;
}
.reviews-tabscontent-ratings .ratings-stars-img img {
  width: 15px;
  height: 15px;
  margin: 0 2px 0 0;
}
.reviews-tabscontent-ratings span {
  font-family: "Gilroy-SemiBold";
  color: #fff;
  font-size: 14px;
}
.reviews-tabscontent-box .reviews-tabscontent-para {
}
.reviews-tabscontent-para p {
  color: #0a2840;
  padding: 0 10px 0 0;
  min-height: 150px;
  max-height: 150px;
  overflow-y: auto;
}
.reviews-tabscontent-para p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.reviews-tabscontent-para p::-webkit-scrollbar {
  width: 3px;
  background: #eee3ff;
  border-radius: 10px;
}
.reviews-tabscontent-para p::-webkit-scrollbar-thumb {
  background-color: #0a2840;
  border-radius: 10px;
}
/*Reviews Tabs Section Css End Here*/

/*Reviews Social Media Section Css Start Here*/
section.reviews-socialmedia-wrap {
  padding: 30px 0;
}
.reviews-socialmedia-wrap .reviews-socialmedia-head {
  text-align: center;
}
.reviews-socialmedia-head h2 {
  color: #0a2840;
  margin: 0 0 10px;
}
.reviews-socialmedia-head p {
  color: #0a2840;
}
.reviews-socialmedia-head span {
  font-family: "Gilroy-SemiBold";
  color: #0a2840;
}
.reviews-socialmedia-wrap .reviews-socialmedia-inner {
}
.reviews-socialmedia-inner .reviews-socialmedia-items {
}
.reviews-socialmedia-items .reviews-tabscontent-para p {
  min-height: 150px;
  max-height: 150px;
}
/*Reviews Social Media Section Css End Here*/

/**************************************************************************
 ------------------- Reviews Page Folds Css End Here ----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 -------------------- Contact Page Folds Css Start Here -------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Contact Page Info Section Css Start Here*/
section.contact-page-info {
  background: #dcd8c7;
  padding: 30px 0;
}
.contact-page-info .contact-info-content {
  border-right: 2px solid #0a2840;
  padding: 0 50px 0 0;
  margin: 0 50px 0 0;
  height: 100%;
}
.contact-info-content .contact-info-head {
  margin: 0 0 20px;
}
.contact-info-head h2 {
  color: #000;
  margin: 0 0 10px;
}
.contact-info-content .contact-info-form {
}
.contact-info-form h3 {
  color: #0a2840;
  margin: 0;
}
.contact-info-form p {
  color: #0a2840;
}
.contact-info-form form {
  margin: 20px 0 0 0;
}
.contact-info-form .form-group {
  margin: 0 0 20px;
}
.contact-info-form .form-group input {
  width: 100%;
  background: transparent;
  color: #0a2840;
  font-size: 18px;
  font-family: "Gilroy-SemiBold";
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #0a2840;
  outline: none;
  padding: 15px 5px;
  box-shadow: none;
}
.contact-info-form .form-group input::placeholder {
  color: #0a2840;
  font-size: 18px;
  font-family: "Gilroy-Bold";
}
.contact-info-form .form-group select {
  width: 100%;
  background-color: transparent;
  color: #0a2840;
  font-size: 18px;
  font-family: "Gilroy-Bold";
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #0a2840;
  outline: none;
  padding: 15px 5px;
  box-shadow: none;
  position: relative;
  cursor: pointer;
}
.contact-info-form .form-group select option {
  padding: 10px 10px;
  font-family: "Gilroy-SemiBold";
  font-size: 18px;
}
.contact-info-form .form-group textarea {
  width: 100%;
  height: 120px;
  background: transparent;
  color: #0a2840;
  font-size: 18px;
  font-family: "Gilroy-SemiBold";
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #0a2840;
  resize: none;
  outline: none;
  padding: 10px 5px;
  box-shadow: none;
}
.contact-info-form .form-group textarea::placeholder {
  color: #0a2840;
  font-size: 18px;
  font-family: "Gilroy-Bold";
}
.contact-info-form .form-group button.submit-btn {
  background: #bf0a30;
  color: #fff;
  font-size: 16px;
  width: 250px;
  border: 2px solid #bf0a30;
  border-radius: 15px;
  padding: 10px 10px;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.contact-info-form .form-group button.submit-btn:hover {
  background: transparent;
  color: #000;
  transform: scale(0.9);
}
.contact-page-info .contact-info-item {
}
.contact-info-item .contact-info-box {
  margin: 0 0 20px;
}
.contact-info-box h4 {
  font-size: 26px;
  line-height: 32px;
  color: #000;
  text-transform: capitalize;
  margin: 0px 0 15px;
}
.contact-info-box a {
  font-size: 18px;
  line-height: 24px;
  color: #0a2840;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.contact-info-box a:hover {
  color: #bf0a30;
  transform: translateX(10px);
}
.contact-info-box a i {
  background-color: #fff;
  color: #bf0a30;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #bf0a30;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin: 0 10px 0 0;
}
.contact-info-box p {
  color: #0a2840;
  display: flex;
  align-items: center;
}
.contact-info-box p i {
  background-color: #fff;
  color: #bf0a30;
  font-weight: 600;
  font-size: 18px;
  border: 1px solid #bf0a30;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin: 0 10px 0 0;
}
/*Contact Page Info Section Css End Here*/

/**************************************************************************
 -------------------- Contact Page Folds Css End Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/* Footer Css Start Here */
footer.footer-main-sec {
  background: #002868;
  position: relative;
  z-index: 1;
}
.footer-main-sec .footer-top {
  padding: 50px 0 20px 0;
}
.footer-top .footer-logo-area {
  width: 90%;
}
.footer-logo-area .footer-logo {
  width: 200px;
  margin: 0 0 20px 0;
}
.footer-logo-area .footer-logo img {
}
.footer-logo-area p {
  color: #dcf5fc;
}
.footer-top .footer-links-area {
}
.footer-links-area h4 {
  font-size: 20px;
  line-height: 28px;
  color: #dcf5fc;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.footer-links-area ul.footer-nav-links {
  margin: 0;
}
.footer-links-area ul.footer-nav-links li {
  margin: 0 0 15px 0;
}
.footer-links-area ul.footer-nav-links a {
  font-size: 16px;
  line-height: 22px;
  color: #dcf5fc;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: block;
}
.footer-links-area ul.footer-nav-links a:hover {
  /* color: #72C2DB; */
  transform: translateY(-5px);
}
.footer-top .footer-social-area {
}
.footer-social-area h4 {
  font-size: 20px;
  line-height: 28px;
  color: #dcf5fc;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.footer-social-area ul.social-media-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 20px;
}
.footer-social-area ul.social-media-list li {
  margin: 0 3px 5px;
}
.footer-social-area ul.social-media-list li a {
  background: #dcf5fc;
  color: #0a2840;
  font-size: 20px;
  width: 35px;
  height: 35px;
  line-height: 37px;
  text-align: center;
  display: block;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social-area ul.social-media-list li a:hover {
  color: #bf0a30;
  transform: translateY(-5px);
}
.footer-social-area ul.social-media-list li a i {
}
.footer-social-area ul.social-media-list li a img {
  padding: 0px 5px 5px 5px;
}
.footer-top .footer-info-area {
}
.footer-info-area ul {
  display: flex;
  flex-direction: column;
}
.footer-info-area ul li {
  margin: 0 0 20px;
}
.footer-info-area ul li h4 {
  font-size: 20px;
  line-height: 28px;
  color: #dcf5fc;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.footer-info-area ul li a {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.footer-info-area ul li a i {
  background: #72c2db;
  color: #0a2840;
  font-size: 16px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0 5px 0 0;
  border-radius: 10px;
}
.footer-info-area ul li a:hover {
  /* color: #72C2DB; */
  transform: translateY(-5px);
}
.footer-info-area ul li p {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  display: flex;
  align-items: center;
}
.footer-info-area ul li p i {
  background: #72c2db;
  color: #0a2840;
  font-size: 16px;
  font-weight: 600;
  width: 50px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0 5px 0 0;
  border-radius: 10px;
}
.footer-main-sec .footer-bottom {
  padding: 20px 0;
  border-top: 2px solid #dcf5fc;
}
.footer-bottom .footer-copyright {
  text-align: center;
}
.footer-copyright p {
  color: #dcf5fc;
  margin: 0;
}
/* Footer Css End Here */

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .brand-partner-logos {
    /* width: 87%; */
    /* position: relative; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: baseline; */
    /* margin: auto; */
    position: absolute;
    /* bottom: 0; */
    bottom: -120px;
    /* height: 81px; */
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .brand-partner-logos {
    /* width: 87%; */
    /* position: relative; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: baseline; */
    /* margin: auto; */
    position: absolute;
    /* bottom: 0; */
    bottom: -120px;
    /* height: 81px; */
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1499px) {
  .brand-partner-logos {
    /* width: 87%; */
    /* position: relative; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: baseline; */
    /* margin: auto; */
    position: absolute;
    /* bottom: 0; */
    bottom: -120px;
    /* height: 81px; */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .brand-partner-logos {
    /* width: 87%; */
    /* position: relative; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: baseline; */
    /* margin: auto; */
    position: absolute;
    /* bottom: 0; */
    bottom: -120px;
    /* height: 81px; */
  }
  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  h1 {
    font-size: 50px;
    line-height: 58px;
  }
  h2 {
    font-size: 36px;
    line-height: 44px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
  p {
    font-size: 16px;
    line-height: 22px;
  }
  /*Heading & Para Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header .navbar-collapse ul.navbar-nav li.nav-item {
    margin: 0 10px 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
  }
  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*What Expect Section Css Start Here*/
  .what-expect-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
  /*What Expect Section Css End Here*/

  /*Why Info Section Css Start Here*/
  .why-info-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
  /*Why Info Section Css End Here*/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  h1 {
    font-size: 42px;
    line-height: 48px;
  }
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
  p {
    font-size: 16px;
    line-height: 22px;
  }
  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    width: 200px;
  }
  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 150px;
  }
  header.sticky .navbar-brand .logo {
    width: 120px !important;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    margin: 0 10px 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    width: 150px;
    margin: 0 5px 0 0;
  }
  header nav.navbar .navbar-buttons button.popup-btn {
    width: 150px;
  }
  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Inner Published Form Responsive Css Start*/
  .banner-inner-published-form .form-group input {
    height: 50px;
  }
  /*Banner Inner Published Form Responsive Css End*/

  /*Portfolio Skills Section Responsive Css Start Here*/
  .portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    width: 200px;
  }
  .portfolio-tablist-content .portfolio-tablist-inner {
    text-align: center;
  }
  /*Portfolio Skills Section Responsive Css End Here*/

  /*Comparison Table Section Responsive Css Start Here*/
  .comparison-table-info .comparison-info-hover {
    width: 200px;
  }
  /*Comparison Table Section Responsive Css End Here*/

  /*Testimonials Main Section Responsive Css Start Here*/

  .testimonials-box-right .testimonials-box-image {
    text-align: center;
  }
  .testimonials-box-image img {
    width: 75%;
    margin: 0 auto;
  }
  /*Testimonials Main Section Responsive Css End Here*/

  /*FAQS Section Responsive Responsive Css Start Here*/
  .faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
    font-size: 16px;
    line-height: 22px;
  }
  /*FAQS Section Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*What Expect Section Css Start Here*/
  .what-expect-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
  /*What Expect Section Css End Here*/

  /*Why Info Section Css Start Here*/
  .why-info-wrap .why-info-img {
    margin: 0 0 10px;
  }
  .why-info-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
  .why-info-content .website-main-buttons {
    justify-content: left;
  }
  /*Why Info Section Css End Here*/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------- Portfolio Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Portfolio Page Skills Section Responsive Css Start Here*/
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    width: 200px;
  }
  /*Portfolio Page Skills Section Responsive Css End Here*/

  /**************************************************************************
 -------------- Portfolio Page Folds Responsive Css End Here --------------
 --------------------------------------------------------------------------/

 /**************************************************************************
 ------------ Reviews Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Reviews Tabs Section Responsive Css Start Here*/
  .reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link {
    width: 200px;
  }
  .reviews-tabscontent-items .reviews-tabscontent-box,
  .reviews-socialmedia-items .reviews-tabscontent-box {
    padding: 20px 20px;
  }
  /*Reviews Tabs Section Responsive Css End Here*/

  /**************************************************************************
 ------------- Reviews Page Folds Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Contact Page Info Responsive Css Start Here*/
  .contact-page-info .contact-info-content {
    padding: 0 20px 0 0;
    margin: 0;
  }
  .contact-info-content .contact-info-head {
    margin: 0 0 10px;
  }
  .contact-info-form .form-group {
    margin: 0 0 10px;
  }
  .contact-info-form .form-group input {
    font-size: 16px;
  }
  .contact-info-form .form-group input::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group select {
    font-size: 16px;
  }
  .contact-info-form .form-group select option {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group button.submit-btn {
    width: 200px;
  }
  .contact-info-item .contact-info-box {
    margin: 0 0 20px;
  }
  .contact-info-box h4 {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px;
  }
  .contact-info-box a {
    font-size: 16px;
    line-height: 20px;
  }
  .contact-info-box a i {
    width: 30px;
    height: 30px;
    line-height: 29px;
  }
  .contact-info-box p {
    font-size: 16px;
    line-height: 20px;
  }
  .contact-info-box p i {
    width: 30px;
    height: 30px;
    line-height: 29px;
  }
  /*Contact Page Info Responsive Css End Here*/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
  h2 {
    font-size: 28px;
    line-height: 34px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
  p {
    font-size: 16px;
    line-height: 22px;
  }
  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons {
    justify-content: center;
    margin: 15px 0;
  }
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    width: 200px;
  }
  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 150px;
  }
  header.sticky .navbar-brand .logo {
    width: 120px !important;
  }
  header .navbar-expand-lg .navbar-collapse {
    margin: 10px 0 0;
    background: linear-gradient(
      180deg,
      rgba(230, 250, 255, 1) 0%,
      rgba(220, 227, 229, 1) 100%
    );
  }
  header .navbar-collapse ul.navbar-nav {
    margin: 0;
    justify-content: center;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    margin: 0 20px 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
    border-bottom: 1px solid #fff;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link.active {
    border-bottom: 1px solid #72c2db;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link:hover {
    border-bottom: 1px solid #72c2db;
  }
  header .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    display: block;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: inherit;
  }
  header .navbar-nav .nav-item.dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    position: unset;
    width: 100%;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }
  header nav.navbar .navbar-buttons {
    margin: 10px 0;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    width: 150px;
    margin: 0 5px;
  }
  header nav.navbar .navbar-buttons button.popup-btn {
    width: 150px;
    margin: 0 5px;
  }
  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  section.banner-main-sec {
    padding: 100px 0 30px;
  }
  .banner-main-sec .banner-inner-content {
    text-align: center;
  }
  .banner-inner-content h1 {
    margin: 0 0 10px;
  }
  /*Banner Inner Published Form Responsive Css Start*/
  .banner-inner-published-form {
    margin: 0 auto;
  }
  .banner-inner-published-form h4 {
    font-size: 24px;
    line-height: 30px;
  }
  .banner-inner-published-form .form-group input {
    font-size: 16px;
    height: 50px;
  }
  .banner-inner-published-form .form-group input::placeholder {
    font-size: 16px;
  }
  .banner-inner-published-form .form-group button.submit-btn {
    font-size: 16px;
  }
  /*Banner Inner Published Form Responsive Css End*/

  /*Banner Main Section Responsive Css End Here*/

  /*Portfolio Skills Section Responsive Css Start Here*/
  section.portfolio-skill-wrap {
    padding: 20px 0;
  }
  .portfolio-skill-tablist .portfolio-tablist-buttons {
    margin: 0 0 20px;
  }
  .portfolio-tablist-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 16px;
    width: 175px;
  }
  .portfolio-tablist-content .portfolio-tablist-inner {
    text-align: center;
    margin: 0 0 20px;
  }
  /*Portfolio Skills Section Responsive Css End Here*/

  /*Step Works Section Responsive Css Start Here*/
  section.step-works-wrap {
    padding: 20px 0;
  }
  .step-works-wrap .stepworks-brands-inner {
    margin: 0 0 20px;
  }
  .step-works-inner .step-works-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .step-works-box span {
    font-size: 400px;
    margin: -100px 0 -200px 0;
  }
  .step-works-box:hover span {
    margin: -100px 0 -150px;
  }
  /*Step Works Section Responsive Css End Here*/

  /*Browse Books Section Responsive Css Start Here*/
  section.browse-books-wrap {
    padding: 20px 0;
  }
  .browse-books-wrap .browse-books-head {
    width: 100%;
    margin: 0 auto 75px;
  }
  .browse-books-inner .browse-books-box {
    text-align: center;
    margin: 0 0 60px;
  }
  /*Browse Books Section Responsive Css End Here*/

  /*CTA Main Section Responsive Css Start Here*/
  section.cta-main-wrap {
    padding: 20px 0;
  }
  .cta-main-image img {
    width: 90%;
  }
  section.cta-main-wrap.cta-main-about .website-main-buttons {
    justify-content: left;
  }
  /*CTA Main Section Responsive Css End Here*/

  /*How Help Section Responsive Css Start Here*/
  section.how-help-wrap {
    padding: 20px 0 40px;
  }
  .how-help-wrap .how-help-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .how-help-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .how-help-slider .slick-prev::before,
  .how-help-slider .slick-next::before {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 27px;
  }
  .how-help-inner .how-help-box {
    margin: 10px 10px;
    padding: 15px 15px;
  }
  /*How Help Section Responsive Css End Here*/

  /*Comparison Table Section Responsive Css Start Here*/
  section.comparison-table-wrap {
    padding: 20px 0;
  }
  .comparison-table-wrap .comparison-table-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .comparison-table-wrap .comparison-table-inner {
    border-radius: 30px 30px 30px 30px;
    padding: 20px 10px;
  }
  .comparison-table-info .comparison-info-hover {
    width: 200px;
  }
  .comparison-table-info .comparison-info-hover span {
    font-size: 12px;
    line-height: 16px;
  }
  .comparison-table-inner .comparison-table-right {
    border-radius: 30px 30px 0px 0px;
  }
  .comparison-table-right table thead tr th:first-child {
    border-radius: 30px 0 0 0;
  }
  .comparison-table-right table thead tr th:last-child {
    border-radius: 0 30px 0 0;
  }
  .comparison-table-right table thead tr th h5 {
    font-size: 20px;
    line-height: 26px;
  }
  .comparison-table-right table thead tr th .table-web-logo img {
    width: 125px;
  }
  .comparison-table-right table tbody tr td .table-list-icon i {
    font-size: 18px;
  }
  /*Comparison Table Section Responsive Css End Here*/

  /*Meet Team Section Responsive Css Start Here*/
  section.meet-team-wrap {
    padding: 20px 0;
  }
  .meet-team-wrap .meet-team-content {
    text-align: center;
  }
  .meet-team-box h4 {
    font-size: 20px;
    line-height: 26px;
  }
  /*Meet Team Section Responsive Css End Here*/

  /*CTA Form Section Responsive Css Start Here*/
  section.cta-form-wrap {
    padding: 20px 0;
  }
  .cta-form-inner .cta-form-content {
    text-align: center;
    margin: 0 0 20px;
  }
  .cta-inner-form form {
    flex-direction: column;
  }
  .cta-inner-form .form-group {
    margin: 0 0 10px;
    width: 75%;
    text-align: center;
  }
  .cta-inner-form .form-group input {
    font-size: 16px;
    width: 100%;
  }
  .cta-inner-form .form-group button.submit-btn {
    font-size: 16px;
    width: 100%;
  }
  /*CTA Form Section Responsive Css End Here*/

  /*Sets Apart Section Responsive Css Start Here*/
  section.sets-apart-wrap {
    padding: 20px 0;
  }
  .sets-apart-wrap .sets-apart-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .sets-apart-inner .sets-apart-box {
    margin: 10px 10px;
  }
  /*Sets Apart Section Responsive Css End Here*/

  /*Testimonials Main Section Responsive Css Start Here*/
  section.testimonials-main-wrap {
    padding: 20px 0;
  }
  .testimonials-main-wrap .testimonials-main-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .testimonials-main-inner .testimonials-inner-box {
    padding: 20px 20px;
    margin: 10px 10px;
  }
  .testimonials-inner-box .testimonials-box-left {
    width: 100%;
  }

  .testimonials-inner-box .testimonials-box-right {
    width: 100%;
  }
  .testimonials-box-right .testimonials-box-image {
    text-align: center;
  }
  .testimonials-box-image img {
    width: 75%;
    margin: 0 auto;
  }
  /*Testimonials Main Section Responsive Css End Here*/

  /*FAQS Section Responsive Responsive Css Start Here*/
  section.faqs-sec-wrap {
    padding: 20px 0;
  }
  .faqs-sec-wrap .faqs-sec-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
    font-size: 16px;
    line-height: 22px;
  }
  /*FAQS Section Responsive Css End Here*/

  /*Contact Main Section Responsive Css Start Here*/
  section.contact-main-wrap {
    padding: 20px 0;
  }
  .contact-main-inner .contact-inner-head {
    margin: 0 0 20px;
  }
  .contact-main-inner .contact-main-form {
    width: 100%;
  }
  .contact-main-form .form-group {
    margin: 0 0 20px 0;
  }
  .contact-main-form .form-group input {
    font-size: 16px;
    padding: 10px 5px;
  }
  .contact-main-form .form-group input::placeholder {
    font-size: 16px;
  }
  .contact-main-form .form-group button.submit-btn {
    font-size: 16px;
  }
  .contact-main-wrap .contact-main-image img {
    width: 90%;
  }
  /*Contact Main Section Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Book Distribution Section Css Start Here*/
  section.book-distrib-wrap {
    padding: 20px 0;
  }
  .book-distrib-wrap .book-distrib-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .book-distrib-inner .book-distrib-box {
    margin: 0 0 20px;
  }
  /*Book Distribution Section Css End Here*/

  /*What Expect Section Css Start Here*/
  section.what-expect-wrap {
    padding: 20px 0;
  }
  .what-expect-wrap .what-expect-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .what-expect-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
  /*What Expect Section Css End Here*/

  /*Why Info Section Css Start Here*/
  section.why-info-wrap {
    padding: 20px 0;
  }
  .why-info-wrap .why-info-img {
    margin: 0 0 10px;
  }
  .why-info-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
  .why-info-content .website-main-buttons {
    justify-content: left;
  }
  /*Why Info Section Css End Here*/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------- Portfolio Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Portfolio Notable Section Responsive Css Start Here*/
  section.portfolio-notable-wrap {
    padding: 20px 0;
  }
  /*Portfolio Notable Section Responsive Css End Here*/

  /*Portfolio Page Skills Section Responsive Css Start Here*/
  section.portfolio-page-wrap {
    padding: 20px 0;
  }
  .portfolio-page-tablist .portfolio-page-tablist-buttons {
    margin: 0 0 20px;
  }
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 16px;
    width: 175px;
  }
  .portfolio-page-tablist-content .portfolio-page-tablist-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  /*Portfolio Page Skills Section Responsive Css End Here*/

  /**************************************************************************
 -------------- Portfolio Page Folds Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------ Reviews Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Reviews Banner Section Responsive Css Start Here*/
  .reviews-banner-sec .reviews-inner-content {
    text-align: center;
  }
  .reviews-inner-content h1 {
    margin: 0 0 10px;
  }
  .reviews-banner-img .reviews-banner-small-img1 {
    top: 15%;
    right: 20%;
  }
  .reviews-banner-img .reviews-banner-small-img2 {
    top: 22%;
    left: 20%;
  }
  .reviews-banner-img .reviews-banner-small-img3 {
    top: 40%;
    left: 10%;
  }
  .reviews-banner-img .reviews-banner-small-img4 {
    top: 55%;
    right: 20%;
  }
  /*Reviews Banner Section Responsive Css End Here*/

  /*Counter Satisfy Section Responsive Css Start Here*/
  section.counter-satisfy-wrap {
    padding: 20px 0;
  }
  .counter-satisfy-inner .counter-satisfy-box {
    margin: 0 5px;
  }
  .counter-satisfy-box .counter-box-head h4 {
    font-size: 50px;
    line-height: 58px;
  }
  /*Counter Satisfy Section Responsive Css End Here*/

  /*Reviews Tabs Section Responsive Css Start Here*/
  section.reviews-tabs-wrap {
    padding: 20px 0;
  }
  .reviews-tabs-inner .reviews-tabs-buttons {
    margin: 0 0 20px;
  }
  .reviews-tabs-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 16px;
    width: 175px;
  }
  .reviews-tabscontent-items .reviews-tabscontent-box,
  .reviews-socialmedia-items .reviews-tabscontent-box {
    padding: 20px 20px;
  }
  .reviews-tabscontent-head .reviews-tabscontent-thumb {
    margin: 0 10px 0 0;
  }
  .reviews-tabscontent-ratings .ratings-stars-img img {
    width: 12px;
    height: 12px;
  }
  /*Reviews Tabs Section Responsive Css End Here*/

  /*Reviews Social Media Section Responsive Css Start Here*/
  section.reviews-socialmedia-wrap {
    padding: 20px 0;
  }
  /*Reviews Social Media Section Responsive Css End Here*/

  /**************************************************************************
 ------------- Reviews Page Folds Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Contact Page Info Responsive Css Start Here*/
  section.contact-page-info {
    padding: 20px 0;
  }
  .contact-page-info .contact-info-content {
    padding: 0 20px 0 0;
    margin: 0;
  }
  .contact-info-content .contact-info-head {
    margin: 0 0 10px;
  }
  .contact-info-form .form-group {
    margin: 0 0 10px;
  }
  .contact-info-form .form-group input {
    font-size: 16px;
    padding: 10px 5px;
  }
  .contact-info-form .form-group input::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group select {
    font-size: 16px;
    padding: 10px 5px;
  }
  .contact-info-form .form-group select option {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea {
    font-size: 16px;
    padding: 10px 5px;
  }
  .contact-info-form .form-group textarea::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group button.submit-btn {
    width: 200px;
    font-size: 14px;
  }
  .contact-info-item .contact-info-box {
    margin: 0 0 20px;
  }
  .contact-info-box h4 {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px;
  }
  .contact-info-box a {
    font-size: 16px;
    line-height: 20px;
  }
  .contact-info-box a i {
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    margin: 0 5px 0 0;
  }
  .contact-info-box p {
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info-box p i {
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    margin: 0 5px 0 0;
  }
  /*Contact Page Info Responsive Css End Here*/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Footer Responsive Css Start Here */
  .footer-main-sec .footer-top {
    padding: 30px 0 10px;
  }
  .footer-top .footer-logo-area {
    width: 100%;
    margin: 0 0 20px;
  }
  .footer-logo-area .footer-logo {
    margin: 0 0 20px;
  }
  .footer-top .footer-links-area {
    margin: 0 0 20px;
  }
  /* Footer Responsive Css End Here */
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  h3 {
    font-size: 18px;
    line-height: 24px;
  }
  p {
    font-size: 14px;
    line-height: 20px;
  }
  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons {
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    font-size: 14px;
    width: 200px;
    margin: 0 5px 10px;
  }
  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 150px;
  }
  header.sticky .navbar-brand .logo {
    width: 120px !important;
  }
  header .navbar-expand-lg .navbar-collapse {
    margin: 10px 0 0;
    background: linear-gradient(
      180deg,
      rgba(230, 250, 255, 1) 0%,
      rgba(220, 227, 229, 1) 100%
    );
  }
  header .navbar-collapse ul.navbar-nav {
    margin: 0;
    justify-content: center;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    margin: 0 20px 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
    border-bottom: 1px solid #fff;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link.active {
    border-bottom: 1px solid #bf0a30;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link:hover {
    border-bottom: 1px solid #bf0a30;
  }
  header .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    display: block;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: inherit;
  }
  header .navbar-nav .nav-item.dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    position: unset;
    width: 100%;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }
  header nav.navbar .navbar-buttons {
    margin: 10px 0;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    width: 150px;
    margin: 0 5px;
  }
  header nav.navbar .navbar-buttons button.popup-btn {
    font-size: 14px;
    width: 150px;
    margin: 0 5px;
  }
  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  section.banner-main-sec {
    padding: 100px 0 30px;
  }
  .banner-main-sec .banner-inner-content {
    text-align: center;
  }
  .banner-inner-content h1 {
    margin: 0 0 10px;
  }
  /*Banner Inner Published Form Responsive Css Start*/
  .banner-inner-published-form {
    width: 100%;
    padding: 20px 20px;
  }
  .banner-inner-published-form h4 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }
  .banner-inner-published-form .form-group .form-select {
    font-size: 12px;
  }
  .banner-inner-published-form .form-group-select h3 {
    text-align: center;
  }
  .banner-inner-published-form .form-group-select .form-check-flex .form-check {
    width: 100%;
  }
  .banner-inner-published-form
    .form-group-select
    .form-check-flex
    .form-check
    .form-check-label {
    font-size: 14px;
  }
  .banner-inner-published-form .form-group input {
    font-size: 14px;
    height: 50px;
  }
  .banner-inner-published-form .form-group input::placeholder {
    font-size: 14px;
  }
  .banner-inner-published-form .form-group button.submit-btn {
    font-size: 14px;
  }
  /*Banner Inner Published Form Responsive Css End*/

  /*Banner Main Section Responsive Css End Here*/

  /*Portfolio Skills Section Responsive Css Start Here*/
  section.portfolio-skill-wrap {
    padding: 20px 0;
  }
  .portfolio-skill-tablist .portfolio-tablist-buttons {
    margin: 0 0 20px;
  }
  .portfolio-tablist-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 14px;
    width: 175px;
  }
  .portfolio-tablist-content .portfolio-tablist-inner {
    text-align: center;
    margin: 0 0 20px;
  }
  .portfolio-tablist-inner .portfolio-inner-content span {
    font-size: 14px;
    line-height: 20px;
  }
  .portfolio-inner-btns a.view-btn {
    font-size: 14px;
  }
  /*Portfolio Skills Section Responsive Css End Here*/

  /*Step Works Section Responsive Css Start Here*/
  section.step-works-wrap {
    padding: 20px 0;
  }
  .step-works-wrap .stepworks-brands-inner {
    margin: 0 0 20px;
  }
  .step-works-inner .step-works-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  /*Step Works Section Responsive Css End Here*/

  /*Browse Books Section Responsive Css Start Here*/
  section.browse-books-wrap {
    padding: 20px 0;
  }
  .browse-books-wrap .browse-books-head {
    width: 100%;
    margin: 0 auto 75px;
  }
  .browse-books-inner .browse-books-box {
    text-align: center;
    margin: 0 0 60px;
  }
  /*Browse Books Section Responsive Css End Here*/

  /*CTA Main Section Responsive Css Start Here*/
  section.cta-main-wrap {
    padding: 20px 0;
  }
  .cta-main-inner .cta-main-content {
    text-align: center;
  }
  .cta-main-inner .cta-main-image {
    text-align: center;
  }
  .cta-main-image img {
    width: 90%;
  }
  /*CTA Main Section Responsive Css End Here*/

  /*How Help Section Responsive Css Start Here*/
  section.how-help-wrap {
    padding: 20px 0 40px;
  }
  .how-help-wrap .how-help-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .how-help-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .how-help-slider .slick-prev {
    right: inherit;
    left: 30%;
  }
  .how-help-slider .slick-next {
    right: 30%;
  }
  .how-help-slider .slick-prev::before,
  .how-help-slider .slick-next::before {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 27px;
  }
  .how-help-inner .how-help-box {
    margin: 10px 10px;
  }
  /*How Help Section Responsive Css End Here*/

  /*Comparison Table Section Responsive Css Start Here*/
  section.comparison-table-wrap {
    padding: 20px 0;
  }
  .comparison-table-wrap .comparison-table-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .comparison-table-wrap .comparison-table-inner {
    border-radius: 30px 30px 30px 30px;
    padding: 20px 10px;
    margin: 0;
  }
  .comparison-table-left ul {
    margin: 0 0 20px;
  }
  .comparison-table-info .comparison-info-hover {
    width: 200px;
    top: -325%;
  }
  .comparison-table-info .comparison-info-hover span {
    font-size: 12px;
    line-height: 16px;
  }
  .comparison-table-inner .comparison-table-right {
    margin: 0;
    border-radius: 30px 30px 0px 0px;
  }
  .comparison-table-right table thead tr th:first-child {
    border-radius: 30px 0 0 0;
  }
  .comparison-table-right table thead tr th:last-child {
    border-radius: 0 30px 0 0;
  }
  .comparison-table-right table thead tr th h5 {
    font-size: 20px;
    line-height: 26px;
    width: 200px;
    margin: 0 auto;
  }
  .comparison-table-right table thead tr th .table-web-logo {
    width: 200px;
    margin: 0 auto;
  }
  .comparison-table-right table thead tr th .table-web-logo img {
    width: 125px;
  }
  .comparison-table-right table tbody tr td .table-list-icon i {
    font-size: 18px;
  }
  /*Comparison Table Section Responsive Css End Here*/

  /*Meet Team Section Responsive Css Start Here*/
  section.meet-team-wrap {
    padding: 20px 0;
  }
  .meet-team-wrap .meet-team-content {
    text-align: center;
  }
  .meet-team-box h4 {
    font-size: 20px;
    line-height: 26px;
  }
  /*Meet Team Section Responsive Css End Here*/

  /*CTA Form Section Responsive Css Start Here*/
  section.cta-form-wrap {
    padding: 20px 0;
  }
  .cta-form-inner .cta-form-content {
    text-align: center;
    margin: 0 0 20px;
  }
  .cta-inner-form form {
    flex-direction: column;
  }
  .cta-inner-form .form-group {
    margin: 0 0 10px;
    width: 100%;
    text-align: center;
  }
  .cta-inner-form .form-group input {
    font-size: 14px;
    width: 100%;
  }
  .cta-inner-form .form-group button.submit-btn {
    font-size: 14px;
    width: 100%;
  }
  /*CTA Form Section Responsive Css End Here*/

  /*Sets Apart Section Responsive Css Start Here*/
  section.sets-apart-wrap {
    padding: 20px 0;
  }
  .sets-apart-wrap .sets-apart-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .sets-apart-inner .sets-apart-box {
    margin: 10px 10px;
  }
  /*Sets Apart Section Responsive Css End Here*/

  /*Testimonials Main Section Responsive Css Start Here*/
  section.testimonials-main-wrap {
    padding: 20px 0;
  }
  .testimonials-main-wrap .testimonials-main-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .testimonials-main-inner .testimonials-inner-box {
    padding: 20px 20px;
    margin: 10px 10px;
  }
  .testimonials-inner-box .testimonials-box-left {
    width: 100%;
  }
  .testimonials-box-text span {
    font-size: 14px;
    line-height: 20px;
  }

  .testimonials-box-content .testimonials-box-ratings {
    justify-content: left;
  }
  .testimonials-inner-box .testimonials-box-right {
    width: 100%;
  }
  .testimonials-box-right .testimonials-box-image {
    text-align: center;
  }
  .testimonials-box-image img {
    width: 85%;
    margin: 0 auto;
  }
  /*Testimonials Main Section Responsive Css End Here*/

  /*FAQS Section Responsive Responsive Css Start Here*/
  section.faqs-sec-wrap {
    padding: 20px 0;
  }
  .faqs-sec-wrap .faqs-sec-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .faqs-sec-item .accordion-item .accordion-header button.accordion-button {
    font-size: 18px;
    line-height: 24px;
    padding: 10px 10px;
  }
  .faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
    font-size: 18px;
  }
  .faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }
  /*FAQS Section Responsive Css End Here*/

  /*Contact Main Section Responsive Css Start Here*/
  section.contact-main-wrap {
    padding: 20px 0;
  }
  .contact-main-inner .contact-inner-head {
    margin: 0 0 20px;
    text-align: center;
  }
  .contact-main-inner .contact-main-form {
    width: 100%;
    margin: 0 0 20px;
  }
  .contact-main-form .form-group {
    margin: 0 0 20px 0;
  }
  .contact-main-form .form-group input {
    font-size: 14px;
    padding: 10px 5px;
  }
  .contact-main-form .form-group input::placeholder {
    font-size: 14px;
  }
  .contact-main-form .form-group button.submit-btn {
    font-size: 14px;
  }
  .contact-main-wrap .contact-main-image {
    text-align: center;
  }
  .contact-main-wrap .contact-main-image img {
    width: 90%;
  }
  /*Contact Main Section Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Book Distribution Section Css Start Here*/
  section.book-distrib-wrap {
    padding: 20px 0;
  }
  .book-distrib-wrap .book-distrib-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .book-distrib-inner .book-distrib-box {
    min-height: inherit;
    max-height: inherit;
    margin: 0 0 20px;
  }
  /*Book Distribution Section Css End Here*/

  /*What Expect Section Css Start Here*/
  section.what-expect-wrap {
    padding: 20px 0;
  }
  .what-expect-wrap .what-expect-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .what-expect-content ul li {
    font-size: 14px;
    line-height: 20px;
  }
  /*What Expect Section Css End Here*/

  /*Why Info Section Css Start Here*/
  section.why-info-wrap {
    padding: 20px 0;
  }
  .why-info-wrap .why-info-img {
    margin: 0 0 10px;
  }
  .why-info-wrap .why-info-content {
    text-align: center;
  }
  .why-info-content ul li {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }
  /*Why Info Section Css End Here*/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------- Portfolio Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Portfolio Notable Section Responsive Css Start Here*/
  section.portfolio-notable-wrap {
    padding: 20px 0;
  }
  /*Portfolio Notable Section Responsive Css End Here*/

  /*Portfolio Page Skills Section Responsive Css Start Here*/
  section.portfolio-page-wrap {
    padding: 20px 0;
  }
  .portfolio-page-tablist .portfolio-page-tablist-buttons {
    margin: 0 0 20px;
  }
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 14px;
    width: 175px;
  }
  .portfolio-page-tablist-content .portfolio-page-tablist-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .portfolio-page-tablist-inner .portfolio-page-tablist-item {
    margin: 0px 0px 20px;
  }
  /*Portfolio Page Skills Section Responsive Css End Here*/

  /**************************************************************************
 -------------- Portfolio Page Folds Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------ Reviews Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Reviews Banner Section Responsive Css Start Here*/
  .reviews-banner-sec .reviews-inner-content {
    text-align: center;
  }
  .reviews-inner-content h1 {
    margin: 0 0 10px;
  }
  .reviews-banner-img .reviews-banner-small-img1 {
    top: 15%;
    right: 20%;
  }
  .reviews-banner-small-img1 img,
  .reviews-banner-small-img2 img,
  .reviews-banner-small-img4 img {
    width: 40px;
    height: 40px;
  }
  .reviews-banner-small-img1 .reviews-small-stars {
    width: 100px;
  }
  .reviews-small-stars img {
    width: 12px;
    height: 12px;
  }
  .reviews-banner-img .reviews-banner-small-img2 {
    top: 22%;
    left: 20%;
  }
  .reviews-banner-img .reviews-banner-small-img3 {
    top: 40%;
    left: 10%;
  }
  .reviews-banner-small-img3 img {
    width: 50px;
    height: 50px;
    border-radius: 20px;
  }
  .reviews-banner-img .reviews-banner-small-img4 {
    top: 55%;
    right: 20%;
  }
  /*Reviews Banner Section Responsive Css End Here*/

  /*Counter Satisfy Section Responsive Css Start Here*/
  section.counter-satisfy-wrap {
    padding: 20px 0;
  }
  .counter-satisfy-inner .counter-satisfy-box {
    width: 120px;
    margin: 0 5px;
  }
  .counter-satisfy-box .counter-box-head h4 {
    font-size: 40px;
    line-height: 48px;
  }
  /*Counter Satisfy Section Responsive Css End Here*/

  /*Reviews Tabs Section Responsive Css Start Here*/
  section.reviews-tabs-wrap {
    padding: 20px 0;
  }
  .reviews-tabs-inner .reviews-tabs-buttons {
    margin: 0 0 20px;
  }
  .reviews-tabs-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 14px;
    width: 175px;
  }
  .reviews-tabscontent-items .reviews-tabscontent-box,
  .reviews-socialmedia-items .reviews-tabscontent-box {
    padding: 20px 20px;
  }
  .reviews-tabscontent-box .reviews-tabscontent-head {
  }
  .reviews-tabscontent-head .reviews-tabscontent-thumb {
    margin: 0 10px 0 0;
  }
  .reviews-tabscontent-ratings .ratings-stars-img img {
    width: 12px;
    height: 12px;
  }
  .reviews-tabscontent-para p,
  .reviews-socialmedia-items .reviews-tabscontent-para p {
    min-height: 100px;
    max-height: 100px;
  }
  /*Reviews Tabs Section Responsive Css End Here*/

  /*Reviews Social Media Section Responsive Css Start Here*/
  section.reviews-socialmedia-wrap {
    padding: 20px 0;
  }
  /*Reviews Social Media Section Responsive Css End Here*/

  /**************************************************************************
 ------------- Reviews Page Folds Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Contact Page Info Responsive Css Start Here*/
  section.contact-page-info {
    padding: 20px 0;
  }
  .contact-page-info .contact-info-content {
    border-right: inherit;
    border-bottom: 2px solid #0a2840;
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
  .contact-info-head h2 {
    text-align: center;
  }
  .contact-info-content .contact-info-form {
    text-align: center;
  }
  .contact-info-form .form-group input {
    font-size: 16px;
  }
  .contact-info-form .form-group input::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group select {
    font-size: 16px;
  }
  .contact-info-form .form-group select option {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group button.submit-btn {
    width: 200px;
    font-size: 14px;
  }
  .contact-info-item .contact-info-box {
    margin: 0 0 20px;
  }
  .contact-info-box h4 {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px;
  }
  .contact-info-box a {
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info-box a i {
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    margin: 0 5px 0 0;
  }
  .contact-info-box p {
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info-box p i {
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    margin: 0 5px 0 0;
  }
  /*Contact Page Info Responsive Css End Here*/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Footer Responsive Css Start Here */
  .footer-main-sec .footer-top {
    padding: 30px 0 10px;
  }
  .footer-top .footer-logo-area {
    width: 100%;
    margin: 0 0 20px;
  }
  .footer-logo-area .footer-logo {
    margin: 0 0 20px;
  }
  .footer-top .footer-links-area {
    margin: 0 0 20px;
  }
  /* Footer Responsive Css End Here */
}

@media only screen and (min-width: 300px) and (max-width: 575px) {
  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  h3 {
    font-size: 18px;
    line-height: 24px;
  }
  p {
    font-size: 14px;
    line-height: 20px;
  }
  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons {
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    font-size: 14px;
    width: 200px;
    margin: 0 5px 10px;
  }
  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 150px;
  }
  header.sticky .navbar-brand .logo {
    width: 120px !important;
  }
  header .navbar-expand-lg .navbar-collapse {
    margin: 10px 0 0;
    background: linear-gradient(
      180deg,
      rgba(230, 250, 255, 1) 0%,
      rgba(220, 227, 229, 1) 100%
    );
  }
  header .navbar-collapse ul.navbar-nav {
    margin: 0;
    justify-content: center;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    margin: 0 20px 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
    border-bottom: 1px solid #fff;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link.active {
    border-bottom: 1px solid #bf0a30;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link:hover {
    border-bottom: 1px solid #bf0a30;
  }
  header .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    display: block;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: inherit;
  }
  header .navbar-nav .nav-item.dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    position: unset;
    width: 100%;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }
  header nav.navbar .navbar-buttons {
    flex-wrap: wrap;
    margin: 10px 0;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    width: 150px;
    margin: 0 5px 5px;
  }
  header nav.navbar .navbar-buttons button.popup-btn {
    font-size: 14px;
    width: 150px;
    margin: 0 5px 5px;
  }
  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  section.banner-main-sec {
    padding: 100px 0 30px;
  }
  .banner-main-sec .banner-inner-content {
    text-align: center;
  }
  .banner-inner-content h1 {
    margin: 0 0 10px;
  }
  /*Banner Inner Published Form Responsive Css Start*/
  .banner-inner-published-form {
    width: 100%;
    padding: 20px 20px;
  }
  .banner-inner-published-form h4 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }
  .banner-inner-published-form .form-group .form-select {
    font-size: 12px;
  }
  .banner-inner-published-form .form-group-select h3 {
    text-align: center;
  }
  .banner-inner-published-form .form-group-select .form-check-flex .form-check {
    width: 100%;
  }
  .banner-inner-published-form
    .form-group-select
    .form-check-flex
    .form-check
    .form-check-label {
    font-size: 14px;
  }
  .banner-inner-published-form .form-group input {
    font-size: 14px;
    height: 50px;
  }
  .banner-inner-published-form .form-group input::placeholder {
    font-size: 14px;
  }
  .banner-inner-published-form .form-group button.submit-btn {
    font-size: 14px;
  }
  /*Banner Inner Published Form Responsive Css End*/

  /*Banner Main Section Responsive Css End Here*/

  /*Portfolio Skills Section Responsive Css Start Here*/
  section.portfolio-skill-wrap {
    padding: 20px 0;
  }
  .portfolio-skill-tablist .portfolio-tablist-buttons {
    margin: 0 0 20px;
  }
  .portfolio-tablist-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .portfolio-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 14px;
    width: 175px;
  }
  .portfolio-tablist-content .portfolio-tablist-inner {
    text-align: center;
    margin: 0 0 20px;
  }
  .portfolio-tablist-inner .portfolio-inner-content span {
    font-size: 14px;
    line-height: 20px;
  }
  .portfolio-inner-btns a.view-btn {
    font-size: 14px;
  }
  /*Portfolio Skills Section Responsive Css End Here*/

  /*Step Works Section Responsive Css Start Here*/
  section.step-works-wrap {
    padding: 20px 0;
  }
  .step-works-wrap .stepworks-brands-inner {
    margin: 0 0 20px;
  }
  .step-works-inner .step-works-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  /*Step Works Section Responsive Css End Here*/

  /*Browse Books Section Responsive Css Start Here*/
  section.browse-books-wrap {
    padding: 20px 0;
  }
  .browse-books-wrap .browse-books-head {
    width: 100%;
    margin: 0 auto 75px;
  }
  .browse-books-inner .browse-books-box {
    text-align: center;
    margin: 0 0 60px;
  }
  /*Browse Books Section Responsive Css End Here*/

  /*CTA Main Section Responsive Css Start Here*/
  section.cta-main-wrap {
    padding: 20px 0;
  }
  .cta-main-inner .cta-main-content {
    text-align: center;
  }
  .cta-main-inner .cta-main-image {
    text-align: center;
  }
  .cta-main-image img {
    width: 90%;
  }
  /*CTA Main Section Responsive Css End Here*/

  /*How Help Section Responsive Css Start Here*/
  section.how-help-wrap {
    padding: 20px 0 40px;
  }
  .how-help-wrap .how-help-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .how-help-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .how-help-slider .slick-prev {
    right: inherit;
    left: 30%;
  }
  .how-help-slider .slick-next {
    right: 30%;
  }
  .how-help-slider .slick-prev::before,
  .how-help-slider .slick-next::before {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 27px;
  }
  .how-help-inner .how-help-box {
    margin: 10px 10px;
  }
  /*How Help Section Responsive Css End Here*/

  /*Comparison Table Section Responsive Css Start Here*/
  section.comparison-table-wrap {
    padding: 20px 0;
  }
  .comparison-table-wrap .comparison-table-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .comparison-table-wrap .comparison-table-inner {
    border-radius: 30px 30px 30px 30px;
    padding: 20px 10px;
    margin: 0;
  }
  .comparison-table-left ul {
    margin: 0 0 20px;
  }
  .comparison-table-info .comparison-info-hover {
    width: 200px;
    top: -325%;
  }
  .comparison-table-info .comparison-info-hover span {
    font-size: 12px;
    line-height: 16px;
  }
  .comparison-table-inner .comparison-table-right {
    margin: 0;
    border-radius: 30px 30px 0px 0px;
  }
  .comparison-table-right table thead tr th:first-child {
    border-radius: 30px 0 0 0;
  }
  .comparison-table-right table thead tr th:last-child {
    border-radius: 0 30px 0 0;
  }
  .comparison-table-right table thead tr th h5 {
    font-size: 18px;
    line-height: 24px;
    width: 120px;
    margin: 0 auto;
  }
  .comparison-table-right table thead tr th .table-web-logo {
    width: 120px;
    margin: 0 auto;
  }
  .comparison-table-right table thead tr th .table-web-logo img {
    width: 100px;
  }
  .comparison-table-right table tbody tr td .table-list-icon i {
    font-size: 18px;
  }
  /*Comparison Table Section Responsive Css End Here*/

  /*Meet Team Section Responsive Css Start Here*/
  section.meet-team-wrap {
    padding: 20px 0;
  }
  .meet-team-wrap .meet-team-content {
    text-align: center;
  }
  .meet-team-box h4 {
    font-size: 20px;
    line-height: 26px;
  }
  /*Meet Team Section Responsive Css End Here*/

  /*CTA Form Section Responsive Css Start Here*/
  section.cta-form-wrap {
    padding: 20px 0;
  }
  .cta-form-inner .cta-form-content {
    text-align: center;
    margin: 0 0 20px;
  }
  .cta-inner-form form {
    flex-direction: column;
  }
  .cta-inner-form .form-group {
    margin: 0 0 10px;
    width: 100%;
    text-align: center;
  }
  .cta-inner-form .form-group input {
    font-size: 14px;
    width: 100%;
  }
  .cta-inner-form .form-group button.submit-btn {
    font-size: 14px;
    width: 100%;
  }
  /*CTA Form Section Responsive Css End Here*/

  /*Sets Apart Section Responsive Css Start Here*/
  section.sets-apart-wrap {
    padding: 20px 0;
  }
  .sets-apart-wrap .sets-apart-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .sets-apart-inner .sets-apart-box {
    margin: 10px 10px;
  }
  /*Sets Apart Section Responsive Css End Here*/

  /*Testimonials Main Section Responsive Css Start Here*/
  section.testimonials-main-wrap {
    padding: 20px 0;
  }
  .testimonials-main-wrap .testimonials-main-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .testimonials-main-inner .testimonials-inner-box {
    padding: 20px 20px;
    margin: 10px 10px;
    flex-direction: column;
  }
  .testimonials-inner-box .testimonials-box-left {
    width: 100%;
    margin: 0 0 20px;
  }
  .testimonials-box-text span {
    font-size: 14px;
    line-height: 20px;
  }
  .testimonials-box-content p {
    min-height: inherit;
    max-height: inherit;
  }
  .testimonials-box-content .testimonials-box-ratings {
    justify-content: left;
  }
  .testimonials-inner-box .testimonials-box-right {
    width: 100%;
  }
  .testimonials-box-right .testimonials-box-image {
    text-align: center;
  }
  .testimonials-box-image img {
    width: 75%;
    margin: 0 auto;
  }
  /*Testimonials Main Section Responsive Css End Here*/

  /*FAQS Section Responsive Responsive Css Start Here*/
  section.faqs-sec-wrap {
    padding: 20px 0;
  }
  .faqs-sec-wrap .faqs-sec-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .faqs-sec-item .accordion-item .accordion-header button.accordion-button {
    font-size: 18px;
    line-height: 24px;
    padding: 10px 10px;
  }
  .faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
    font-size: 18px;
  }
  .faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }
  /*FAQS Section Responsive Css End Here*/

  /*Contact Main Section Responsive Css Start Here*/
  section.contact-main-wrap {
    padding: 20px 0;
  }
  .contact-main-inner .contact-inner-head {
    margin: 0 0 20px;
    text-align: center;
  }
  .contact-main-inner .contact-main-form {
    width: 100%;
    margin: 0 0 20px;
  }
  .contact-main-form .form-group {
    margin: 0 0 20px 0;
  }
  .contact-main-form .form-group input {
    font-size: 14px;
    padding: 10px 5px;
  }
  .contact-main-form .form-group input::placeholder {
    font-size: 14px;
  }
  .contact-main-form .form-group button.submit-btn {
    font-size: 14px;
  }
  .contact-main-wrap .contact-main-image {
    text-align: center;
  }
  .contact-main-wrap .contact-main-image img {
    width: 90%;
  }
  /*Contact Main Section Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Book Distribution Section Css Start Here*/
  section.book-distrib-wrap {
    padding: 20px 0;
  }
  .book-distrib-wrap .book-distrib-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .book-distrib-inner .book-distrib-box {
    min-height: inherit;
    max-height: inherit;
    margin: 0 0 20px;
  }
  /*Book Distribution Section Css End Here*/

  /*What Expect Section Css Start Here*/
  section.what-expect-wrap {
    padding: 20px 0;
  }
  .what-expect-wrap .what-expect-head {
    width: 100%;
    margin: 0 auto 20px;
  }
  .what-expect-content ul li {
    font-size: 14px;
    line-height: 20px;
  }
  /*What Expect Section Css End Here*/

  /*Why Info Section Css Start Here*/
  section.why-info-wrap {
    padding: 20px 0;
  }
  .why-info-wrap .why-info-img {
    margin: 0 0 10px;
  }
  .why-info-wrap .why-info-content {
    text-align: center;
  }
  .why-info-content ul li {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }
  /*Why Info Section Css End Here*/

  /**************************************************************************
 --------------- Service Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------- Portfolio Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Portfolio Notable Section Responsive Css Start Here*/
  section.portfolio-notable-wrap {
    padding: 20px 0;
  }
  /*Portfolio Notable Section Responsive Css End Here*/

  /*Portfolio Page Skills Section Responsive Css Start Here*/
  section.portfolio-page-wrap {
    padding: 20px 0;
  }
  .portfolio-page-tablist .portfolio-page-tablist-buttons {
    margin: 0 0 20px;
  }
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .portfolio-page-tablist-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 14px;
    width: 175px;
  }
  .portfolio-page-tablist-content .portfolio-page-tablist-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  /*Portfolio Page Skills Section Responsive Css End Here*/

  /**************************************************************************
 -------------- Portfolio Page Folds Responsive Css End Here --------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 ------------ Reviews Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Reviews Banner Section Responsive Css Start Here*/
  .reviews-banner-sec .reviews-inner-content {
    text-align: center;
  }
  .reviews-inner-content h1 {
    margin: 0 0 10px;
  }
  .reviews-banner-img .reviews-banner-small-img1 {
    top: 15%;
    right: 5%;
  }
  .reviews-banner-small-img1 img,
  .reviews-banner-small-img2 img,
  .reviews-banner-small-img4 img {
    width: 40px;
    height: 40px;
  }
  .reviews-banner-small-img1 .reviews-small-stars {
    width: 100px;
  }
  .reviews-small-stars img {
    width: 12px;
    height: 12px;
  }
  .reviews-banner-img .reviews-banner-small-img2 {
    top: 18%;
    left: 18%;
  }
  .reviews-banner-img .reviews-banner-small-img3 {
    top: 35%;
    left: 10%;
  }
  .reviews-banner-small-img3 img {
    width: 50px;
    height: 50px;
    border-radius: 20px;
  }
  .reviews-banner-img .reviews-banner-small-img4 {
    top: 55%;
    right: 20%;
  }
  /*Reviews Banner Section Responsive Css End Here*/

  /*Counter Satisfy Section Responsive Css Start Here*/
  section.counter-satisfy-wrap {
    padding: 20px 0;
  }
  .counter-satisfy-wrap .counter-satisfy-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .counter-satisfy-inner .counter-satisfy-box {
    width: 120px;
    margin: 0 5px 10px;
  }
  .counter-satisfy-box .counter-box-head h4 {
    font-size: 40px;
    line-height: 48px;
  }
  /*Counter Satisfy Section Responsive Css End Here*/

  /*Reviews Tabs Section Responsive Css Start Here*/
  section.reviews-tabs-wrap {
    padding: 20px 0;
  }
  .reviews-tabs-inner .reviews-tabs-buttons {
    margin: 0 0 20px;
  }
  .reviews-tabs-buttons ul.nav-pills li.nav-item {
    margin: 0 10px 10px;
  }
  .reviews-tabs-buttons ul.nav-pills li.nav-item button.nav-link {
    font-size: 14px;
    width: 175px;
  }
  .reviews-tabscontent-items .reviews-tabscontent-box,
  .reviews-socialmedia-items .reviews-tabscontent-box {
    padding: 20px 20px;
  }
  .reviews-tabscontent-box .reviews-tabscontent-head {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .reviews-tabscontent-head .reviews-tabscontent-thumb {
    margin: 0 0 10px;
  }
  .reviews-tabscontent-ratings .ratings-stars-img img {
    width: 12px;
    height: 12px;
  }
  .reviews-tabscontent-box .reviews-tabscontent-para {
    text-align: center;
  }
  .reviews-tabscontent-para p {
    padding: 0 5px 0;
  }
  /*Reviews Tabs Section Responsive Css End Here*/

  /*Reviews Social Media Section Responsive Css Start Here*/
  section.reviews-socialmedia-wrap {
    padding: 20px 0;
  }
  /*Reviews Social Media Section Responsive Css End Here*/

  /**************************************************************************
 ------------- Reviews Page Folds Responsive Css End Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Contact Page Info Responsive Css Start Here*/
  section.contact-page-info {
    padding: 20px 0;
  }
  .contact-page-info .contact-info-content {
    border-right: inherit;
    border-bottom: 2px solid #0a2840;
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
  .contact-info-head h2 {
    text-align: center;
  }
  .contact-info-content .contact-info-form {
    text-align: center;
  }
  .contact-info-form .form-group input {
    font-size: 16px;
  }
  .contact-info-form .form-group input::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group select {
    font-size: 16px;
  }
  .contact-info-form .form-group select option {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea {
    font-size: 16px;
  }
  .contact-info-form .form-group textarea::placeholder {
    font-size: 16px;
  }
  .contact-info-form .form-group button.submit-btn {
    width: 200px;
    font-size: 14px;
  }
  .contact-info-item .contact-info-box {
    margin: 0 0 20px;
  }
  .contact-info-box h4 {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px;
  }
  .contact-info-box a {
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info-box a i {
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    margin: 0 5px 0 0;
  }
  .contact-info-box p {
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info-box p i {
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    margin: 0 5px 0 0;
  }
  /*Contact Page Info Responsive Css End Here*/

  /**************************************************************************
 --------------- Contact Page Folds Responsive Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Footer Responsive Css Start Here */
  .footer-main-sec .footer-top {
    padding: 30px 0 10px;
  }
  .footer-top .footer-logo-area {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #dcf5fc;
    margin: 0 0 20px;
  }
  .footer-logo-area .footer-logo {
    margin: 0 auto 20px;
  }
  .footer-top .footer-links-area {
    text-align: center;
    border-bottom: 1px solid #dcf5fc;
    margin: 0 0 20px;
  }
  .footer-top .footer-social-area {
    text-align: center;
  }
  .footer-social-area ul.social-media-list {
    justify-content: center;
  }
  .footer-info-area ul {
    justify-content: center;
    align-items: center;
  }
  .footer-info-area ul li {
    text-align: center;
  }
  .brand-partner-logos {
    position: inherit;
  }
  .style-change {
    display: inherit;
  }
  .brand-partner-logos {
    bottom: -70px;
  }
  .top-head {
    display: none;
  }
  header nav.navbar .navbar-brand .logo {
    position: inherit;
  }
  /* Footer Responsive Css End Here */
}
.ser-outer h2 {
  font-size: 17px;
  color: #bf0a30;
  font-weight: bold;
  /* margin-bottom: 20px; */
}
.about-new h2 {
  font-size: 29px !important;
  color: #1a192b;
  font-weight: bold;
  line-height: 41px;
  width: 100%;
}
.services-about h2 {
  text-align: center;
  font-size: 29px;
  color: #1a192b;
  font-weight: bold;
  line-height: 40px;
  width: 100%;
}
.services-about ul li {
  display: inline-block;
  width: 22%;
  margin: 0 15px;
  text-align: center;
}
.services-about ul li h2 {
  font-size: 18px;
  line-height: 25px;
}
.services-about {
  padding: 80px 0;
}
.achievments {
  background-image: url(../images/achbanner.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 70px 0;
  color: #fff;
  font-size: 12px;
}
.countsec {
  margin-top: 30px;
}
.countsec ul li {
  display: inline-block;
  width: 32%;
  position: relative;
  padding-right: 30px;
}
.countsec ul li span {
  display: block;
  font-size: 62px;
  font-weight: bold;
  line-height: normal;
  margin: 10px 0;
}
.countsec ul li h3 {
  font-size: 14px;
  color: #34d9a9;
  margin-bottom: 0;
}

.publishing-solution {
  padding-top: 70px !important;
}
.abeout-ing {
  padding-top: 179px !important;
}
.disclaimer p {
  color: #fff;
  text-align: center;
}
.contect-img-w img {
  width: 70% !important;
}

section.pricing-section {
  background: linear-gradient(
    to right,
    rgba(251, 253, 255, 1) 0%,
    rgba(237, 244, 254, 1) 100%
  );
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
  color: #a9a9a9;
  font-size: 14px;
  line-height: 22px;
  padding-top: 177px;
}

section.pricing-section ul.nav-tabs {
  display: block;
  margin-top: 20px;
}

.tab-content > .tab-pane {
  display: none;
}

section.pricing-section .tab-content > .active {
  display: block;
  opacity: 1;
}

section.pricing-section ul.nav-tabs li button {
  display: block;
}

section.pricing-section ul.nav-tabs li button {
  display: block;
  padding: 17px 20px;
  background: linear-gradient(
    to right,
    rgba(231, 234, 249, 1) 0%,
    rgba(244, 247, 254, 1) 100%
  );
  border: 1px solid #dcdff0;
  color: #000;
  opacity: 0.9;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  border-radius: 0;
}

section.pricing-section h3 {
  font-size: 30px;
  color: #1a192b;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

section.pricing-section .tab-content ul li {
  font-size: 13px;
  color: #000;
  list-style-type: disc;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 16px;
}

.pricing-section h2 {
  color: #000;
  font-size: 29px;
  color: #1a192b;
  font-weight: bold;
}

section.pricing-section .tab-content ul {
  padding-left: 20px;
  display: block;
  margin-bottom: 20px;
}

section.pricing-section .tab-content p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

section.pricing-section .price span {
  margin: 30px 0;
  font-size: 24px;
  color: #000000;
  font-family: "Poppins", sans-serif;

  font-weight: 800;
  letter-spacing: 1px;
}

section.pricing-section a.quote-btn {
  display: inline-block;
  padding: 6px 30px;
  color: #fff;
  font-size: 14px;
  background: #002868;
  margin: 10px 0 0;
}

section.pricing-section .whitebox {
  background: #fff;
}

section.pricing-section .col-md-8 .col-md-6 {
  padding: 20px 30px;
}

p.txtgrey {
  color: #000 !important;
}

section.pricing-section .tab-content > .active {
  display: block;
  opacity: 1;
}

section.pricing-section ul.nav-tabs li button.active {
  background: #002868;
  color: #fff;
}
.top.py-2 {
  background-color: #002868;
}
@media (max-width: 767px) {
  .tab-content {
    margin-top: 45px;
  }
  .services-about ul li {
    display: inline-block;
    width: 95%;
    margin: 0 15px;
    text-align: center;
  }
  .abeout-ing {
    padding-top: 130px !important;
  }

  header.main-header {
    height: 60px;
  }
  header nav.navbar .navbar-brand .logo {
    margin-top: 15px;
  }
  header.main-header .navbar {
    justify-content: center;
  }
}
