@import url("https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #305cde;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geist", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*========================*/

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  background: #000;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-nav {
  gap: 42px;
}

.nav-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  transition: 0.35s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  color: #fff;
  font-size: 28px;
}

.offcanvas {
  background: #080808;
  color: #fff;
  width: 100%;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li a {
  display: block;
  padding: 16px 0;
  color: #fff;
  transition: 0.3s;
}

.mobile-menu li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

/* Desktop Menu */
.desktop-menu {
  margin-left: auto;
}

.desktop-menu .navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.navbar-toggler {
  display: none;
}

.hero {
  position: relative;
  height: 740px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video,
.hero-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
  /* object-position: top; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  padding-bottom: 90px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 24px;

  border: 2px solid var(--primary-color);
  border-radius: 50px;

  color: #fff;
  font-size: 18px;
  font-weight: 400;

  transition: 0.5s;
}

.hero-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.section-padding {
  padding: 100px 0 0;
  background: #fff;
}

.about-section .container {
  max-width: 1400px;
  margin-right: 0;
}

.about-content {
  margin-bottom: 52px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: #111;
  max-width: 620px;
  margin-bottom: 40px;
}
h2.rehab-title {
  font-size: 32px;
  font-weight: 500;
  max-width: 100%;
}
.about-content p {
  font-size: 18px;
  color: #000;
  max-width: 620px;
  margin-bottom: 20px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.services-section {
  padding: 80px 0;
  background: #fff;
}

.services-wrapper {
  background: #f5f5f5;

  padding: 80px 60px;

  border-radius: 4px;
}

.service-box {
  text-align: center;

  max-width: 235px;

  margin: auto;
}

.service-icon {
  width: auto;
  height: 100px;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: auto;
  height: 100%;
  transition: 0.35s;
}

.service-box:hover .service-icon img {
  transform: translateY(-8px) scale(1.08);
}

.service-box h3 {
  font-size: 18px;

  font-weight: 700;

  color: #000;

  margin-bottom: 18px;
}

.service-box p {
  font-size: 18px;
  color: #000;
  margin: 0;
}
.footer-imgsec {
  height: 780px;
  position: relative;
  overflow: hidden;
}
.footer-imgsec::before {
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
}
.footer-imgsec img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.footer-imgsec .overlay-text {
  position: absolute;
  inset: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 3;

  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-imgsec h2 {
  font-size: 70px;
  font-weight: 300;
  max-width: 1100px;
}
.footer {
  background: #000;

  padding: 60px 0 30px;

  display: flex;

  align-items: stretch;
}

.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1400px;
}

.footer-top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-logo img {
  height: 40px;
}

.footer-menu {
  display: flex;

  gap: 45px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.footer-menu a {
  color: #fff;

  font-size: 14px;

  transition: 0.35s;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  margin-top: 120px;
}

.footer-title h2 {
  color: #494949;

  font-size: 70px;

  font-weight: 300;

  line-height: 1.05;

  letter-spacing: -3px;

  margin: 0;
}

.footer-right {
  display: flex;

  align-items: center;

  gap: 55px;
}

.footer-links {
  display: flex;

  gap: 40px;
}

.footer-links a {
  color: #494949;

  font-size: 14px;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;

  gap: 18px;
}

.footer-social a {
  width: 42px;

  height: 42px;

  border: 2px solid #285cff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #285cff;

  font-size: 26px;

  transition: 0.35s;
}

.footer-social a:hover {
  background: #285cff;

  color: #fff;

  transform: translateY(-5px);
}

section.contact-sec {
  padding: 60px 0px;
}

.contact-info {
  max-width: 620px;
  text-align: center;
  font-size: 18px;
  color: #000;
  margin: 0 auto;
  font-weight: 500;
}
.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.contact-details a {
  color: #000;
}

.cookie-content h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  margin-bottom: 50px;
}

.cookie-item {
  margin-bottom: 30px;
}

.cookie-item h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.cookie-item p {
  font-size: 18px;
  line-height: 135%;
  color: #000;
  margin-bottom: 10px;
}

.cookie-item ul {
  margin: 15px 0 20px;
  padding-left: 18px;
  list-style: disc;
}

.cookie-item ul li {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}
img.about-mob-img {
  display: none;
}
@media (max-width: 1360px) {
  .about-section .container {
    max-width: 1160px;
    margin-right: 0;
  }
  .footer .container {
    max-width: 1160px;
  }
}
@media (max-width: 991px) {
  .hero {
    min-height: 800px;
    height: 100%;
  }

  .hero-content h1 {
    font-size: 72px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .about-content {
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0px 30px;
  }

  .about-content h2 {
    font-size: 32px;
    max-width: 100%;
  }

  .footer-right {
    display: flex;
    align-items: end;
    gap: 25px;
    flex-direction: column;
  }
  .about-section .col-12 {
    padding: 0;
  }
  .services-section .col-md-3 {
    padding: 0 6px;
  }
  .footer-imgsec {
    height: 480px;
  }

  h2.rehab-title {
    max-width: 460px;
  }
  .cookie-content h1 {
    font-size: 72px;
  }
}

@media (max-width: 767px) {
  .desktop-menu {
    display: none;
  }

  .navbar-toggler {
    display: block;
    color: #fff;
    font-size: 28px;
  }
  .header {
    padding: 18px 0;
  }

  .navbar-brand img {
    height: 30px;
  }
  a.navbar-brand {
    flex-basis: 65%;
    text-align: end;
  }
  button.navbar-toggler {
    flex-basis: fit-content;
    color: var(--primary-color);
  }

  .hero {
    min-height: 400px;
    height: 100%;
    padding: 0px 10px;
  }
  .hero-content {
    padding-bottom: 70px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
    text-align: left;
  }

  .hero-btn {
    min-width: 170px;
    height: 44px;
    font-size: 13px;
  }

  .about-content {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0px 20px;
  }

  .section-padding {
    padding: 60px 0 0;
  }
  .services-section {
    padding: 60px 0;
    background: #fff;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 14px;
  }

  .footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .footer-menu {
    display: flex;
    gap: 15px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
  .footer-title h2 br {
    display: none;
  }

  .footer-title h2 {
    font-size: 25px;
    letter-spacing: 0;
  }
  .footer-right {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 20px;
  }

  .footer-imgsec {
    height: 300px;
    position: relative;
  }
  .footer-menu a {
    color: #fff;
    font-size: 10px;
  }

  .about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 280px;
    /* object-position: -170px; */
  }
  .services-section .container-fluid {
    padding: 0 !important;
  }
  .footer-imgsec h2 {
    font-size: 25px;
  }
  .cookie-content h1 {
    font-size: 36px;
  }
  img.about-img {
    display: none;
  }
  .about-mob-img {
    display: block;
  }
}
