@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 900;
    font-style: normal;
}

:root {
    --primary-blue: #0A192F;
    --secondary-blue: #070707;
    --metallic: #8892B0;
    --white: #E6F1FF;
    --accent: #64FFDA;
    --font-heading: 'Metropolis', sans-serif;
    --font-body: 'MyriadPro', sans-serif;
    --font-accent: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== MENU ==================== */

.menu-section {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 5px;
    flex-wrap: wrap;
    width: 100%;
    z-index: 12;
    /* background: rgba(10, 25, 47, 0.35); */
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.menu-section a {
    padding: 30px 15px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.menu-section a:hover {
    opacity: 0.75;
}

.menu-section.scrolled {
    background: var(--secondary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* padding-right: 160px; */
    /* justify-content: space-between; */
}

.menu-section.scrolled a {
    padding: 25px 25px;
}

.divider {
    color: var(--white);
    font-weight: 300;
    font-size: 9px;
    opacity: 0.5;
}

.logo-scroll {
    width: 120px;
    height: auto;
    display: none;
    position: absolute;
    left: 30px;
    top: 20px;
}

.logo-scroll.visible {
    display: block;
}

.whatsapp-scroll {
    width: 30px;
    height: auto;
    display: none;
    position: absolute;
    right: 30px;
    top: 15px;
}

.whatsapp-scroll.visible {
    display: block;
}


.header-logo {
    position: absolute;
    left: 30px;
    top: 25px;
    width: 180px;
    z-index: 1;
}

.temperature-structure {
    width: 100%;
    display: flex;
    position: relative;
}

.hero-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 250px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 200px);
    z-index: 2;
}

.hero-title .mini-title {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 500;
    /* line-height: 1.2; */
    letter-spacing: 1.3px;
    color: var(--white);
    text-align: center;
}

.extremes-col {
    position: absolute;
    bottom: 100px;
    right: 100px;
    padding: 16px 22px;
    background: #0a192f52;
    border: 1px solid var(--secondary-blue);
    border-radius: 18px;
}

.extremes-col .top-items {
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--white);
    padding-bottom: 6px;
    border-bottom: 1px solid #f77e54;
}

.extremes-col .top-items span {
    display: block;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--white);
}

.extremes-col .bottom-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.extremes-col .bottom-items .cool {
    border-right: 1px solid var(--white);
    color: #5ac8ff
}

.extremes-col .bottom-items .heat {
    color: #f99023;
    padding-left: 15px;
}

.extremes-col .bottom-items .common-item {
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 12px;
    font-family: var(--font-heading);
}

.extremes-col .bottom-items .common-item img {
    width: 14px;
    height: 14px;
    object-fit: cover;
    margin-right: 6px;
}

.d-flex {
    display: flex;
}

.experience {
    position: relative;
}

.experience-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
    width: calc(100% - 200px);
    z-index: 2;
}

.experience-header .title {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 500;
    /* line-height: 1.2; */
    /* letter-spacing: 1.3px; */
    color: var(--white);
    text-align: center;
}

.experience-header .description {
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #d4f2ff;
    text-align: center;
    margin-top: 20px;
}


.experience .products {
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 50%;
    /* background: #0a192f52; */
    /* height: 200px; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.experience .products .product-item:nth-child(1) {
    width: 32%;
}

.experience .products .product-item:nth-child(2) {
    width: 28%;
}

.experience .products .product-item:nth-child(3) {
    width: 22%;
}

.experience .products .product-name {
    color: #5ac8ff;
    font-size: 16px;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.experience .products .product-name span {
    display: block;
    font-size: 8px;
    font-family: var(--font-heading);
    margin-top: 4px;
    margin-top: 8px;
    font-weight: 400;
}


.experience .products .product-item .icon {
    display: block;
    width: auto;
    height: 40px;
    margin: 0 auto;
    margin-top: 10px;
}

.cold-therapy {
    position: relative;
}

.cold-therapy-header {
    position: absolute;
    left: 100px;
    /* transform: translateX(-50%); */
    top: 70px;
    width: 45%;
    z-index: 2;
}

.cold-therapy-header .title {
    font-size: 38px;
    font-family: var(--font-heading);
    font-weight: 500;
    /* line-height: 1.2; */
    /* letter-spacing: 1.3px; */
    color: var(--white);
    /* text-align: center; */
}

.cold-therapy-header .description {
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #d4f2ff;
    /* text-align: center; */
    margin-top: 20px;
    width: 80%;
}

.cold-therapy .features {
    position: absolute;
    right: 16%;
    bottom: 74px;
    width: 68%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cold-therapy .features .single-features {
    background: #0a192f52;
    border: 1px solid #454444;
    border-radius: 18px;
    padding: 45px 10px;
    color: var(--white);
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 400;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cold-therapy .features .single-features img {
    margin: 0 auto;
    margin-bottom: 10px;
    height: 55px;
}

.cold-therapy .features .single-features .feature-title {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.flash {
    position: absolute;
    bottom: -11px;
    width: 100%;
    height: 22px;
    z-index: 3;
}

.data-sheet {
    position: relative;
}

.data-sheet .sheet-table {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    z-index: 2;
}

.data-sheet .sheet-table .title {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.spec-table {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #444;
    color: #fff;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #444;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table tr:nth-child(odd) {
    background-color: #1a1f24;
}

.spec-table tr:nth-child(even) {
    background-color: #2a2f35;
}

.spec-table td {
    padding: 8px 12px;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.text-center {
    text-align: center;
}

.spec-table td:first-child {
    color: #d0d0d0;
    font-weight: 400;
}

.spec-table td:last-child {
    /* text-align: right; */
    text-align: center;
    font-weight: 500;
    color: #ffffff;
}

/* ==================== CONTACT US ==================== */

.contact-us {
    padding: 60px 100px;
    background-color: #d4f2ff;
    color: var(--primary-blue);
}

.contact-us .wrap {
    display: flex;
    gap: 30px;
}

.contact-us .single-col {
    width: 33.33%;
}

.contact-us .single-col .footer-logo {
    /* margin: 20px auto; */
    width: 70%;
    display: block;
}

.contact-us .single-col .mini-title {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-us .single-col .sub-title {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.3px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-us .mini-description {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .9;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: justify;
}

.contact-us .single-col .form-group {
    width: 100%;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
}

.contact-us .single-col .form-group label {
    margin-bottom: 0px !important;
    letter-spacing: .2px;
}

.contact-us .single-col .form-group input,
.contact-us .single-col .form-group textarea {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
    color: var(--primary-blue);
    padding: 6px 8px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    width: 100%;
    background: #fff;
}

.contact-us .single-col .form-group input:focus,
.contact-us .single-col .form-group textarea:focus {
    border-color: var(--primary-blue);
}

.contact-us .single-col .view-download-btn {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--metallic);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.contact-us .single-col .submit-btn {
    width: max-content;
    background-color: var(--primary-blue);
    color: var(--metallic);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    text-align: center;
    padding: 5px 30px 5px 10px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
    border: 0px;
    outline: 0px;
}

.contact-us .single-col .submit-btn:hover {
    opacity: 0.85;
}

.contact-us .single-col .submit-btn::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--metallic);
    z-index: 1;
    right: 10px;
    top: 11px;
    transform: rotate(45deg);
    transform-origin: top right;
    border-left: 0px;
    border-bottom: 0px;
}

.contact-us .whatsapp-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    /* gap: 30px; */
}

.contact-us .whatsapp-footer .whatsapp-content {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
    width: 100%;
    margin-left: calc(33.333% + 10px);
}

.contact-us .whatsapp-footer .whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 5px;
    flex-shrink: 0;
}

.contact-us .whatsapp-footer .whatsapp-text {
    margin-bottom: 0px;
}

.bottom-footer {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    font-size: 9px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-heading);
}

.bottom-footer a {
    text-decoration: none;
    color: var(--white);
}

.d-lfex-footer-description {
    display: flex;
    /* justify-content: space-between; */
}

.d-lfex-footer-description a {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid var(--primary-blue);
    border-radius: 18px;
    line-height: 0;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 180px;
    color: var(--primary-blue);
}

.d-lfex-footer-description img {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

/* ================================================================
   RESPONSIVE — ordered from largest to smallest
   ================================================================ */

@media (max-width: 1024px) {
    .contact-us {
        padding: 40px 40px;
    }
}

@media (max-width: 991px) {
    .experience-header .title {
        font-size: 32px;
    }

    .experience-header {
        top: 40px;
    }

    .experience .products {
        bottom: 40px;
        width: 45%;
    }

    .experience .products .product-item .icon {
        height: 35px;
    }

    .cold-therapy-header .title {
        font-size: 26px;
    }

    .cold-therapy .features {
        bottom: 40px;
        width: calc(100% - 200px);
        right: 100px;
    }

    .cold-therapy-header {
        top: 40px;
    }
}

@media (min-width: 768px) {
    .d-sm-block {
        display: none;
    }
}

@media (max-width: 768px) {

    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block;
    }

    .contact-us .single-col .footer-logo {
        margin: 20px auto;
    }

    .menu-section {
        padding: 20px 10px;
        padding-right: 10px !important;
        gap: 0;
        justify-content: space-between;
    }

    .menu-section a {
        padding: 12px 6px;
        font-size: 10px;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }

    .logo-scroll {
        left: 50%;
        transform: translateX(-50%);
    }

    /* .menu-section.scrolled a {
        padding: 20px 0px;
    } */

    .menu-section.scrolled a {
        padding: 40px 0px 5px;
    }

    .divider {
        display: none;
    }

    .header-logo {
        width: 140px;
        height: auto;
        left: 20px;
        transform: translateX(0%);
        top: 80px;
        overflow: visible;
        border-radius: 0;
    }

    .hero-title {
        top: 250px;
        width: calc(100% - 60px);
    }

    .extremes-col {
        bottom: 30px;
        right: 30px;
    }

    .experience-header {
        width: calc(100% - 60px);
    }

    .experience .products {
        left: 40px;
        width: 55%;
    }

    .cold-therapy-header {
        left: 30px;
        width: 60%;
    }

    .cold-therapy .features {
        width: calc(100% - 60px);
        right: 30px;
    }

    .cold-therapy .features .single-features {
        padding: 30px 10px;
    }

    .cold-therapy .features .single-features img {
        height: 45px;
    }

    .cold-therapy .features .single-features .feature-title {
        font-size: 14px;
    }


    .contact-us .single-col .footer-logo {
        margin: 20px auto;
    }

    .data-sheet .sheet-table {
        left: 30px;
        width: 45%
    }

    /* Contact */
    .contact-us {
        padding: 40px 20px;
    }

    .contact-us .wrap {
        flex-direction: column;
        gap: 30px;
    }

    .contact-us .single-col {
        width: 100%;
    }

    .contact-us .whatsapp-footer {
        justify-content: center;
    }

    .contact-us .whatsapp-footer .whatsapp-content {
        width: 100%;
        justify-content: center;
    }
}

/* @media (max-width: 576px) {} */

@media (min-width: 576px) {
    .d-xs-block {
        display: none;
    }
}

@media (max-width: 576px) {

    .d-xs-none {
        display: none !important;
    }

    .d-xs-block {
        display: block;
    }

    .menu-section a {
        padding: 8px 0px;
        font-size: 10px;
        letter-spacing: 0px;
        white-space: nowrap;
    }

    .header-logo {
        width: 100px;
        left: 15px;
        top: 70px;
    }

    .hero-title {
        top: 150px;
        width: calc(100% - 30px);

    }

    .hero-title .mini-title {
        font-size: 22px;
    }

    .cold-therapy-header {
        left: 30px;
        width: 80%;
    }

    .cold-therapy .features .single-features {
        padding: 15px 10px;
    }

    .cold-therapy .features {
        width: 70%;
        right: unset;
        left: 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        bottom: 30px;
    }

    .cold-therapy .features .single-features img {
        height: 30px;
    }

    .data-sheet .sheet-table .title {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .data-sheet .sheet-table {
        width: 60%;
    }

    .spec-table td {
        padding: 6px 8px;
        font-size: 11px;
    }

    .experience .products {
        left: 30px;
        width: 50%;
        flex-wrap: wrap;
    }

    .experience .products .product-item:nth-child(1) {
        width: 48%;
    }

    .experience .products .product-item:nth-child(2) {
        width: 48%;
    }

    .experience .products .product-item:nth-child(3) {
        width: 48%;
        margin-top: 30px;
    }

    .experience-header .title {
        font-size: 24px;
    }

    .experience-header {
        top: 30px;
    }

    .experience .products .product-item .icon {
        height: 30px;
    }

    .experience .products .product-name {
        font-size: 13px;
    }

    .experience-header .description {
        margin-top: 8px;
    }

    .experience .products {
        bottom: 30px;
    }

    .cold-therapy-header .title {
        font-size: 20px;
    }

    .cold-therapy-header .description {
        margin-top: 8px;
    }

    .cold-therapy-header {
        top: 30px;
    }

    .cold-therapy .features .single-features .feature-title {
        font-size: 12px;
    }

    .cold-therapy .features .single-features {
        padding: 10px 10px;
    }

    .extremes-col .top-items {
        font-size: 16px;
    }
}