:root {
    --padding: 100px;
}

body {
    font-family: 'Questrial', sans-serif;
}

h1 {
    font-size: clamp(64px, 10vw, 128px);
}

h2 {
    font-size: clamp(44px, calc(5vw + 1rem), 84px);
    line-height: 1;
}

h3 {
    font-size: clamp(36px, 5vw, 56px);
}

h4 {
    font-size: clamp(24px, 4vw, 42px);
}

h5 {
    font-size: clamp(20px, 3vw, 32px);
}

h6 {
    font-size: clamp(16px, 2vw, 20px);
}

a {
    text-decoration: none;
}

.section-padding {
    padding-top: var(--padding);
    padding-bottom: var(--padding);
}

.section-padding-sm {
    padding-top: calc(var(--padding) * 0.5);
    padding-bottom: calc(var(--padding) * 0.5);
}

.section-padding-lg {
    padding-top: calc(var(--padding) * 1.5);
    padding-bottom: calc(var(--padding) * 1.5);
}

.top-padding {
    padding-top: var(--padding);
}

.bottom-padding {
    padding-bottom: var(--padding);
}

.bottom-padding-sm {
    padding-bottom: calc(var(--padding) * 0.5);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.site-header-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    color: #fff;
    background-color: #000;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.site-header-cta:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.logo {
    height: 40px;
}

.navbar-nav .nav-link {
    letter-spacing: 1px;
    font-weight: 300;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-nav .dropdown-menu {
    border-radius: 0;
    border: none;
    background-color: rgba(0, 0, 0, 0.9);
}

.navbar-nav .dropdown-item {
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    color: #fff;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-section {
    position: relative;
    height: 100vh;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    overflow: hidden;
}

.hero-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    transform-origin: center center;
    will-change: transform;
}

.hero-section-wrap {
    z-index: 3;
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
}

.hero-section-title {
    color: #fff;
    text-align: center;
    letter-spacing: 24px;
    margin: 0;
}

.slogan-stats-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-slogan-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: var(--padding);
    padding-bottom: var(--padding);
}

.home-slogan-text {
    text-align: center;
    text-transform: uppercase;
}

/* Stats banner */
.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-banner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 0;
    z-index: 2;
    color: white;
    overflow: hidden;
}

.stats-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    z-index: 1;
    padding: var(--padding) 0;
}

.stats-banner-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url("../img/home/banner_img_1.jpg") center/cover no-repeat;
}

/* Models preview section */
.models-preview-section {
    background-color: #282828;
}

/* .model-preview-card {
    color: #232323;
} */

.model-preview-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 700px;
}

.model-preview-image-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.92) 0%, rgba(30, 30, 30, 0.55) 42%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.model-preview-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    transition: transform 0.45s ease;
}

.model-preview-card:hover .model-preview-image {
    transform: scale(1.03);
}

.model-preview-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 32px 32px;
    color: #ffffff;
    z-index: 2;
}

.why-choose-us-section {
    position: relative;
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
}

.why-choose-us-slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.why-choose-us-slide:first-child {
    z-index: 1;
}

.why-choose-us-slide:nth-child(2) {
    z-index: 2;
}

.why-choose-us-slide .row {
    height: 100%;
}

.why-choose-us-img-col {
    position: relative;
    display: flex;
    align-self: stretch;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.why-choose-us-content-col {
    position: relative;
    z-index: 1;
}

.why-choose-us-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-us-content {
    padding-left: 80px;
    padding-right: 64px;
}

.why-choose-us-cta {
    color: #000;
    text-transform: uppercase;
}

.why-choose-us-arrow {
    color: #2c72e4;
    padding-left: 10px;
}

/* Site footer */
.site-footer-nav {
    background-color: #414740;
    color: #fff;
}

.site-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-list li {
    margin-bottom: 0.5rem;
}

.site-footer-list li:last-child {
    margin-bottom: 0;
}

.site-footer-nav a {
    color: #fff;
    /* font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease; */
}

.site-footer-nav a:hover {
    color: #fff;
    opacity: 0.75;
}

.site-footer-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.site-footer-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../img/home/bg_footer.jpg") center 100%/cover no-repeat;
}

.site-footer-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 24, 48, 0.25) 0%, rgba(0, 18, 40, 0.45) 100%);
    pointer-events: none;
}

.site-footer-hero-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1.5rem 2rem;
}

.site-footer-hero-logo {
    width: min(320px, 72vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

.site-footer-legal {
    position: relative;
    z-index: 1;
    padding-top: 0.5rem;
    padding-bottom: 1.25rem;
}

.site-footer-legal-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.site-footer-legal-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    color: #fff;
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
}

.site-footer-legal-copy a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: opacity 0.2s ease;
}

.site-footer-legal-copy a:hover {
    color: #fff;
    opacity: 0.85;
}

.site-footer-legal-sep {
    display: inline-block;
    margin: 0 0.35rem;
    opacity: 0.7;
}