:root {
  --porte-navy: #08233F;
  --porte-navy-2: #08233F;
  --porte-line: rgba(82, 116, 164, 0.25);
  --porte-line-strong: rgba(82, 116, 164, 0.38);
  --porte-white: #f7f8fb;
  --porte-text: rgba(255, 255, 255, 0.92);
  --porte-muted: rgba(255, 255, 255, 0.60);
  --porte-gold: #BC9557;
  --porte-gold-soft: #BC9557;
  --porte-red-dot: #d83a2f;
  --porte-border: rgba(255, 255, 255, 0.12);
  --porte-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --font-inter: "Inter", sans-serif;
  --font-times: "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


body {
  font-family: var(--font-inter);
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.porte-container {
  width: min(100% - 48px, 1740px);
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 34px;
}

.porte-navbar {
  padding: 0;
}

.porte-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 0;
}

.porte-brand__logo {
  width: 118px;
}

.porte-brand__logo img {
  width: 100%;
  min-width: 125px;
  object-fit: contain;
}

.porte-nav {
  gap: 18px;
}

.porte-nav .nav-link {
  color: var(--porte-white);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 10px 14px !important;
  transition: 0.3s ease;
}

.porte-nav .nav-link:hover,
.porte-nav .nav-link.active {
  color: var(--porte-white);
}

.porte-nav .nav-link:hover::after,
.porte-nav .nav-link.active::after {
  width: calc(100% - 28px);
}

.porte-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.porte-contact-btn {
  width: 77px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0b2345;
  border: 1px solid #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.porte-contact-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.porte-lang-btn {
  width: 77px;
  height: 27px;
  padding: 0;
  border-radius: 0;
  border: 1px solid #fff;
  color: var(--porte-white);
  background: transparent;
  font-size: 14px;
  font-weight: 100;
}

.dropdown-toggle::after {
  display: none;
}

.porte-lang-btn:hover,
.porte-lang-btn:focus,
.porte-lang-btn.show {
  color: var(--porte-white) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
}

.porte-lang-dropdown .dropdown-menu {
  min-width: 100px;
  background: #0b2b52;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 8px;
}

.porte-lang-dropdown .dropdown-item {
  color: #fff;
  font-size: 14px;
  padding: 8px 10px;
}

.porte-lang-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.porte-toggler {
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 0;
  box-shadow: none !important;
}

/* HERO */
.hero-section {
  min-width: 100%;
  position: relative;
  min-height: 685px;
  max-height: 685px;
  background: linear-gradient(180deg, #05264a 0%, #042349 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    var(--porte-navy);
  z-index: -1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.08;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  position: relative;
  z-index: 3;
  padding-top: 150px;
}

.hero-row {
  min-height: 100%;
}

.hero-left {
  position: relative;
  padding-top: 12px;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 70px;
}

.hero-logo {
  width: 150px;
  margin-bottom: 170px;
}

.hero-side-title {
  font-family: var(--font-times);
  color: var(--porte-gold-soft);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  letter-spacing: -0.02em;
  max-width: 420px;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-left: 4%;
  /* margin-top: 1.25rem; */
}

.hero-content__inner {
  max-width: 500px;
}

.hero-title {
  font-size: 33px;
  line-height: 1.08;
  font-weight: lighter;
  letter-spacing: -0.03em;
  color: var(--porte-white);
  margin-bottom: 28px;
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: var(--porte-gold);
  font-weight: 600;
  display: inline !important;
  margin-right: 8px;
  font-size: 33px;
}

.hero-text {
  max-width: 720px;
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.35;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero-text .text-accent {
  color: var(--porte-gold);
  font-weight: 300;
}

.hero-text .text-accent:last-child {
  position: relative;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-btn {
  transition: 0.35s ease;
}

.hero-btn-primary {
  min-width: 140px;
  height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0a2347;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #ffffff;
}

.hero-btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-btn-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  font-size: 26px;
  background: transparent;
}

.hero-btn-icon:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* FRAME LINES */
.hero-frame-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-frame-lines .line {
  position: absolute;
  left: 33%;
  right: 5%;
  height: 18px;
  border-top: 18px solid rgba(63, 92, 137, 0.22);
}

.hero-frame-lines .line-top {
  top: 68px;
}

.hero-frame-lines .line-mid {
  top: 150px;
}

.hero-frame-lines .line-bottom {
  top: 203px;
}

/* ARCH */
.hero-arch-wrap {
  position: absolute;
  right: -21rem;
  top: .5rem;
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
  overflow: hidden;
}

.hero-arch {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border: 18px solid rgba(63, 92, 137, 0.20);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.arch-1 {
  width: 100%;
  height: 100%;
}

.arch-2 {
  width: 82%;
  height: 82%;
}

.arch-3 {
  width: 64%;
  height: 64%;
}

.hero-side-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-side-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.hero-side-title .space {
  display: inline-block;
  width: 0.22em;
}

@media (max-width: 1399.98px) {
  .hero-logo {
    margin-bottom: 120px;
  }

  .hero-content {
    padding-left: 2%;
  }

  .hero-frame-lines .line {
    left: 35%;
    right: 4%;
  }
}

@media (max-width: 1199.98px) {
  .porte-container {
    width: min(100% - 36px, 100%);
  }

  .site-header {
    padding-top: 22px;
  }

  .hero-container {
    padding-top: 120px;
  }

  .hero-logo {
    width: 125px;
    margin-bottom: 90px;
  }

  .hero-side-title {
    max-width: 320px;
  }

  .hero-content__inner {
    max-width: 620px;
  }

  .hero-frame-lines .line {
    left: 39%;
    right: 3%;
  }

  .hero-arch-wrap {
    width: min(62vw, 760px);
    right: 4%;
  }
}

@media (max-width: 991.98px) {
  .porte-navbar .navbar-collapse {
    margin-top: 18px;
    padding: 20px;
    background: rgba(6, 35, 70, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }

  .porte-nav {
    gap: 4px;
    margin: 14px 0 18px;
    align-items: flex-start;
  }

  .porte-nav .nav-link {
    padding: 10px 0 !important;
  }

  .porte-nav .nav-link::after {
    left: 0;
    bottom: 0;
  }

  .porte-nav .nav-link:hover::after,
  .porte-nav .nav-link.active::after {
    width: 42px;
  }

  .porte-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-row {
    min-height: auto;
  }

  .hero-left {
    padding-top: 0;
  }

  .hero-kicker {
    margin-bottom: 24px;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 30px;
  }

  .hero-side-title {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-content__inner {
    max-width: 100%;
  }

  .hero-title {
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 20px;
    max-width: 100%;
  }

  .hero-frame-lines {
    display: none;
  }

  .hero-arch-wrap {
    right: -10%;
    bottom: -3%;
    width: 92vw;
    opacity: 0.75;
  }
}

@media (max-width: 767.98px) {
  .porte-container {
    width: min(100% - 24px, 100%);
  }

  .site-header {
    padding-top: 16px;
  }

  .porte-brand__logo {
    width: 92px;
  }

  .hero-container {
    padding-top: 92px;
    padding-bottom: 30px;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-side-title {
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-btn-primary {
    min-width: 126px;
    height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-btn-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .hero-arch-wrap {
    width: 115vw;
    right: -30%;
    bottom: -6%;
    opacity: 0.6;
  }
}

@media (max-width: 575.98px) {
  .porte-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .porte-contact-btn,
  .porte-lang-btn {
    height: 27px;
  }

  .hero-side-title {
    font-size: 34px;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-text {
    font-size: 17px;
  }
}

.mobile-arch {
  display: none;
}

.area-one {
  position: relative;
  overflow: hidden;
  min-height: 574px;
}

.area-one h2 {
  max-width: 350px;
  width: 100%;
  font-size: 22px;
  font-weight: 300;
  color: var(--porte-navy);

}

.mar-div {
  margin-top: 5rem;
  margin-bottom: 10rem;
}

.area-one h2 span {
  font-weight: 700;
}

.area-one h3 {
  color: var(--porte-gold);
  font-family: var(--font-times);
  font-style: italic;
  font-weight: 600;
  max-width: 350px;
  width: 100%;
  position: relative;
}

.area-one h3 span {
  font-weight: 300;
  font-size: 27px;
  position: relative;
}

.area-one h3::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  background-color: #979797;
  height: 180px;
  top: 0;
  margin-top: 6rem;
}

.img-wrap {
  width: 100%;
  height: 100%;
}

.img-abs {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* veya contain */
}

.area-one .col-lg-7 {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
}

.type-text-area .word {
  display: inline-block;
  white-space: nowrap;
}

.type-text-area .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  will-change: transform, opacity;
}

.type-text-area .space {
  display: inline-block;
  width: 0.25em;
}

.area-one-animate {
  opacity: 0;
}

.area-one-animate .mar-div,
.area-one-animate .img-wrap {
  opacity: 0;
}

.area-two {
  margin-top: 5rem;
}

.mw-825 {
  max-width: 830px;
  width: 100%;
}

.title-h2 {
  font-family: var(--font-times);
  color: var(--porte-gold);
  font-style: italic;
  font-size: 65px;
}

.area-two p {
  color: var(--porte-navy);
  font-size: 22px;
  margin-top: 1.5rem;
}

.bottom-text {
  color: var(--porte-gold);
  font-size: 33px;
  font-family: var(--font-times);
  font-style: italic;
}

.area-two .title-h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
}

.area-two .title-h2 .space {
  display: inline-block;
  width: 0.22em;
}

.area-two .bottom-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
}

.area-two {
  overflow: hidden;
}

.mw-825 {
  overflow: hidden;
}

.area-one,
.area-two,
.hero-section,
.area-three {
  overflow: hidden;
}

.focus-banner {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  background: #08233F;
  margin-top: 5rem;
}

.focus-banner__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.focus-banner__image,
.focus-banner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.5);
  filter: brightness(1);
  will-change: transform;
}

.focus-banner__mask-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.focus-banner__cover {
  fill: #08233f;
}

.focus-mask-logo {
  will-change: transform;
}

.area-three {
  margin-top: 10rem;
}

.area-three p {
  max-width: 700px;
  font-size: 22px;
}

.gallery-block {
  margin-top: 10rem;
  overflow: hidden;
}

.gallery-block .row {
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 385px;
  background: #08233F;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  filter: brightness(0.82) saturate(0.92) contrast(1.02);
  will-change: transform, opacity, filter;
}

.gallery-reveal {
  position: absolute;
  inset: 0;
  background: #08233F;
  z-index: 2;
  transform: translateY(0%);
  will-change: transform;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(8, 35, 63, 0.04), rgba(8, 35, 63, 0.18));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1) contrast(1.04);
  transition: transform 0.9s cubic-bezier(.22, 1, .36, 1), filter 0.5s ease;
}

@media (max-width: 991.98px) {
  .gallery-item {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .gallery-item {
    height: 260px;
  }
}

.area-three .title-h2 .char,
.area-three .bottom-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.area-three .title-h2 .space,
.area-three .bottom-text .space {
  display: inline-block;
  width: 0.22em;
}

.area-four {
  margin-top: 12rem;
}

.area-four p {
  font-size: 26px;
  font-weight: lighter;
  margin-bottom: 1.5rem;
  position: relative;
}

.area-four p::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--porte-gold);
  bottom: -.75rem;
}

.area-four p:last-child::after {
  display: none;
}

.mw-980 {
  max-width: 972px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.area-four p em {
  font-size: 29px;
  font-weight: bold;
  font-style: italic;
  font-family: var(--font-times);
}

.area-four .title-h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
}

.area-four .title-h2 .space {
  display: inline-block;
  width: 0.22em;
}

.area-four .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

.area-five {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.area-five img {
  width: 100%;
  height: 100%;
}

.absolutef-text {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.absolutef-text h2 {
  color: #fff;
  font-family: var(--font-times);
  font-style: italic;
  font-size: 80px;
}

.area-five h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.area-five h2 .space {
  display: inline-block;
  width: 0.22em;
}

.experience-stack {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.experience-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-panel--base {
  z-index: 1;
  background: #fff;
  will-change: transform, opacity, filter;
}

.experience-panel--overlay {
  z-index: 3;
  will-change: transform, opacity;
}

.area-four {
  position: relative;
  z-index: 1;
  background: #fff;
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: start;
  margin-top: 8rem;
}

.ww-area {
  margin-top: 0;
  background-color: #F0F0F0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/bg-pattern1.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.ww-inner {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  will-change: transform, opacity;
}

.ww-area h2 {
  font-family: var(--font-times);
  color: var(--porte-gold);
  font-size: 65px;
}

.ww-area p {
  margin-top: 1.25rem;
  font-weight: lighter;
  font-size: 26px;
  position: relative;
}

.ww-area p::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--porte-gold);
  bottom: -1rem;
}

.ww-area p:last-child:after {
  display: none;
}

.ww-area p em {
  font-size: 29px;
  font-weight: bold;
  font-family: var(--font-times);
}

.ww-area .content-ww {
  max-width: 602px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.main-stack {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.panel-four {
  z-index: 1;
  background: #fff;
}

.panel-ww {
  z-index: 2;
}

.panel-five {
  z-index: 3;
}

.area-four,
.ww-area,
.area-five,
.area-focus {
  height: 100vh;
}

.panel-focus {
  z-index: 4;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.area-focus {
  width: 100%;
  height: 100vh;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: var(--porte-navy);
}

.area-focus .container-fluid,
.area-focus .row {
  height: 100%;
}

/* SOL TARAF */
.left-fwrap {
  width: 100%;
  height: 100vh;
  background-image: url(../images/bgleft.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.focus-title-wrap {
  max-width: 280px;
  width: 100%;
  text-align: center;
}

.left-fwrap h2 {
  font-size: 80px;
  line-height: 0.92;
  color: #fff;
  font-family: var(--font-times);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

/* SAĞ TARAF */
.focus-right-wrap {
  width: 100%;
  padding: 70px 70px 70px 40px;
}

.focus-col {
  min-height: 100%;
}

.focus-col-left {
  padding-right: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.focus-col-right {
  padding-left: 42px;
}

.content-lf {
  margin-bottom: 62px;
  max-width: 390px;
  width: 100%;
}

.content-lf:last-child {
  margin-bottom: 0;
}

.content-lf h3 {
  margin: 0 0 14px;
  color: var(--porte-gold);
  font-family: var(--font-times);
  font-size: 35px;
  line-height: 1.02;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.content-lf h3 em {
  font-weight: 300;
}

.content-lf p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 200;
}

@media (max-width: 1399.98px) {
  .left-fwrap h2 {
    font-size: 68px;
  }

  .focus-right-wrap {
    padding: 56px 50px 56px 28px;
  }

  .content-lf h3 {
    font-size: 23px;
  }
}

@media (max-width: 1199.98px) {
  .left-fwrap {
    padding: 40px 24px;
  }

  .left-fwrap h2 {
    font-size: 58px;
    max-width: 220px;
  }

  .focus-col-left {
    padding-right: 28px;
  }

  .focus-col-right {
    padding-left: 28px;
  }

  .content-lf {
    margin-bottom: 42px;
  }

  .content-lf h3 {
    font-size: 21px;
  }

  .content-lf p {
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .area-focus {
    height: auto;
    min-height: 100vh;
    padding: 70px 0;
  }

  .area-focus .container-fluid,
  .area-focus .row {
    height: auto;
  }

  .left-fwrap {
    min-height: 360px;
    background-position: center center;
    justify-content: center;
    padding: 40px 20px;
  }

  .left-fwrap h2 {
    font-size: 56px;
    max-width: 240px;
  }

  .focus-right-wrap {
    padding: 30px 24px 10px;
  }

  .focus-col-left {
    padding-right: 0;
    border-right: 0;
    margin-bottom: 10px;
  }

  .focus-col-right {
    padding-left: 0;
  }

  .content-lf {
    margin-bottom: 18px;
  }

  .content-lf p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .area-focus {
    padding: 48px 0;
  }

  .left-fwrap {
    min-height: 300px;
    padding: 24px 16px;
  }

  .left-fwrap h2 {
    font-size: 44px;
    max-width: 180px;
  }

  .focus-right-wrap {
    padding: 24px 18px 0;
  }

  .content-lf h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .content-lf p {
    font-size: 12px;
    line-height: 1.45;
  }
}

.hww-area {
  background-color: #F7F7F7;
  text-align: center;
  padding: 8rem 0;
  padding-bottom: 0;
}

.hww-area h2 {
  font-style: italic;
  font-family: var(--font-times);
  font-size: 65px;
  color: var(--porte-gold);
  margin-bottom: 2.5rem;
}

.hww-area p {
  font-size: 26px;
  color: var(--porte-navy);
  font-weight: lighter;
}

.hww-area p em {
  font-size: 29px;
  font-family: var(--font-times);
  font-weight: bold;
}

.prc-content {
  margin-top: 5rem;
  /* position: relative;
  bottom: -8rem; */
}

.prc-content h3 {
  font-style: italic;
  font-family: var(--font-times);
  font-size: 60px;
  color: var(--porte-gold);
}

.circ-card {
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 2rem 1rem;
  background-color: var(--porte-navy);
  border-radius: 10rem 10rem 0 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circ-card h4 {
  margin-bottom: 2rem;
  color: var(--porte-gold);
  font-size: 35px;
  font-family: var(--font-times);
  font-style: italic;
  font-weight: bold;
}

.circ-card h6 {
  color: #fff;
  font-size: 19.5px;
  font-weight: 300;
  max-width: 205px;
}

.circ-card h6 b {
  font-weight: bold;
}

.mar-top {
  margin-top: 5rem;
}

.hww-content h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.hww-content h2 .space {
  display: inline-block;
  width: 0.22em;
}

.circ-card {
  will-change: transform, opacity;
}

.plus-bg {
  position: relative;
  top: -10rem;
  z-index: -1;
  background-color: #fff;
  padding: 25rem 0;
  padding-bottom: 20rem;
  background-image: url(../images/bg-lr.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
}

.hww-area.plus-bg .hww-content h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.hww-area.plus-bg .hww-content h2 .space {
  display: inline-block;
  width: 0.22em;
}

.contact-form-wrap {
  width: 100%;
  padding: 30px 24px;
  padding-right: 10rem;
  padding-left: 7rem;
}

/* LABEL */
.contact-form-wrap label {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--porte-navy);
}

/* INPUT + TEXTAREA */
.contact-form-wrap .form-control {
  width: 100%;
  border: none;
  border-radius: 0;
  background: #F7F7F7;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}

.contact-form-wrap textarea.form-control {
  resize: none;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  background: var(--porte-navy);
  /* navy tone */
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #041c35;
}

.contact-area {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.contact-area h2 {
  color: var(--porte-gold);
  font-size: 80px;
  font-family: var(--font-times);
  font-style: italic;
}

.contact-area p {
  color: var(--porte-navy);
  font-size: 31px;
  margin-top: 1.25rem;
}

.area-six {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.area-six img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.abslt-as {
  width: 100%;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  transform: translateX(-50%);
}

.abslt-as h2 {
  color: #fff;
  font-size: 50px;
  font-weight: lighter;
}

.abslt-as h2 em {
  font-family: var(--font-times) !important;
  font-size: 60px !important;
  font-weight: bold !important;
}

.contact-stack {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.contact-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-panel--base {
  z-index: 1;
  background: #fff;
}

.contact-panel--overlay {
  z-index: 3;
}

.contact-stack .contact-area,
.contact-stack .area-six {
  width: 100%;
  height: 100vh;
}

.contact-copy h2 .char,
.abslt-as h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.contact-copy h2 .space,
.abslt-as h2 .space {
  display: inline-block;
  width: 0.22em;
}

.abslt-as h2 em .char {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

.location-area {
  padding: 12rem 0;
  text-align: center;
  overflow: hidden;
}

.location-area h2 {
  color: var(--porte-gold);
  font-size: 65px;
  font-family: var(--font-times);
  font-style: italic;
  margin-bottom: 2rem;
}

.location-area h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  will-change: transform, opacity, filter;
}

.location-area h2 .space {
  display: inline-block;
  width: 0.22em;
}

.city-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.city-list li {
  position: relative;
  padding-left: 12px;
  font-size: 26px;
  font-weight: 600;
  color: var(--porte-navy);
  will-change: transform, opacity, filter;
  transform-origin: center center;
}

.city-list li:first-child {
  padding-left: 0;
}

.city-list li:first-child::before {
  display: none;
}

.city-list li::before {
  content: "•";
  position: absolute;
  left: -.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #caa56b;
  font-size: 14px;
}

.scroll-top-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--porte-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 100;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.scroll-top-btn i {
  font-weight: 100;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn.on-dark {
  background: #fff;
  color: var(--porte-navy);
}

.scroll-top-btn:hover {
  transform: translateY(-3px) scale(1);
}

@media (max-width: 767.98px) {
  .scroll-top-btn {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

footer {
  background-color: var(--porte-navy);
  width: 100%;
  padding: 5rem 0;
  padding-bottom: 2rem;
}

footer .logo img {
  width: 14rem;
}

.flex-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu ul {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu ul li a {
  color: #fff;
  font-size: 19.35px;
  font-weight: 300;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 5rem;
}

.copyr {
  text-align: end;
  color: #fff;
  margin-top: 2rem;
  font-size: 14px;
  font-weight: 300;
}

/* MOBILE MENU */
.porte-mobile-menu {
  position: fixed;
  inset: 0;
  background: #08233f;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: .5s ease;
}

.porte-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* INNER */
.porte-mobile-menu__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* NAV */
.porte-mobile-menu__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.porte-mobile-menu__nav li {
  margin: 24px 0;
  transform: translateY(20px);
  opacity: 0;
}

.porte-mobile-menu.active .porte-mobile-menu__nav li {
  transform: translateY(0);
  opacity: 1;
  transition: .4s ease;
}

.porte-mobile-menu.active .porte-mobile-menu__nav li:nth-child(1) {
  transition-delay: .1s;
}

.porte-mobile-menu.active .porte-mobile-menu__nav li:nth-child(2) {
  transition-delay: .18s;
}

.porte-mobile-menu.active .porte-mobile-menu__nav li:nth-child(3) {
  transition-delay: .26s;
}

.porte-mobile-menu.active .porte-mobile-menu__nav li:nth-child(4) {
  transition-delay: .34s;
}

.porte-mobile-menu__nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
}

.porte-mobile-menu__actions {
  display: grid;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;

  transform: translateY(20px);
  opacity: 0;
}

.porte-mobile-menu.active .porte-mobile-menu__actions {
  transform: translateY(0);
  opacity: 1;
  transition: .4s ease .4s;
}

/* BG SHAPE */
.porte-mobile-bg {
  background-image: url(../images/menu-pattern.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 90%;
}

/* TOGGLER ANIM */
.porte-toggler.active .porte-toggler__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.porte-toggler.active .porte-toggler__line:nth-child(2) {
  opacity: 0;
}

.porte-toggler.active .porte-toggler__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.porte-mobile-close {
  position: absolute;
  top: 40px;
  right: 26px;
  width: 26px;
  height: 17px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 20;
}

.porte-mobile-close span {
  position: absolute;
  right: 0;
  display: block;
  height: 1.25px;
  background: #fff;
  border-radius: 999px;
  transition: all .35s ease;
}

.porte-mobile-close span:nth-child(1) {
  width: 13px;
  top: 0px;
  left: 0;
}

.porte-mobile-close span:nth-child(2) {
  width: 25px;
  top: 10px;
}

.porte-mobile-close span:nth-child(3) {
  width: 13px;
  top: 20px;
}

.porte-mobile-close:hover span:nth-child(1) {
  transform: translateX(-4px);
}

.porte-mobile-close:hover span:nth-child(2) {
  transform: translateX(0);
}

.porte-mobile-close:hover span:nth-child(3) {
  transform: translateX(-6px);
}

@media (max-width: 991.98px) {
  .contact-stack {
    position: relative;
    height: 100svh;
    overflow: hidden;
  }

  .contact-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .contact-stack .contact-area,
  .contact-stack .area-six {
    width: 100%;
    height: 100svh;
  }

  .contact-area {
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
  }

  .contact-form-wrap {
    padding: 1.5rem 0 0;
  }

  .contact-area h2 {
    font-size: 48px;
  }

  .contact-area p {
    font-size: 20px;
    line-height: 1.4;
  }

  .area-six img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .abslt-as {
    bottom: 2rem;
    padding: 0 1rem;
  }

  .abslt-as h2 {
    font-size: 32px;
    text-align: center;
    line-height: 1.1;
  }

  .abslt-as h2 em {
    font-size: 36px !important;
  }
}

@media (max-width: 991px) {
  .main-stack {
    height: auto !important;
    overflow: visible !important;
  }

  .main-stack>div {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
  }
}

@media (max-width: 991px) {
  .contact-stack {
    height: auto !important;
    overflow: visible !important;
  }

  .contact-panel--base,
  .contact-panel--overlay {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
  }
}

.pin-spacer {
  top: -3rem !important;
}