/*$view port variable for fluid typography
320px is minimun view port(screen size in px)
1440px is maximum view port(screen size in px)*/
/*fluid typography equation for font size and line height is
font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));*/
* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.preloader {
  position: fixed;
  background: #3894D1;
  height: 100%;
  width: 100%;
  z-index: 999999;
  overflow: hidden;
  margin: 0 auto;
}
.preloader .loaderLogo {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 48%;
  transform: translateY(-50%);
  text-align: center;
}
.preloader .loaderLogo img {
  width: auto;
  max-height: 100px;
}
.preloader:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 55%;
  transform: translateY(-55%);
  width: 55px;
  height: 55px;
  background: url(../images/main-loader.svg) no-repeat center;
  background-size: 40px;
}

.container {
  max-width: 1440px;
  padding: 0 130px;
  margin: 0 auto;
}

header .top {
  background-color: #BF2228;
  padding: 10px 0;
}
header .top p {
  font-size: calc(12px + 3 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1440px) {
  header .top p {
    font-size: 15px;
  }
}
header .header-content {
  padding: 23px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-items: center;
}
header .header-content .right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}
header .header-content .right .header-menu {
  gap: 45.5px;
}
header .header-content .right .header-menu ul#menu-header-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}
header .header-content .right .header-menu ul#menu-header-menu li a {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  color: #105C8E;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 1440px) {
  header .header-content .right .header-menu ul#menu-header-menu li a {
    font-size: 16px;
  }
}
header .header-content .right .header-menu ul#menu-header-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 2px solid #105C8E;
  top: 10px;
  opacity: 1;
  transform: scale(0, 1);
  transform-origin: center;
  transition: all 500ms ease-in-out;
}
header .header-content .right .header-menu ul#menu-header-menu li a:hover {
  color: #105C8E;
}
header .header-content .right .header-menu ul#menu-header-menu li a:hover::after {
  transform: scale(1);
}
header .header-content .right .header-menu ul#menu-header-menu .current-menu-item {
  position: relative;
}
header .header-content .right .header-menu ul#menu-header-menu .current-menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 2px solid #105C8E;
  top: 10px;
  opacity: 1;
}
header .header-content .right .header-menu ul#menu-header-menu.current-menu-item a {
  background-color: transparent !important;
  color: #3894D1 !important;
}
header .header-content .right .search {
  cursor: pointer;
  width: 25px;
  height: 25px;
}
header .header-content .right .search img {
  vertical-align: middle;
}
header .header-content .toggler {
  display: none;
}
header .search-form-sec {
  position: absolute;
  top: -500px;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}
header .search-form-sec form div {
  display: flex;
  gap: 30px;
}
header .search-form-sec form input[type=text] {
  width: 100%;
  padding: 10px 20px;
  border: 0;
}
header .search-form-sec form input[type=text]:focus-visible {
  outline: none;
}
header .search-form-sec form input[type=submit] {
  padding: 9px 15px;
  border: 0;
  background-color: #105C8E;
  color: #fff;
  width: 20%;
  max-width: 130px;
}
header .search-form-sec .close {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .search-form-sec .container {
  position: relative;
}
header .search-toggle {
  top: 139px;
  transition: all 0.5s ease;
  z-index: 1;
}

.home-page .banner {
  position: relative;
}
.home-page .banner .slider .item img {
  width: 100%;
}
.home-page .banner .slick-dots {
  position: absolute;
  bottom: 72px;
  right: 130px;
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px;
  z-index: 1;
}
.home-page .banner .slick-dots button {
  cursor: pointer;
  font-size: 0;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  border: 0;
  width: 10px;
  height: 10px;
}
.home-page .banner .slick-dots .slick-active button {
  opacity: 1;
}
.home-page .banner .box {
  padding: 77px 80px;
  max-width: 580px;
  opacity: 0.8;
  background: #105C8E;
  position: absolute;
  bottom: 0;
  left: 130px;
}
.home-page .banner .box .content {
  margin-bottom: 21px;
}
.home-page .banner .box .content h1 {
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  color: #fff;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
@media screen and (min-width: 1440px) {
  .home-page .banner .box .content h1 {
    font-size: 40px;
  }
}
.home-page .banner .box .content p {
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  color: #fff;
  opacity: 0.8;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (min-width: 1440px) {
  .home-page .banner .box .content p {
    font-size: 18px;
  }
}
.home-page .banner .box .button {
  align-items: center;
  display: flex;
  gap: 12px;
}
.home-page .banner .box .button a {
  padding: 18px 53px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  color: #fff;
  font-size: calc(12px + 3 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .home-page .banner .box .button a {
    font-size: 15px;
  }
}
.home-page .banner .box .button a::after {
  content: "";
  background: url(../images/right-arrow.png) no-repeat center;
  position: absolute;
  right: 17px;
  width: 20px;
  height: 17px;
}
.home-page .banner .box .button a:hover {
  transition: all 0.5s ease;
  background-color: #BF2228;
}
.home-page .banner .box .button a:hover::after {
  transition: all 0.5s ease;
  right: 12px;
}
.home-page .banner .container {
  position: relative;
}
.home-page .about-sec .top {
  position: relative;
}
.home-page .about-sec .top::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  background-color: rgb(243, 244, 246);
  z-index: 0;
  height: 100%;
}
.home-page .about-sec .top .outer {
  display: flex;
  flex-wrap: wrap;
}
.home-page .about-sec .top .emergency-dtls {
  background-color: #BF2228;
  padding: 33px 73px 41px 68px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 580px;
}
.home-page .about-sec .top .emergency-dtls .left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 17px;
  position: relative;
}
.home-page .about-sec .top .emergency-dtls .left::after {
  position: absolute;
  content: "";
  height: 49px;
  width: 1px;
  background-color: #fff;
  right: -22px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.5;
}
.home-page .about-sec .top .emergency-dtls .dtls h5 {
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .top .emergency-dtls .dtls h5 {
    font-size: 18px;
  }
}
.home-page .about-sec .top .emergency-dtls .dtls a {
  color: #fff;
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .top .emergency-dtls .dtls a {
    font-size: 25px;
  }
}
.home-page .about-sec .top .our-value {
  width: calc(100% - 580px);
  background-color: rgb(243, 244, 246);
  padding: 50px 0 50px 50px;
  z-index: 1;
}
.home-page .about-sec .top .our-value .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.home-page .about-sec .top .our-value .content h4 {
  color: #152F56;
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.5;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .top .our-value .content h4 {
    font-size: 25px;
  }
}
.home-page .about-sec .top .our-value .content h4 strong {
  font-weight: 700;
}
.home-page .about-sec .top .our-value .content h5 {
  color: #105C8E;
  font-size: calc(26px + 4 * (100vw - 370px) / 1070);
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .top .our-value .content h5 {
    font-size: 30px;
  }
}
.home-page .about-sec .top .our-value .content .title-slider {
  width: 50%;
}
.home-page .about-sec .top .our-value .content .slick-track {
  display: flex;
  align-items: center;
}
.home-page .about-sec .bottom {
  margin-top: 68px;
  padding-bottom: 93px;
}
.home-page .about-sec .bottom .outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-page .about-sec .bottom .about {
  width: 49%;
}
.home-page .about-sec .bottom .about h2 {
  color: #105C8E;
  font-size: calc(40px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .bottom .about h2 {
    font-size: 50px;
  }
}
.home-page .about-sec .bottom .about p {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 34px;
  color: #152F56;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .bottom .about p {
    font-size: 16px;
  }
}
.home-page .about-sec .bottom .vision {
  width: 40.7%;
  border: 1px solid rgba(21, 47, 86, 0.2);
  padding: 35px 40px 40px 47px;
  position: relative;
  border-radius: 25px;
}
.home-page .about-sec .bottom .vision .content h3 {
  color: #105C8E;
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  top: -14px;
  left: 30px;
  background: white;
  padding: 0 20px;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .bottom .vision .content h3 {
    font-size: 25px;
  }
}
.home-page .about-sec .bottom .vision .content p {
  color: #152F56;
  opacity: 0.8;
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
@media screen and (min-width: 1440px) {
  .home-page .about-sec .bottom .vision .content p {
    font-size: 20px;
  }
}
.home-page .mission {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.home-page .mission .content {
  text-align: center;
  max-width: 780px;
}
.home-page .mission .content h3 {
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  color: #105C8E;
  margin-bottom: 12px;
}
@media screen and (min-width: 1440px) {
  .home-page .mission .content h3 {
    font-size: 40px;
  }
}
.home-page .mission .content p {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 34px;
  color: #152F56;
  opacity: 0.8;
  margin-bottom: 7px;
}
@media screen and (min-width: 1440px) {
  .home-page .mission .content p {
    font-size: 16px;
  }
}
.home-page .three-sec-outer {
  position: relative;
}
.home-page .founder {
  position: absolute;
  top: 32%;
  max-width: 1180px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.home-page .founder .founder-profile {
  display: flex;
  flex-wrap: wrap;
}
.home-page .founder .founder-profile .img {
  width: 40%;
}
.home-page .founder .founder-profile .img img {
  height: 100%;
}
.home-page .founder .founder-profile .dtls {
  width: 60%;
  padding: 59px 65px 51px 65px;
  background-color: #ECF7FF;
}
.home-page .founder .founder-profile .dtls h3 {
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 26px;
  color: #105C8E;
}
@media screen and (min-width: 1440px) {
  .home-page .founder .founder-profile .dtls h3 {
    font-size: 40px;
  }
}
.home-page .founder .founder-profile .dtls h5 {
  font-weight: 600;
  line-height: normal;
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  color: #152F56;
  margin-bottom: 8px;
}
@media screen and (min-width: 1440px) {
  .home-page .founder .founder-profile .dtls h5 {
    font-size: 25px;
  }
}
.home-page .founder .founder-profile .dtls h6 {
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  color: #152F56;
  opacity: 0.8;
  margin-bottom: 13px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .home-page .founder .founder-profile .dtls h6 {
    font-size: 20px;
  }
}
.home-page .founder .founder-profile .dtls p {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 34px;
  color: #152F56;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .home-page .founder .founder-profile .dtls p {
    font-size: 16px;
  }
}
.home-page .founder .founder-profile .dtls p a {
  opacity: 1;
  font-weight: 500;
}
.home-page .free-services {
  padding: 285px 0 70px 0;
  background-size: 100% !important;
  background-attachment: fixed !important;
  margin-top: 220px;
}
.home-page .free-services .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.home-page .free-services .services .service {
  width: calc(33.33333% - 43.33333px);
}
.home-page .free-services .services .service h4 {
  color: #fff;
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
@media screen and (min-width: 1440px) {
  .home-page .free-services .services .service h4 {
    font-size: 25px;
  }
}
.home-page .free-services .services .service p {
  color: #fff;
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 32px;
  opacity: 0.8;
  margin-bottom: 5px;
}
@media screen and (min-width: 1440px) {
  .home-page .free-services .services .service p {
    font-size: 18px;
  }
}
.home-page .patient-information-sec {
  padding: 86px 0 110px 0;
}
.home-page .patient-information-sec .outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 52px;
}
.home-page .patient-information-sec .content {
  width: calc(48% - 26px);
}
.home-page .patient-information-sec .content h2 {
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  color: #105C8E;
  margin-bottom: 23px;
}
@media screen and (min-width: 1440px) {
  .home-page .patient-information-sec .content h2 {
    font-size: 40px;
  }
}
.home-page .patient-information-sec .content h5 {
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  margin-bottom: 15px;
}
@media screen and (min-width: 1440px) {
  .home-page .patient-information-sec .content h5 {
    font-size: 25px;
  }
}
.home-page .patient-information-sec .content .informations {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
.home-page .patient-information-sec .content .informations ul {
  width: calc(50% - 7.5px);
}
.home-page .patient-information-sec .content .informations ul li {
  cursor: pointer;
  border: 1px solid #ADD8F3;
  padding: 16px 15px 16px 48px;
  position: relative;
  margin-bottom: 17px;
}
.home-page .patient-information-sec .content .informations ul li:hover {
  box-shadow: 0px 10px 25px 0px rgba(21, 47, 86, 0.1);
  transition: all 0.3s ease;
}
.home-page .patient-information-sec .content .informations ul li a {
  font-weight: 400;
  line-height: normal;
  color: #152F56;
  opacity: 0.8;
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
}
@media screen and (min-width: 1440px) {
  .home-page .patient-information-sec .content .informations ul li a {
    font-size: 18px;
  }
}
.home-page .patient-information-sec .content .informations ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../images/home/tick.png) no-repeat center;
}
.home-page .patient-information-sec .video-sec {
  width: calc(51.5% - 26px);
}
.home-page .patient-information-sec .video-sec .vid-thumb {
  position: relative;
}
.home-page .patient-information-sec .video-sec .vid-thumb img {
  width: 100%;
  height: 100%;
}
.home-page .patient-information-sec .video-sec .vid-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.departments {
  position: relative;
  background-size: 100% !important;
  background-attachment: fixed !important;
}
.departments .outer {
  padding: 85px 0;
}
.departments h2 {
  font-size: calc(40px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  color: #fff;
  margin-bottom: 18px;
}
@media screen and (min-width: 1440px) {
  .departments h2 {
    font-size: 50px;
  }
}
.departments .department-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
}
.departments .department-list ul {
  width: 30.33333%;
}
.departments .department-list ul li {
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  color: #fff;
  font-weight: 400;
  line-height: 25px;
  position: relative;
  margin: 0 0 15px 35px;
}
@media screen and (min-width: 1440px) {
  .departments .department-list ul li {
    font-size: 18px;
  }
}
.departments .department-list ul li:before {
  content: "";
  position: absolute;
  background-color: #51BAFF;
  width: 7px;
  height: 2px;
  top: 50%;
  left: -23px;
  transform: translate(-50%, -50%);
}
.departments .department-list ul a {
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  color: #fff;
  font-weight: 400;
  line-height: 25px;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .departments .department-list ul a {
    font-size: 18px;
  }
}
.departments .readmore {
  display: none;
  text-align: right;
}
.departments .readmore span {
  color: #fff;
  border-bottom: 1px solid;
  padding-bottom: 3px;
}

.mfp-auto-cursor .mfp-content {
  text-align: center;
}

.mfp-close {
  color: #fff !important;
  right: 50px !important;
  top: -50px !important;
}

footer {
  background-color: #051C2B;
  padding: 90px 0;
}
footer .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 47px;
  column-gap: 20px;
}
footer .top .col1 {
  width: 24%;
}
footer .top .col1 .description p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 18px;
}
footer .top .col1 .social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 27px;
}
footer .top .col1 .social-media a {
  background-color: #105C8E;
  border-radius: 50%;
  padding: 9px;
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .top .col1 .social-media a .hvr-icon {
  display: none;
}
footer .top .col1 .social-media a:hover {
  background-color: #fff;
}
footer .top .col1 .social-media a:hover .hvr-icon {
  display: block;
}
footer .top .col1 .social-media a:hover .icon {
  display: none;
}
footer .top .col1 .social-media a img {
  margin-top: 1px;
}
footer .top .col2, footer .top .col3, footer .top .col4, footer .top .col5 {
  width: auto;
}
footer .top .col2 h6, footer .top .col3 h6, footer .top .col4 h6, footer .top .col5 h6 {
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  color: #fff;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 27px;
}
@media screen and (min-width: 1440px) {
  footer .top .col2 h6, footer .top .col3 h6, footer .top .col4 h6, footer .top .col5 h6 {
    font-size: 18px;
  }
}
footer .top .col2 ul li, footer .top .col3 ul li, footer .top .col4 ul li, footer .top .col5 ul li {
  margin-bottom: 20px;
}
footer .top .col2 ul li a, footer .top .col3 ul li a, footer .top .col4 ul li a, footer .top .col5 ul li a {
  color: #fff;
  font-size: calc(12px + 3 * (100vw - 370px) / 1070);
  opacity: 0.8;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  footer .top .col2 ul li a, footer .top .col3 ul li a, footer .top .col4 ul li a, footer .top .col5 ul li a {
    font-size: 15px;
  }
}
footer .top .col2 ul li a:hover, footer .top .col3 ul li a:hover, footer .top .col4 ul li a:hover, footer .top .col5 ul li a:hover {
  color: #BF2228;
}
footer .bottom {
  border-top: 1px solid rgba(151, 151, 151, 0.2);
  padding-top: 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .bottom .copy-right {
  width: 50%;
}
footer .bottom .right {
  width: 50%;
  text-align: right;
}
footer .bottom p {
  font-size: calc(12px + 3 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  footer .bottom p {
    font-size: 15px;
  }
}
footer .bottom p a {
  color: #fff;
}
footer .bottom p a:hover {
  color: #BF2228;
}

.default-page {
  padding: 50px 0;
}

.inner-page-banner {
  height: 500px;
  max-height: 500px;
  display: flex;
  flex-direction: column-reverse;
  background-size: cover !important;
}
.inner-page-banner .container {
  width: 100%;
}
.inner-page-banner .content {
  margin-bottom: 96px;
  max-width: 580px;
}
.inner-page-banner .content h1 {
  font-size: calc(45px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
  color: #fff;
}
@media screen and (min-width: 1440px) {
  .inner-page-banner .content h1 {
    font-size: 55px;
  }
}
.inner-page-banner .content p {
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  color: #fff;
  opacity: 0.8;
  line-height: 34px;
}
@media screen and (min-width: 1440px) {
  .inner-page-banner .content p {
    font-size: 20px;
  }
}

.about-page .first-sec {
  padding: 83px 0 96px 0;
}
.about-page .first-sec .outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
}
.about-page .first-sec .content {
  width: calc(66% - 18px);
}
.about-page .first-sec .content p {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  margin-bottom: 8px;
  opacity: 0.8;
  color: #152F56;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (min-width: 1440px) {
  .about-page .first-sec .content p {
    font-size: 16px;
  }
}
.about-page .first-sec .img {
  width: calc(34% - 18px);
}
.about-page .first-sec .img img {
  width: 100%;
}
.about-page .vision-sec {
  background-color: #BF2228;
  padding: 91px 0;
  text-align: center;
  display: flex;
}
.about-page .vision-sec h2 {
  font-size: calc(35px + 10 * (100vw - 370px) / 1070);
  margin-bottom: 17px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 1440px) {
  .about-page .vision-sec h2 {
    font-size: 45px;
  }
}
.about-page .vision-sec .description {
  max-width: 680px;
  text-align: center;
}
.about-page .vision-sec .description p {
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  color: #fff;
  font-weight: 400;
  line-height: 40px;
}
@media screen and (min-width: 1440px) {
  .about-page .vision-sec .description p {
    font-size: 20px;
  }
}
.about-page .mision-value-sec {
  background-size: 100% 100% !important;
  position: relative;
}
.about-page .mision-value-sec::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  background-color: rgb(68, 89, 120);
  z-index: 0;
  height: 100%;
}
.about-page .mision-value-sec .outer {
  display: flex;
  flex-wrap: wrap;
}
.about-page .mision-value-sec h2 {
  font-weight: 700;
  line-height: normal;
  font-size: calc(35px + 10 * (100vw - 370px) / 1070);
  margin-bottom: 10px;
}
@media screen and (min-width: 1440px) {
  .about-page .mision-value-sec h2 {
    font-size: 45px;
  }
}
.about-page .mision-value-sec .mission {
  width: 59.32%;
  padding: 90px 90px 100px 0;
}
.about-page .mision-value-sec .mission h2 {
  color: #105C8E;
}
.about-page .mision-value-sec .mission p {
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  color: #152F56;
  font-weight: 400;
  line-height: 38px;
}
@media screen and (min-width: 1440px) {
  .about-page .mision-value-sec .mission p {
    font-size: 20px;
  }
}
.about-page .mision-value-sec .values-sec {
  background-color: rgb(68, 89, 120);
  padding: 81px 0 100px 100px;
  width: 40.68%;
  z-index: 1;
}
.about-page .mision-value-sec .values-sec h2 {
  color: #fff;
}
.about-page .mision-value-sec .values-sec ul li {
  background-color: rgba(81, 186, 255, 0.5);
  color: #fff;
  margin-bottom: 5px;
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  font-weight: 500;
  line-height: 50px;
  padding: 0 15px;
}
@media screen and (min-width: 1440px) {
  .about-page .mision-value-sec .values-sec ul li {
    font-size: 20px;
  }
}
.about-page .mision-value-sec .values-sec ul li:hover {
  background-color: #fff;
  color: #152F56;
  transition: 0.5s;
}
.about-page .founder-profile {
  padding: 95px 0 105px 0;
}
.about-page .founder-profile .founder-dtls {
  margin-bottom: 44px;
}
.about-page .founder-profile .founder-dtls h2 {
  margin-bottom: 11px;
  color: #105C8E;
  font-weight: 700;
  line-height: normal;
  font-size: calc(35px + 10 * (100vw - 370px) / 1070);
}
@media screen and (min-width: 1440px) {
  .about-page .founder-profile .founder-dtls h2 {
    font-size: 45px;
  }
}
.about-page .founder-profile .founder-dtls h5 {
  font-weight: 600;
  line-height: normal;
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  color: #152F56;
  margin-bottom: 8px;
}
@media screen and (min-width: 1440px) {
  .about-page .founder-profile .founder-dtls h5 {
    font-size: 25px;
  }
}
.about-page .founder-profile .founder-dtls h6 {
  color: #152F56;
  opacity: 0.8;
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
}
@media screen and (min-width: 1440px) {
  .about-page .founder-profile .founder-dtls h6 {
    font-size: 20px;
  }
}
.about-page .founder-profile .content {
  padding: 60px 60px 82px 63px;
  background-color: #ECF7FF;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 47px;
  position: relative;
  z-index: -1;
}
.about-page .founder-profile .content .left {
  width: calc(58% - 23.5px);
}
.about-page .founder-profile .content .right {
  width: calc(42% - 23.5px);
  position: relative;
}
.about-page .founder-profile .content .description {
  position: absolute;
  top: 120px;
}
.about-page .founder-profile .content p {
  font-weight: 400;
  line-height: 32px;
  color: #152F56;
  opacity: 0.8;
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  margin-bottom: 10px;
}
@media screen and (min-width: 1440px) {
  .about-page .founder-profile .content p {
    font-size: 16px;
  }
}
.about-page .founder-profile .founder-img {
  position: absolute;
  top: -270px;
  right: 0;
  max-width: 40.68%;
  z-index: -1;
}
.about-page .founder-profile .founder-img img {
  width: 100%;
}

.patient-information-page .services-sec {
  padding: 81px 0 100px 0;
}
.patient-information-page .services-sec h2 {
  color: #105C8E;
  text-align: center;
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 21px;
}
@media screen and (min-width: 1440px) {
  .patient-information-page .services-sec h2 {
    font-size: 40px;
  }
}
.patient-information-page .services-sec .services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.patient-information-page .services-sec .services .service {
  width: calc(25% - 26.6666666667px);
  border: 1px solid #E9E3F2;
  padding: 62px 33px 33px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.patient-information-page .services-sec .services .service .icon {
  margin-bottom: 18px;
  width: 100%;
}
.patient-information-page .services-sec .services .service h6 {
  font-size: calc(20px + 2 * (100vw - 370px) / 1070);
  color: #105C8E;
  text-align: center;
  font-weight: 400;
  line-height: 35px;
  text-transform: capitalize;
}
@media screen and (min-width: 1440px) {
  .patient-information-page .services-sec .services .service h6 {
    font-size: 22px;
  }
}
.patient-information-page .services-sec .services .service:hover {
  box-shadow: 0px 15px 30px 0px rgba(21, 47, 86, 0.06);
  transition: 0.5s;
}
.patient-information-page .tab-sec {
  background-color: #ECF7FF;
  padding: 76px 0 114px 0;
}
.patient-information-page .tab-sec .service-tabs ul.tab-list {
  margin-bottom: 56px;
  text-align: center;
}
.patient-information-page .tab-sec .service-tabs ul.tab-list .r-tabs-accordion-title, .patient-information-page .tab-sec .service-tabs ul.tab-list li {
  margin-right: 38px;
}
.patient-information-page .tab-sec .service-tabs ul.tab-list .r-tabs-accordion-title a, .patient-information-page .tab-sec .service-tabs ul.tab-list li a {
  font-size: calc(20px + 2 * (100vw - 370px) / 1070);
  color: #152F56;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
}
@media screen and (min-width: 1440px) {
  .patient-information-page .tab-sec .service-tabs ul.tab-list .r-tabs-accordion-title a, .patient-information-page .tab-sec .service-tabs ul.tab-list li a {
    font-size: 22px;
  }
}
.patient-information-page .tab-sec .service-tabs ul.tab-list .r-tabs-state-active {
  border-bottom: 3px solid #152F56;
}
.patient-information-page .tab-sec .service-tabs ul.tab-list .r-tabs-state-active a {
  color: #BF2228;
}
.patient-information-page .tab-sec .service-tabs .tab-content {
  padding: 0;
}
.patient-information-page .tab-sec .service-tabs .tab-content h2 {
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  color: #152F56;
  margin-bottom: 33px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (min-width: 1440px) {
  .patient-information-page .tab-sec .service-tabs .tab-content h2 {
    font-size: 40px;
  }
}
.patient-information-page .tab-sec .service-tabs .tab-content .outer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.patient-information-page .tab-sec .service-tabs .tab-content .col1, .patient-information-page .tab-sec .service-tabs .tab-content .col2, .patient-information-page .tab-sec .service-tabs .tab-content .col3 {
  width: calc(33.33333% - 13.33333px);
}
.patient-information-page .tab-sec .service-tabs .tab-content .boxes .box {
  background-color: #fff;
  padding: 45px 22px 45px 22px;
  margin-bottom: 20px;
}
.patient-information-page .tab-sec .service-tabs .tab-content .boxes .box h5 {
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  color: #105C8E;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 17px;
}
@media screen and (min-width: 1440px) {
  .patient-information-page .tab-sec .service-tabs .tab-content .boxes .box h5 {
    font-size: 25px;
  }
}
.patient-information-page .tab-sec .service-tabs .tab-content .boxes .box ul li {
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 30px;
  color: #152F56;
  opacity: 0.8;
  position: relative;
  margin: 0 0 15px 35px;
}
@media screen and (min-width: 1440px) {
  .patient-information-page .tab-sec .service-tabs .tab-content .boxes .box ul li {
    font-size: 18px;
  }
}
.patient-information-page .tab-sec .service-tabs .tab-content .boxes .box ul li:before {
  content: "";
  position: absolute;
  background-color: #51BAFF;
  width: 7px;
  height: 2px;
  top: 50%;
  left: -23px;
  transform: translate(-50%, -50%);
}

.r-tabs-accordion-title {
  margin-bottom: 20px;
}
.r-tabs-accordion-title a {
  font-size: calc(20px + 2 * (100vw - 370px) / 1070);
  color: #152F56;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
}
@media screen and (min-width: 1440px) {
  .r-tabs-accordion-title a {
    font-size: 22px;
  }
}

.r-tabs-state-active a {
  color: #BF2228;
}

.media-page {
  padding: 72px 0;
}
.media-page .media-sec .media-tabs ul.media-tab-list {
  margin-bottom: 36px;
  text-align: center;
}
.media-page .media-sec .media-tabs ul.media-tab-list li {
  margin-right: 38px;
}
.media-page .media-sec .media-tabs ul.media-tab-list li a {
  font-size: calc(20px + 2 * (100vw - 370px) / 1070);
  color: #152F56;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
}
@media screen and (min-width: 1440px) {
  .media-page .media-sec .media-tabs ul.media-tab-list li a {
    font-size: 22px;
  }
}
.media-page .media-sec .media-tabs ul.media-tab-list .r-tabs-state-active {
  border-bottom: 3px solid #152F56;
}
.media-page .media-sec .media-tabs ul.media-tab-list .r-tabs-state-active a {
  color: #BF2228;
}
.media-page .media-sec .media-tabs .media-tab-content .outer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.media-page .media-sec .media-tabs .media-tab-content .media-item {
  width: calc(25% - 15px);
  position: relative;
  height: 100%;
}
.media-page .media-sec .media-tabs .media-tab-content .media-item img {
  width: 100%;
}
.media-page .media-sec .media-tabs .media-tab-content .media-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button.mfp-arrow {
  z-index: 999999 !important;
}

.contact-page .first-sec {
  padding: 71px 0 88px 0;
}
.contact-page .first-sec .outer {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
.contact-page .first-sec .locate-us {
  width: calc(46.6% - 50px);
}
.contact-page .first-sec .locate-us h2 {
  margin-bottom: 15px;
}
.contact-page .first-sec .locate-us .description p {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #BCCFD9;
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 30px;
  color: #152F56;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .contact-page .first-sec .locate-us .description p {
    font-size: 16px;
  }
}
.contact-page .first-sec .locate-us .description p:first-child {
  padding-top: 0;
}
.contact-page .first-sec .form {
  width: calc(53.4% - 50px);
}
.contact-page .first-sec .form h2 {
  margin-bottom: 9px;
}
.contact-page .first-sec .form h6 {
  font-size: calc(18px + 2 * (100vw - 370px) / 1070);
  font-weight: 500;
  line-height: normal;
  color: #152F56;
  margin-bottom: 20px;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .contact-page .first-sec .form h6 {
    font-size: 20px;
  }
}
.contact-page .first-sec .form form .field-set {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-page .first-sec .form form .field {
  width: calc(50% - 10px);
  margin-bottom: 18px;
}
.contact-page .first-sec .form form .field input {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #BCCFD9;
}
@media screen and (min-width: 1440px) {
  .contact-page .first-sec .form form .field input {
    font-size: 16px;
  }
}
.contact-page .first-sec .form form .field input::placeholder {
  opacity: 0.5;
}
.contact-page .first-sec .form form .field label {
  font-size: calc(15px + 2 * (100vw - 370px) / 1070);
  margin-bottom: 8px;
}
@media screen and (min-width: 1440px) {
  .contact-page .first-sec .form form .field label {
    font-size: 17px;
  }
}
.contact-page .first-sec .form form .field input, .contact-page .first-sec .form form .field label {
  color: rgba(21, 47, 86, 0.8);
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.contact-page .first-sec .form form label {
  width: calc(50% - 10px);
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: normal;
  color: #152F56;
  text-transform: capitalize;
  display: inline-block;
}
@media screen and (min-width: 1440px) {
  .contact-page .first-sec .form form label {
    font-size: 16px;
  }
}
.contact-page .first-sec .form form .text-message {
  margin-bottom: 20px;
}
.contact-page .first-sec .form form .text-message textarea {
  width: 100%;
  border: 1px solid #BCCFD9;
  margin-top: 9px;
  padding: 20px;
}
.contact-page .first-sec .form form .submit {
  text-align: right;
}
.contact-page .first-sec .form form .submit input {
  background-color: #C1252B;
  font-size: calc(15px + 2 * (100vw - 370px) / 1070);
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  padding: 17px 23px;
  border: 0;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1440px) {
  .contact-page .first-sec .form form .submit input {
    font-size: 17px;
  }
}
.contact-page .first-sec .form form .submit input:hover {
  background-color: #105C8E;
  transition: all 0.3s ease-in;
}
.contact-page h2 {
  color: #152F56;
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .contact-page h2 {
    font-size: 40px;
  }
}
.contact-page .address-sec {
  background: #ECF7FF;
  padding: 94px 0 106px 0;
}
.contact-page .address-sec .outer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-page .address-sec h5 {
  font-size: calc(22px + 3 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 7px;
}
@media screen and (min-width: 1440px) {
  .contact-page .address-sec h5 {
    font-size: 25px;
  }
}
.contact-page .address-sec .description {
  margin-bottom: 29px;
  max-width: 566px;
}
.contact-page .address-sec .address {
  width: calc(58.5% - 10px);
  background-color: #fff;
  padding: 44px 41px 64px 46px;
}
.contact-page .address-sec .address h5 {
  color: #105C8E;
}
.contact-page .address-sec .address p, .contact-page .address-sec .address li, .contact-page .address-sec .address h6 {
  color: rgba(21, 47, 86, 0.8);
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 32px;
}
@media screen and (min-width: 1440px) {
  .contact-page .address-sec .address p, .contact-page .address-sec .address li, .contact-page .address-sec .address h6 {
    font-size: 18px;
  }
}
.contact-page .address-sec .address .single-line {
  flex: 0 0 110px;
}
.contact-page .address-sec .address ul li {
  border-bottom: 1px solid #BCCFD9;
  display: flex;
  margin: 0 0 15px 22px;
  position: relative;
  padding-bottom: 4px;
}
.contact-page .address-sec .address ul li:before {
  content: "";
  position: absolute;
  background-color: #51BAFF;
  width: 7px;
  height: 2px;
  top: 50%;
  left: -18px;
  transform: translate(-50%, -50%);
}
.contact-page .address-sec .adminstration {
  width: calc(41.5% - 10px);
  background-color: #105C8E;
  padding: 44px 44px 65px 46px;
}
.contact-page .address-sec .adminstration h5 {
  color: #fff;
}
.contact-page .address-sec .adminstration ul li {
  color: #fff;
  border-bottom: 1px solid rgb(188, 207, 217);
  position: relative;
  margin: 0 0 15px 22px;
}
.contact-page .address-sec .adminstration ul li:before {
  content: "";
  position: absolute;
  background-color: #51BAFF;
  width: 7px;
  height: 2px;
  top: 17px;
  left: -18px;
}
.contact-page .address-sec .adminstration ul li h6 {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 40px;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .contact-page .address-sec .adminstration ul li h6 {
    font-size: 16px;
  }
}
.contact-page .address-sec .adminstration ul li h5 {
  font-weight: 600;
  line-height: 35px;
  font-size: calc(16px + 2 * (100vw - 370px) / 1070);
}
@media screen and (min-width: 1440px) {
  .contact-page .address-sec .adminstration ul li h5 {
    font-size: 18px;
  }
}

.notfound_page {
  text-align: center;
  padding: 100px 0;
}
.notfound_page h2 {
  font-size: 80px;
}
.notfound_page h3 {
  font-size: 30px;
}
.notfound_page h2, .notfound_page h3 {
  color: #105C8E;
}

.search_page {
  padding: 100px 0;
}
.search_page .text-box {
  padding: 25px 0;
}

.default-page-template {
  padding: 100px 0;
}
.default-page-template h1, .default-page-template h2, .default-page-template h3, .default-page-template h4, .default-page-template h5, .default-page-template h6 {
  color: #105C8E;
  margin: 15px 0;
}
.default-page-template h1 {
  font-size: calc(45px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .default-page-template h1 {
    font-size: 55px;
  }
}
.default-page-template h2 {
  font-size: calc(40px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .default-page-template h2 {
    font-size: 50px;
  }
}
.default-page-template h3 {
  font-size: calc(30px + 10 * (100vw - 370px) / 1070);
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .default-page-template h3 {
    font-size: 40px;
  }
}
.default-page-template h4 {
  font-size: 30px;
}
.default-page-template h5 {
  font-size: 25px;
}
.default-page-template h6 {
  font-size: 20px;
}
.default-page-template p {
  font-size: calc(14px + 2 * (100vw - 370px) / 1070);
  font-weight: 400;
  line-height: 34px;
}
@media screen and (min-width: 1440px) {
  .default-page-template p {
    font-size: 16px;
  }
}
.default-page-template ul {
  margin: 0 0 0 20px;
}
.default-page-template ul li {
  list-style: initial;
  margin-bottom: 7px;
}

@media screen and (max-width: 1440px) {
  .home-page .banner {
    height: 700px;
  }
  .home-page .banner .slick-slider, .home-page .banner .slick-list, .home-page .banner .slick-track, .home-page .banner .item, .home-page .banner img {
    height: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .container {
    padding: 0 50px;
  }
  .home-page .banner .box {
    left: 50px;
  }
  .home-page .banner .slick-dots {
    right: 50px;
  }
  .about-page .mision-value-sec .values-sec {
    padding: 81px 0 100px 50px;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu {
    display: none;
  }
  header {
    position: relative;
  }
  .header-menu.mobile-menue {
    display: block;
    position: absolute;
    top: 39px;
    background: white;
    z-index: 2;
    padding: 120px 50px 50px 50px;
    right: 0;
    width: 300px;
    height: 100vh;
  }
  .header-menu.mobile-menue ul#menu-header-menu {
    display: initial !important;
  }
  .header-menu.mobile-menue ul#menu-header-menu li {
    margin-bottom: 20px;
  }
  .toggler {
    display: flex !important;
    flex-direction: column;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }
  .toggler span {
    width: 30px;
    height: 4px;
    background: #105C8E;
    margin: 2px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  .toggler.rotate span:first-child {
    transform: rotate(45deg);
    margin: 0;
  }
  .toggler.rotate span:nth-child(2) {
    display: none;
  }
  .toggler.rotate span:last-child {
    transform: rotate(-45deg);
    margin: -4px;
  }
  .home-page .founder {
    position: initial;
    transform: initial;
  }
  .home-page .free-services {
    margin-top: 0;
    padding: 70px 0;
  }
  .home-page .free-services .service {
    width: calc(33.33333% - 20px) !important;
  }
  footer .top .col1 {
    width: 100%;
    margin-bottom: 50px;
  }
  .about-page .first-sec .img {
    width: calc(30% - 18px);
  }
  .about-page .first-sec .content {
    width: calc(70% - 18px);
  }
  .about-page .founder-profile .content .description {
    top: 80px;
  }
  .contact-page .address-sec .address, .contact-page .address-sec .adminstration {
    width: 100%;
  }
  .departments {
    background-attachment: initial !important;
    background-size: 100% 100% !important;
  }
}
@media screen and (max-width: 1032px) {
  .home-page .about-sec .top .our-value {
    width: 580px;
  }
  .home-page .about-sec .top::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .home-page .about-sec .bottom, .home-page .mission, .home-page .free-services, .home-page .patient-information-sec {
    padding: 50px 0;
  }
  .home-page .about-sec .bottom {
    margin-top: 0;
  }
  .departments .outer {
    padding: 50px 0;
  }
  footer {
    padding: 50px 0;
  }
  .home-page .founder .founder-profile {
    background-color: #ECF7FF;
    align-items: center;
    flex-direction: column;
  }
  .home-page .founder .founder-profile .img {
    width: 60%;
  }
  .home-page .founder .founder-profile .img img {
    width: 100%;
  }
  .home-page .founder .founder-profile .dtls {
    padding: 50px 0;
  }
  .about-page .first-sec .content, .about-page .first-sec .img {
    width: 100%;
  }
  .about-page .first-sec .content {
    order: 2;
  }
  .about-page .first-sec .img {
    text-align: center;
  }
  .about-page .first-sec .img img {
    width: auto;
  }
  .about-page .founder-profile .content {
    display: block;
    z-index: initial;
  }
  .about-page .founder-profile .content .right, .about-page .founder-profile .content .left {
    width: 100%;
  }
  .about-page .founder-profile .content .description {
    position: initial;
  }
  .about-page .founder-profile .founder-img {
    position: initial;
    text-align: center;
    max-width: initial;
    margin-bottom: 20px;
  }
  .about-page .founder-profile .founder-img img {
    width: auto;
  }
  .contact-page .first-sec .outer {
    gap: 40px;
  }
  .contact-page .first-sec .locate-us {
    width: calc(46.6% - 20px);
  }
  .contact-page .first-sec .form {
    width: calc(53.4% - 20px);
  }
}
@media screen and (max-width: 980px) {
  .home-page .about-sec .bottom .about, .home-page .about-sec .bottom .vision {
    width: 100%;
  }
  .home-page .about-sec .bottom .outer {
    row-gap: 50px;
  }
  .home-page .patient-information-sec .content, .home-page .patient-information-sec .video-sec {
    width: 100%;
  }
  .departments .department-list ul {
    width: calc(33.33333% - 20px);
  }
  .about-page .mision-value-sec .mission {
    width: 100%;
    padding: 50px 0;
  }
  .about-page .mision-value-sec .values-sec {
    width: 100%;
    padding: 50px;
    margin-bottom: 50px;
  }
  .about-page .mision-value-sec::after {
    display: none;
  }
  .patient-information-page .services-sec .services .service {
    width: calc(50% - 26.6666666667px);
  }
  .media-page .media-sec .media-tabs .media-tab-content .media-item {
    width: calc(33.333% - 20px);
  }
  .inner-page-banner {
    background-position: 75% 0 !important;
  }
}
@media screen and (max-width: 900px) {
  footer .bottom {
    row-gap: 30px;
    text-align: center;
  }
  footer .bottom .copy-right, footer .bottom .right {
    width: 100%;
  }
  footer .bottom .right {
    text-align: center;
  }
  .home-page .free-services .service {
    width: 100% !important;
  }
  .patient-information-page .tab-sec .service-tabs .tab-content .col1, .patient-information-page .tab-sec .service-tabs .tab-content .col2,
  .patient-information-page .tab-sec .service-tabs .tab-content .col3 {
    width: 100%;
  }
  .contact-page .first-sec .locate-us, .contact-page .first-sec .form {
    width: 100%;
  }
  .home-page .free-services {
    background-attachment: initial !important;
    background-size: 100% 100% !important;
  }
}
@media screen and (max-width: 720px) {
  .home-page .founder .founder-profile .img {
    width: 100%;
    text-align: center;
  }
  .home-page .founder .founder-profile .dtls {
    width: 100% !important;
    padding: 50px !important;
  }
  .home-page .about-sec .top .emergency-dtls {
    flex-direction: column;
    row-gap: 20px;
    width: 450px;
  }
  .home-page .about-sec .top .emergency-dtls .left {
    justify-content: unset;
    gap: 30px;
  }
  .home-page .about-sec .top .emergency-dtls .left::after {
    display: none;
  }
  .home-page .about-sec .top .emergency-dtls .right {
    margin-left: 80px;
  }
  .home-page .about-sec .top .our-value {
    width: 450px;
  }
  .home-page .banner .box {
    padding: 40px;
    width: 450px;
  }
  header .header-content .right {
    gap: 25px;
  }
  .departments .department-list {
    display: block;
  }
  .departments .department-list ul {
    width: auto;
  }
  .departments .department-list ul li {
    margin: 0 0 10px 34px;
  }
  .mfp-close {
    right: 0 !important;
  }
  .about-page .founder-profile .founder-img img {
    width: 100%;
  }
  .about-page .first-sec, .about-page .vision-sec, .about-page .founder-profile {
    padding: 50px 0;
  }
  .about-page .founder-profile .content, .about-page .mision-value-sec .values-sec {
    padding: 30px;
  }
  .about-page .founder-profile .founder-dtls {
    margin-bottom: 25px;
  }
  .media-page .media-sec .media-tabs .media-tab-content .media-item {
    width: calc(50% - 30px);
  }
  .default-page-template {
    padding: 50px 0;
  }
  .default-page-template h1 {
    font-size: 29px;
  }
  .default-page-template h2 {
    font-size: 25px;
  }
  .default-page-template h3 {
    font-size: 22px;
  }
  .default-page-template h4 {
    font-size: 20px;
  }
  .default-page-template h5 {
    font-size: 18px;
  }
  .default-page-template h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 660px) {
  .home-page .patient-information-sec .content .informations ul {
    width: 100%;
  }
  .home-page .patient-information-sec .outer {
    gap: 30px;
  }
  header .logo {
    width: 50%;
  }
  header .logo img {
    width: 100%;
  }
  .patient-information-page .services-sec .services .service {
    width: 100%;
  }
  .patient-information-page .services-sec, .patient-information-page .tab-sec {
    padding: 50px 0;
  }
}
@media screen and (max-width: 620px) {
  footer .top .col2, footer .top .col3, footer .top .col4, footer .top .col5 {
    width: calc(50% - 10px);
  }
  .media-page .media-sec .media-tabs .media-tab-content .media-item {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .toggler {
    width: 25px;
    height: 25px;
  }
  .toggler span {
    width: 25px;
  }
}
@media screen and (max-width: 560px) {
  .home-page .banner .box {
    width: 100%;
    left: 0;
  }
  .home-page .about-sec .top .container {
    padding: 0;
  }
  .home-page .about-sec .top .emergency-dtls, .home-page .about-sec .top .our-value {
    width: 100%;
  }
  .youtube-popup iframe {
    width: 100%;
  }
  .about-page .first-sec .img img {
    width: 100%;
  }
  .home-page .about-sec .top .emergency-dtls {
    flex-direction: row;
    gap: 20px;
  }
  .home-page .about-sec .top .emergency-dtls .left {
    width: calc(65% - 10px);
  }
  .home-page .about-sec .top .emergency-dtls .left .icon {
    display: none;
  }
  .home-page .about-sec .top .emergency-dtls .right {
    width: calc(35% - 10px);
    margin-left: 0;
  }
  p {
    line-height: 28px !important;
  }
  .home-page .about-sec .bottom .vision .content p {
    line-height: 35px !important;
  }
  .departments .department-list ul:nth-child(2), .departments .department-list ul:nth-child(3) {
    display: none;
  }
  .departments .readmore {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 0 30px;
  }
  .home-page .banner .box, .home-page .about-sec .top .emergency-dtls, .home-page .about-sec .top .our-value {
    padding: 30px;
  }
  .home-page .founder .founder-profile .dtls {
    padding: 50px 30px !important;
  }
  .home-page .about-sec .bottom .vision {
    padding: 30px;
  }
  footer .top .col1 {
    margin-bottom: 0;
  }
  footer .top .col2, footer .top .col3, footer .top .col4, footer .top .col5 {
    width: 100%;
  }
  footer .top {
    row-gap: 20px;
    padding-bottom: 30px;
  }
  footer .top .col1 .social-media {
    margin: 30px 0 20px 0;
  }
  footer .top h6 {
    margin-bottom: 18px !important;
  }
  footer .top ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 21px;
  }
  footer .top ul li {
    margin-bottom: 15px !important;
  }
  footer .top ul li:last-child {
    margin-bottom: 0 !important;
  }
  footer .bottom {
    padding-top: 30px;
    row-gap: 25px;
  }
  footer .bottom p {
    line-height: 22px;
  }
}
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.white-popup {
  position: relative;
  background: #fff;
  padding: 40px;
  width: auto;
  max-width: 940px;
  margin: 20px auto;
  border-radius: 10px;
  line-height: 1.8vw;
  color: #00205b;
}
.white-popup p {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  color: #454545;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.9;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  position: fixed;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 999999;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus,
.mfp-arrow:hover {
  opacity: 1;
}

.mfp-arrow:after,
.mfp-arrow:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0;
}

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none;
}

.r-tabs .r-tabs-panel {
  padding: 15px;
  display: none;
}

.r-tabs .r-tabs-accordion-title {
  display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block;
}

/* Accordion responsive breakpoint */
@media only screen and (max-width: 768px) {
  .r-tabs .r-tabs-nav {
    display: none;
  }
  .r-tabs .r-tabs-accordion-title {
    display: block;
  }
}