body {
  font-family: "Poppins", sans-serif;
  background-color: white;
}

.link {
  text-decoration: none;
  color: initial;
}

.link-cta {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: italic;
  background-color: #04254B;
  padding: 0.5rem 1rem;
  transform: skewX(-5deg);
  border-right: 2px solid #FF5903;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.link-cta:hover {
  box-shadow: 3px 3px 0px #ff5903;
}

.dp-btn {
  background-color: transparent;
  height: 48px;
  width: 48px;
  display: flex;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

.sec-btn {
  display: inline-block;
  color: #04254B;
  padding: 32px;
  position: relative;
  letter-spacing: 1px;
}
.sec-btn__circle, .sec-btn__text, .sec-btn__white-circle {
  position: absolute;
  z-index: 1;
}
.sec-btn__circle {
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0 0 0px 1px rgba(255, 89, 3, 0.5);
  transition: 0.3s linear;
}
.sec-btn__white-circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #FF5903;
  display: flex;
  transition: 0.3s ease-in-out;
}
.sec-btn__white-circle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: #04254B;
}
.sec-btn__text {
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 2;
  padding: 24px 8px;
  transition: 0.3s linear;
  font-weight: bold;
}
.sec-btn:hover .sec-btn__circle {
  transform: scale(0);
}
.sec-btn:hover .sec-btn__white-circle {
  transform: translate(-50%, -50%) scale(1);
}
.sec-btn:hover .sec-btn__text {
  transform: translate(40px, -50%);
}

.full-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  color: white;
  visibility: hidden;
}
.full-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #04254B;
  background-image: url("../img/menu-watermark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  transform-origin: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.full-menu .container {
  margin: auto;
  display: none;
  position: relative;
}
@media (max-width: 991px) {
  .full-menu .container {
    margin: initial;
    height: 100%;
  }
  .full-menu .container .row {
    justify-content: space-between;
    height: 100%;
    margin: initial;
  }
}
.full-menu .dp-btn-menu-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 20px;
}
.full-menu .top-menu {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  font-size: clamp(16px, 8vw, 40px);
  font-weight: bold;
}
.full-menu .top-menu .link {
  color: white;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
}
.full-menu .top-menu .link:hover {
  color: rgba(255, 255, 255, 0.5);
}
.full-menu .top-menu .active {
  color: #FF5903;
}
.full-menu .top-menu .active:hover {
  color: #ff5903;
}
.full-menu .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.full-menu .footer-menu .cta-block {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.full-menu .footer-menu .cta-block i {
  display: flex;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: center;
}
.full-menu .footer-menu .cta-block i::before {
  font-size: 18px;
}
.full-menu .footer-menu .cta-block .content {
  display: flex;
  flex-direction: column;
}
.full-menu .footer-menu .cta-block .content span {
  font-size: 1rem;
}
.full-menu .footer-menu .cta-block .content a {
  font-size: clamp(16px, 5vw, 24px);
  font-weight: bold;
  color: white;
}
.full-menu .footer-menu .cta-link {
  border: thin solid white;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  padding: 1rem;
  color: white;
  text-transform: capitalize;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.full-menu .footer-menu .cta-link:hover {
  background-color: #FF5903;
}
.full-menu .footer-menu .cta-link i {
  font-size: 20px;
}
.full-menu .footer-menu .copyright-note {
  font-size: 14px;
  display: flex;
  justify-content: start;
  opacity: 0.5;
}

.open-menu {
  visibility: visible;
}
.open-menu .container {
  display: block;
}
.open-menu::before {
  opacity: 1;
  transform: scale(1);
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
}
header .container .logo {
  padding: 1rem 1.24rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border: thin solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom-left-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  position: relative;
}
header .container .logo img {
  display: block;
  margin: auto;
  height: 120px;
}
header .container .header-right-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header .container .header-right-menu * {
  color: white !important;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
@media (max-width: 619px) {
  header .container .header-right-menu a {
    display: none;
  }
}
header .container .dp-btn-menu {
  font-size: 32px;
  border-radius: 100%;
  background-color: transparent;
  background-color: #04254b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}

#hero-slider {
  position: relative;
  background-color: black;
}
#hero-slider .item {
  position: relative;
  z-index: 1;
}
#hero-slider .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, black, transparent);
  z-index: 0;
}
#hero-slider .item img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
@media (max-width: 991px) {
  #hero-slider .item img {
    height: 100vh;
  }
}
#hero-slider .item .caption {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  z-index: 10;
  color: white;
}
@media (max-width: 1399px) {
  #hero-slider .item .caption {
    top: 35%;
  }
}
@media (max-width: 991px) {
  #hero-slider .item .caption {
    top: unset;
    bottom: 10%;
  }
}
#hero-slider .item .caption h1 {
  font-size: clamp(32px, 10vw, 80px);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  font-weight: 800;
  text-transform: capitalize;
}
#hero-slider .item .caption h1 small {
  display: block;
  font-weight: 200;
  text-transform: uppercase;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  font-size: clamp(12px, 5vw, 24px);
  letter-spacing: 1rem;
}
#hero-slider .item .caption p {
  font-size: clamp(16px, 5vw, 20px);
  line-height: 1.5;
  font-weight: 200;
}
#hero-slider .item .caption .sec-btn {
  font-size: clamp(14px, 5vw, 18px);
  margin-top: 1rem;
  display: inline-block;
  color: white;
  padding: 32px;
  position: relative;
  letter-spacing: 1px;
}
#hero-slider .item .caption .sec-btn__circle, #hero-slider .item .caption .sec-btn__text, #hero-slider .item .caption .sec-btn__white-circle {
  position: absolute;
  z-index: 1;
}
#hero-slider .item .caption .sec-btn__circle {
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0 0 0px 1px rgba(255, 89, 3, 0.5);
  transition: 0.3s linear;
}
#hero-slider .item .caption .sec-btn__white-circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #FF5903;
  display: flex;
  transition: 0.3s ease-in-out;
}
#hero-slider .item .caption .sec-btn__white-circle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: white;
}
#hero-slider .item .caption .sec-btn__text {
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 2;
  padding: 24px 8px;
  transition: 0.3s linear;
  font-weight: bold;
}
#hero-slider .item .caption .sec-btn:hover .sec-btn__circle {
  transform: scale(0);
}
#hero-slider .item .caption .sec-btn:hover .sec-btn__white-circle {
  transform: translate(-50%, -50%) scale(1);
}
#hero-slider .item .caption .sec-btn:hover .sec-btn__text {
  transform: translate(40px, -50%);
}

.overlap-section {
  position: relative;
  z-index: 1;
  padding-top: 0;
  background-image: linear-gradient(transparent, black 30%);
  padding-top: 0 !important;
  margin-top: -200px;
}
@media (max-width: 1399px) {
  .overlap-section {
    margin-top: 0px;
    background-image: linear-gradient(black, black);
  }
}

.floating-tile {
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column-reverse;
}
.floating-tile .content {
  display: flex;
  flex-direction: column;
  padding: 1.24rem;
}
.floating-tile .content .title {
  font-size: clamp(20px, 10vw, 24px);
  color: #04254B;
  text-transform: capitalize;
  font-weight: bold;
}
.floating-tile .content p {
  margin: 0;
}

.section-bg {
  position: relative;
  z-index: 1;
}
.section-bg::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  background-image: url("../img/menu-watermark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.1;
}

.section-alt {
  background-color: rgba(4, 37, 75, 0.05);
}

.section {
  padding: 100px 0;
}
.section .small-heading {
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  display: block;
  margin: 0 0 1rem;
  color: white;
  font-size: clamp(16px, 5vw, 24px);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.section .small-heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -1rem;
  width: 5%;
  height: 100%;
  background-color: #FF5903;
  transform: skewX(-10deg);
}
.section .section-title {
  font-size: clamp(24px, 10vw, 48px);
  font-weight: bold;
  color: #04254B;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
@media (max-width: 619px) {
  .section .section-title {
    overflow: hidden;
  }
}
.section .section-title small {
  font-size: clamp(16px, 10vw, 24px);
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  opacity: 0.5;
}
.section .section-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transform: skew(-10deg);
  border-left: 2px solid #04254B;
  border-right: 4px solid #FF5903;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.section p {
  line-height: 1.8;
}
.section:hover .section-title::before {
  width: 100%;
}
.section .sec-img {
  display: block;
  margin: auto;
  width: 100%;
}

.banner {
  position: relative;
}

#about {
  text-align: center;
}
#about .section-title {
  margin: 0 auto 1.5rem;
}
#about .sec-btn {
  display: inline-block;
  color: #04254B;
  padding: 32px;
  position: relative;
  letter-spacing: 1px;
}
#about .sec-btn__circle, #about .sec-btn__text, #about .sec-btn__white-circle {
  position: absolute;
  z-index: 1;
}
#about .sec-btn__circle {
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0 0 0px 1px rgba(255, 89, 3, 0.5);
  transition: 0.3s linear;
}
#about .sec-btn__white-circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #FF5903;
  display: flex;
  transition: 0.3s ease-in-out;
}
#about .sec-btn__white-circle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: #04254B;
}
#about .sec-btn__text {
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 2;
  padding: 24px 8px;
  transition: 0.3s linear;
  font-weight: bold;
}
#about .sec-btn:hover .sec-btn__circle {
  transform: scale(0);
}
#about .sec-btn:hover .sec-btn__white-circle {
  transform: translate(-50%, -50%) scale(1);
}
#about .sec-btn:hover .sec-btn__text {
  transform: translate(40px, -50%);
}

#SetUsApart img {
  display: block;
  width: 100%;
  transform: scale(1.1);
}
#SetUsApart .block {
  position: relative;
  overflow: hidden;
}
#SetUsApart .block * {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
#SetUsApart .block .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#SetUsApart .block .content .title {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: white;
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
}
#SetUsApart .block .content .title::after {
  content: "";
  display: block;
  position: relative;
  width: 50px;
  height: 4px;
  background-color: #FF5903;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
#SetUsApart .block:hover img {
  transform: scale(1);
}
#SetUsApart .block:hover .content {
  background-color: rgba(0, 0, 0, 0.8);
}
#SetUsApart .block:hover .content .title {
  transform: scale(1.1);
}
#SetUsApart .block:hover .content .title::after {
  width: 100px;
}

#membership {
  background-image: url("../img/section-bg-vector.svg");
  background-position: right bottom;
  background-size: 40%;
  background-repeat: no-repeat;
  background-color: #FBF0E5;
}
#membership .small-heading {
  color: #04254B;
  margin: 0 0 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
#membership .cta-banner {
  margin-top: 100px;
}

.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.grid-view li {
  background-color: white;
  padding: 1.5rem;
  border: thin solid transparent;
  border-left-color: #FF5903;
  border-bottom-color: #FF5903;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.grid-view li:hover {
  transform: translateY(-3px);
  box-shadow: -4px 4px 0px #FF5903;
}
.grid-view li strong {
  display: block;
  margin: 0 0 0.5rem;
  color: #04254B;
  font-size: 18px;
}

.cta-banner {
  background-image: linear-gradient(265deg, #04254B 20%, #FF5903);
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (max-width: 991px) {
  .cta-banner {
    background-image: linear-gradient(45deg, #04254B 20%, #FF5903);
  }
}
.cta-banner .row {
  position: relative;
  z-index: 1;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  background-image: url(../img/cta-banner-img.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  mix-blend-mode: overlay;
  background-size: contain;
  z-index: 0;
  opacity: 0.24;
}
.cta-banner .title {
  color: white;
  font-weight: bold;
}
.cta-banner p {
  color: white;
  margin: 0;
}
.cta-banner .link {
  mix-blend-mode: difference;
  color: white;
}
.cta-banner .btn-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cta-banner .btn-col {
    justify-content: start;
    margin-top: 1.5rem;
  }
  .cta-banner .btn-col .cta-btn {
    margin: 0;
  }
}
.cta-banner .sec-btn {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: white;
  padding: 32px;
  position: relative;
  letter-spacing: 1px;
}
.cta-banner .sec-btn__circle, .cta-banner .sec-btn__text, .cta-banner .sec-btn__white-circle {
  position: absolute;
  z-index: 1;
}
.cta-banner .sec-btn__circle {
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0 0 0px 1px rgba(255, 89, 3, 0.5);
  transition: 0.3s linear;
}
.cta-banner .sec-btn__white-circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #FF5903;
  display: flex;
  transition: 0.3s ease-in-out;
}
.cta-banner .sec-btn__white-circle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: white;
}
.cta-banner .sec-btn__text {
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 2;
  padding: 24px 8px;
  transition: 0.3s linear;
  font-weight: bold;
}
.cta-banner .sec-btn:hover .sec-btn__circle {
  transform: scale(0);
}
.cta-banner .sec-btn:hover .sec-btn__white-circle {
  transform: translate(-50%, -50%) scale(1);
}
.cta-banner .sec-btn:hover .sec-btn__text {
  transform: translate(40px, -50%);
}

.cta-btn {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
  background-color: #FF5903;
  padding: 1rem 1.24rem;
  border-radius: 0.8rem;
  margin: auto;
}
.cta-btn__icon {
  border: thin solid white;
  width: 32px;
  height: 32px;
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn__icon svg {
  fill: white;
  height: 16px;
  width: 16px;
}
.cta-btn__text {
  color: white;
  text-decoration: none !important;
}
.cta-btn:hover {
  filter: brightness(110%);
}
.cta-btn:active {
  filter: brightness(90%);
}

footer {
  padding: 50px 0;
  background-image: linear-gradient(45deg, #04254B, black);
}
footer .logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
footer .logo img {
  display: block;
  height: 100px;
  margin-bottom: 1rem;
}
footer h5 {
  text-align: center;
  line-height: 1.5;
  color: white;
}

.foot-note {
  position: relative;
  padding: 1rem 0;
  border-top: thin solid #111;
  background-color: black;
  color: white;
}
.foot-note .container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.foot-note .container span {
  font-size: 14px;
  opacity: 0.5;
}
.foot-note .container span a {
  color: #FF5903;
  text-decoration: none;
}

.page-cover {
  padding: 250px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-cover::before {
  content: "";
  background-image: linear-gradient(195deg, #04254B 25%, #FF5903);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.page-cover .cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.page-cover .title {
  font-weight: bold;
  color: white;
  font-size: clamp(24px, 10vw, 48px);
  text-align: center;
  position: relative;
  z-index: 2;
}

#cxw {
  background-image: url("../img/cxw-bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#cxw .content {
  padding: 2rem;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border: thin solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}
#cxw .content .logo {
  display: block;
  height: 50px;
  margin-bottom: 2rem;
}
#cxw .content .section-title {
  padding: 0;
}
#cxw .content .section-title::after, #cxw .content .section-title::before {
  display: none;
}

.membership-form {
  display: flex;
  position: sticky;
  top: 200px;
  z-index: 100;
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}/*# sourceMappingURL=style.css.map */