body {
  font-family: "Open Sans", sans-serif;
  color: #333366;
}

a {
  color: #333366;
  text-decoration: none;
}

a:hover {
  color: #333366;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #333366;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# scroll-to-top-btn
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0.8;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #333366;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #333366;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgb(255, 255, 255);
  z-index: 997;
  padding: 5px 0;
  box-shadow: 0px 2px 15px rgba(16, 39, 33, 0.37);
  
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
#header .logo a {
  color: #333366;
  
}
#header .logo  img {
  max-height: 30px; 
}


/**
* Btn *
*/
.appointment-btn {
  margin-left: 25px;
  background: #333366;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}
.appointment-btn:hover {
  background: #333366;
  color: #fff;
}
@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Nav
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #333366;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid rgba(255, 255, 255, 0.315);
  padding: 5px 2px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #879bdf;
  border-color: #879bdf;
  border-radius: 2px;
}

/**
* Mobile Nav
*/
.mobile-nav-toggle {
  color: #333366;
  font-size: 36px;
font-style: oblique;
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: rgba(255, 255, 255, 0.63);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #333366af;
  transition: 0.5s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  height: 190px;
  top: 75px;
  right: 50px;
  bottom: 50px;
  left: 50px;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.897);
  overflow-y: auto;
  transition: 0.5s;
  border-radius: 10px;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 30px;
  font-size: 20px;
  color: #333366;
  border: 10px;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #879bdf;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;
  max-width: 1800px;
  margin: 0 auto;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #333366;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #333366;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

.main {
  display: block;
  position: relative;
  height: auto;
  padding-top: 0;
}
.main .box {
  display: block;
  position: relative;
  padding: 90px 32px 32px 32px;
  margin-top: 0!important;
}
.main .box #form {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 32px;
}
.main .box #form .left {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  flex-basis: 55%;
  max-height: 860px;
  overflow: hidden;
  /* background: url(../img/img.jpg) top center / cover no-repeat;
  border-radius: 8px; */
}
.main .box #form .form {
  display: block;
  position: relative;
  flex-basis: 45%;
  padding: 12px;
}
.main .box #form .title-box {
 display: block;
 position: relative;
 padding: 0;
 margin-bottom: 24px;
 background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .25) 100% );
}
.main .box #form .title-box h1 {
  display: block;
  position: relative;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  top: 0;
}
.main .box #form .title-box h2 {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 1.2;
  top: 0;
}
.main .box #form .left .img {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/img.jpg) top center / cover no-repeat;
  border-radius: 8px;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


.about .icon-boxes h4 {
  font-size: 18px;
  color: #333366;
  margin-bottom: 15px;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333366;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #879bdf;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #333366;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #333366;
  border-color: #333366;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #7c407c;
}
.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about .himg {
  background: url("../img/about.webp") left center no-repeat;
  background-size: cover;
  border-radius: 8px;
}
.about h1 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  color: #333366;
}
.about h2 {
  position: relative;
  color: #333366b6;
  line-height: 72px;
  font-size: 30px;
  text-align: left;
}

.about h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #333366;
}
.about h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.about h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #333366;
  bottom: 0;
  left: calc(50% - 20px);
}

.about .form {
  background: #c2afc5;
  border-color: #33336625;
  position: relative;
  align-items: center;
  border-radius: 8px;
  max-height: 860px
}

@media (max-width: 1690px) {
  .about h1 {
    font-size: 32px;
  }
  .about h2 {
    font-size: 24px;
  }
}
@media (max-width: 1420px) {
  .about h1 {
    font-size: 28px;
  }
  .about .form {
    max-height: 860px;
  }
}

@media (max-width: 1323px) {
  .about .form, .main .box #form .left {
    max-height: 930px;
  }
}

@media (max-width: 1311px) {
 
  .about .form, .main .box #form .left {
    max-height: 1080px;
  }
}

@media (max-width: 1200px) {
  .about h1 {
    font-size: 24px;
  }
  .about h2 {
    font-size: 20px;
  }
  .about .form {
    max-height: 800px;
  }
}
@media (max-width: 1096px) {
  .about h1 {
    font-size: 20px;
  }
  .about h2 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .about h1 { 
  font-size: 32px;
  font-weight: 700;
  position: relative;
  text-align: center;
}
  .about .form {
    max-height: 860px;
  }

 
.about .box {
    margin-top: 60px;
}
  .about h2 {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    text-align: center;
  }
  .main .box #form  {
    flex-direction: column;
  }
  .main .box #form .left .title-box{
    margin-bottom: 0;
  }
  .main .box #form .left .img {
    display: none;
  }
}

@media (max-width: 767px) {
  .about .form {
    max-height: 780px;
  }
  .about .advantages-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 567px) {
  .main .box {
    padding: 90px 16px 32px 16px;
  }
}

@media (max-width: 463px) {
  .about .form {
    max-height: 860px;
  }
}

@media (max-width: 458px) {
  .about .form {
    min-height: 1030px;
  }
}

@media (max-width: 365px) {
  .about .form {
    min-height: 1100px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.counts .container-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.card-counter {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.card-counter .card-wrapper {
  display: block;
  position: relative;
  flex-basis: calc(33% - 32px);
  padding: 0;
  margin: 0;
}
.counts {
  background: #f1f7fd;
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  margin: 0;
}
.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #333366;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #082744;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .counts .container-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }
  .card-counter {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  } 
}

/*--------------------------------------------------------------
# Advantsges
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ffffff;
  padding: 80px 20px;
  border-radius: 8px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #333366;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}
.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #7c407c60;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #333366;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  background: #765280;
  border-color: #765280;
  border-radius: 8px;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #333366;
}
.services .icon-box:hover .icon::before {
  background: rgb(114, 97, 128);
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .services .icon-box {
    padding: 40px 20px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #879bdf;
}
.contact .formjs {
  display: flex;
}

.contact .form-btn {
  background: rgba(255, 255, 255, 0.219);
  padding: 8px 30px 8px 30px;
  margin-bottom: 25px;
  color:  #333366;
  border: 2px solid #333366;
  max-width: 250px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;  
  font-size: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: contact-btn1 4s infinite;
  text-align: center;
}

@-webkit-keyframes contact-btn1 {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes contact-btn1 {
  0% {
    transform: scale(1, 1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0.8;
  }
}

.contact  .form-btn i {
  font-size: 16px;
}
.contact  .form-btn:hover {
  color: #ffffffce;
  background: #54618a;
  font-size: 16px;
  animation: none;
  transform: scale(1.1, 1.1);
    opacity: 1;
 
}

.contact .info i {
  font-size: 20px;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #84a395;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f7fd;
  width: 100%;
  background: url("../img/background.jpg") bottom right;
  background-size:auto;
  
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333366;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a.site {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  padding: 0;
  margin-right: 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a i {
  font-size: 18px;
  line-height: 1;
  display: block;
}
#footer .social-links a:hover {
  background: #333366;
  color: #fff;
  text-decoration: none;
}
.modal p, .modal ul, .modal li {
  color: #444444;
}
.modal-body a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #footer .site-links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

.element-animation {
  margin: 2rem 0;
  font-size: 3rem;
  opacity: 0;
  transform: translateY(100%);
}
.element-animation.element-show {
  opacity: 1;
  transition: all 1s;
  transform: translateY(0%);
}

.element-animationr {
  font-size: 3rem; 
  opacity: 0;
  transform: translate(6rem, 2rem);
}

.element-animationr.element-show {
  opacity: 1;
  transition: all 1s;
  transform: translate(0, 0);
  
}