html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: "Google Sans", sans-serif;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  transition: 0.5s;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.inner-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.no-scroll {
  overflow: hidden;
}

.btn-primary-link {
  height: 42px;
  padding: 0 20px;
  background-color: #F4B335;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #000;
  font-weight: 500;
}
.btn-primary-link:hover {
  background-color: #662b81;
  color: #fff !important;
}

.btn-secondary-link {
  height: 42px;
  padding: 0 20px;
  background-color: #662b81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #000;
  font-weight: 500;
  color: #fff;
}
.btn-secondary-link i {
  margin-left: 8px;
}
.btn-secondary-link:hover {
  background-color: #F4B335;
  color: #000 !important;
}
.btn-secondary-link.secondary-btn {
  outline: none;
  border: none;
  transition: 0.5s;
}

textarea {
  resize: none;
}
textarea.form-control-no-border {
  height: 200px;
}

.form-control-no-border {
  width: 100%;
  border: none;
  outline: none;
  height: 50px;
  padding: 12px 0;
  border-bottom: 1px solid #d2e3f9;
  margin-top: 10px;
}

.form-group-row {
  display: flex;
  gap: 20px;
}
.form-group-row .form-group-col {
  width: 50%;
}
.form-group-row .form-group-col .from-control {
  width: 100%;
}

.form-control {
  height: 55px;
  padding: 0 20px;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

textarea.form-control {
  height: 120px;
  padding-top: 12px;
}

.header-top {
  height: 44px;
  background-color: #662b81;
}
.header-top .header-top-inner {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top-inner .header-top-left ul {
  display: flex;
  align-items: center;
}
.header-top .header-top-inner .header-top-left ul li {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}
.header-top .header-top-inner .header-top-left ul li i {
  margin-right: 5px;
  color: #F4B335;
}
.header-top .header-top-inner .header-top-left ul li:first-child {
  margin-right: 15px;
}

header {
  height: 80px;
  background-color: #fff;
}
header .header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-inner .header-left .logo-img {
  height: 60px;
}
header .header-inner .header-right .header-navigation-bar {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .header-inner .header-right .header-navigation-bar > li {
  position: relative;
}
header .header-inner .header-right .header-navigation-bar > li > a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  height: 75px;
  display: flex;
  align-items: center;
}
header .header-inner .header-right .header-navigation-bar > li > a .fa-angle-down {
  margin-left: 10px;
}
header .header-inner .header-right .header-navigation-bar > li > a:hover {
  color: #F4B335;
}
header .header-inner .header-right .header-navigation-bar > li > a:hover + .sub-menu {
  display: block;
}
header .header-inner .header-right .header-navigation-bar > li:last-child a {
  height: 42px;
}

.header-navigation-bar.active .slide-logo {
  display: block !important;
}

.sub-menu {
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 99;
  background-color: white;
  min-width: 220px;
  display: none;
}
.sub-menu:hover {
  display: block;
}
.sub-menu li a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 45px;
  border-bottom: 1px solid gray;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  line-height: 20px;
}
.sub-menu li a:hover {
  background-color: #662b81;
  color: white;
}
.sub-menu li:last-child a {
  border: none;
}

.menu-bar {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  display: none;
}
.menu-bar i {
  font-size: 20px;
  color: black;
}

.social-links {
  display: flex;
  gap: 7px;
}
.social-links a {
  height: 26px;
  width: 26px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #662b81;
}
.social-links a:hover {
  background-color: #F4B335;
}

.overlay-header {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 99;
}
.overlay-header.active {
  display: block;
}

.close-btn {
  position: fixed;
  top: 16px;
  right: 14px;
  z-index: 999;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  background: black;
  outline: none;
  border: none;
  display: none;
}
.close-btn i {
  color: white;
  font-size: 22px;
}
.close-btn.active {
  display: block;
}

@media (max-width: 992px) {
  .menu-bar {
    display: block;
  }
  header .header-inner .header-right .header-navigation-bar.active {
    display: block;
    position: fixed;
    background: black;
    width: 280px;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    padding-top: 30px;
    overflow: auto;
  }
  .sub-menu {
    position: static;
  }
  header .header-inner .header-right .header-navigation-bar {
    display: none;
    z-index: 999;
  }
  header .header-inner .header-right .header-navigation-bar > li > a {
    color: white;
    height: 45px;
    font-size: 15px;
    padding: 0 20px;
  }
  header .header-inner .header-right .header-navigation-bar > li:last-child a {
    margin: 20px 20px 0;
  }
}
@media (max-width: 767px) {
  .header-top {
    height: auto;
  }
  .header-top .header-top-inner {
    height: auto;
    padding: 15px 0;
  }
  .header-top .header-top-inner .header-top-left ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-top .header-top-inner .header-top-left ul li:first-child {
    margin-bottom: 8px;
  }
  header .header-inner .header-left .logo-img {
    height: 45px;
  }
  .sub-menu {
    background-color: transparent;
  }
  .sub-menu li a {
    color: white;
  }
}
.banner {
  position: relative;
  margin-bottom: 80px;
}
.banner video {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.banner .banner-overlay {
  background-color: transparent;
  background-image: linear-gradient(135deg, rgba(102, 43, 129, 0.7019607843) 0%, rgba(8, 8, 8, 0.1019607843) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 3px;
  left: 0;
}
.banner .banner-text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner .banner-text-wrapper .banner-heading {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  line-height: 75px;
  max-width: 800px;
  margin: 0 auto 35px;
}
.banner .banner-text-wrapper .banner-text {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  max-width: 750px;
  margin: 0 auto 35px;
}

.our-service-wrapper {
  margin-bottom: 10px;
}
.our-service-wrapper .our-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.our-service-wrapper .our-service-top .left-side {
  width: 50%;
}
.our-service-wrapper .our-service-top .left-side h2 {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  line-height: 65px;
}
.our-service-wrapper .our-service-top .right-side {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.our-service-wrapper .our-service-top .right-side p {
  color: #666666;
  line-height: 34px;
  max-width: 450px;
}
.our-service-wrapper .our-service-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.our-service-wrapper .our-service-inner .our-service-box-col {
  width: calc(33.33% - 15px);
  margin-bottom: 70px;
}
.our-service-wrapper .our-service-inner .our-service-img {
  margin-bottom: 25px;
}
.our-service-wrapper .our-service-inner .our-service-img img {
  height: auto;
  width: 150px;
}
.our-service-wrapper .our-service-inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.our-service-wrapper .our-service-inner p {
  line-height: 34px;
  color: #666666;
  margin-bottom: 20px;
}

.service-left {
  margin-bottom: 80px;
}
.service-left .service-left-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.service-left .service-left-inner .left-side {
  width: 50%;
}
.service-left .service-left-inner .left-side img {
  width: 100%;
}
.service-left .service-left-inner .right-side {
  width: 50%;
}
.service-left .service-left-inner .right-side .right-side-heading {
  font-size: 45px;
  font-weight: 700;
  line-height: 65px;
  color: #000;
  margin-bottom: 35px;
}
.service-left .service-left-inner .right-side .right-side-text {
  line-height: 34px;
  margin-bottom: 35px;
}
.service-left .service-left-inner .right-side .divide-design {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 45px;
}
.service-left .service-left-inner .right-side .divide-design .seprator {
  height: 100px;
  width: 1px;
  background-color: #ccd6fa;
}
.service-left .service-left-inner .right-side .divide-design .content-box h3 {
  font-size: 60px;
  color: #662b81;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-left .service-left-inner .right-side .divide-design .content-box p {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.service-left .service-left-inner .right-side .read-more-btn {
  height: 55px;
  min-width: 180px;
}

.lacture-wrapper {
  margin-bottom: 80px;
}
.lacture-wrapper .lacture-heading {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.custom-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.custom-tabs {
  width: auto;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0px 0px 0px 0.5px rgba(64, 87, 109, 0.0705882353), 0px 2px 4px 0px rgba(24, 44, 89, 0.137254902), 0px 6px 12px 0px rgba(24, 44, 89, 0.0705882353);
  border-radius: 50px;
}
.custom-tabs .nav-tabs {
  border: none;
}
.custom-tabs .nav-tabs .nav-link {
  border: none;
  padding: 12px 15px;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: #000;
  font-weight: 500;
  margin: 0 10px;
}
.custom-tabs .nav-tabs .nav-link.active {
  background-color: #662b81;
  color: #fff;
  border-radius: 29px !important;
  padding: 12px 15px;
  font-size: 17px;
  letter-spacing: 0.5px;
}

.video-box-row {
  display: flex;
  gap: 20px;
}

.video-box {
  width: calc(33.33% - 15px);
  background-color: #fff;
  box-shadow: 0px -4px 50px -14px rgba(109, 117, 143, 0.53);
  padding: 23px;
  border-radius: 10px;
}
.video-box .video-image {
  position: relative;
}
.video-box .video-image img {
  width: 100%;
  border-radius: 10px;
}
.video-box .video-image i {
  position: absolute;
  top: 7px;
  left: 89%;
  color: white;
  font-size: 30px;
}
.video-box .video-title {
  font-size: 18px;
  font-weight: 600;
  margin: 23px 0 20px 0;
  line-height: 25px;
}
.video-box .video-class-subject-detail {
  margin-top: 15px;
}
.video-box .video-class-subject-detail ul {
  display: flex;
  gap: 18px;
}
.video-box .video-class-subject-detail ul li {
  font-size: 13px;
  font-weight: 500;
}
.video-box .video-class-subject-detail ul li span {
  margin-left: 3px;
}
.video-box .video-person-details {
  display: flex;
  align-items: center;
}
.video-box .video-person-details .video-person-image {
  height: 50px;
  width: 50px;
  border-radius: 100%;
}
.video-box .video-person-details .video-person-image img {
  height: 100%;
  width: 100%;
  border-radius: 100%;
}
.video-box .video-person-details .video-person-body {
  margin-left: 15px;
}
.video-box .video-person-details .video-person-body h3 {
  font-weight: 600;
  margin-bottom: 5px;
}
.video-box .video-person-details .video-person-body p {
  font-size: 13px;
  font-style: italic;
  color: #8383A3;
  font-weight: 500;
}

.testimonial-main-wrapper {
  background-color: #E5E4FD;
  margin-bottom: 80px;
}
.testimonial-main-wrapper .testimonial-wrapper {
  background: linear-gradient(rgba(230, 229, 253, 0.8), rgba(255, 255, 255, 0.8)), url("../assets/images/dot-map.png") center no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 70px 0;
}
.testimonial-main-wrapper .testimonial-wrapper .testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.testimonial-main-wrapper .testimonial-wrapper .testimonial-top .testimonial-top-left span {
  display: flex;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #F4B335;
  font-weight: 500;
  font-size: 13px;
}
.testimonial-main-wrapper .testimonial-wrapper .testimonial-top .testimonial-top-left h2 {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
}
.testimonial-main-wrapper .testimonial-wrapper .testi-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex !important;
  min-height: 310px;
}
.testimonial-main-wrapper .testimonial-wrapper .testi-box .testi-box-left {
  width: 100%;
  margin-right: 20px;
}
.testimonial-main-wrapper .testimonial-wrapper .testi-box .testi-box-left .review-company-logo {
  margin-bottom: 20px;
}
.testimonial-main-wrapper .testimonial-wrapper .testi-box .testi-box-left .review-text {
  color: #8383A3;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testimonial-main-wrapper .testimonial-wrapper .testi-box .testi-box-left .reviewer-details .reviewer-name {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 15px;
  color: #363539;
}
.testimonial-main-wrapper .testimonial-wrapper .testi-box .testi-box-left .reviewer-details .reviewer-position {
  font-size: 13px;
  font-style: italic;
  color: #8383A3;
}

.service-stripe-wrapper {
  background: #00194C;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.service-stripe-wrapper .swiper-wrapper {
  padding-top: 170px;
}
.service-stripe-wrapper .swiper-slide {
  font-size: 80px;
  color: white;
  width: auto !important;
  font-weight: 500;
}
.service-stripe-wrapper .swiper-slide:before {
  content: "";
  background-color: white;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  position: absolute;
  left: -47px;
  top: 30px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.home-contact-wrapper {
  margin-bottom: 80px;
}
.home-contact-wrapper .home-contact-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.home-contact-wrapper .home-contact-inner .left-side {
  width: 40%;
}
.home-contact-wrapper .home-contact-inner .left-side .text-section {
  width: 100%;
}
.home-contact-wrapper .home-contact-inner .left-side .text-section .solution {
  margin-bottom: 0;
}
.home-contact-wrapper .home-contact-inner .right-side {
  width: 60%;
}

.slide-logo {
  margin-bottom: 25px;
  display: none !important;
}

.home-contact-box {
  background-color: #F6F7FA;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}
.home-contact-box .home-contact-heading {
  font-size: 24px;
  font-weight: 700;
  color: black;
}
.home-contact-box .seprator {
  height: 4px;
  width: 30px;
  background-color: #662b81;
  border-radius: 5px;
  margin: 15px 0 30px 0;
}
.home-contact-box .secondary-btn {
  height: 50px;
  min-width: 180px;
  text-transform: uppercase;
  font-size: 15px !important;
}
.home-contact-box .form-group {
  margin-bottom: 25px;
}
.home-contact-box .form-group .form-control.input-error {
  border: 1px solid red;
}
.home-contact-box .error-text {
  color: red;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.custom-bg-wrapper {
  background-image: url("../assets/images/bg.jpg");
  background-attachment: fixed;
  margin-bottom: 80px;
  background-position: center;
  background-size: cover;
}
.custom-bg-wrapper .custom-bg-container {
  background-color: transparent;
  background-image: linear-gradient(135deg, #072656 0%, rgba(8, 8, 8, 0.1019607843) 100%);
  padding: 170px 0;
}
.custom-bg-wrapper .custom-bg-container .custom-bg-inner {
  color: white;
  gap: 40px;
}
.custom-bg-wrapper .custom-bg-container .custom-bg-inner h2 {
  font-size: 22px;
  margin-bottom: 35px;
}
.custom-bg-wrapper .custom-bg-container .custom-bg-inner p {
  font-size: 45px;
  line-height: 58px;
  max-width: 850px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .banner .banner-text-wrapper .banner-heading {
    font-size: 45px;
  }
  .our-service-wrapper .our-service-inner .our-service-box-col {
    width: calc(50% - 15px);
  }
  footer .footer-inner {
    flex-wrap: wrap;
  }
  footer .footer-col-1 {
    width: 49% !important;
    margin-bottom: 30px;
  }
  footer .footer-col-2 {
    width: 48% !important;
    margin-bottom: 30px;
  }
  footer .footer-col-3 {
    width: 49% !important;
  }
  footer .footer-col-4 {
    width: 48% !important;
  }
}
@media (max-width: 767px) {
  .banner .banner-text-wrapper .banner-heading {
    font-size: 30px;
    line-height: 45px;
  }
  .banner {
    margin-bottom: 50px !important;
  }
  .our-service-wrapper .our-service-top {
    margin-bottom: 50px !important;
  }
  .our-service-wrapper .our-service-inner .our-service-box-col {
    margin-bottom: 40px;
  }
  .our-service-wrapper .our-service-inner .our-service-img {
    margin-bottom: 20px;
  }
  .banner video {
    height: 500px;
  }
  .banner .banner-text-wrapper .banner-text {
    font-size: 18px;
  }
  .our-service-wrapper .our-service-inner .our-service-box-col {
    width: 100%;
  }
  .our-service-box {
    text-align: center;
  }
  .our-service-wrapper .our-service-top {
    display: block;
  }
  .our-service-wrapper .our-service-top .left-side {
    width: 100%;
  }
  .our-service-wrapper .our-service-top .right-side {
    width: 100%;
  }
  .our-service-wrapper .our-service-top .left-side h2 {
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .our-service-wrapper .our-service-top .right-side p {
    text-align: center;
  }
  .our-service-wrapper {
    margin-bottom: 0;
  }
  .custom-bg-wrapper .custom-bg-container {
    padding: 50px 0;
  }
  .custom-bg-wrapper .custom-bg-container .custom-bg-inner h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .custom-bg-wrapper .custom-bg-container .custom-bg-inner {
    text-align: center;
  }
  .custom-bg-wrapper .custom-bg-container .custom-bg-inner p {
    font-size: 30px;
    max-width: 100%;
    line-height: 50px;
  }
  .custom-bg-wrapper {
    margin-bottom: 50px;
  }
  .service-left .service-left-inner {
    display: block;
  }
  .service-left .service-left-inner .left-side {
    width: 100%;
    display: none;
  }
  .service-left .service-left-inner .right-side {
    width: 100%;
  }
  .service-left .service-left-inner .right-side .right-side-heading {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 20px;
  }
  .service-left .service-left-inner .right-side .divide-design {
    gap: 30px;
  }
  .service-left .service-left-inner .right-side .divide-design .content-box h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .service-left .service-left-inner .right-side .divide-design .content-box p {
    line-height: 30px;
    font-size: 18px;
  }
  .service-left {
    margin-bottom: 50px;
  }
  .service-stripe-wrapper {
    height: 200px;
    margin-bottom: 50px;
  }
  .service-stripe-wrapper .swiper-wrapper {
    padding-top: 115px;
  }
  .service-stripe-wrapper .swiper-slide {
    font-size: 40px;
  }
  .service-stripe-wrapper .swiper-slide:before {
    top: 13px;
  }
  .lacture-wrapper .lacture-heading {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 20px;
  }
  .custom-tabs .nav-tabs .nav-link {
    padding: 10px 5px;
    font-size: 13px;
    margin: 0 5px;
  }
  .custom-tabs .nav-tabs .nav-link.active {
    padding: 10px 10px;
    font-size: 13px;
  }
  .custom-tabs-wrapper {
    margin-bottom: 40px;
  }
  .video-box-row {
    display: block;
  }
  .video-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .lacture-wrapper {
    margin-bottom: 50px;
  }
  .home-contact-wrapper .home-contact-inner {
    display: block;
  }
  .home-contact-wrapper .home-contact-inner .left-side {
    width: 100%;
    margin-bottom: 30px;
  }
  .home-contact-wrapper .home-contact-inner .right-side {
    width: 100%;
  }
  .text-section .heading {
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .home-contact-box {
    padding: 30px 20px;
  }
  .home-contact-wrapper {
    margin-bottom: 50px;
  }
  footer .footer-col-1 {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  footer .footer-col-2 {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  footer .footer-col-3 {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  footer .footer-col-4 {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  footer {
    padding: 40px 0 30px 0;
  }
  .footer-copyright {
    margin-top: 40px !important;
  }
  .footer-copyright p {
    line-height: 20px;
  }
  .testimonial-main-wrapper {
    margin-bottom: 50px;
  }
  .testimonial-wrapper {
    padding: 50px 0 !important;
  }
  .testimonial-main-wrapper .testimonial-wrapper .testimonial-top .testimonial-top-left h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
footer {
  padding: 70px 0 35px 0;
  background-color: #0e2a47;
  position: relative;
}
footer .footer-highlight {
  position: absolute;
  top: 50px;
  right: 60px;
  height: 80px;
}
footer .footer-inner {
  display: flex;
  gap: 20px;
}
footer .footer-col-1 {
  width: 35%;
}
footer .footer-col-1 .footer-logo {
  height: 55px;
}
footer .footer-col-1 .footer-col-1-text {
  line-height: 35px;
  margin: 25px 0;
  font-weight: 500;
  color: #d2e3f9;
  max-width: 300px;
}
footer .footer-col-2 {
  width: 20%;
}
footer .footer-col-3 {
  width: 20%;
}
footer .footer-col-4 {
  width: 25%;
}
footer .footer-col-4 li {
  display: flex;
  align-items: center;
  line-height: 24px;
}
footer .footer-col-4 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid gray;
  margin-right: 10px;
}
footer .footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
  color: white;
}
footer .footer-links li {
  margin: 17px 0;
  color: #d2e3f9;
  font-weight: 500;
  line-height: 24px;
}
footer .footer-links li a {
  color: #d2e3f9;
  font-weight: 500;
}
footer .footer-links li a:hover {
  color: white;
}
footer .footer-links li a i {
  margin-right: 5px;
}
footer .footer-copyright {
  margin-top: 70px;
  padding-top: 35px;
  text-align: center;
  border-top: 1px solid #ccd6fa;
  font-weight: 500;
  color: #d2e3f9;
}
footer .footer-copyright span {
  color: white;
}

.footer-social-links {
  display: flex;
  gap: 8px;
}
.footer-social-links li a {
  display: flex;
  height: 40px;
  width: 40px;
  background-color: #104262;
  border: 2px solid #104262;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: white;
}
.footer-social-links li a:hover {
  background-color: #0e2a47;
}

.inner-banner-wrapper {
  background: linear-gradient(to left, #E5FFF3 0%, #e0f1ff 30%, #FDF2EF 100%);
  height: 400px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.inner-banner-wrapper h2 {
  font-size: 60px;
  font-weight: 600;
  color: black;
  margin-bottom: 25px;
}

.custom-breadcrumb {
  display: flex;
  justify-content: center;
}
.custom-breadcrumb ul {
  display: flex;
}
.custom-breadcrumb ul li {
  font-size: 17px;
  font-weight: 600;
  color: #666666;
}
.custom-breadcrumb ul li a {
  color: black;
  font-weight: 700;
}
.custom-breadcrumb ul li:first-child i {
  margin-right: 3px;
}
.custom-breadcrumb ul li:last-child i {
  margin-left: 10px;
  margin-right: 5px;
}

.static-content-wrapper {
  margin-bottom: 80px;
}
.static-content-wrapper .static-content-box {
  border: 1px solid #e7e7e7;
  padding: 60px 60px 10px 60px;
  border-radius: 10px;
}
.static-content-wrapper .static-content-box h2 {
  color: black;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.static-content-wrapper .static-content-box h3 {
  color: black;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.static-content-wrapper .static-content-box p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 40px;
  font-weight: 500;
  color: #666666;
}
.static-content-wrapper .static-content-box p.gap-1 {
  margin-bottom: 12px;
}
.static-content-wrapper .static-content-box span {
  font-size: 17px;
  line-height: 30px;
  display: block;
  color: #666666;
  font-weight: 500;
  margin-bottom: 15px;
}
.static-content-wrapper .static-content-box ul {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 40px;
}
.static-content-wrapper .static-content-box ul.list-gap-1 {
  margin-bottom: 15px;
}
.static-content-wrapper .static-content-box ul li {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #666666;
}
.static-content-wrapper .static-content-box ol {
  list-style-type: disc;
  margin-left: 18px;
  margin-bottom: 40px;
}
.static-content-wrapper .static-content-box ol li {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #666666;
}

@media (max-width: 767px) {
  .inner-banner-wrapper {
    height: 300px;
    margin-bottom: 50px;
  }
  .static-content-wrapper .static-content-box p {
    font-size: 16px;
  }
  .static-content-wrapper .static-content-box h2 {
    line-height: 30px;
  }
  .static-content-wrapper .static-content-box ul {
    margin-left: 22px;
  }
  .static-content-wrapper .static-content-box ul li {
    font-size: 16px;
  }
  .static-content-wrapper {
    margin-bottom: 50px;
  }
  .inner-banner-wrapper h2 {
    font-size: 35px;
  }
  .static-content-wrapper .static-content-box {
    padding: 40px 20px 0 20px !important;
  }
}
.contact-form-wrapper {
  margin-bottom: 80px;
}
.contact-form-wrapper .contact-form-inner-wrapper {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.219);
  padding: 75px;
  position: relative;
}
.contact-form-wrapper .contact-form-inner-wrapper .heading {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 18px;
}
.contact-form-wrapper .contact-form-inner-wrapper .input-field-wrapper {
  display: flex;
  gap: 20px;
}
.contact-form-wrapper .contact-form-inner-wrapper .input-field-wrapper .input-box {
  width: 50%;
}
.contact-form-wrapper .contact-form-inner-wrapper .secondary-btn {
  height: 55px;
}
.contact-form-wrapper .contact-form-inner-wrapper .secondary-btn i {
  margin-left: 0;
  margin-right: 10px;
}
.contact-form-wrapper .contact-form-inner-wrapper .leaf-img {
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 150px;
  z-index: -1;
}
.contact-form-wrapper .contact-form-inner-wrapper .input-box {
  margin-bottom: 25px;
}
.contact-form-wrapper .contact-form-inner-wrapper .input-error {
  border-bottom: 1px solid red;
}
.contact-form-wrapper .contact-form-inner-wrapper .error-text {
  color: red;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.contact-info-wrapper {
  display: flex;
  margin-bottom: 80px;
}
.contact-info-wrapper .contact-info-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info-wrapper .contact-info-top h2 {
  width: 220px;
  height: 40px;
  color: #1cb098;
  border: 1px solid #d2e3f9;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 25px;
}
.contact-info-wrapper .contact-info-top h3 {
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 35px;
}
.contact-info-wrapper .contact-wrappers {
  display: flex;
  justify-content: space-between;
}
.contact-info-wrapper .contact-wrappers .wrapper {
  width: 30%;
  padding: 50px 40px;
  border: 1px solid rgba(28, 176, 151, 0.6156862745);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-info-wrapper .contact-wrappers .wrapper img {
  width: 60px;
  margin-bottom: 15px;
}
.contact-info-wrapper .contact-wrappers .wrapper h3 {
  font-size: 22px;
  font-weight: 600;
}
.contact-info-wrapper .contact-wrappers .wrapper p {
  line-height: 30px;
  color: #666666;
  font-weight: 500;
}
.contact-info-wrapper .contact-wrappers .wrapper .link {
  color: #666666;
}

.map-wrapper {
  margin-bottom: 80px;
}
.map-wrapper .map-frame {
  width: 100%;
  height: 400px;
}

@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-inner-wrapper .leaf-img {
    display: none;
  }
  .contact-form-wrapper .contact-form-inner-wrapper {
    padding: 30px 25px;
  }
  .contact-form-wrapper .contact-form-inner-wrapper .heading {
    font-size: 30px;
  }
  textarea.form-control-no-border {
    height: 100px;
  }
  .contact-info-wrapper .contact-wrappers {
    flex-direction: column;
  }
  .contact-info-wrapper .contact-wrappers .wrapper {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
  }
  .contact-info-wrapper .contact-info-top h3 {
    font-size: 30px;
    text-align: center;
  }
  .contact-info-wrapper .contact-wrappers .wrapper img {
    width: 40px;
  }
  .contact-info-wrapper {
    margin-bottom: 30px;
  }
  .contact-info-wrapper .contact-wrappers .wrapper h3 {
    font-size: 20px;
  }
  .contact-info-wrapper .contact-info-top h2 {
    font-size: 18px;
  }
  .map-wrapper {
    margin-bottom: 50px;
  }
}
.gallery-section-wrapper {
  margin-bottom: 80px;
}
.gallery-section-wrapper .gallery-section-design-1 {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.gallery-section-wrapper .gallery-section-design-1 .left {
  width: 50%;
}
.gallery-section-wrapper .gallery-section-design-1 .right {
  width: 50%;
  display: flex;
  gap: 20px;
}
.gallery-section-wrapper .gallery-section-design-1 .right .gallery-style-one-item {
  width: 50%;
}
.gallery-section-wrapper .gallery-section-design-1 .gallery-style-one-item {
  height: 400px;
}
.gallery-section-wrapper .gallery-section-design-1 .gallery-style-one-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.gallery-section-wrapper .gallery-section-design-2 {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.gallery-section-wrapper .gallery-section-design-2 .gallery-style-one-item {
  width: 32%;
  height: 400px;
}
.gallery-section-wrapper .gallery-section-design-2 .gallery-style-one-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.gallery-section-wrapper .gallery-section-design-3 {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.gallery-section-wrapper .gallery-section-design-3 .left {
  width: 50%;
  display: flex;
  gap: 20px;
}
.gallery-section-wrapper .gallery-section-design-3 .left .gallery-style-one-item {
  width: 50%;
}
.gallery-section-wrapper .gallery-section-design-3 .right {
  width: 50%;
}
.gallery-section-wrapper .gallery-section-design-3 .gallery-style-one-item {
  height: 400px;
}
.gallery-section-wrapper .gallery-section-design-3 .gallery-style-one-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .gallery-section-wrapper .gallery-section-design-1 {
    display: block;
  }
  .gallery-section-wrapper .gallery-section-design-1 .left {
    width: 100%;
  }
  .gallery-section-wrapper .gallery-section-design-1 .right {
    width: 100%;
    display: block;
  }
  .gallery-section-wrapper .gallery-section-design-1 .right .gallery-style-one-item {
    width: 100%;
  }
  .gallery-section-wrapper .gallery-section-design-2 {
    display: block;
    margin-bottom: 0;
  }
  .gallery-section-wrapper .gallery-section-design-2 .gallery-style-one-item {
    width: 100%;
  }
  .gallery-section-wrapper .gallery-section-design-3 {
    display: block;
    margin-bottom: 0;
  }
  .gallery-section-wrapper .gallery-section-design-3 .left {
    width: 100%;
    display: block;
  }
  .gallery-section-wrapper .gallery-section-design-3 .left .gallery-style-one-item {
    width: 100%;
  }
  .gallery-section-wrapper .gallery-section-design-3 .right {
    width: 100%;
  }
  .gallery-style-one-item {
    margin-bottom: 20px;
  }
  .gallery-section-wrapper {
    margin-bottom: 50px;
  }
}
.faq-question-wrapper {
  margin-bottom: 80px;
}
.faq-question-wrapper .faq-question-inner-section {
  display: flex;
  justify-content: space-between;
  gap: 120px;
  width: 100%;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper {
  width: 65%;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 5px;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-button {
  height: 70px;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid #dee2e6;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-button.collapsed {
  border-bottom: none !important;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-button.collapsed:after {
  background-image: url("../assets/images/add.svg");
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-button:focus {
  box-shadow: none;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-button::after {
  background-image: url("../assets/images/add.svg");
  transition: none !important;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-body {
  padding: 20px 25px;
  color: #666;
  line-height: 36px;
}
.faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-header button {
  font-size: 18px;
  color: black;
  font-weight: 900;
}

.text-section {
  width: 35%;
}
.text-section .heading-box {
  display: inline-flex;
  border: 1px solid #b9e5de;
  border-radius: 5px;
  color: #1cb098;
  padding: 5px 20px;
  line-height: 25px;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.text-section .heading {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  color: #000;
  margin-bottom: 20px;
}
.text-section .question-box {
  border-top: 1px solid black;
  padding-top: 30px;
  line-height: 25px;
}
.text-section .question-box .question-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 32px;
}
.text-section .question-box .solution {
  color: #666666;
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 20px;
}
.text-section .question-box .btn-secondary-link {
  height: 50px;
  min-width: 160px;
}

@media (max-width: 767px) {
  .faq-question-wrapper .faq-question-inner-section {
    display: block;
  }
  .faq-question-inner-section .text-section {
    display: none;
  }
  .faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-header button {
    line-height: 24px;
    font-size: 17px;
    padding: 0 15px;
  }
  .faq-question-wrapper .faq-question-inner-section .questions-wrapper .accordion-body {
    padding: 15px;
  }
  .faq-question-wrapper {
    margin-bottom: 50px;
  }
  .text-section {
    width: 100%;
  }
  .faq-question-wrapper .faq-question-inner-section .questions-wrapper {
    width: 100%;
  }
}
.about-section-wrapper {
  margin-bottom: 80px;
}
.about-section-wrapper .about-section {
  display: flex;
  justify-content: space-between;
}
.about-section-wrapper .about-section .about-image-section {
  position: relative;
  width: 60%;
}
.about-section-wrapper .about-section .about-image-section img {
  position: absolute;
}
.about-section-wrapper .about-section .about-image-section .image-item-1 {
  width: 285px;
  z-index: 3;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  top: 0;
  right: 30px;
}
.about-section-wrapper .about-section .about-image-section .image-item-2 {
  width: 350px;
  z-index: 2;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  bottom: 0;
}
.about-section-wrapper .about-section .about-image-section .image-item-3 {
  opacity: 0.5;
}
.about-section-wrapper .about-section .about-image-section .image-item-4 {
  width: 100px;
  right: 90px;
  bottom: 18px;
}
.about-section-wrapper .about-section .about-image-section .about-video-player-btn {
  width: 120px;
  height: 120px;
  background-color: #1CB098;
  border-radius: 100%;
  position: absolute;
  top: 33%;
  left: 35%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.about-section-wrapper .about-section .about-image-section .about-video-player-btn i {
  font-size: 40px;
  color: white;
}
.about-section-wrapper .about-section .about-image-section .about-video-player-btn .btn-border {
  width: 120px;
  height: 120px;
  position: absolute;
  border-radius: 100%;
  border: 1px solid #fff;
  z-index: 9;
  animation: anime 0.8s ease-in infinite;
  opacity: 1;
}
@keyframes anime {
  0% {
    width: 120px;
    width: 120px;
  }
  25% {
    width: 160px;
    height: 160px;
  }
  50% {
    width: 180px;
    height: 180px;
  }
  75% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 230px;
    height: 230px;
    opacity: 0;
  }
}
.about-section-wrapper .about-section .about-text-section {
  width: 550px;
  margin-left: 50px;
}
.about-section-wrapper .about-section .about-text-section h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  color: #000;
  margin-bottom: 25px;
}
.about-section-wrapper .about-section .about-text-section .about-pera {
  color: #666666;
  line-height: 34px;
  margin-bottom: 25px;
}
.about-section-wrapper .about-section .about-text-section .about-list {
  margin-left: 19px;
  list-style-type: disc;
}
.about-section-wrapper .about-section .about-text-section .about-list li {
  color: #666;
  font-weight: 600;
  padding: 10px;
}

.video-model-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.video-model-box .video-box-with-close {
  position: relative;
  width: 700px;
}
.video-model-box .closeBtn {
  font-size: 25px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -40px;
}
.video-model-box video {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.about-review-wrapper {
  margin-bottom: 60px;
}
.about-review-wrapper .heading-box-container {
  text-align: center;
  margin-bottom: 20px;
}
.about-review-wrapper .heading-box {
  display: inline-flex;
  border: 1px solid #b9e5de;
  border-radius: 5px;
  color: #1cb098;
  padding: 5px 20px;
  line-height: 25px;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}
.about-review-wrapper .heading-text {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}

.about-review-box {
  border: 1px solid #e3e3e3;
  width: 350px;
  border-radius: 10px;
}
.about-review-box .about-review-box-header {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #e3e3e3;
}
.about-review-box .about-review-box-header .about-header-info {
  background-color: #1cb098;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.about-review-box .about-review-box-header .about-header-info img {
  height: 15px;
}
.about-review-box .about-review-box-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.about-review-box .about-review-text {
  color: #666666;
  line-height: 34px;
  padding: 20px;
}

.dc-continuous-review-swiper {
  width: 100%;
  padding: 20px 0;
  max-width: 100%;
  overflow: hidden;
}
.dc-continuous-review-swiper .swiper-slide {
  width: 320px;
}
.dc-continuous-review-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}

.our-mission-and-vision-wrapper .head h2 {
  font-size: 50px;
  font-weight: 700;
  color: #000;
}
.our-mission-and-vision-wrapper .head .divider {
  height: 4px;
  width: 100px;
  background-color: #1CB098;
  margin: 20px 0px 23px 0;
}
.our-mission-and-vision-wrapper p {
  line-height: 34px;
  margin-bottom: 50px;
}

.about-advantage-wrapper {
  background-color: #00194C;
  margin-bottom: 80px;
}
.about-advantage-wrapper .about-advantage-inner {
  display: flex;
  gap: 70px;
}
.about-advantage-wrapper .left-side {
  width: 60%;
  padding: 100px 0;
}
.about-advantage-wrapper .left-side .heading-box {
  display: inline-flex;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  padding: 5px 20px;
  line-height: 25px;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.about-advantage-wrapper .left-side h2 {
  font-size: 45px;
  font-weight: 700;
  color: white;
  line-height: 60px;
  margin-bottom: 60px;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper {
  display: flex;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box {
  width: 33.33%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 30px;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box img {
  height: 60px;
  margin-bottom: 15px;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box h3 {
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box p {
  font-weight: 700;
  color: white;
  font-size: 50px;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box:nth-child(1) {
  border-right: 0;
  border-radius: 10px 0 0 10px;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box:nth-child(2) {
  border-right: 0;
}
.about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box:nth-child(3) {
  border-radius: 0 10px 10px 0;
}
.about-advantage-wrapper .right-side {
  width: 40%;
}
.about-advantage-wrapper .right-side .advantage-right-box {
  background-color: #1CB098;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}
.about-advantage-wrapper .right-side .advantage-right-box h4 {
  color: white;
  font-size: 37px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 40px;
}
.about-advantage-wrapper .right-side .advantage-right-box .advantage-contact-btn {
  display: inline-flex;
  max-width: 180px;
  height: 55px;
  border-radius: 10px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: 600;
}

.why-choose-us-wrapper {
  background: linear-gradient(to left, #E5FFF3 0%, #e0f1ff 30%, #FDF2EF 100%);
  margin-bottom: 80px;
  padding: 80px 0;
}
.why-choose-us-wrapper .why-choose-us-heading {
  font-size: 50px;
  color: black;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.why-choose-us-wrapper .why-choose-us-sub-text {
  color: #666666;
  line-height: 34px;
  text-align: center;
  margin-bottom: 45px;
}
.why-choose-us-wrapper .why-choose-us-box-wrapper {
  display: flex;
  gap: 15px;
}
.why-choose-us-wrapper .why-choose-us-box {
  background-color: white;
  width: 33.33%;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.why-choose-us-wrapper .why-choose-us-box h2 {
  color: transparent;
  -webkit-text-stroke: 1px #00194C;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}
.why-choose-us-wrapper .why-choose-us-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.why-choose-us-wrapper .why-choose-us-box p {
  line-height: 34px;
  color: #666666;
}
.why-choose-us-wrapper .why-choose-us-box .box-bg {
  height: 200px;
  position: absolute;
  bottom: -65px;
  right: 0;
  border-radius: 0 0 15px 0;
}
.why-choose-us-wrapper .why-choose-us-box.box-style-2 {
  background-color: #00194C;
}
.why-choose-us-wrapper .why-choose-us-box.box-style-2 h2 {
  -webkit-text-stroke: 1px white;
}
.why-choose-us-wrapper .why-choose-us-box.box-style-2 h3 {
  color: white;
}
.why-choose-us-wrapper .why-choose-us-box.box-style-2 p {
  color: white;
}

@media (max-width: 1100px) {
  .about-section-wrapper .about-section .about-image-section .image-item-1 {
    width: 240px;
  }
  .about-section-wrapper .about-section .about-image-section .image-item-2 {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .about-section-wrapper .about-section .about-image-section {
    display: none;
  }
  .about-section-wrapper .about-section .about-text-section {
    width: 100%;
    margin-left: 0;
  }
  .about-section-wrapper {
    margin-bottom: 50px;
  }
  .about-section-wrapper .about-section .about-text-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .about-section-wrapper .about-section .about-text-section .about-list li {
    font-weight: 400;
  }
  .about-advantage-wrapper {
    margin-bottom: 50px;
  }
  .about-advantage-wrapper .about-advantage-inner {
    display: block;
  }
  .about-advantage-wrapper .left-side {
    width: 100%;
    padding: 50px 0;
  }
  .about-advantage-wrapper .right-side {
    width: 100%;
    padding-bottom: 50px;
  }
  .about-advantage-wrapper .left-side h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }
  .about-advantage-wrapper .left-side .about-advantage-box-wrapper {
    display: block;
  }
  .about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box {
    width: 100%;
    padding: 25px 20px;
  }
  .about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box:nth-child(1) {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
  }
  .about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box:nth-child(2) {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 0;
    border-radius: 0;
  }
  .about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box:nth-child(3) {
    border-radius: 0 0 10px 10px;
  }
  .about-advantage-wrapper .left-side .about-advantage-box-wrapper .about-advantage-box p {
    font-size: 40px;
  }
  .about-advantage-wrapper .right-side .advantage-right-box {
    padding: 40px 25px;
    border-radius: 10px;
  }
  .about-advantage-wrapper .right-side .advantage-right-box h4 {
    font-size: 30px;
    line-height: 40px;
  }
  .our-mission-and-vision-wrapper .head h2 {
    font-size: 30px;
  }
  .why-choose-us-wrapper {
    padding: 50px 0 30px 0;
    margin-bottom: 50px;
  }
  .why-choose-us-wrapper .why-choose-us-heading {
    font-size: 30px;
  }
  .why-choose-us-wrapper .why-choose-us-box-wrapper {
    display: block;
  }
  .why-choose-us-wrapper .why-choose-us-box {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }
  .why-choose-us-wrapper .why-choose-us-box h2 {
    font-size: 50px;
  }
  .about-review-wrapper .heading-text {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .about-review-wrapper {
    margin-bottom: 50px;
  }
}
.our-team-wrapper {
  margin-bottom: 80px;
}

.our-team-inner-top {
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}
.our-team-inner-top .left-side {
  width: 67%;
}
.our-team-inner-top .left-side .team-box-wrapper {
  gap: 30px;
}
.our-team-inner-top .left-side .team-box-col {
  width: 50%;
}
.our-team-inner-top .right-side {
  width: 33%;
}

.our-team-inner-bottom {
  display: flex;
  gap: 30px;
}
.our-team-inner-bottom .team-box-col {
  width: 33.33%;
}

.team-content-box {
  border: 2px solid #1CB098;
  border-radius: 18px;
  padding: 30px;
  position: relative;
}
.team-content-box h2 {
  color: black;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.team-content-box p {
  color: #666666;
  line-height: 34px;
}
.team-content-box .bottom-gap {
  margin-bottom: 25px;
}
.team-content-box .cap-img {
  position: absolute;
  top: -37px;
  right: -65px;
}

.team-box-wrapper {
  display: flex;
}

.team-box {
  text-align: center;
}
.team-box .team-img-box {
  margin-bottom: 20px;
}
.team-box .team-img-box img {
  border-radius: 18px;
  width: 100%;
  height: 400px;
}
.team-box h2 {
  color: 20px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 14px;
}
.team-box p {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  color: #1CB098;
}

@media (max-width: 767px) {
  .our-team-inner-top .left-side .team-box-wrapper {
    display: block;
  }
  .our-team-inner-top .right-side {
    display: none;
  }
  .our-team-inner-top .left-side .team-box-col {
    width: 100%;
  }
  .our-team-inner-top .left-side {
    width: 100%;
  }
  .our-team-inner-bottom {
    display: block;
  }
  .our-team-inner-bottom .team-box-col {
    width: 100%;
  }
  .our-team-inner-top {
    margin-bottom: 0;
  }
  .our-team-wrapper .team-box-col {
    margin-bottom: 40px;
  }
  .our-team-wrapper {
    margin-bottom: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
