@charset "UTF-8";
header {
  padding: 40px 0;
}
@media (max-width: 1199px) {
  header {
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  header {
    padding: 20px 0;
  }
}
@media (max-width: 1199px) {
  header .logo {
    width: 200px;
  }
}
@media (max-width: 1024px) {
  header .logo {
    width: 170px;
  }
}
header .call-list a {
  padding-right: 15px;
}
@media (max-width: 1024px) {
  header .call-list img {
    width: 25px;
  }
}
header .container {
  align-items: center;
  display: flex;
}
@media (max-width: 1280px) {
  header .brand {
    width: 200px;
  }
}
@media (max-width: 1199px) {
  header .brand {
    width: 190px;
  }
}

nav {
  z-index: 100;
}
nav ul {
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  nav ul {
    gap: 15px;
  }
}
nav ul li {
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
}
nav ul li a {
  color: #4C4C4C;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
nav ul li a:hover {
  color: #3F72B8;
}
nav ul li a.isactive {
  color: #3F72B8;
}
nav ul li.call-list {
  border-radius: 27px;
  border: 1px solid #EAEAEA;
  padding: 5px;
}
nav ul li.call-list img {
  width: 35px;
  height: 35px;
}
nav ul li.call-list a {
  gap: 10px;
}
nav ul li.call-list a p {
  color: #000000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
nav ul li.call-list a p span {
  font-weight: 400;
}
@media (max-width: 1199px) {
  nav ul li.legacy-txt {
    max-width: 100px;
    margin: 30px auto;
  }
}
nav ul .navbar-dropdown {
  position: absolute;
  display: none;
  z-index: 990;
  background: #fff;
  border: 1px solid #C5D2E5;
  min-width: 170px;
  border-radius: 8px;
  padding: 0 15px;
  margin-top: 5px;
  height: auto;
}
nav ul .navbar-dropdown li a {
  color: #4C4C4C;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
nav ul .navbar-dropdown li a:hover {
  color: #3F72B8;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
  position: absolute;
  right: -15px;
}
@media only screen and (max-width: 1024px) {
  nav ul li a:not(:only-child):after,
  nav ul li a:visited:not(:only-child):after {
    right: unset;
  }
}

.nav-mobile {
  display: none;
  position: relative;
  z-index: 999;
}

@media only screen and (max-width: 1024px) {
  .nav-mobile {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .nav-mobile a {
    display: flex;
    align-items: center;
    height: 100%;
  }
  nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  nav ul {
    flex-direction: column;
    position: absolute;
    width: 100%;
    background: #f5f5f5;
    z-index: 99;
    display: none;
    left: 0;
    height: 100vh;
    top: 0;
    padding: 30px;
  }
  nav ul li a {
    line-height: 20px;
  }
  nav ul nav ul li ul li a {
    padding-left: 30px;
  }
  .navbar-dropdown {
    position: static;
  }
}
@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
#navbar-toggle {
  cursor: pointer;
}

#navbar-toggle span,
#navbar-toggle span:before,
#navbar-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 25px;
  background: #3F72B8;
  position: relative;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
  top: -10px;
}

#navbar-toggle span:after {
  bottom: -7px;
}

#navbar-toggle.active span {
  background-color: transparent;
}

#navbar-toggle.active span:before,
#navbar-toggle.active span:after {
  top: 0;
}

#navbar-toggle.active span:before {
  transform: rotate(45deg);
}

#navbar-toggle.active span:after {
  transform: rotate(-45deg);
  top: -3px;
}

.title-block {
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .title-block {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .title-block {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .title-block {
    margin-bottom: 20px;
  }
}
.title-block h2 {
  color: #000000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .title-block h2 {
    font-size: 36px;
  }
}
@media (max-width: 1366px) {
  .title-block h2 {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .title-block h2 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .title-block h2 {
    font-size: 22px;
  }
}
.title-block h2 span {
  color: #3F72B8;
}
.title-block p {
  color: #656565;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 8px;
  display: block;
}
@media (max-width: 991px) {
  .title-block p {
    font-size: 14px;
    line-height: 22px;
  }
}

.packages-card {
  flex-direction: column;
  border-radius: 25px;
  border: 1px solid #C5D2E5;
  padding: 40px;
}
@media (max-width: 1366px) {
  .packages-card {
    padding: 30px;
    border-radius: 20px;
  }
}
@media (max-width: 1199px) {
  .packages-card {
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  .packages-card {
    border-radius: 10px;
    padding: 20px;
  }
}
.packages-card .img-block {
  width: 98px;
  height: 98px;
  display: block;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .packages-card .img-block {
    margin-bottom: 15px;
  }
}
.packages-card .img-block img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}
.packages-card .packages-card-body h4 {
  color: #000000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  line-height: 42px;
}
@media (max-width: 1366px) {
  .packages-card .packages-card-body h4 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .packages-card .packages-card-body h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.packages-card .packages-card-body h4 span {
  color: #3F72B8;
}
.packages-card .packages-card-body p {
  padding-bottom: 27px;
  color: #656565;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 767px) {
  .packages-card .packages-card-body p {
    padding-bottom: 20px;
    font-size: 14px;
  }
}
.packages-card .packages-card-body a {
  color: #656565;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-decoration-line: underline;
  display: block;
  margin-top: 15px;
  text-align: center;
}
.packages-card .packages-card-body .more-btn {
  margin: auto;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}

.services-card {
  padding: 30px;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  background: #ffffff;
}
@media (max-width: 1199px) {
  .services-card {
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .services-card {
    gap: 15px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .services-card .cus-row {
    flex-direction: column;
    gap: 20px 0;
  }
  .services-card .cus-row .col-3 {
    width: 100%;
  }
}
.services-card.bg-blue h4, .services-card.bg-red h4 {
  color: #FFF;
}
.services-card.bg-blue p {
  color: #C5E0F4;
}
.services-card.bg-red p {
  color: #F4C5C5;
}
.services-card h4 {
  color: #000000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  text-decoration-line: underline;
}
@media (max-width: 991px) {
  .services-card h4 {
    font-size: 20px;
  }
}
.services-card p {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 991px) {
  .services-card p {
    font-size: 14px;
    line-height: 24px;
  }
}

.our-services-section {
  border-radius: 75px;
  background: #F4F7FA;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1600px) {
  .our-services-section {
    border-radius: 50px;
  }
}
@media (max-width: 1366px) {
  .our-services-section {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .our-services-section {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .our-services-section {
    border-radius: 20px;
  }
}

.our-services-wrap {
  gap: 0 30px;
}
@media (max-width: 1024px) {
  .our-services-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.our-services-wrap .services-img {
  width: 40%;
}
.our-services-wrap .services-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .our-services-wrap .services-img {
    width: 100%;
    border-radius: 10px;
  }
}
.our-services-wrap .services-list {
  width: 60%;
}
@media (max-width: 1024px) {
  .our-services-wrap .services-list {
    width: 100%;
  }
}
.our-services-wrap .services-list .cus-row {
  gap: 20px 0;
}
@media (max-width: 767px) {
  .our-services-wrap .services-list .cus-row .col-2 {
    width: 100%;
  }
}

.faq-section {
  background: #3F72B8;
  border-radius: 75px;
  margin: auto;
}
@media (max-width: 1600px) {
  .faq-section {
    border-radius: 50px;
  }
}
@media (max-width: 1366px) {
  .faq-section {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .faq-section {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .faq-section {
    border-radius: 0px;
  }
}
.faq-section .faq-wrap {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
@media (max-width: 1199px) {
  .faq-section .faq-wrap {
    gap: 20px 0;
  }
}
@media (max-width: 991px) {
  .faq-section .faq-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.faq-section .faq-wrap .faq-title {
  width: 40%;
}
@media (max-width: 991px) {
  .faq-section .faq-wrap .faq-title {
    width: 100%;
  }
}
.faq-section .faq-wrap .faq-title h4 {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .faq-section .faq-wrap .faq-title h4 {
    font-size: 36px;
  }
}
@media (max-width: 1366px) {
  .faq-section .faq-wrap .faq-title h4 {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .faq-section .faq-wrap .faq-title h4 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .faq-section .faq-wrap .faq-title h4 {
    font-size: 22px;
  }
}
.faq-section .faq-wrap .faq-title h4 span {
  color: #CADFFF;
}
.faq-section .faq-wrap .faq {
  width: 60%;
}
@media (max-width: 991px) {
  .faq-section .faq-wrap .faq {
    width: 100%;
  }
}
.faq-section .faq-wrap .faq p {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
}
.faq-section .faq-wrap .faq span {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  display: block;
}
.faq-section .faq-wrap .owl-dots {
  display: flex;
  gap: 6px;
}
.faq-section .faq-wrap .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0px 0px 12.2px rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  margin: 0 5px;
  margin-top: 30px;
  outline: 7px solid transparent;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 1366px) {
  .faq-section .faq-wrap .owl-dots .owl-dot {
    width: 16px;
    height: 16px;
    outline: 4px solid transparent;
  }
}
@media (max-width: 1024px) {
  .faq-section .faq-wrap .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
  }
}
.faq-section .faq-wrap .owl-dots .owl-dot.active {
  background: #3F72B8 !important;
  outline-color: #F8F8F8;
}

.logo-wrap {
  gap: 30px 0;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .logo-wrap img {
    max-width: 200px;
  }
}
.logo-wrap p {
  color: #909090;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .logo-wrap p {
    display: none;
  }
}

.navigation {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.navigation h5 {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .navigation h5 {
    font-size: 18px;
  }
}
.navigation ul {
  gap: 18px;
  flex-direction: column;
}
.navigation ul li a {
  color: #7C7C7C;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .navigation ul li a {
    font-size: 14px;
  }
}

.address-block {
  border-top: 1px solid #D4CC27;
  padding: 40px 0;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .address-block {
    padding: 20px 0;
    margin-top: 20px;
  }
}

.address-block h4 {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .address-block h4 {
    margin-bottom: 20px;
  }
}

.address-wrap {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .address-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.address-wrap .address-list {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media (max-width: 991px) {
  .address-wrap .address-list {
    width: 100%;
    gap: 20px;
  }
}
.address-wrap .address-list p {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 991px) {
  .address-wrap .address-list p {
    font-size: 14px;
  }
}
.address-wrap .address-list a {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.address-wrap .address-list a.phone-call {
  color: #909090;
}

@media (max-width: 991px) {
  .copy {
    flex-direction: column;
    gap: 20px;
  }
}
.copy p {
  color: #7D7A7A;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .copy p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .copy p {
    text-align: center;
  }
}
.copy ul {
  gap: 0 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .copy ul {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .diagnostic-section .cus-row {
    flex-direction: column;
    gap: 20px 0;
  }
  .diagnostic-section .cus-row .col-3 {
    width: 100%;
  }
}
.diagnostic-section .packages-card .img-block {
  width: 100%;
  height: auto;
}
.diagnostic-section .packages-card .packages-card-body a {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .diagnostic-section .packages-card .packages-card-body a {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  footer .cus-row {
    flex-direction: column;
    gap: 20px 0;
  }
}
@media (max-width: 767px) {
  footer .cus-row .col-3 {
    width: 100%;
  }
}

.packages-carousel .owl-nav button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto !important;
  height: 40px;
  width: 40px;
  border-radius: 35px;
  border: 1px solid #D6D6D6 !important;
  border-radius: 100px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.packages-carousel .owl-nav button span {
  display: none;
}
.packages-carousel .owl-nav button.owl-prev {
  left: -80px;
  background: #fff url("../Images/slider-arrow.svg") no-repeat center;
  transform-origin: center;
  transform: rotate(180deg);
}
@media (max-width: 1280px) {
  .packages-carousel .owl-nav button.owl-prev {
    left: -50px;
  }
}
@media (max-width: 1024px) {
  .packages-carousel .owl-nav button.owl-prev {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .packages-carousel .owl-nav button.owl-prev {
    display: none;
  }
}
.packages-carousel .owl-nav button.owl-next {
  right: -80px;
  background: #fff url("../Images/slider-arrow.svg") no-repeat center;
}
@media (max-width: 1280px) {
  .packages-carousel .owl-nav button.owl-next {
    right: -50px;
  }
}
@media (max-width: 1024px) {
  .packages-carousel .owl-nav button.owl-next {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .packages-carousel .owl-nav button.owl-next {
    display: none;
  }
}

.footer-logo {
  gap: 100px;
}
@media (max-width: 1600px) {
  .footer-logo {
    gap: 70px;
  }
}
@media (max-width: 1366px) {
  .footer-logo {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    flex-direction: column;
  }
}
.footer-logo .logo-wrap {
  max-width: 310px;
}
@media (max-width: 767px) {
  .footer-logo .logo-wrap {
    max-width: 100%;
  }
}
.footer-logo .navigation-wrap {
  flex: 1 1 100%;
}

.home-banner .item img {
  border-radius: 75px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1600px) {
  .home-banner .item img {
    border-radius: 60px;
  }
}
@media (max-width: 1366px) {
  .home-banner .item img {
    border-radius: 50px;
    height: 420px;
  }
}
@media (max-width: 1199px) {
  .home-banner .item img {
    border-radius: 40px;
  }
}
@media (max-width: 767px) {
  .home-banner .item img {
    border-radius: 0px;
    height: 520px;
  }
}

.banner .carousel-caption {
  position: absolute;
  width: 100%;
  inset: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .banner .carousel-caption .txt-block .more-btn {
    margin: 20px auto 0;
  }
}
@media (max-width: 767px) {
  .banner .carousel-caption .txt-block {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .banner .carousel-caption .d-flex.justify-between.align-center.h-100 {
    flex-direction: column;
    padding: 20px 0;
  }
}
.banner .bg-img {
  border-radius: 75px;
}
@media (max-width: 1600px) {
  .banner .bg-img {
    border-radius: 60px;
  }
}
@media (max-width: 1366px) {
  .banner .bg-img {
    border-radius: 50px;
    height: 340px;
  }
}
@media (max-width: 1199px) {
  .banner .bg-img {
    border-radius: 40px;
  }
}
@media (max-width: 991px) {
  .banner .bg-img {
    height: 270px;
  }
}
@media (max-width: 767px) {
  .banner .bg-img {
    border-radius: 25px;
  }
}
@media (max-width: 520px) {
  .banner .bg-img {
    border-radius: 15px;
  }
}
.banner .txt-block small {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1366px) {
  .banner .txt-block small {
    font-size: 14px;
  }
}
.banner .txt-block p {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-top: 15px;
}
@media (max-width: 1366px) {
  .banner .txt-block p {
    font-size: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 1199px) {
  .banner .txt-block p {
    font-size: 22px;
  }
}
.banner .txt-block h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 68px;
  font-weight: 700;
  color: #000;
  line-height: 70px;
}
@media (max-width: 1600px) {
  .banner .txt-block h3 {
    font-size: 54px;
    line-height: 50px;
  }
}
@media (max-width: 1366px) {
  .banner .txt-block h3 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .banner .txt-block h3 {
    font-size: 30px;
  }
}
.banner .txt-block h3 span {
  color: #3F72B8;
  font-size: 68px;
  font-weight: 700;
  display: block;
  margin-top: 15px;
}
@media (max-width: 1600px) {
  .banner .txt-block h3 span {
    font-size: 54px;
    line-height: 50px;
  }
}
@media (max-width: 1366px) {
  .banner .txt-block h3 span {
    font-size: 35px;
    line-height: 30px;
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .banner .txt-block h3 span {
    font-size: 30px;
    line-height: 30px;
    margin-top: 10px;
  }
}
.banner .txt-block .more-btn {
  margin-top: 30px;
}
@media (max-width: 1366px) {
  .banner .txt-block .more-btn {
    margin-top: 20px;
    font-size: 14px;
  }
}
.banner .txt-block .more-btn span {
  width: 30px;
  height: 30px;
}
.banner .txt-block .txt-details {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  max-width: 555px;
}
@media (max-width: 1366px) {
  .banner .txt-block .txt-details {
    max-width: 400px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .banner .txt-block .txt-details {
    display: none;
  }
}
.banner .more-btn img {
  height: auto !important;
}
.banner .img-block {
  width: 479px;
  height: 402px;
  padding: 60px;
  border-radius: 30px;
  outline: 15px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0px 4px 60px 0px rgba(17, 57, 95, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1366px) {
  .banner .img-block {
    width: 410px;
    height: 270px;
    padding: 30px;
    border-radius: 20px;
    outline: 10px solid rgba(255, 255, 255, 0.34);
  }
}
@media (max-width: 767px) {
  .banner .img-block {
    width: 410px;
    height: 190px;
    padding: 20px;
    border-radius: 10px;
    outline: 5px solid rgba(255, 255, 255, 0.34);
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .banner .img-block {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
.banner .img-block::after {
  content: "";
  background: rgba(42, 78, 135, 0.78);
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner .img-block h4 {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .banner .img-block h4 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 1366px) {
  .banner .img-block h4 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 1024px) {
  .banner .img-block h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.banner .img-block p {
  color: #D8E2EF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1366px) {
  .banner .img-block p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .banner .img-block p {
    font-size: 14px;
    line-height: 24px;
  }
}
.banner .img-block .btn {
  border-radius: 36px;
  border: 1px solid #EAEAEA;
  background: #FFF;
  padding: 20px 30px;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
  margin: auto;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .banner .img-block .btn {
    padding: 15px 20px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .banner .img-block .btn {
    padding: 15px 20px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .banner .img-block .btn {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    font-size: 12px;
  }
}

.sub-banner {
  width: 100%;
  margin: auto;
  position: relative;
}
.sub-banner .sub-banner-inner {
  background: url("../Images/banner.png");
  background-size: cover;
  background-position: center;
  height: 370px;
  border-radius: 75px;
}
@media (max-width: 1600px) {
  .sub-banner .sub-banner-inner {
    border-radius: 60px;
  }
}
@media (max-width: 1366px) {
  .sub-banner .sub-banner-inner {
    border-radius: 50px;
    height: 340px;
  }
}
@media (max-width: 1199px) {
  .sub-banner .sub-banner-inner {
    border-radius: 40px;
  }
}
@media (max-width: 991px) {
  .sub-banner .sub-banner-inner {
    height: 270px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .sub-banner .sub-banner-inner {
    border-radius: 25px;
  }
}
@media (max-width: 520px) {
  .sub-banner .sub-banner-inner {
    border-radius: 15px;
  }
}
.sub-banner .sub-banner-inner .txt-block {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  padding-bottom: 25px;
}
.sub-banner .sub-banner-inner small {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sub-banner .sub-banner-inner small {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
.sub-banner .sub-banner-inner h4 {
  color: #3F72B8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 47px;
  font-weight: 700;
  line-height: 57px;
}
@media (max-width: 1600px) {
  .sub-banner .sub-banner-inner h4 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 1366px) {
  .sub-banner .sub-banner-inner h4 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .sub-banner .sub-banner-inner h4 {
    font-size: 32px;
    line-height: 34px;
  }
}
@media (max-width: 991px) {
  .sub-banner .sub-banner-inner h4 {
    font-size: 26px;
    line-height: 24px;
  }
}
.sub-banner .sub-banner-inner h4 span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  display: block;
}
@media (max-width: 1600px) {
  .sub-banner .sub-banner-inner h4 span {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .sub-banner .sub-banner-inner h4 span {
    font-size: 22px;
  }
}
.sub-banner .sub-banner-inner h4 small {
  color: #F47F2E;
  font-size: 47px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .sub-banner .sub-banner-inner h4 small {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 1366px) {
  .sub-banner .sub-banner-inner h4 small {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .sub-banner .sub-banner-inner h4 small {
    font-size: 32px;
    line-height: 34px;
  }
}
@media (max-width: 991px) {
  .sub-banner .sub-banner-inner h4 small {
    font-size: 26px;
    line-height: 24px;
  }
}

.about-txt {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-txt h4 {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 42px;
}
@media (max-width: 1024px) {
  .about-txt h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
.about-txt h4 span {
  color: #4572B7;
}
.about-txt p {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 991px) {
  .about-txt p {
    font-size: 14px;
    line-height: 20px;
  }
}

.our-mission-txt {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .our-mission-txt {
    margin-top: 20px;
  }
}
.our-mission-txt .title-block {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .our-mission-txt .title-block {
    margin-bottom: 20px;
  }
}
.our-mission-txt .title-block h2 {
  font-size: 26px;
  text-align: left;
}
@media (max-width: 1024px) {
  .our-mission-txt .title-block h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.our-mission-txt .cus-row {
  margin: 0 -20px;
  gap: 20px 0;
}
@media (max-width: 767px) {
  .our-mission-txt .cus-row {
    gap: 20px;
  }
}
.our-mission-txt .cus-row .col-2 {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .our-mission-txt .cus-row .col-2 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .our-mission-txt .cus-row .col-3 {
    width: 100%;
  }
}
.our-mission-txt .our-mission-block {
  border-radius: 25px;
  padding: 40px;
  border-radius: 25px;
  border: 1px solid #BFBFBF;
}
@media (max-width: 1024px) {
  .our-mission-txt .our-mission-block {
    padding: 20px;
  }
}
.our-mission-txt .our-mission-block.bg-blue {
  color: #ffffff;
}
.our-mission-txt .our-mission-block.bg-blue span {
  color: #FFF;
}
.our-mission-txt .our-mission-block span {
  color: #535353;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 991px) {
  .our-mission-txt .our-mission-block span {
    font-size: 14px;
  }
}
.our-mission-txt .our-mission-block h4 {
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
}
@media (max-width: 1024px) {
  .our-mission-txt .our-mission-block h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
.our-mission-txt .our-mission-block p {
  color: #656565;
  text-align: center;
}
.our-mission-txt .our-mission-block.management-block {
  position: relative;
  overflow: hidden;
}
.our-mission-txt .our-mission-block.management-block .img-block img {
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .our-mission-txt .our-mission-block.management-block .img-block img {
    width: 200px;
  }
}
.our-mission-txt .our-mission-block.management-block .img-block img::after {
  display: none;
}
.our-mission-txt .our-mission-block.management-block .img-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 24.37%);
  height: 160px;
  top: unset;
}
.our-mission-txt .our-mission-block.management-block h4,
.our-mission-txt .our-mission-block.management-block p {
  position: relative;
  z-index: 99;
}
.our-mission-txt .our-mission-block.management-block p {
  margin-top: 5px;
}
.our-mission-txt .our-mission-block.management-block .more-btn {
  position: relative;
  margin: auto;
  margin-top: 8px;
}
.our-mission-txt p {
  color: #535353;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .our-mission-txt p {
    font-size: 14px;
  }
}

.our-departments {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.our-departments .our-departments-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .our-departments .our-departments-row {
    flex-direction: column;
  }
}
.our-departments .our-departments-row .our-departments-col {
  flex: 1 1 100%;
}
.our-departments .our-departments-row .packages-card {
  height: 100%;
}
.our-departments .cus-row {
  flex-direction: column;
}
@media (max-width: 767px) {
  .our-departments .cus-row .col-3 {
    width: 100%;
  }
}

.contact-section form {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact-section form {
    margin-bottom: 20px;
  }
}
.contact-section form .btn {
  border-radius: 10px;
  background: #E9222E;
  height: 52px;
  padding: 0px 40px;
  width: 170px;
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-section form .btn {
    font-size: 14px;
    height: 44px;
    width: 100%;
  }
}
.contact-section .cus-row {
  margin: 0 -15px;
}
.contact-section .cus-row .col-2 {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .contact-section .cus-row .col-2 {
    width: 100%;
  }
}
.contact-section .address-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}
.contact-section .address-block .list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .address-block .list h5 {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact-section .address-block .list h5 {
    font-size: 18px;
  }
}
.contact-section .address-block .list p {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 767px) {
  .contact-section .address-block .list p {
    font-size: 14px;
  }
}
.contact-section .address-block .list span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .contact-section .address-block .list span {
    font-size: 14px;
  }
}
.contact-section .address-block .list a {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .contact-section .address-block .list a {
    font-size: 14px;
  }
}
.contact-section .address-block .list a.list-branches {
  color: #EC1C24;
  text-decoration-line: underline;
}
.contact-section .address-block .list a.phone-txt {
  color: #909090;
}

.cus-form {
  position: relative;
  z-index: 99;
  margin-top: -40px !important;
}
@media (max-width: 767px) {
  .cus-form {
    margin: 30px 0 0 !important;
  }
}
.cus-form form {
  display: flex;
  align-items: center;
  border-radius: 25px;
  border: 2px solid #F0F0F0;
  background: #FFF;
  box-shadow: 0px 16px 50px 0px rgba(196, 212, 233, 0.49);
  padding: 0px 13px;
  height: 80px;
}
@media (max-width: 1600px) {
  .cus-form form {
    border-radius: 20px;
  }
}
@media (max-width: 1280px) {
  .cus-form form {
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  .cus-form form {
    border-radius: 10px;
    flex-direction: column;
    height: auto;
    gap: 20px 0;
    align-items: flex-start;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cus-form form {
    border-radius: 6px;
  }
}
@media (max-width: 991px) {
  .cus-form form .form-control {
    width: 100%;
  }
}
.cus-form form input {
  width: 200px;
}
@media (max-width: 991px) {
  .cus-form form input {
    width: 100%;
  }
}
.cus-form form .phone-number {
  flex: 1 1 100%;
  margin-right: 14px;
}
@media (max-width: 991px) {
  .cus-form form .phone-number {
    margin: 0;
  }
}
.cus-form form .phone-number input {
  border-radius: 0 10px 10px 0;
  border-left: none;
  width: 100%;
}
@media (max-width: 991px) {
  .cus-form form .phone-number input {
    border-radius: 5px;
    border-left: 1px solid #C5D2E5;
  }
}
.cus-form form .radio-block input {
  width: auto;
}
.cus-form form input,
.cus-form form select {
  border-radius: 10px 0 0 10px;
  background-color: #E6EBF1;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1366px) {
  .cus-form form input,
  .cus-form form select {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .cus-form form input,
  .cus-form form select {
    border-radius: 5px;
  }
}
.cus-form form select {
  width: 200px;
  padding: 0px 15px 0px 25px;
}
@media (max-width: 991px) {
  .cus-form form select {
    width: 100% !important;
    border-radius: 5px;
  }
}
@media (max-width: 767px) {
  .cus-form form .primary-btn {
    font-size: 14px;
    width: 100%;
  }
}

.gallery-card {
  display: flex;
  align-items: center;
  gap: 20px 0;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.gallery-card .card {
  width: 33.3333333333%;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .gallery-card .card {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .gallery-card .card {
    width: 100%;
  }
}

.lightboxpreview {
  transition: all 0.3s linear;
  padding-top: 60%;
  cursor: pointer;
  background-size: cover;
}

.lightbox-content {
  max-height: 75vh;
  height: 75vh;
  width: 100%;
  max-width: 1000px;
}

.lightbox-close {
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  right: -30px;
  top: -30px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.modal_inner_image {
  min-height: 400px;
  z-index: 1000;
}

.modal-content {
  width: 100%;
}

.modalscale {
  transform: scale(0);
  opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
  transition: all 0.4s ease-in-out;
}

.lightbox_img_wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.gallery-txt {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 42px;
  margin-top: 7px;
  display: block;
}
@media (max-width: 991px) {
  .gallery-txt {
    font-size: 16px;
  }
}

.lightbox-enabled:hover {
  transform: scale(1.1);
}

.lightbox-enabled {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.lightbox-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-wrapper {
  display: flex;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}

.lightbox-btn,
#close {
  color: white;
  z-index: 9999999;
  cursor: pointer;
  position: absolute;
  font-size: 50px;
}

.lightbox-btn:focus {
  outline: none;
}

.left {
  left: 50px;
}

.right {
  right: 50px;
}

#close {
  top: 50px;
  right: 50px;
}

.lightbox-image {
  width: 100%;
  box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
  max-height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }
  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}
.slideleft {
  animation-name: slideleft;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }
  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.slideright {
  animation-name: slideright;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

.download-report {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.download-report p {
  color: #3F72B8;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  display: block;
}
.download-report a {
  width: -moz-fit-content;
  width: fit-content;
}

.acc-container {
  width: 100%;
}

.acc {
  margin-bottom: 10px;
  border-radius: 14px;
  border: 1px solid #C5D2E5;
}

.acc-head {
  padding: 15px 20px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
}

.acc-head::before,
.acc-head::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #fff;
  transition: all 0.3s;
}

.acc-head::before {
  right: 30px;
  width: 3px;
  height: 20px;
  margin-top: -10px;
}

.acc-head::after {
  right: 21px;
  width: 20px;
  height: 3px;
  margin-top: -2px;
}

.acc-head h2 {
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}

.acc-head h2 span {
  color: #3F72B8;
}

.acc-content {
  padding: 15px 20px;
  display: none;
  padding-top: 0px;
}

.acc-head.active::before {
  transform: rotate(90deg);
}

.acc-content h6 {
  color: #3F72B8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .acc-content h6 {
    font-size: 18px;
  }
}
.acc-content ul {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acc-content ul li {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 1024px) {
  .acc-content ul li {
    font-size: 14px;
  }
}
.acc-content p {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .acc-content p {
    font-size: 14px;
  }
}
.acc-content p:last-child {
  margin-bottom: 0;
}

.branches-List {
  margin: 0;
}
@media (max-width: 767px) {
  .branches-List .packages-card .packages-card-body h4 {
    text-align: left;
  }
}
.branches-List ul li {
  color: #656565;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 9px;
}
.branches-List ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .branches-List ul li {
    font-size: 14px;
  }
}
.branches-List ul li * {
  text-align: left !important;
}
.branches-List ul li a {
  margin: 0 !important;
}

.filter-wrap {
  margin-bottom: 20px;
}
.filter-wrap h2 {
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  display: block;
  color: #3F72B8;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .filter-wrap h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .filter-wrap h2 {
    font-size: 16px;
  }
}
.filter-wrap h2 span {
  color: #000;
}
@media (max-width: 520px) {
  .filter-wrap h2 span {
    display: block;
  }
}
.filter-wrap .filter {
  display: flex;
  align-items: center;
  width: 100%;
}
.filter-wrap .filter .cus-row {
  width: 100%;
  align-items: center;
}
.filter-wrap .filter .cus-row .more-btn {
  background: #F47F2E;
  height: 52px;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  display: block;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .filter-wrap .filter .cus-row {
    flex-direction: column;
    gap: 20px 0;
  }
  .filter-wrap .filter .cus-row .col-4 {
    width: 100%;
  }
}

.ui-datepicker .ui-widget-header {
  border: 1px solid #dddddd;
  background: transparent;
  color: #333333;
  font-weight: bold;
}
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default,
.ui-datepicker .ui-button,
.ui-datepicker html .ui-button.ui-state-disabled:hover,
.ui-datepicker html .ui-button.ui-state-disabled:active {
  background: transparent;
  border: 1px solid #dddddd;
  text-align: center;
}

.news-wraps {
  flex-wrap: wrap;
}

.news-main {
  width: 70%;
  border-right: 1px solid #C5D2E5;
  padding-right: 45px;
}
@media (max-width: 1280px) {
  .news-main {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .news-main {
    padding-right: 0px;
    width: 100%;
    border-bottom: 1px solid #C5D2E5;
    border-right: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.news-list {
  width: 30%;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .news-list {
    width: 100%;
    padding: 0;
  }
}
.news-list .news-title h4 {
  color: #000000;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  line-height: 42px;
}
@media (max-width: 1366px) {
  .news-list .news-title h4 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .news-list .news-title h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.news-list .news-title h4 span {
  color: #3F72B8;
}
.news-list .news-list-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1280px) {
  .news-list .news-list-items-wrap {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .news-list .news-list-items-wrap {
    gap: 10px;
  }
}
.news-list .news-list-items-wrap .news-list-items {
  padding-bottom: 15px;
  border-bottom: 1px solid #C5D2E5;
}
.news-list .news-list-items-wrap .news-list-items a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-list .news-list-items-wrap .news-list-items a .img-block {
  width: 70px;
  flex: none;
}
.news-list .news-list-items-wrap .news-list-items a .img-block img {
  max-width: 100%;
}
.news-list .news-list-items-wrap .news-list-items a .news-txt h4 {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .news-list .news-list-items-wrap .news-list-items a .news-txt h4 {
    font-size: 16px;
  }
}
.news-list .news-list-items-wrap .news-list-items a .news-txt p {
  color: #7C7C7C;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
  display: block;
}
@media (max-width: 1199px) {
  .news-list .news-list-items-wrap .news-list-items a .news-txt p {
    font-size: 14px;
  }
}

.lightboxpreview {
  transition: all 0.3s linear;
  padding-top: 60%;
  cursor: pointer;
  background-size: cover;
}

.lightbox-content {
  max-height: 75vh;
  height: 75vh;
  width: 100%;
  max-width: 1000px;
}

.lightbox-close {
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  right: -30px;
  top: -30px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.modal_inner_image {
  min-height: 400px;
  z-index: 1000;
}

.modal-content {
  width: 100%;
}

.modalscale {
  transform: scale(0);
  opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
  transition: all 0.4s ease-in-out;
}

.lightbox_img_wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.lightbox-enabled:hover {
  transform: scale(1.1);
}

.lightbox-enabled {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.lightbox-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-wrapper {
  display: flex;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}

.lightbox-btn,
#close {
  color: white;
  z-index: 9999999;
  cursor: pointer;
  position: absolute;
  font-size: 50px;
}

.lightbox-btn:focus {
  outline: none;
}

.left {
  left: 50px;
}

.right {
  right: 50px;
}

#close {
  top: 50px;
  right: 50px;
}

.lightbox-image {
  width: 100%;
  box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
  max-height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }
  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}
.slideleft {
  animation-name: slideleft;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }
  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.slideright {
  animation-name: slideright;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

.services-card .packages-card {
  padding: 0;
  overflow: hidden;
}
.services-card .packages-card .packages-card-body {
  padding: 40px;
}
@media (max-width: 1366px) {
  .services-card .packages-card .packages-card-body {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .services-card .packages-card .packages-card-body {
    padding: 20px;
  }
}
.services-card .packages-card .img-block {
  width: 100%;
  height: auto;
  margin: auto;
}

.package-details .package-details-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.package-details .package-details-wrap .img-block {
  width: 180px;
}
.package-details .package-details-wrap .img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.package-details .package-details-wrap .txt-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package-details .package-details-wrap .txt-block .star-rating i {
  color: #F47F2E;
  font-size: 18px;
}
.package-details .package-details-wrap .txt-block p {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 1366px) {
  .package-details .package-details-wrap .txt-block p {
    font-size: 14px;
  }
}
.package-details .package-details-wrap .txt-block span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 42px;
}
@media (max-width: 1366px) {
  .package-details .package-details-wrap .txt-block span {
    font-size: 14px;
  }
}
.package-details .package-details-wrap .txt-block h5 {
  color: #4572B7;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
}
.package-details ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.package-details ul li {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  border-radius: 5px;
  border: 1px solid #C5D2E5;
  padding: 4px 15px;
}

.trigger {
  text-align: center;
  padding: 7px 13px;
  background: #3e3e3e;
  color: #fff;
  font-size: 15px;
  outline: none;
  border: none;
  border-radius: 5px;
  font-family: cursive;
}

.modalbook{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 999;
}
.modalbook .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  max-width: 600px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: auto;
  max-height: 100vh;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius:;
  -moz-border-radius:;
  -ms-border-radius:;
  -o-border-radius:;
}
@media (max-width: 1280px) {
  .modalbook .modal-content {
    padding: 20px;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .modalbook .modal-content {
    padding: 15px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .modalbook .modal-content {
    max-width: 90%;
  }
}
.modalbook .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modalbook .modal-content .modal-header .title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 42px;
}
@media (max-width: 1024px) {
  .modalbook .modal-content .modal-header .title {
    font-size: 22px;
    line-height: 30px;
  }
}
.modalbook .modal-content .modal-header button {
  padding: 0;
  background: transparent;
}
.modalbook .modal-content .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modalbook .modal-content .modal-body .btn-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}
.modalbook  .modal-content .modal-body .btn-wrap button {
  padding: 0 20px;
  width: 120px;
  font-size: 14px;
  height: 44px;
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.docter-details {
  gap: 60px;
}
@media (max-width: 1366px) {
  .docter-details {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  .docter-details {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .docter-details {
    flex-direction: column;
    gap: 20px;
  }
}
.docter-details .docter-details-block {
  min-width: 300px;
  position: relative;
  top: -250px;
}
@media (max-width: 767px) {
  .docter-details .docter-details-block {
    min-width: 100%;
  }
}
.docter-details .docter-img img {
  border-radius: 15px;
  max-width: 300px;
  height: 300px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1366px) {
  .docter-details .docter-img img {
    border-radius: 10px;
  }
}
@media (max-width: 1199px) {
  .docter-details .docter-img img {
    border-radius: 6px;
  }
}
.docter-details .docter-details-txt h5 {
  color: #3F72B8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 26px;
}
@media (max-width: 1366px) {
  .docter-details .docter-details-txt h5 {
    font-size: 14px;
  }
}
.docter-details .docter-details-txt ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  list-style-type: disc;
}
.docter-details .docter-details-txt ul li {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  list-style-type: disc;
  list-style-position: inside;
}
@media (max-width: 1366px) {
  .docter-details .docter-details-txt ul li {
    font-size: 14px;
  }
}

.docter-info {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .docter-info {
    margin-top: 15px;
  }
}
.docter-info h4 {
  color: #4572B7;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .docter-info h4 {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .docter-info h4 {
    font-size: 18px;
  }
}
.docter-info ul li {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .docter-info ul li {
    flex-direction: column;
  }
}
.docter-info ul li span,
.docter-info ul li p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
}
@media (max-width: 1366px) {
  .docter-info ul li span,
  .docter-info ul li p {
    font-size: 14px;
  }
}
.docter-info ul li span {
  color: #656565;
}
.docter-info ul li p {
  color: #000;
}

.rewards-wrap .cus-row {
  gap: 30px 0;
}

.rewards-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.rewards-list .txt-block h6 {
  font-size: 18px;
  color: #3F72B8;
  font-weight: 700;
  line-height: 28px;
}
.rewards-list .txt-block h3 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 5px;
}
.rewards-list .txt-block p {
  font-size: 16px;
  color: #656565;
  font-weight: 500;
  line-height: 25px;
}

.serarch-box {
  position: relative;
  width: 300px;
  display: flex;
  justify-self: flex-end;
}
@media (max-width: 767px) {
  .serarch-box {
    width: 100%;
  }
}
.serarch-box input {
  padding-right: 60px !important;
}
.serarch-box .btn {
  background: transparent;
  border: none;
  position: absolute;
  inset: 0;
  left: unset;
  right: 30px;
  margin: auto;
}

.experience-list {
  display: flex;
  gap: 15px;
  flex-direction: column;
  padding: 30px;
  background: #edebeb;
  margin-top: 15px;
  border-radius: 8px;
}

.experience {
  display: flex;
  align-items: center;
  gap: 20px;
}
.experience .img-block {
  max-width: 150px;
}
.experience .img-txt {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.experience .img-txt h3 {
  color: #3F72B8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 26px;
}
.experience .img-txt h6 {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  list-style-type: disc;
  list-style-position: inside;
}
.experience .img-txt p {
  color: #656565;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.gallery-container {
  margin-bottom: 60px;
}
@media (max-width: 1366px) {
  .gallery-container {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .gallery-container {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .gallery-container {
    margin-bottom: 20px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

button {
  cursor: pointer;
}

ul,
li {
  list-style: none;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.m-auto {
  margin: auto;
}

.mr-auto {
  margin-right: auto;
}

.p-80 {
  padding: 80px 0;
}
@media (max-width: 1600px) {
  .p-80 {
    padding: 70px 0;
  }
}
@media (max-width: 1366px) {
  .p-80 {
    padding: 50px 0;
  }
}
@media (max-width: 1199px) {
  .p-80 {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .p-80 {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .p-80 {
    padding: 20px 0;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media (max-width: 1600px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media (max-width: 1366px) {
  .pt-80 {
    padding-top: 50px;
  }
}
@media (max-width: 1199px) {
  .pt-80 {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .pt-80 {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .pt-80 {
    padding-top: 20px;
  }
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.container {
  max-width: 1200px !important;
  margin: auto;
  padding: 0 30px;
}
@media (max-width: 1366px) {
  .container {
    max-width: 1140px !important;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 1000px !important;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 960px !important;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100% !important;
    padding: 0 20px;
  }
}

.more-btn {
  border-radius: 27px;
  border: 1px solid #EAEAEA;
  padding: 5px;
  background: transparent;
  color: #000000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  gap: 10px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .more-btn {
    font-size: 14px;
  }
}
.more-btn span {
  width: 40px;
  height: 40px;
  background: #F47F2E;
  border-radius: 100px;
}
@media (max-width: 991px) {
  .more-btn span {
    width: 32px;
    height: 32px;
  }
}
.more-btn span img {
  width: 18px !important;
  height: 18px;
}
@media (max-width: 991px) {
  .more-btn span img {
    width: 14px;
    height: 14px;
  }
}

.cus-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (max-width: 767px) {
  .cus-row {
    margin: 0 -20px;
  }
}
.cus-row .col-1,
.cus-row .col-2,
.cus-row .col-3,
.cus-row .col-4 {
  padding: 0 10px;
}
@media (max-width: 767px) {
  .cus-row .col-1,
  .cus-row .col-2,
  .cus-row .col-3,
  .cus-row .col-4 {
    padding: 0 20px;
  }
}
.cus-row .col-1 {
  width: 100%;
}
.cus-row .col-2 {
  width: 50%;
}
.cus-row .col-3 {
  width: 33.3333333333%;
}
.cus-row .col-4 {
  width: 25%;
}

.bg-blue {
  background: #3F72B8;
}

.bg-red {
  background: #E9222E;
}

.form-control input,
.form-control textarea,
.form-control select {
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #C5D2E5;
  width: 100%;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .form-control input,
  .form-control textarea,
  .form-control select {
    font-size: 14px;
    padding: 15px;
  }
}
.form-control input:focus,
.form-control textarea:focus,
.form-control select:focus {
  border: 1px solid #abb9cf;
  outline: none;
}
.form-control input {
  height: 52px;
}
.form-control textarea {
  height: 178px;
}
.form-control select {
  height: 52px;
  moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: url("../Images/down.svg") no-repeat;
  background-position: center right 10px;
}
@media (max-width: 767px) {
  .form-control select {
    font-size: 14px;
  }
}
.form-control select:focus {
  border: 1px solid #abb9cf;
  outline: none;
}
.form-control.form-control-file {
  position: relative;
}
.form-control.form-control-file input[type=file] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.form-control.form-control-file button {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  background: transparent;
  border: 1px dashed #C5D2E5;
}

.h-100 {
  height: 100%;
}

.primary-btn,
.btn-cancel {
  border-radius: 10px;
  background: #E9222E;
  height: 52px;
  padding: 0px 40px;
  width: 170px;
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-cancel {
  background: #4C4C4C;
  color: #ffffff;
}

.radio-block {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-right: 14px;
}

.radio-block input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #C5D2E5;
  border-radius: 50%;
}

.radio-block:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-block input:checked ~ .checkmark {
  background-color: #fff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-block input:checked ~ .checkmark:after {
  display: block;
}

.radio-block .checkmark:after {
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #4572B7;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}
table td,
table th {
  padding: 10px;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  text-align: left;
}
table thead tr th {
  background: #EAEFF7;
  border: none;
  font-weight: 700;
}
table thead tr th:first-child {
  border-radius: 10px 0 0 10px;
}
table thead tr th:last-child {
  border-radius: 0 10px 10px 0;
}
table tbody tr td {
  font-weight: 400;
  background: #EAEFF7;
  background: #FFF;
  font-weight: 400;
  border-top: 1px solid #ECF4F6;
  border-bottom: 1px solid #ECF4F6;
  padding: 15px;
}
table tbody tr td:first-child {
  border-radius: 10px 0 0 10px;
  border-left: 1px solid #ECF4F6;
}
table tbody tr td:last-child {
  border-radius: 0 10px 10px 0;
  border-right: 1px solid #ECF4F6;
}

.re-table {
  overflow-x: auto;
}

@media (max-width: 767px) {
  .tests-section table {
    width: 700px;
  }
}
.tests-section .remarks-tbl {
  width: 550px;
}
@media (max-width: 767px) {
  .tests-section .remarks-tbl {
    width: 100%;
  }
}

.cus-width {
  width: calc(100% - 80px);
  margin: auto;
}
@media (max-width: 1024px) {
  .cus-width {
    width: 100%;
  }
}/*# sourceMappingURL=globals.css.map */