/* work-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/work-sans-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/work-sans-v19-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/work-sans-v19-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/********** Template CSS **********/
:root {
  --primary: #222D65;
  --light: #F6F7FC;
  --dark: #15233C;
  --title:#222E65;
  --text-color:#696969;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #444;
  font-size: 16px;
  font-weight: 400;
}

p {
  color: #444;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
}

a {
  color: #222D65;
}

.bg-primary {
  background: #222D65 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #FFFFFF;
}

.btn.btn-primary {
  background: #222D65;
  border-color: #222D65;
  box-shadow: none !important;
  font-size: 18px;
}

.btn.btn-primary:hover {
  background: #0096D5;
  border-color: #0096D5;
}

.btn.btn-secondary {
  background: #0096D5;
  border-color: #0096D5;
}

.btn.btn-secondary:hover {
  background: #0096D5;
  border-color: #0096D5;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 70px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 20px;
  padding: 10px 0;
  color: #696E77;
  font-weight: 600;
  outline: none;
  font-size: 16px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #222D65 !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }
  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1025px) {
  .navbar .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
  }
  .navbar .btn-primary {
    padding: 7px 6px !important;
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  /* background-color: var(--primary);
  border: 15px solid var(--primary); */
  border-radius: 50px;
}

.page-header {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }
  .container.facts .facts-text {
    padding-left: calc((100% - 960px) / 2 + 0.75rem);
  }
  .container.facts .facts-counter {
    padding-right: calc((100% - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc((100% - 1140px) / 2 + 0.75rem);
  }
  .container.facts .facts-counter {
    padding-right: calc((100% - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc((100% - 1320px) / 2 + 0.75rem);
  }
  .container.facts .facts-counter {
    padding-right: calc((100% - 1320px) / 2 + 0.75rem);
  }
}
.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)), url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  border: #eeeeee 1px solid;
}
.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}

.service-item h4 {
  color: #15233C;
  font-size: 20px;
}

.service-item .service-content {
  padding: 16px 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
}
.service-item .service-content p {
  margin-bottom: 0;
  line-height: 24px;
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(RGB(235, 78, 138, 0.8), RGB(235, 78, 138)) center center no-repeat;
  background-size: cover;
  backdrop-filter: blur(20px);
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}
.team-item p {
  line-height: 24px;
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Footer ***/
.footer {
  color: #f4f4f4;
  background: #0096D5;
}
.footer p {
  color: #f4f4f4;
  font-size: 14px;
}
.footer .social-icon {
  font-size: 16px;
  display: inline-block;
  margin: 5px;
}
.footer .social-icon:hover {
  color: #222D65 !important;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #f4f4f4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #A7A8B4;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #A7A8B4;
  border: 1px solid #A7A8B4;
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 20px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .copyright p {
  margin-bottom: 0;
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #FFFFFF;
}

.section {
  padding: 40px 0;
}

.sec-title {
  font-family: "Work Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 16px;
  /* color: var(--secondary); */
  letter-spacing: 0;
  color: #222D65;
  margin-bottom: 24px;
}
.sec-title span {
  color: #222D65;
}

.head-line {
  position: relative;
}
.head-line:after, .head-line:before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 95px;
  height: 3px;
  content: "";
  right: 45px;
  margin: 0;
  background-color: #0096D5;
}

.head-line-center {
  position: relative;
}
.head-line-center:after, .head-line-center:before {
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 100px;
  height: 3px;
  content: "";
  margin: 0 0 0 -50px;
  background-color: #0096D5;
}

@media screen and (max-width: 767.98px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  .section {
    padding: 30px 0;
  }
  .sec-title {
    font-size: 22px;
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
  p {
    line-height: 26px;
  }
  .head-line {
    position: relative;
  }
  .head-line:after, .head-line:before {
    position: absolute;
    display: none;
    left: 0;
    bottom: 0px;
    width: 95px;
    height: 2px;
    content: "";
    right: 45px;
    margin: 0;
    background-color: #222D65;
  }
  .head-line-center:after, .head-line-center:before {
    display: none;
  }
  .navbar {
    background: #B0EEFC !important;
    z-index: 1;
    padding: 12px 0;
  }
}
.svg-icon {
  width: 32px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(75%) saturate(738%) hue-rotate(157deg) brightness(97%) contrast(105%);
}

.owl-nav {
  display: block !important;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
  background: #222D65;
  width: 30px;
  height: 30px;
  border-radius: 0%;
  font-size: 20px;
  color: #f4f4f4;
  padding: 0 6px;
  text-align: center;
}

.owl-nav .owl-prev {
  top: 40% !important;
  position: absolute;
}

.owl-nav .owl-next {
  top: 40% !important;
  position: absolute;
  right: 0;
}

/*** about sec ***/
.about-sec {
  background: #fff;
}
.about-sec .img {
  margin: 0px 0 0 0;
  padding: 0 10px;
}
.about-sec h6 {
  font-style: normal;
  text-align: left;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}
.about-sec .about-item {
  padding: 3px 10px;
  text-align: center;
}
.about-sec .about-item .icon-bx {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
}
.about-sec .about-item .svg-icon {
  margin: 0 0 0px 0;
  width: 32px;
}

@media screen and (max-width: 767.98px) {
  .about-sec .img {
    margin: 20px 0 0 0;
  }
}
.fea-sec {
  background-image: linear-gradient(180deg, #EAF1F4, #F1F5F8);
}
.fea-sec p {
  margin-top: 0;
  color: #333;
}
.fea-sec h3 {
  color: #15233C;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
}
.fea-sec h3 span {
  color: #15233C;
}
.fea-sec .video-bx {
  position: relative;
  padding: 0px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  border: 6px #fff solid;
  box-shadow: #A8A8A8 2px 2px 9px -2px;
}
.fea-sec .video-bx img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  padding: 0;
  width: 100%;
}
.fea-sec .video-bx .video-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 31;
  background: RGB(243, 243, 243, 0.7);
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -35px 0 0 -35px;
  border: #f4f4f4 4px solid;
  box-sizing: border-box;
  padding: 9px 12px;
  text-align: center;
  box-shadow: none !important;
}
.fea-sec .video-bx .video-btn i {
  color: #EA4335;
  font-size: 33px;
  margin: 3px 0 0 5px;
}
.fea-sec .video-bx .video-btn:focus {
  background: RGB(243, 243, 243, 0.8);
}

@media screen and (max-width: 767.98px) {
  .fea-sec .sec-title {
    margin-bottom: 20px;
  }
}
.app-sec {
  padding: 40px 0;
}
.app-sec .sec-title {
  margin-bottom: 0;
}
.app-sec p {
  margin-bottom: 10px;
}
.app-sec .app-text {
  font-size: 18px;
}
.app-sec .book-app-btn {
  background: #f4f4f4;
  box-shadow: none;
  padding: 8px 20px;
  color: #222D65;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
  border-radius: 1px;
}
.app-sec .book-app-btn:hover {
  color: #222D65;
  background: #F1D4DF;
}

@media screen and (max-width: 767.98px) {
  .app-sec .app-text {
    font-size: 16px;
  }
  .app-sec .book-app-btn {
    padding: 8px 10px;
    color: #222D65;
    font-size: 16px;
    font-weight: 600;
  }
}
.testimonial-sec {
  background: #0096D5;
  padding-bottom: 90px;
}
.testimonial-sec .sec-title {
  color: #f4f4f4;
}
.testimonial-sec .sec-title span {
  color: #f4f4f4;
}
.testimonial-sec h5 {
  color: #f4f4f4;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.testimonial-sec .test-item {
  background: #fff;
  border-radius: 5px;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.testimonial-sec .test-item p {
  font-size: 17px;
  color: #444;
}
.testimonial-sec .test-item p i {
  font-size: 24px;
  color: #222D65;
}
.testimonial-sec .test-item p a {
  color: #0096D5;
  font-size: 14px;
}
.testimonial-sec .test-item h3 {
  color: #222D65;
  font-size: 18px;
}
.testimonial-sec .owl-nav .owl-prev {
  top: 100% !important;
  position: absolute;
  left: 47%;
  margin-top: 20px !important;
}
.testimonial-sec .owl-nav .owl-next {
  top: 100% !important;
  position: absolute;
  right: 47%;
  margin-top: 20px !important;
}

@media screen and (max-width: 767.98px) {
  .testimonial-sec .test-item {
    padding: 20px 10px;
  }
  .testimonial-sec .test-item p {
    font-size: 15px;
  }
  .testimonial-sec .test-item h3 {
    font-size: 16px;
  }
  .testimonial-sec .owl-nav .owl-prev {
    top: 100% !important;
    position: absolute;
    left: 40%;
    margin-top: 20px !important;
  }
  .testimonial-sec .owl-nav .owl-next {
    top: 100% !important;
    position: absolute;
    right: 40%;
    margin-top: 20px !important;
  }
}
.faq-sec {
  position: relative;
  background: #fff;
}
.faq-sec .accordion {
  border: none !important;
}
.faq-sec .accordion .accordion-item {
  border-radius: 0px !important;
  margin-bottom: 10px;
  padding: 0px;
  color: #15233C !important;
  border: rgba(112, 112, 112, 0.12) 1px solid !important;
}
.faq-sec .accordion .accordion-item .accordion-button {
  font-size: 18px;
  color: #444;
  padding: 16px 16px;
  font-weight: 500 !important;
}
.faq-sec .accordion .accordion-item .accordion-button::after {
  width: 18px;
  height: 18px;
}
.faq-sec .accordion .accordion-item .accordion-button.active {
  background: #F9ECF0;
}
.faq-sec .accordion .accordion-item .accordion-button:focus {
  box-shadow: -2px 8px 16px rgba(105, 105, 105, 0.1);
}
.faq-sec .accordion .accordion-item .accordion-button:not(.collapsed) {
  background: #fff;
  box-shadow: -2px 8px 16px rgba(105, 105, 105, 0.1);
  color: #222D65;
  font-weight: 600 !important;
}
@media screen and (max-width: 767.98px) {
  .faq-sec .accordion .accordion-item {
    margin-bottom: 5px;
  }
  .faq-sec .accordion .accordion-item .accordion-button {
    font-size: 15px;
    padding: 10px 10px;
  }
  .faq-sec .accordion .accordion-item .accordion-body {
    font-size: 15px;
    padding: 10px;
  }
}
.achieve-sec .client-item {
  border: rgba(112, 112, 112, 0.12) 1px solid;
  padding: 10px;
  border-radius: 2px;
  background: #fff;
}
.achieve-sec .client-item img {
  width: 80%;
  margin: 0 auto;
}
.achieve-sec .owl-nav {
  display: none !important;
}

.modal-content {
  border-radius: 5px !important;
  border: none !important;
}
.modal-content .modal-header {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background: #F4E7EB;
  color: #ccc;
  padding: 16px 20px;
  border: none;
}
.modal-content .modal-header .modal-title {
  color: #15233C;
  font-size: 20px;
  margin: 0;
  font-weight: 600 !important;
  text-transform: capitalize;
}
.modal-content .modal-header .btn-close {
  width: 20px;
  box-shadow: none;
  filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(205%) hue-rotate(208deg) brightness(98%) contrast(84%);
}
.modal-content .modal-body {
  padding: 30px 20px;
  background: #fafafa;
}
.modal-content .modal-body .h6 {
  text-transform: capitalize;
  font-style: normal;
  font-size: 17px;
  font-size: 17px;
  margin-bottom: 16px !important;
  color: #222D65;
  padding: 0px 0;
  font-weight: 500;
  letter-spacing: 1px;
}
.modal-content .modal-body .small-text {
  font-size: 14px;
  line-height: 18px;
}
.modal-content .modal-body .small-text input {
  margin-top: 4px;
}
.modal-content .modal-body .small-text a {
  color: #C91D58;
}
.modal-content .modal-body .form-control {
  border-radius: 2px !important;
  margin-bottom: 16px;
  padding: 10px;
  color: #444;
  box-shadow: none;
}
.modal-content .modal-body .form-control:focus {
  border: #0096D5 1px solid;
}
.modal-content .modal-body .form-control::placeholder {
  color: #444;
}
.modal-content .modal-body .btn-primary {
  margin-top: 16px;
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 18px;
}

@media screen and (max-width: 767.98px) {
  .modal-content .modal-header {
    padding: 10px 10px;
  }
  .modal-content .modal-header .modal-title {
    font-size: 16px;
  }
  .modal-content .modal-body {
    padding: 20px 15px;
  }
}
.result-sec {
  background: #fff;
}

.navbar-toggler {
  background: #222D65;
  padding: 0px 5px !important;
  right: 0 !important;
  box-shadow: none !important;
  border-radius: 2px !important;
}
.navbar-toggler .navbar-toggler-icon {
  width: 20px;
  margin: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(469%) hue-rotate(218deg) brightness(114%) contrast(91%);
}

.app-menu {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .footer {
    margin-bottom: 40px;
  }
  .app-menu {
    display: block;
    padding: 8px 4px;
    background: #27AE61;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 32;
    color: #f4f4f4;
  }
  .app-menu a {
    text-decoration: none;
    text-align: center;
    color: #f4f4f4;
  }
  .app-menu .book-btn {
    background: transparent;
    font-size: 15px;
    color: #f4f4f4;
    text-transform: uppercase;
    font-weight: 500;
  }
  .app-menu .book-btn i {
    margin-right: 5px;
    color: #f4f4f4;
    margin-top: 5px !important;
  }
  .app-menu .rght-br {
    padding: 0px 4px;
    border-right: #099344 1px solid;
    margin-top: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 360px) {
  .app-menu {
    padding: 5px 4px;
  }
  .app-menu .book-btn {
    font-size: 12px;
  }
}
.thankyou-sec {
  background-image: linear-gradient(180deg, RGB(235, 78, 138, 0.7), RGB(235, 78, 138, 0.9));
  height: 80vh;
  padding: 200px 0;
}
.thankyou-sec h3 {
  color: #f4f4f4;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}
.thankyou-sec p {
  color: #f4f4f4;
  font-size: 18px;
  margin-bottom: 24px;
}
.thankyou-sec .back-btn {
  background: #f4f4f4;
  padding: 10px 30px;
  color: #222D65;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 10px;
}

@media screen and (max-width: 767.98px) {
  .thankyou-sec {
    height: 80vh;
    padding: 150px 0;
  }
  .thankyou-sec h3 {
    font-size: 24px;
  }
  .thankyou-sec p {
    font-size: 16px;
  }
  .thankyou-sec .back-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.form-sec {
  background: #E7F9FE;
  padding: 50px 0;
}
.form-sec h1 {
  color: #f4f4f4;
}
.form-sec p {
  color: #f4f4f4;
  font-size: 16px;
}
.form-sec .form-box {
  background: #E9EBEC;
  text-align: center;
  position: relative;
  padding: 20px 20px;
  border-radius: 7px;
  box-shadow: 0px 0px 10px 0px RGB(21, 22, 22, 0.4);
  margin-right: 0px;
}
.form-sec .form-box h4 {
  margin-bottom: 16px;
  font-size: 20px;
  margin-top: 10px;
  color: #222D65;
}
.form-sec .form-box .logo-img {
  padding: 5px 10px !important;
  position: relative;
  margin-top: -40px;
  width: 100%;
  margin-bottom: 6px;
  display: none;
  z-index: 23;
}
.form-sec .form-box .logo-img img {
  width: 130px;
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  box-shadow: 0px 0px 6px 0px #A9ACAD;
}
.form-sec .form-select {
  background: #fff !important;
}
.form-sec .form-control {
  border-radius: 2px !important;
  margin-bottom: 16px;
  padding: 10px;
  color: #444;
  box-shadow: none;
}
.form-sec .form-control:focus {
  border: #0096D5 1px solid;
}
.form-sec .form-control::placeholder {
  color: #444;
}
.form-sec .btn-primary {
  margin-top: 5px;
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 18px;
}
.form-sec video {
  width: 98%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin-top: 7px;
  border-radius: 5px;
  margin: 7px auto 0 auto;
}

@media screen and (max-width: 767px) {
  .form-sec {
    padding: 30px 0 30px 0;
  }
  .form-sec .form-box {
    width: 90%;
    margin: 0 auto;
  }
  .form-sec .form-box .logo-img {
    margin-top: -50px;
    display: block;
  }
}
.carousel-control-next {
  background: #222D65;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  border-radius: 50%;
  right: 5px;
}

.carousel-control-prev {
  background: #222D65;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  border-radius: 50%;
  left: 5px;
}

.carousel-item {
  border-radius: 5px;
}
.carousel-item img {
  border-radius: 5px;
}

.success-sec {
  background: #0096D5;
}
.success-sec h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: #f4f4f4;
}
.success-sec h2 span {
  color: #f4f4f4;
  font-size: 22px;
  font-weight: 600;
}
.success-sec .success-box {
  background: #f4f4f4;
  border-radius: 5px;
  padding: 16px;
  text-align: center;
}
.success-sec .success-box h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #15233C;
  font-weight: 500;
}
.success-sec .success-box h4 {
  color: #0096D5;
  font-size: 32px;
}

@media screen and (max-width: 767.98px) {
  .success-sec h2 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .success-sec h2 span {
    font-size: 18px;
  }
  .success-sec .col-4 {
    padding: 0 5px;
  }
  .success-sec .success-box {
    margin-bottom: 10px;
    padding: 5px;
  }
  .success-sec .success-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .success-sec .success-box h4 {
    font-size: 24px;
  }
}
.offer-sec {
  background: #fff;
}

@media screen and (max-width: 767.98px) {
  .offer-sec .service-item {
    margin-bottom: 10px;
  }
}
.why-sec .why-box {
  margin: 10px 0;
  padding: 10px;
  text-align: center;
}
.why-sec .why-box .icon {
  margin-bottom: 16px;
}
.why-sec .why-box .icon img {
  margin: 10px auto;
  width: 50px;
}
.why-sec .why-box h4 {
  font-size: 18px;
  color: #444;
}

@media screen and (max-width: 767.98px) {
  .why-sec .why-box {
    padding: 10px 5px;
  }
  .why-sec .why-box h4 {
    font-size: 14px;
    color: #444;
  }
}
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  background: #00E676;
  z-index: 23;
}
.floating-btn i {
  font-size: 32px;
  color: #fff;
}

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