/*scroll*/
::selection {
  background: #3b6fac;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #dedede;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-image: linear-gradient(#3b6fac, #3b6fac);
}

/*body*/
body {
  overflow-x: hidden;
  font-family: "Poppins";
  /* background-color: #000; */
}

h5 {
  font-family: "Poppins";
}

*:hover,
*:focus,
* {
  outline: none !important;
}

.overflw {
  overflow: hidden;
}

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover,
button:hover {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
}

/*padding*/
.pad {
  padding: 0;
}

.padL {
  padding-left: 0;
}

.padR {
  padding-right: 0;
}

.pad-top-80 {
  padding-top: 80px !important;
}

.pad-top {
  padding-top: 60px;
}

.pad-btm-30 {
  padding-bottom: 30px;
}

.pad-btm {
  padding-bottom: 50px;
}

.pad-btm-70 {
  padding-bottom: 70px;
}

.pad-tb {
  padding: 80px 0;
}

.pad-tbm {
  padding: 50px 0;
}

.padRt-60 {
  padding-right: 60px;
}

.pad-LR30 {
  padding: 0 30px;
}

.pad-80-240 {
  padding: 80px 0 240px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-35 {
  margin-top: 35px;
}

/*botton*/
.btn-a {
  background-color: #3b6fac;
  border: 2px solid #3b6fac;
  border-radius: 0;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.btn-a:hover {
  background: transparent;
  color: #fff;
}

.btn-submit {
  border-radius: 5px !important;
  text-transform: uppercase !important;
  font-size: 24px !important;
  letter-spacing: 0.2px;
}

.btn-submit:hover {
  background: transparent;
  color: #fff;
}

/*heading*/
.m1-h h5 {
  font-size: 60px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  position: relative;
  font-family: "Poppins";
}

.m1-h h5 span {
  font-weight: 400;
  font-size: 44px;
}

.m2-h h5 {
  font-size: 36px;
  text-transform: capitalize;
  color: #3b6fac;
  font-weight: 600;
  position: relative;
  font-family: "Poppins";
  text-transform: uppercase;
  padding-bottom: 20px;
}

.m2-h h5 span {
  border-bottom: 3px solid #3b6fac;
  text-transform: capitalize;
}

.m3-h h5 {
  margin-bottom: 35px;
  padding-bottom: 19px;
  color: #3b6fac;
  font-weight: 600;
  font-family: "Poppins";
  text-transform: uppercase;
  font-size: 18px;
}

.m4-h h5 {
  color: #3b6fac;
  font-family: "Poppins";
  text-transform: capitalize;
  font-size: 18px;
  margin: 25px 0 30px;
  font-weight: 600;
}

.m5-h h5 {
  font-weight: 600;
  color: #fff;
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Poppins";
}

.m5-h h5 span {
  border-bottom: 3px solid #fff;
}

/*paragrape*/
.p1 p {
  font-size: 14px;
  color: #fff;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.p2 p {
  font-size: 36px;
  color: #fff;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.p3 p {
  color: #fff;
  line-height: 32px;
  font-weight: 600;
  font-size: 18px;
  font-family: "Poppins";
}

.p4 p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  font-family: "Poppins";
  line-height: 22px;
}

/* Font size */
.font-16 {
  font-size: 16px !important;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 999999;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: #3b6fac;
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: #000;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/*top-header*/
/*header*/
header {
  padding: 20px 0;
  background: transparent;
  margin-bottom: -150px;
}

ul.menu {
  display: block;
}

ul.menu>li {
  display: inline-block;
  margin-right: 20px;
}

/* ul.menu>li:last-child{
  margin-right:0;
   margin: 0 0 0 30px;
} */
ul.menu>li>a {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
}

ul.menu>li.active a {
  border-bottom: 2px solid #fff;
}

ul.menu>li>a:hover {
  border-bottom: 2px solid #fff;
}

/*main-banner*/
.mainBanner {
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}

video#myVideo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 99;
}

.z-9 {
  z-index: 999;
  position: relative;
}

.mainBanner:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000059;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}

/*main-banner End*/
/* Social Icons */
.socialIcon li {
  display: inline-block;
}

.socialIcon li span {
  padding: 20px 10px 0px 0px;
  /* background-color: #fff; */
  /* border: 1px solid #fff; */
  color: #fff;
  /* border-radius: 50px; */
  /* width: 40px; */
  /* height: 40px; */
  text-align: center;
  /* margin: 0 5px 0 0; */
  font-size: 25px;
}

.socialIcon li span:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

/*footer start*/
footer {
  background-color: #0f0f0f;
  padding: 30px 0;
}

.flogo {
  text-align: right;
}

.copyright.text-center {
  font-size: 14px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: #000;
}

.copyright.text-center p {
  text-transform: capitalize;
}

.footerLinks a {
  color: #fff;
  font-size: 14px;
}

.contactDetail li {
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
}

.menu .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  display: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 210px;
}

.menu .dropdown:hover .submenu {
  display: block;
  z-index: 1;
}

.menu .submenu li {
  padding: 10px 10px;
}

.menu .submenu li a{
  color: #000 !important;
}

/*footer end*/
/*media-quries*/
@media (max-width: 1440px) {}

@media (max-width: 1200px) {
  .menu-Bar {
    display: block;
    top: 0px;
  }

  .menuWrap.open {
    display: flex;
    left: 0px;
  }

  .menuWrap {
    position: fixed;
    left: -210%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #3b6fac;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 9999;
    width: 100vw;
  }

  .menuWrap .menu li {
    display: block;
  }

  .menuWrap .menu li a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    margin-bottom: 30px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 25px;
  }

  .container {
    position: relative;
  }

  header .header-top {
    display: none;
  }

  header .main-header ul.menu>li {
    display: block;
    padding: 0px;
  }

  header .main-header ul.menu>li a {
    color: #fff;
    padding: 0px;
    text-align: center;
  }

  header .main-header ul.menu>li a:before {
    display: none;
  }
}

@media (max-width: 980px) {
  .btn-a {
    margin-bottom: 20px;
  }

  footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 824px) {}

@media (max-width: 767px) {
  header {
    padding: 0;
  }

  footer {
    text-align: center;
  }

  .m1-h h5 span {
    font-size: 26px;
  }

  .at-h {
    padding-bottom: 0;
  }

  .padRt-60 {
    padding-right: 0 !important;
  }

  .btn {
    border: 1px solid #000;
  }

  ul.menu>li:last-child {
    margin: 0;
  }

  a.logo img {
    width: 50%;
  }

  .m1-h h5 {
    font-size: 20px;
  }

  .mainBanner {
    height: 35vh;
  }

  .m2-h h5 {
    font-size: 20px;
  }

  .pad-tb {
    padding: 40px 0;
  }

  .p1 p {
    font-size: 16px;
    line-height: 20px;
  }

  .flogo img {
    width: 50%;
  }

  .flogo {
    text-align: left;
    margin-bottom: 20px;
  }

  .copyright.text-center {
    font-size: 16px;
  }

  footer {
    padding: 15px 0;
  }

  ul.menu>li.active a {
    border-bottom: 0;
  }

  ul.menu>li {
    margin-right: 0;
  }

  .menuWrap .menu li a {
    margin-bottom: 15px;
    font-size: 15px;
  }

  ul.menu>li>a {
    border-bottom: none;
  }

  ul.menu>li.active a {
    border-bottom: none;
  }

  ul.menu>li>a:hover {
    border-bottom: none;
  }

  .inner-ban .ban_hdn h5::after {
    width: 90px;
  }

  .inner-ban {
    height: 20vh;
  }

  .Tec-ctn h5::after {
    width: 270px;
  }
}

@media (min-width: 320px) and (max-width: 340px) {}

@media (min-width: 341px) and (max-width: 365px) {}

@media (min-width: 366px) and (max-width: 380px) {}

@media (min-width: 381px) and (max-width: 415px) {}

/* UL style */
.listStyle {
  list-style: disc;
  display: inline-block;
  list-style-position: inside;
}

.listStyle li {
  margin: 30px 0;
  font-family: "Poppins";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  /* position: relative;
   */
}

/* button-css

/* button-css-start */
.border-btn {
  position: relative;
  border: 1px solid #fff !important;
  border-radius: 500px;
  overflow: hidden;
  background-color: transparent;
  text-transform: uppercase;
  color: #fff;
  font-size: 13px !important;
  font-family: "Poppins";
  font-weight: 600;
  padding: 18px 35px !important;
  z-index: 9;
}

.border-btn:hover {
  cursor: pointer;
  border: 1px solid #182d46 !important;
}

.border-btn .round {
  border-radius: 50%;
  background-color: #182d46;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: -1;
  animation: scale-down 0.2s forwards;
}

.border-btn.animate .round {
  animation: scale-up 0.5s forwards;
}

@keyframes scale-up {
  to {
    transform: scale(600);
  }
}

@keyframes scale-down {
  from {
    transform: scale(600);
  }

  to {
    ransform: scale(0);
  }
}

a.border-btn.bg-dark {
  border: 1px solid #182d46;
  background: #182d46;
  color: white;
}

a.border-btn.bg-white {
  background: white;
  color: #182d46;
}

a.border-btn.bg-white:hover {
  color: white;
}

.dark-border {
  color: #182d46;
  border-color: #182d46 !important;
}

.dark-border:hover {
  color: #fff;
  border-color: #182d46 !important;
}

/* my-custom-css-start */
header {
  background-color: transparent;
}

.buttons {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  margin-bottom: 40px;
}

.brands-images {
  display: flex;
  gap: 35px;
  justify-content: flex-start;
  flex-direction: row;
}

.form-box {
  width: 80%;
  background: white;
  margin: 0 0 0 auto;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.form-box img {
  margin-bottom: 20px;
}

.form-box form label {
  width: 100%;
  margin-bottom: 20px;
}

.form-box form label input {
  width: 100%;
  border: 1px solid #8f8b8b;
  padding: 14px;
  font-family: "Poppins";
  border-radius: 10px;
}

.form-box form label textarea {
  width: 100%;
  border: 1px solid #8f8b8b;
  padding: 14px;
  font-family: "Poppins";
  border-radius: 10px;
  height: 100px;
}

.counter-section {
  color: #000;
  display: flex;
  justify-content: space-around;
  align-items: start;
  text-align: center;
}

.counter-box {
  font-size: 60px;
  font-weight: 700;
  margin: 13px 0;
}

.counter-section .label {
  font-size: 18px;
  font-weight: 400;
  width: 80%;
  margin: 0 auto;
  line-height: 18px;
}

section.driven {
  background: #fff9ef;
  padding: 90px 0;
  text-align: center;
}

section.counter {
  padding: 80px 0;
  text-align: center;
  background-color: #f5f5f5;
}

section.counter h2 {
  font-size: 30px;
  width: 80%;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 12px;
}

section.counter h2 span {
  color: #3b6fac;
}

section.counter p {
  font-size: 16px;
  color: #6b6b6b;
  font-weight: 400;
  margin: 0 auto 20px;
  width: 90%;
  line-height: 23px;
}

div#counterSection img {
  height: 40px;
}

/* .counter-section div {
  width: 100%;
} */

section.services-sec {
  background-image: url(../images/serve-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

section.services-sec .container-fluid {
  padding: 0px;
}

.serve-img img {
  width: 100%;
}

.serve-content {
  width: 70%;
  margin: 0 0 0 auto;
  padding-right: 60px;
  color: white;
}

.serve-content h2 {
  color: white;
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  margin-bottom: 10px;
}

.serve-content>p {
  color: white;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 20px;
}

.serve-detail {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 25px;
}

.serve-detail .serve-col {
  width: 47%;
}

.serve-detail .serve-col h6 {
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.serve-col p {
  font-size: 15px;
  line-height: 20px;
}

.manuscript {
  background-image: url(../images/map.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 130px 0;
  background-color: #f0f0f0;
}

.manuscript-text h2 {
  text-align: center;
  font-size: 30px;
  width: 50%;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}

.manuscript-text h2 span {
  color: #3b6fac;
  font-weight: 600;
}

.manuscript-text p {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  width: 70%;
  margin: 0 auto;
}

.manuscript-flow {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 25px;
}

.manuscript-flow .manuscript-col img {
  margin-bottom: 10px;
  height: 60px;
}

.manuscript-flow .manuscript-col h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.manuscript-flow .manuscript-col {
  width: 31%;
  position: relative;
}

.manuscript-flow .manuscript-col p {
  line-height: 23px;
}

.manuscript-flow .manuscript-col h2 {
  font-size: 100px;
  font-weight: 700;
  background: linear-gradient(to bottom, #3b6fac 0%, #ffffff 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 0;
  right: 30px;
}

section.ideas {
  background-image: url(../images/ideas-banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
  position: relative;
}

section.ideas .overlay {
  /* background: linear-gradient(to right, #072a52c7 , #fff); */
  /* background: #072a52c7; */
  background: linear-gradient(90deg,
      #003470c7 100%,
      #072a52c7 80%,
      #1d68bfc7 30%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ideas-content h2 {
  color: white;
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ideas-content p {
  color: white;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 20px;
}

section.portfolio {
  padding: 80px 0;
}

section.portfolio h2 {
  text-align: center;
  font-size: 30px;
  width: 70%;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}

section.portfolio h2 span {
  color: #3b6fac;
  font-weight: 600;
}

section.portfolio p {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  width: 70%;
  margin: 0 auto 40px;
}

section.reviews h2 {
  text-align: center;
  font-size: 30px;
  width: 50%;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

section.reviews h2 span {
  color: #3b6fac;
  font-weight: 600;
}

section.reviews p {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  width: 70%;
  margin: 0 auto 50px;
}

section.reviews {
  padding-bottom: 70px;
}

.reviews-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 40px;
}

.reviews-content p {
  text-align: left !important;
  width: 100% !important;
  margin: 0 0 30px !important;
}

.review-box {
  padding: 30px;
  box-shadow: 0px 8px 10px -2px #0000003b;
  border-radius: 20px;
  margin: 21px;
}

.review-box .image-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.review-box .image-box h6 {
  font-size: 20px;
  color: #3b6fac;
  font-weight: 600;
}

.review-box .quote {
  text-align: end;
  font-size: 110px;
  color: #3b6fac;
  margin: -40px 0;
}

.review-box p {
  width: 100% !important;
  text-align: left !important;
  margin: 0 auto 20px;
}

.designation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.designation span {
  font-size: 16px;
  color: #3b6fac;
  font-weight: 500;
}

section.frequently {
  padding: 70px 0;
  background-color: #f5f5f5;
}

.faqs-content h2 {
  text-align: center;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  line-height: 40px;
  margin-bottom: 20px;
}

.faqs-content h2 span {
  color: #3b6fac;
}

.faqs-content .accordion-item {
  border: none;
}

.faqs-content .accordion-item h5 button {
  background-color: #3b6fac;
  /* margin-bottom: 20px; */
  /* border: 1px solid #8e8c8c; */
  border: none;
  font-size: 16px;
  font-family: "Poppins";
  padding: 26px;
  /* border-radius: 10px !important; */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  text-align: left;
  color: #fff;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  box-shadow: none;
  /* border-color: #3b6fac !important; */
  /* border-width: 1px 1px 0 1px !important; */
  /* border-radius: 10px 10px 0px 0px !important; */
}

.accordion-button button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.accordion-header {
  margin-top: 20px;
}

.accordion-body {
  /* margin-bottom: 20px; */
  box-shadow: 0px 5px 6px 0px #bababa9c;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* margin-top: -20px; */
  padding: 0px 0px 20px 26px;
  font-size: 15px;
  line-height: 24px;
  background-color: #3b6fac;
  color: #fff;
}

.faqs-content>p {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  width: 70%;
  margin: 0 auto 50px;
}

footer {
  background-image: url(../images/footer-bg.png);
  padding: 140px 0 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .ftr-lt img {
  margin-bottom: 20px;
}

footer .ftr-lt p {
  font-family: "Poppins";
  font-weight: 300;
  margin-bottom: 25px;
  font-size: 15px;
}

.ftr-md2 h5 {
  color: white;
  margin: 40px 0px 17px;
  font-size: 20px;
}

.ftr-md2 ul.footerLinks {
  font-family: "Poppins";
  list-style-type: circle;
  padding-left: 20px;
  color: white;
}

.ftr-md2 ul.footerLinks li {
  margin-bottom: 13px;
}

.ftr-md2 ul.footerLinks li a {
  font-size: 14px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logos a {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
}

.footer-logos img {
  max-width: 125px;
  height: auto;
}

footer .copyright {
  margin-top: 35px;
  padding: 30px 0 0;
  border-top: 1px solid white;
  color: white;
  font-size: 15px;
}

footer .second-row {
  margin-top: 30px;
}

footer .second-row p {
  color: white;
  font-size: 15px;
  line-height: 22px;
}

footer .footerLinks.footer-contact-details li {
  padding-bottom: 15px;
}

footer .footerLinks.footer-contact-details li a {
  font-size: 16px;
}

/* //about-page-css */

section.banner-abt-contact {
  background: #182d46;
  padding: 80px 0 90px;
}

section.banner-abt-contact h1 {
  color: white;
  font-size: 79px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

section.sub-sec {
  padding: 80px 0 30px;
}

section.sub-sec h2 {
  color: black;
  font-size: 34px;
  font-weight: 700;
  line-height: 37px;
}

/* .banner-img img {
  margin-bottom: -90px;
} */
.img-sec {
  background: black;
  padding: 36px 0;
  text-align: center;
}

section.our-mission {
  padding: 80px 0 70px;
}

.consulation-col h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 37px;
}

.consulation-col {
  text-align: center;
}

.consulation-col p {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 20px;
}

.consulation-col a.abt-button {
  background: #182d46;
  color: white;
  padding: 16px 20px;
  display: block;
  width: 60%;
  margin: 0 auto;
  font-size: 14px;
}

.mission-col {
  background: #3b6fac;
  padding: 30px;
}

.mis-2-col {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.mis-2-col h2 {
  margin-bottom: 10px;
  font-size: 31px;
  color: #182d46;
  font-weight: 600;
}

.mis-2-col p {
  font-size: 14px;
  line-height: 20px;
  color: #182d46;
}

section.quote-sec {
  background-color: #f1f1f1;
  padding: 100px 0;
}

section.quote-sec h2 {
  font-size: 40px;
  color: black;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

section.quote-sec form input {
  width: 100%;
  background: white !important;
  border: 2px solid #a6a6a6;
  padding: 15px 20px;
  font-family: "Poppins";
  color: #000;
  margin-top: 0px !important;
  height: 60px;
}

section.quote-sec form .form-group {
  width: 95%;
  margin: 0 auto;
}

section.quote-sec form button.btn.bgbtn {
  background: #182d46;
  padding: 17px 40px;
  width: 26%;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  font-family: "Poppins";
  color: white;
}

section.top-notch {
  background-image: url(../images/struggling.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0;
  text-align: center;
}

section.top-notch h2 {
  color: white;

  font-size: 41px;
  width: 81%;
  line-height: 52px;
  margin: 0 auto;
  font-weight: 800;
  text-transform: uppercase;
}

section.faqshead {
  padding: 60px 0 0;
  padding: 60px 0 0;
}

section.faqshead h2 {
  color: black;

  font-size: 30px;
  width: 89%;
  line-height: 43px;
  margin: 0 auto 30px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.faqs-work .Accordion_item h3.title {
  margin-bottom: 12px;
  font-size: 17px;
}

.faqs-work .Accordion_item .inner_content {
  font-size: 15px;
  line-height: 23px;
  width: 81%;
}

.faqs-work .Accordion_item {
  background: black;
  margin-bottom: 20px;
  padding: 20px;
  color: white;
  text-align: left;
  cursor: pointer;
}

a.contact-button {
  background: #182d46;
  color: white;

  font-size: 21px;
  padding: 24px 10px;
  display: block;
  text-align: center;
  width: 43%;
  border-radius: 12px;
  margin: 0 auto 40px;
  text-transform: uppercase;
  font-weight: 600;
}

section.looking-banner {
  background-image: url(../images/looking-table.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
}

section.looking-banner h2 {
  color: white;

  font-size: 41px;
  width: 70%;
  line-height: 52px;
  margin: 0 auto 20px;
  font-weight: 800;
  text-transform: uppercase;
}

section.looking-banner p {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 25px;
}

section.looking-banner a.number {
  color: black;
  padding: 12px 23px;
  border: 2px solid white;
  background: white;
  margin: 0 7px;
  border-radius: 4px;
  font-size: 16px;
  justify-content: center;
}

section.looking-banner .buttons {
  margin-top: 40px !important;
  justify-content: center;
}

section.looking-banner a.number:hover {
  background: #a5a5a5;
  color: white;
}

section.contact-us {
  background: #f1f1f1;
  padding: 80px 30px;
}

section.contact-us h2 {
  color: black;

  font-size: 38px;
  line-height: 48px;
  margin: 0 auto;
  font-weight: 800;
  text-transform: uppercase;
}

section.contact-us p {
  font-size: 15px;
  margin: 10px 0 20px;
  line-height: 23px;
}

.forms {
  background: white;
  padding: 50px;
}

.forms h4 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: black;
}

.bg-blue {
  background: #182d46;
}

/* // contact-page */
section.getto-know {
  padding: 50px 0;
  text-align: center;
}

section.getto-know h4 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

section.getto-know h2 {
  font-size: 60px;
  color: #182d46;
  margin-bottom: 17px;
  font-weight: 800;
}

section.getto-know ul.contact li a .details {
  color: black;
}

section.getto-know p {
  font-size: 16px;
  margin-bottom: 30px;
}

section.getto-know ul.contact {
  display: flex;
  justify-content: center;
  gap: 40px;
}

section.getto-know ul.contact li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

section.getto-know ul.contact li a i {
  font-size: 40px;
}

section.getto-know ul.contact li {
  width: 23%;
  text-align: left;
}

section.getto-know ul.contact li a .details h6 {
  font-weight: 700;
  margin-bottom: 7px;
}

section.getto-know ul.contact li a .details p {
  font-size: 15px;
  margin: 0px;
}

section.form {
  padding: 80px 20px 0;
  background-image: url(../images/contact-bg2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-box h2 {
  font-size: 50px;
  color: #182d46;
  margin-bottom: 17px;
  font-weight: 600;
}

.form-box p {
  font-size: 15px;
  color: #182d46;
  margin-bottom: 20px;
}

/* ///cotnact page end */

.regit-copy p a {
  color: white;
}

section.inner-banner {
  height: 380px;
  background-image: url(../images/banner/banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  align-items: flex-end;
}

section.inner-banner h1 {
  font-size: 60px;
  color: white;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 0px;
  text-transform: capitalize;
}

section.terms-section {
  padding: 70px 0;
}

.banner-contents h1 {
  font-size: 46px;
  line-height: 50px;
  text-transform: uppercase;
  color: #182d46;
  font-weight: 700;
}

.banner-contents h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}

.banner-contents p {
  font-size: 14px;
  color: #000000;
  padding: 5px 0px;
  line-height: 22px;
}

.banner-contents p a {
  font-size: 14px;
  color: #000000;
  font-family: "Montserrat";
  padding: 5px 0px;
  line-height: 25px;
}

section.banner-text {
  height: 380px;
  background-image: url(../images/banner/banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  align-items: flex-end;
}

section.banner-text h1 {
  color: white;
  font-size: 79px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

/* popup-css */
.modal-dialog {
  max-width: 930px;
  margin: 100px auto;
}

.logo {
  text-align: center;
}

.popup-work h2 {
  text-align: center;
  font-size: 40px;
  color: #182d46;
  text-transform: uppercase;
  font-weight: 800;
  margin: 20px 0 15px;
}

.popup-work h2 span {
  color: #000000;
}

.popup-work p {
  text-align: center;
  margin-bottom: 13px;
  font-size: 19px;
  font-weight: 600;
  color: #182d46;
}

.modal-body {
  background-image: url(../images/popupbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
  position: relative;
}

img.img-pop {
  height: 369px;
  padding: 10px;
  border: 1px solid #182d46;
}

.modal-body button.close {
  background: #182d46;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  padding: 0px !important;
}

.mobile-version {
  display: none;
}

.process.process-01 {
  margin-top: -30px;
}

/* popup-css */

.popup-form-box {
  width: 100%;
  background: white;
  margin: 0 0 0 auto;
  padding: 0px;
  border-radius: 10px;
  text-align: center;
}

.popup-form-box img {
  margin-bottom: 20px;
}

.popup-form-box form label {
  width: 100%;
  margin-bottom: 10px;
}

.popup-form-box form label input {
  width: 100%;
  border: 1px solid #8f8b8b;
  padding: 14px;
  font-family: "Poppins";
  border-radius: 10px;
}

.popup-form-box form label textarea {
  width: 100%;
  border: 1px solid #8f8b8b;
  padding: 14px;
  font-family: "Poppins";
  border-radius: 10px;
  height: 100px;
}

.consulation-col .buttons {
  justify-content: center;
}

section.pricing {
  padding: 70px 0;
  background-color: #f0f0f0;
  text-align: center;
}

section.pricing h5 {
  color: #3b6fac;
  font-size: 15px;
}

section.pricing h2 {
  margin: 10px 0 20px;
  color: #292b2c;
  font-size: 35px;
  font-weight: 600;
}

section.pricing p.write {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  width: 70%;
  margin: 0 auto;
}

/* /// */

.pricing-table {
  padding: 0px 15px;
  border: 1px solid #3b6fac;
  border-radius: 20px;
  background: #3b6fac1f;
  margin-top: 40px;
}

.pricing-table .basic {
  border-bottom: 3px solid #3b6fac;
  padding: 30px 20px 0;
  height: 130px;
}

.pricing-table .basic h3 {
  color: #686868;
  font-size: 25px;
}

.pricing-table .col-lg-3.col-md-6 {
  padding: 0;
}

.pricing-table .basic h4 {
  color: #3b6fac;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-table .basic p {
  font-size: 14px;
  color: #686868;
}

/* .headings {
  border-right: 3px solid #3b6fac;
  height: 87.2%;
  padding-top: 15px;
} */

ul.package-detail {
  padding: 20px 35px;
  text-align: left;
  border-left: 1px solid #3b6fac;
}

ul.package-detail li {
  color: #686868;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 18px;
  position: relative;
  padding-left: 10px;
}

ul.package-detail li:before {
  content: url(../images/icon.png);
  position: absolute;
  left: -20px;
  top: 4px;
}

h6.editing {
  background: #3b6fac;
  padding: 13px;
  font-size: 17px;
  color: white;
  font-weight: 300;
}

.first-pack {
  height: 360px;
}

.second {
  border-top: 1px solid #3b6fac;
  height: 290px;
}

.right-border {
  border-right: 1px solid #3b6fac;
  margin-right: -1px;
}

h6.publishing {
  background: #3b6fac;
  padding: 13px;
  font-size: 17px;
  color: white;
  font-weight: 300;
  margin-top: 132px;
}

h6.launch {
  background: #3b6fac;
  padding: 13px;
  font-size: 17px;
  color: white;
  font-weight: 300;
  margin-top: 146px;
}

h6.value {
  background: #3b6fac;
  padding: 13px;
  font-size: 17px;
  color: white;
  font-weight: 300;
  margin-top: 128px;
}

.pricing del {
  color: #686868;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
}

.pricing h5.price {
  font-size: 30px;
  color: #686868;
  font-weight: 500;
  margin: 14px 0;
}

.pricing h5.price sub {
  font-size: 13px;
}

.pricing {
  padding: 0 0 50px;
  border-left: 1px solid #3b6fac;
  text-align: center;
}

.pack-details-third {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 87.1%;
}

.scroll-pack {
  height: 190px;
  overflow-y: scroll;
}

.scroll-pack::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.scroll-pack::-webkit-scrollbar-button:start:decrement,
.scroll-pack::-webkit-scrollbar-button:end:increment {
  display: none;
}

.scroll-pack::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #dedede;
}

.scroll-pack::-webkit-scrollbar-thumb:vertical {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-image: linear-gradient(#3b70ac67, #3b70ac67);
}

.forth {
  border-top: 1px solid #3b6fac;
  height: 150px;
}

.third {
  border-top: 1px solid #3b6fac;
  height: 200px;
}

.third {
  border-top: 1px solid #3b6fac;
  height: 170px;
}

/* AQS */

.home-hero-sec {
  background-image: url(../images/banner/banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0 0px 0px;
}

.brands-images img {
  width: 140px;
}

.home-hero-sec .banner-content h1 {
  font-size: 54px;
  color: white;
  font-weight: 400;
  line-height: 65px;
  margin-bottom: 20px;
  letter-spacing: 12px;
}

.home-hero-sec .banner-content h1 b {
  font-weight: 700;
  color: #000;
  letter-spacing: 9px;
}

.home-hero-sec .banner-content h1 span {
  color: #000;
  letter-spacing: 40px;
  font-size: 60px;
  line-height: 50px;
}

.home-hero-sec .banner-content h5 {
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.home-hero-sec .banner-content p {
  color: white;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 30px;
}

.hero-logo-sec {
  /* background-color: #11184E; */
  padding: 80px 0px 30px 0px;
}

.hero-logo-sec .hero-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
}

.form-box h1 {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 0;
  line-height: 35px;
}

.hero-section .hero-heading {
  margin-top: 40px;
  padding: 80px 0px !important;
}

.hero-section .hero-heading h2 {
  color: #000;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bolder;
  text-align: center;
}

.elevate-section {
  padding: 70px 0px;
}

.elevate-section .brands-logo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-left: 1px solid #eb7966;
}

.elevate-section .brand-sec div p {
  font-size: 20px;
  line-height: 27px;
  color: #eb7966;
  font-weight: 400;
}

.best-selling-banner {
  padding: 100px 0px;
}

.best-selling-banner .best-selling-text-wrap {
  text-align: center;
  padding-bottom: 70px;
}

.best-selling-banner .best-selling-wrapper {
  background: #426284;
  text-align: center;
  border-radius: 10px;
  padding-bottom: 5px;
  margin-top: 50px;
}

.best-selling-banner .best-selling-wrapper img {
  margin-top: -50px;
}

.best-selling-banner .best-selling-text-wrap h1 {
  font-size: 52px;
  /* text-transform: uppercase; */
  line-height: 55px;
  color: #000;
  width: 80%;
  font-weight: bolder;
}

.best-selling-banner .best-selling-text-wrap p {
  font-size: 17px;
  line-height: 25px;
  color: #000;
  margin-top: 25px;
  width: 80%;
}

.best-selling-banner .best-selling-wrapper h3 {
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 20px;
}

.books-group-section {
  padding: 60px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.book-group-main-text-wrapper {
  text-align: center;
}

.book-group-main-text-wrapper h2 {
  font-size: 40px;
  font-weight: 600;
  /* text-transform: uppercase; */
  line-height: 55px;
}

.book-group-main-text-wrapper span {
  color: #426284;
}

.book-group-main-text-wrapper p {
  font-size: 17px;
  line-height: 28px;
  padding: 25px 0px;
}

.book-group-text-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.book-group-text-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.book-group-text-wrapper p {
  font-size: 15px;
  line-height: 22px;
  padding: 30px 0px;
}

.partners-section {
  background-color: #f5f5f5;
  padding-bottom: 50px;
  text-align: center;
}

.partners-section .brands-logo {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.partners-section h2 {
  font-size: 30px;
  font-weight: 700;
}

.partners-section span {
  color: #3b6fac;
}

.partners-section p {
  font-size: 16px;
  padding: 30px 0px;
  line-height: 25px;
}

.contact-banner {
  padding: 90px 0px;
  background-image: url(../images/publish-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-banner .contact-text-wrap {
  padding-bottom: 30px;
}

.contact-banner .contact-text-wrap h1 {
  font-size: 43px;
  text-transform: uppercase;
  line-height: 55px;
  width: 80%;
  font-weight: 700;
}

.contact-banner .contact-form {
  padding: 45px;
  border-radius: 10px;
  background: #fff;
  padding: 50px;
  position: relative;
}

.contact-banner .contact-form h3 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #182d46;
  padding-bottom: 20px;
}

.contact-banner .contact-form input[type="text"],
textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #182d46;
  padding: 20px 0px;
}

.contact-banner .contact-form input:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #182d46;
}

.contact-banner .contact-form input::placeholder,
.contact-banner .contact-form textarea::placeholder {
  color: #182d46;
}

.contact-banner .contact-form .contact-btn-pro {
  color: #fff;
  background-color: #3b6fac;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: bold;
  border: 1px solid #3b6fac;
  text-transform: capitalize;
  margin-top: 20px;
}

.contact-info-text h3 {
  font-size: 25px;
  text-align: center;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.contact-info-text span {
  color: #fff;
}

.contact-info-text ul li {
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  padding-bottom: 30px;
  list-style: none;
  font-weight: 500;
  line-height: 24px;
}

.pricing-section {
  background-image: url(../images/pricing-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0px;
  position: relative;
}

.pricing-section .overlay {
  /* background: linear-gradient(270deg, #90c0f7c7 100%, #90c0f7c7 80%, #1d68bfc7 30%); */
  /* background: linear-gradient(270deg, #356193c7 100%, #ffffffc7 80%, #cbcbcbc7 30%); */
  background: #356193c7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pricing-section .pricing-content {
  text-align: center;
}

.pricing-section .pricing-content h5 {
  color: #fff;
  font-size: 25px;
  font-weight: normal;
  padding: 10px 0px;
}

.pricing-section .pricing-content h2 {
  color: #000;
  font-size: 50px;
  font-weight: 700;
}

.pricing-section .pricing-content p {
  color: #000;
  font-size: 16px;
  padding: 20px 0px 40px 0px;
  line-height: 25px;
  width: 70%;
  margin: 0 auto;
}

.pricing-section .pricing-box {
  /* background: linear-gradient(to bottom, #215189 0%, rgba(255, 255, 255, 0.1) 100%, #215189 100%); */
  background: #224d8f;
  color: #fff;
  padding: 30px 0px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: 1px solid #fff;
}

.pricing-section .pricing-box:hover {
  transform: translateY(-10px);
}

.pricing-text-wrap-main {
  height: 500px;
  overflow-y: auto;
}

.pricing-section .pricing-package-text-wrapper {
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}

.pricing-section .pricing-box.featured {
  transform: scale(1.1);
  background: #224d8f;
  z-index: 2;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.pricing-section .pricing-box .featured-label {
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px;
  position: absolute;
  top: -37px;
  left: 51%;
  transform: translateX(-50%);
}

.pricing-section .pricing-package-text-wrapper h2 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-section .pricing-package-text-wrapper p {
  font-size: 14px;
  width: 70%;
  margin: 0 auto;
  line-height: 23px;
}

.pricing-section .pricing-package-wrapper h6 {
  color: #fff;
  background-color: #000;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0px;
  margin: 0px;
}

.pricing-section ul.pricing-package-detail {
  padding: 20px 40px;
  text-align: left;
  border-left: 1px solid #3b6fac;
}

.pricing-section ul.pricing-package-detail li {
  color: #fff;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 18px;
  position: relative;
  padding-left: 10px;
}

.pricing-section ul.pricing-package-detail li:before {
  content: url(../images/icon.png);
  position: absolute;
  left: -20px;
  top: 4px;
}

.pricing-section .pricing-package-button {
  text-align: center;
  padding-top: 20px;
}

.main-swiperslider .textSwiper .swiper-wrapper .swiper-slide .buttons {
  margin-bottom: 0px;
}

.main-swiperslider .textSwiper .swiper-wrapper .swiper-slide .buttons a {
  margin-bottom: 0px;
}

/* illustration syling */

.illustration-sec {
  padding: 120px 0px;
  background-image: url(../images/illustration.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.illustration-content h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  color: black;
  margin-bottom: 60px;
}

.illustration-content h2 span {
  font-size: 40px;
  font-weight: 700;
}

/* .swiper {
  width: 440px;
  height: 640px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: red;
} */

.illustration-sec .container-fluid {
  padding: 0px;
}

.main-swiperslider {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}

.main-swiperslider .textSwiper {
  width: 60%;
  margin: 0;
  height: 450px;
  background: #2f598a;
  color: white;
  border-radius: 0;
  padding: 50px;
}

.main-swiperslider .textSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-swiperslider .imageSwiper {
  margin: 0px;
}

.textSwiper h3 {
  margin: 0px 0px 15px;
  font-size: 33px;
  font-weight: bold;
}

.stars {
  color: gold;
  margin-bottom: 15px;
  font-size: 27px;
}

.textSwiper p {
  font-size: 15px;
  margin-bottom: 35px;
  width: 80%;
  line-height: 24px;
}

/* RIGHT IMAGE SLIDER */
.imageSwiper {
  width: 400px;
  height: 580px;
  margin-left: -60px !important;
  filter: drop-shadow(-25px 4px 20px #4141418e);
}

.imageSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 45px;
  height: 45px;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 23px !important;
}

.swiper-3d .swiper-slide-shadow {
  background: transparent;
}

/* /// */

section.serving-future {
  background-image: url(../images/future-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}

.serving-content {
  text-align: center;
  margin-bottom: 30px;
}

.serving-content h2 {
  color: white;
  font-weight: 600;
  font-size: 40px;
  width: 50%;
  margin: 0 auto 20px;
}

.serving-content p {
  font-size: 15px;
  width: 50%;
  line-height: 19px;
  margin: 0 auto;
}

.future-main-box {
  display: flex;
  text-align: center;
  gap: 25px;
  margin-top: 80px;
}

.future-main-box .future-box {
  background: white;
  padding: 40px 20px;
  border-radius: 30px;
  position: relative;
}

.future-main-box .future-box h3.numbering {
  font-size: 50px;
  font-weight: 900;
  font-family: cursive;
  position: absolute;
  top: -55px;
  left: 0;
  margin: 0 auto;
  right: 0;
}

.future-main-box .future-box h4 {
  margin: 12px 0 9px;
  font-weight: 700;
  font-size: 18px;
}

.future-main-box .future-box p {
  font-size: 14px;
  line-height: 21px;
}

section.serving-future .buttons {
  margin-top: 40px;
  justify-content: center;
}

section.manuscript-sec {
  padding: 100px 0;
  background-image: url(../images/manuscript-sec.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.manuscript-content {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

.manuscript-content h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.manuscript-content h2 span {
  font-weight: 700;
  font-size: 50px;
}

.manuscript-content p {
  font-size: 16px;
  line-height: 25px;
  width: 65%;
  margin: 0 auto;
}

.manuscript-box {
  margin: 0 -70px;
}

section.manuscript-sec .row .col-md-2 {
  position: relative;
}

.manuscript-box-content.box-01-content {
  position: absolute;
  top: 40px;
  width: 100%;
  left: 0;
  right: 0;
}

.manuscript-box-content img {
  width: 40px;
  margin-bottom: 5px;
}

.manuscript-box-content h5 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 13px;
}

.manuscript-box-content p {
  font-size: 13px;
}

.manuscript-box-content {
  text-align: center;
}

.manuscript-box.box-02 {
  margin: 200px -80px 0px -140px;
}

.manuscript-box-content.box-02-content {
  position: absolute;
  bottom: 95px;
  width: 100%;
  left: 13px;
  right: 0;
  margin: 0 auto;
}

.manuscript-box.box-03 {
  margin: 0px -110px 0px -126px;
}

.manuscript-box-content.box-03-content {
  position: absolute;
  top: 40px;
  width: 100%;
  left: 40px;
  right: 0;
}

.manuscript-box.box-04 {
  margin: 200px -140px 0px -103px;
}

.manuscript-box-content.box-04-content {
  position: absolute;
  bottom: 80px;
  width: 100%;
  left: 64px;
  right: 0px;
}

.manuscript-box.box-05 {
  margin: -9px -160px 0px -77px;
}

.manuscript-box-content.box-05-content {
  position: absolute;
  top: 40px;
  width: 100%;
  left: 85px;
  right: 0;
}

.manuscript-box.box-06 {
  margin: 200px -180px 0px -50px;
}

.manuscript-box-content.box-06-content {
  position: absolute;
  bottom: 90px;
  width: 100%;
  left: 110px;
  right: 0px;
}

body.innerpage-class header {
  background: #84a3c6;
  margin-bottom: 0;
}

.abt-hero-logo-sec {
  background-color: #000000;
  padding: 0px 0px 0px 0px;
}

.abt-hero-logo-sec .hero-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
}

section.abt-hero {
  background-image: url(../images/abt-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0 90px 0px;
}

section.abt-hero h1 {
  font-size: 75px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

section.abt-hero p {
  margin-bottom: 20px;
  color: white;
}

section.abt-hero p {
  margin-bottom: 20px;
  color: white;
  font-size: 15px;
  line-height: 23px;
}

section.contact-hero {
  background-image: url(../images/contact-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0 90px 0px;
}

section.contact-hero h1 {
  font-size: 75px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

section.contact-hero p {
  margin-bottom: 20px;
  color: white;
}

section.contact-hero p {
  margin-bottom: 20px;
  color: white;
  font-size: 15px;
  line-height: 23px;
}

.review-box .image-box img {
  display: none;
}

/* responsive-css-start */

@media only screen and (max-width: 1024px) {
  .menu-Bar {
    right: 175px;
  }

  .home-hero-sec .banner-content h1 {
    font-size: 44px;
    letter-spacing: 5px;
  }

  .home-hero-sec .banner-content h1 span {
    letter-spacing: 20px;
    font-size: 40px;
  }

  .home-hero-sec .banner-content h5 {
    font-size: 23px;
  }

  .hero-section .hero-heading {
    margin-top: 0px;
    padding: 50px 0px !important;
  }

  .hero-section .hero-heading h2 {
    font-size: 40px;
  }

  .banner-contents h3 {
    font-size: 20px;
    line-height: 27px;
  }

  .buttons {
    flex-wrap: wrap;
  }

  .elevate-section .brands-logo {
    flex-wrap: wrap;
    gap: 20px;
  }

  .counter-box {
    font-size: 40px;
    margin: 6px 0;
  }

  section.counter {
    padding: 40px 0;
  }

  section.banner {
    padding: 170px 0 100px;
  }

  .serving-content h2 {
    font-size: 30px;
    width: 90%;
    margin: 0 auto 20px;
  }

  .serving-content p {
    width: 60%;
  }

  .best-selling-banner {
    padding: 60px 0px;
  }

  .banner-content h1 {
    font-size: 48px;
    line-height: 50px;
  }

  .banner-content h5 {
    font-size: 25px;
  }

  .counter-section .label {
    font-size: 14px;
    width: 100%;
  }

  .serve-content {
    width: 100%;
    padding: 30px 20px;
  }

  section.pricing p.write {
    width: 80%;
  }

  .manuscript {
    padding: 50px 0;
  }

  .consulation-col h2 {
    font-size: 26px;
    line-height: 29px;
  }

  .consulation-col p {
    font-size: 14px;
    line-height: 21px;
  }

  .form-box {
    width: 100%;
    padding: 15px !important;
  }

  .forms h4 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  section.contact-us h2 {
    font-size: 33px;
    line-height: 38px;
  }

  .best-selling-banner .best-selling-text-wrap h1 {
    font-size: 36px;
    line-height: 35px;
  }

  .pricing-section .pricing-content h2 {
    font-size: 33px;
  }

  .manuscript-content h2 span {
    font-weight: 700;
    font-size: 29px;
    margin-top: 12px !important;
    display: block;
  }

  .manuscript-content h2 {
    font-size: 27px;
  }

  section.manuscript-sec {
    padding: 60px 0;
  }

  .book-group-text-wrapper h2 {
    font-size: 23px;
    line-height: 35px;
  }

  .contact-banner .contact-text-wrap h1 {
    font-size: 33px;
    line-height: 45px;
  }

  .contact-info-text h3 {
    font-size: 19px;
    padding-bottom: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .col-lg-2.col-md-4.text-right a.btn.btn-a.border-btn.animate {
    margin: 0px !important;
  }

  .menu-Bar {
    right: 215px;
  }

  section.banner {
    height: auto;
  }

  .form-box {
    margin: 0px;
  }

  .first-col {
    display: none;
  }

  .pricing {
    border-bottom: 1px solid #3b6fac;
  }

  .pack-details-third {
    height: 81.3%;
  }

  .pack-details-third .pricing {
    border-radius: 0px 0 0 20px;
  }

  .manuscript-flow .manuscript-col {
    width: 48%;
  }

  .manuscript-flow {
    justify-content: center;
  }

  section.frequently {
    padding: 60px 0;
  }

  .copyright {
    text-align: center;
  }

  .regit-copy {
    text-align: center;
    margin-top: 10px;
  }

  section.reviews h2 {
    font-size: 28px;
    width: 60%;
    line-height: 33px;
  }

  section.getto-know h2 {
    font-size: 40px;
  }

  section.getto-know ul.contact li {
    width: 43%;
    text-align: left;
  }

  .hero-logo-sec .hero-logos img {
    width: 150px;
  }

  .hero-section .hero-heading h2 {
    font-size: 35px;
  }

  section.serving-future {
    padding: 60px 0px;
  }

  .future-main-box {
    gap: 65px;
    flex-wrap: wrap;
  }

  .future-main-box .future-box {
    width: 45%;
  }

  .best-selling-banner .best-selling-text-wrap {
    padding-bottom: 30px;
  }

  .pricing-section .pricing-content h2 {
    font-size: 26px;
  }

  .pricing-section .pricing-content p {
    padding: 20px 0px 40px 0px;
    width: 100%;
  }

  .manuscript-content p {
    font-size: 15px;
    width: 100%;
  }

  .illustration-content h2 span {
    font-size: 30px;
    font-weight: 700;
  }

  .imageSwiper {
    width: 310px;
    height: 440px;
    margin-left: -50px !important;
    filter: drop-shadow(-25px 4px 20px #4141418e);
  }

  .main-swiperslider .textSwiper {
    width: 66%;
    height: 450px;
    padding: 30px;
  }

  .textSwiper p {
    font-size: 14px;
    margin-bottom: 23px;
    line-height: 22px;
  }

  .book-group-main-text-wrapper h2 {
    font-size: 32px;
    line-height: 41px;
  }

  .book-group-text-wrapper h2 {
    font-size: 23px;
    line-height: 27px;
  }

  section.reviews p {
    width: 100%;
  }

  .faqs-content>p {
    width: 100%;
  }

  .contact-info-text h3 {
    font-size: 19px;
    padding-bottom: 14px;
    margin-top: 40px;
  }

  .manuscript-box-content {
    color: white;
  }

  .manuscript-box img {
    display: none;
  }

  .manuscript-box-content.box-01-content, .box-02-content, .box-03-content, .box-04-content, .box-05-content, .box-06-content {
    position: static !important;
    margin-bottom: 20px !important;
  }

  .manuscript-box-content img {
    filter: invert(1) brightness(100);
  }

  .manuscript-box.box-02, .manuscript-box.box-03, .manuscript-box.box-04, .manuscript-box.box-05, .manuscript-box.box-06 {
    margin: 0px 0px 0px 0px !important;
  }
}

@media only screen and (max-width: 480px) {
  a.logo img {
    width: 90%;
  }

  .mbile-removwe {
    display: none;
  }

  .menu-Bar {
    right: 30px;
  }

  .banner-content h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .banner-content h5 {
    font-size: 20px;
  }

  .form-box {
    width: 100%;
  }

  section.counter h2 {
    font-size: 25px;
    width: 100%;
    line-height: 30px;
  }

  section.counter p {
    width: 100%;
  }

  .counter-section {
    flex-wrap: wrap;
    gap: 20px;
  }

  .counter-section div {
    width: 47%;
  }

  .counter-section div div {
    width: 100%;
  }

  .serve-detail .serve-col {
    width: 46%;
  }

  section.pricing p.write {
    width: 100%;
  }

  .manuscript-text h2 {
    font-size: 25px;
    width: 100%;
    line-height: 30px;
  }

  .manuscript-text p {
    width: 100%;
  }

  .manuscript-flow .manuscript-col {
    width: 100%;
  }

  section.portfolio {
    padding: 50px 0;
  }

  section.portfolio h2 {
    font-size: 25px;
    width: 100%;
    line-height: 30px;
  }

  section.portfolio p {
    width: 100%;
  }

  .review-box {
    padding: 16px;
  }

  .faqs-content h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .ftr-md2 ul.footerLinks li::marker {
    font-size: 0px;
  }

  footer .copyright {
    margin-top: 20px;
  }

  .border-btn {
    padding: 15px 20px !important;
  }

  .designation span {
    font-size: 13px;
  }

  .slick-slide img {
    width: 90px;
  }

  .faqs-content .accordion-item h5 button {
    font-size: 14px;
    padding: 20px;
  }

  section.looking-banner h2 {
    font-size: 33px;
    line-height: 42px;
  }

  section.looking-banner .buttons {
    margin-top: 40px !important;
    display: contents;
  }

  footer {
    padding: 70px 0 20px;
  }

  img.img-pop {
    display: none;
  }

  .modal-body {
    padding: 40px;
  }

  .popup-work h2 {
    font-size: 30px;
  }

  section.getto-know ul.contact {
    flex-direction: column;
  }

  section.getto-know ul.contact li {
    width: 100%;
    text-align: left;
  }

  .form-box h2 {
    font-size: 30px;
  }

  .hero-logo-sec .hero-logos {
    gap: 0px;
  }

  .hero-logo-sec {
    padding: 10px 0px 20px 0px;
  }

  .hero-logo-sec .hero-logos img {
    width: 40%;
  }

  .home-hero-sec .banner-content h1 {
    font-size: 32px;
    letter-spacing: 1px;
    line-height: 50px;
  }

  .home-hero-sec .banner-content h1 span {
    letter-spacing: 11px;
    font-size: 30px;
  }

  .home-hero-sec .banner-content h5 {
    font-size: 19px;
  }

  .home-hero-sec .banner-content p {
    font-size: 15px;
    line-height: 25px;
  }

  .hero-logo-sec .hero-logos {
    flex-wrap: wrap;
  }

  .hero-section .hero-heading h2 {
    font-size: 24px;
  }

  .elevate-section .brands-logo img {
    width: 100px;
  }

  .future-main-box .future-box {
    padding: 30px 20px;
    width: 100%;
  }

  .best-selling-banner .best-selling-text-wrap h1 {
    font-size: 25px;
    line-height: 25px;
  }

  .best-selling-banner .best-selling-text-wrap p {
    font-size: 15px;
    line-height: 21px;
  }

  .manuscript-content h2 {
    font-size: 21px;
  }

  .manuscript-content p {
    font-size: 15px;
  }

  .main-swiperslider {
    display: flex;
    flex-direction: column-reverse;
  }

  .imageSwiper {
    width: 260px;
    height: 380px;
    margin-left: 0px !important;
  }

  .main-swiperslider .textSwiper {
    width: 100%;
    margin: 0;
    height: 420px;
    border-radius: 0;
    padding: 30px;
  }

  .main-swiperslider .textSwiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }

  .contact-banner .contact-text-wrap h1 {
    font-size: 24px;
    line-height: 35px;
  }

  .manuscript-box-content p {
    font-size: 14px;
    line-height: 21px;
  }
}