/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");

body {
    font-family: "Oxanium", sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f6f6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oxanium", sans-serif;
    color: #000;
    font-weight: 600;
    /* margin: 0; */
}

p,
li,
span {
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

a {
    text-decoration: none;
}

ul,
li {
    padding: 0;
    list-style: none;
}

header.main-header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    display: block;
    left: 0;
    position: sticky;
    top: 0;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: 10;
    transform: translateY(0);
}

header.main-header.hide {
    transform: translateY(-100%);
}

.top-bar {
    background-color: #f0f0f0;
    /* Tailwind gray-300 */
    color: #000000;
    /* Tailwind gray-700 */
    font-size: 13px;
    line-height: 1.2;
    padding: 0 1rem;
    user-select: none;
}

.login-button {
    background-color: #cd1414;
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 2px 12px;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 0;
    border: 0;
    height: 24px;
    font-weight: 700;
}

.menu-toggler {
    position: relative;
    max-width: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 4px;
    /* margin-right: 30px; */
}

.menu-toggler img {
    width: 100%;
    max-width: 25px;
}

.nav-container {
    background-color: white;
    padding: 0.5rem 0;
    height: 88px;
    display: flex;
    align-items: center;
}

.nav-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: black;
}

.nav-menu-label {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: black;
    user-select: none;
}

.nav-logo img {
    width: 150px;
    /* height: 20px; */
    display: block;
}

.main-nav {
    /* margin-left: 32px; */
    position: relative;
}

.nav-links {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: black;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.nav-links .custom-link {
    background: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 120px;
    color: #000;
    cursor: pointer;
    display: block;
    padding: 10px 16px;
    position: relative;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.nav-links .custom-link:before {
    border: 2px solid #f6f6f6;
    background: #f6f6f6;
    border-radius: 120px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    z-index: 0;
}

.nav-links .custom-link a {
    position: relative;
    z-index: 1;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.nav-links .custom-link:hover:before {
    opacity: 1;
}

.nav-links li {
    display: inline-block;
}

.nav-links li a {
    color: black;
}

.nav-search-button {
    background: none;
    border: none;
    color: black;
    font-size: 1.125rem;
    /* 18px */
    cursor: pointer;
}

@media (max-width: 575.98px) {
    .nav-links {
        display: none;
    }
}

/* Main banner */
.main-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 112px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: black;
}

.main-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5);
}

.main-banner .content {
    position: relative;
    z-index: 1;
    /* max-width: 400px; */
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-banner h1 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 576px) {
    .main-banner h1 {
        font-size: 3.75rem;
    }
}

.search-form {
    display: flex;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background: white;
    width: 100%;
    max-width: 400px;
}

.search-form button.location-btn {
    background: black;
    border: none;
    color: white;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.search-form input[type="search"] {
    border: none;
    padding: 0.5rem 1rem;
    flex-grow: 1;
    font-size: 1rem;
    outline: none;
}

.divider-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    user-select: none;
}

.theme-btn {
    align-items: center;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    position: relative;
    text-align: center;
    background: #cd1414;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 120px;
    gap: 8px;
    padding: 19px 56px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out,
        border 0.3s ease-in-out;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
}

.theme-btn:hover,
.theme-btn:focus {
    background-color: #0437c2;
    outline: none;
}

/* Services Section */
.services-container {
    background-color: #fff;
    padding: 120px 15px;
    text-align: center;
    /* max-width: 1200px; */
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
}

.services-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .services-description {
        font-size: 16px;
    }
}

.services-feature-icon {
    font-size: 48px;
    margin-bottom: 30px;
}

.services-feature-text {
    font-weight: 600;
    font-size: 0.75rem;
    color: #000;
    line-height: 1.8;
    padding-top: 16px;
    margin-bottom: 56px;
}

@media (min-width: 768px) {
    .services-feature-text {
        font-size: 18px;
        font-weight: 700;
    }
}

.services-button {
    background-color: #cd1414;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    border: none;
    transition: background-color 0.3s ease;
}

.services-button:hover,
.services-button:focus {
    background-color: #0437c2;
    color: #fff;
    outline: none;
    box-shadow: none;
}

/* Product List Section */
.product-list {
    margin: 0 auto;
    position: relative;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0 15px;
}

h2.title {
    font-weight: 800;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

/* Swiper container inside product-list */
.product-list .swiper {
    padding: 0 19px 25px 19px;
    padding-bottom: 40px;
}

.product-list .swiper-scrollbar {
    background: #e5e7eb;
    /* gray-200 */
    border-radius: 2px;
    height: 4px;
    bottom: 8px !important;
}

.product-list .swiper-scrollbar:hover {
    cursor: grabbing;
    height: 10px;
}

.product-list .swiper-scrollbar-drag {
    background: #000;
    border-radius: 120px;
}

.product-list .swiper-slide {
    background: #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    padding: 24px 24px 32px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-shrink: 0;
}

.product-list .image-wrapper {
    margin-bottom: 24px;
    text-align: center;
}

.product-list .image-wrapper img {
    width: auto;
    object-fit: contain;
    display: inline-block;
    max-width: 100%;
}

.product-list h3.product-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 0.25rem;
    margin-bottom: 8px;
    color: #000;
    padding-top: 32px;
}

.product-list h4.product-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    color: #000;
}

.product-list ul.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #858585;
    /* gray-500 */
}

.product-list ul.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.product-list ul.features-list li i.fa-sync-alt {
    color: #858585;
    /* gray-300 */
    min-width: 16px;
    font-size: 14px;
    text-align: center;
    margin-right: 13px;
    padding-right: 13px;
    border-right: 1px solid #858585;
}

.product-list ul.features-list.gray-light li {
    color: #858585;
    /* gray-400 */
}

.product-list ul.features-list.gray-light li span.border-left {
    border-left: 1px solid #d1d5db;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
    display: inline-block;
    min-width: calc(100% - 1rem);
}

.divider {
    width: 33.3333%;
    height: 3px;
    background-color: #000;
    margin: 2rem auto 0;
    border-radius: 1.5px;
}

/* Swiper navigation arrows */
.product-list .swiper-button-next,
.product-list .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.product-list .swiper-button-next {
    right: 5px;
}

.product-list .swiper-button-prev {
    left: 5px;
}

.product-list .swiper-button-next::after,
.product-list .swiper-button-prev::after {
    content: none;
    /* Remove default arrows */
}

.product-list .swiper-button-next i,
.product-list .swiper-button-prev i {
    font-size: 18px;
    pointer-events: none;
}

/* Responsive adjustments */
/* @media (max-width: 991.98px) {
     .product-list .swiper-button-next {
         right: -10px;
     }

     .product-list .swiper-button-prev {
         left: -10px;
     }
 } */

/* Hide navigation arrows initially */
.product-list .swiper-button-next,
.product-list .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Show arrows on hover */
.product-list:hover .swiper-button-next,
.product-list:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

/* Home Solutions */

.home-solutions {
    padding: 0;
    margin: 0 auto;
}

.title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 48px;
    text-align: center;
}

.home-solutions-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    border: none;
    margin-bottom: 32px;
}

.home-solutions-card img {
    width: 100%;
    height: 266px;
    object-fit: cover;
}

.home-solutions-card-body {
    padding: 24px;
}

.home-solutions-card-title {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 12px;
}

.home-solutions-card-text {
    font-size: 14px;
    margin-bottom: 16px;
    max-height: 65px;
    min-height: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-solutions-link {
    font-weight: 600;
    font-size: 16px;
    color: #cd1414;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.home-solutions-link:hover {
    color: #0437c2;
    text-decoration: underline;
}

.home-solutions-link i {
    margin-left: 6px;
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 64px;
}

section.max-w-4xl {
    margin-top: 120px;
}

.about-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 40px 32px;
    background: #fff;
}

.about-section__title {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .about-section__title {
        font-size: 40px;
    }

    .about-section__content {
        padding: 64px;
    }
}

.pad-left {
    padding-left: 20%;
}

.pad-right {
    padding-right: 20%;
}

.about-section__text {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .about-section__text {
        font-size: 16px;
    }
}

.about-section__button {
    background-color: #cd1414;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 32px;
    border: none;
    max-width: max-content;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.about-section__button:hover,
.about-section__button:focus {
    background-color: #0437c2;
    color: white;
    outline: none;
    box-shadow: none;
}

/* FAQ Section */
section.faq {
    margin: 40px auto 40px auto;
    padding: 0 24px;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
    background-color: #f7f7f7;
}

section.faq>.faq-item {
    border-bottom: 1px solid #d1d5db;
}

section.faq>.faq-item:last-child {
    border-bottom: none;
}

p.lead {
    max-width: 760px;
    margin: 0 auto 40px auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #000;
}

.faq-question {
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border-top: 1px solid #dedede;
}

/* Arrow icon */
.faq-question::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.faq-item.open .faq-question::after {
    transform: rotate(-135deg);
}

/* FAQ answer */
.faq-answer {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 32px;
    padding-bottom: 24px;
    width: 100%;
    color: #000;
    max-width: 760px;
    /* display: none; */
    margin: 0 auto;
    text-align: left;
}

/* .faq-item.open .faq-answer {
     display: block;
 } */

/* Hero section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 2rem;
    max-width: 320px;
    transform: translateY(-50%);
}

@media (min-width: 640px) {
    .hero__content {
        left: 3rem;
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .hero__content {
        left: 4rem;
        max-width: 480px;
    }
}

@media (min-width: 1024px) {
    .hero__content {
        left: 5rem;
        max-width: 560px;
    }
}

@media (min-width: 1280px) {
    .hero__content {
        left: 6rem;
        max-width: 640px;
    }
}

.hero__title {
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.125rem;
    /* 18px */
    margin: 0;
    color: #fff;
}

@media (min-width: 640px) {
    .hero__title {
        font-size: 1.25rem;
        /* 20px */
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 1.5rem;
        /* 24px */
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 1.875rem;
        /* 30px */
    }
}

@media (min-width: 1280px) {
    .hero__title {
        font-size: 2.25rem;
        /* 36px */
    }
}

.hero__paragraph {
    margin-top: 1rem;
    font-weight: 400;
    font-size: 0.75rem;
    /* 12px */
    line-height: 1.5;
    max-width: 320px;
    color: #fff;
}

@media (min-width: 640px) {
    .hero__paragraph {
        font-size: 0.875rem;
        /* 14px */
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .hero__paragraph {
        font-size: 1rem;
        /* 16px */
        max-width: 480px;
    }
}

/* Footer */
.main-footer {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 48px;
}

.title-footer {
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-footer .recommended-topics {
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.main-footer .recommended-topics p.title {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 0.75rem;
}

.main-footer .recommended-topics ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.main-footer .recommended-topics ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 13px;
    color: #222222;
    font-size: 14px;
}

.main-footer .recommended-topics ul li a {
    color: #222222;
    font-size: 14px;
}

.main-footer .recommended-topics ul li:hover a {
    text-decoration: underline;
}

.main-footer .recommended-topics ul li i {
    font-size: 10px;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    color: #222222;
}

.main-footer .main-links {
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-size: 13px;
    color: #222222;
}

.main-footer .main-links p.section-title {
    font-weight: 800;
    margin-bottom: 13px;
    font-size: 14px;
}

.main-footer .main-links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.main-footer .main-links ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.main-footer .main-links ul li a {
    color: #222222;
    font-size: 14px;
}

.main-footer .main-links ul li:hover a {
    text-decoration: underline;
}

.main-footer .main-links ul li i {
    font-size: 10px;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    color: #222222;
}

.main-footer .main-links ul li.far-square i {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.main-footer .social-media {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.main-footer .social-icons a {
    width: 28px;
    height: 28px;
    border: 1px solid #9ca3af;
    border-radius: 50%;
    color: #222222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.main-footer .social-icons a:hover {
    background-color: #e5e7eb;
}

.main-footer .offer-text {
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 0.5rem;
}

.main-footer .search-form {
    max-width: 280px;
    display: flex;
}

.main-footer .search-form button:first-child {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer .search-form input[type="search"] {
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.5rem;
    font-size: 13px;
    flex-grow: 1;
    outline: none;
}

.main-footer .search-form button:last-child {
    background-color: #fff;
    border: 1px solid #d1d5db;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
}

.main-footer .bottom-bar {
    font-size: 10px;
    color: #9ca3af;
    padding-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.main-footer .bottom-bar .left-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.main-footer .bottom-bar .left-links img.viessmann-logo {
    width: 170px;
    height: 50px;
    object-fit: contain;
    margin-right: 0.5rem;
}

.footer-links-bottom {
    display: flex;
    width: max-content;
    align-items: center;
    margin: 0;
}

.footer-links-bottom li {
    margin-left: 32px;
}

.footer-links-bottom li a {
    color: #222222;
    font-size: 14px;
}

.main-footer .bottom-bar .left-links span {
    white-space: nowrap;
}

.main-footer .bottom-bar .right-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-footer .bottom-bar .right-info img.flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.main-footer .bottom-bar .right-info a {
    color: #222222;
    font-size: 14px;
}

.main-footer .bottom-bar .right-info a:hover,
.footer-links-bottom li a:hover {
    color: #cd1414;
    text-decoration: underline;
}

.main-footer .copyright {
    font-size: 14px;
    color: #000;
    text-align: center;
    padding-bottom: 1.5rem;
    font-weight: 600;
    font-family: system-ui;
}

/* Spacing */
.main-banner,
.services-container,
.product-list,
.home-solutions,
.faq {
    margin-bottom: 120px;
}

@media (max-width: 1100px) {
    .nav-links .custom-link {
        padding: 10px 8px;
    }
}

@media (max-width: 992px) {
    .menu-toggler {
        order: 2;
    }

    .search-btn {
        margin-left: auto;
    }

    .main-footer {
        padding: 15px;
    }

    .main-footer .bottom-bar {
        gap: 2rem !important;
    }

    .main-footer .bottom-bar,
    .main-footer .bottom-bar .left-links,
    .footer-links-bottom {
        align-items: flex-start;
        gap: 1rem;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-links-bottom li {
        margin: 0;
    }

    .main-footer .copyright {
        padding-bottom: .5rem;
    }

    .main-banner,
    .services-container,
    .product-list,
    .home-solutions,
    .faq {
        margin-bottom: 80px;
    }

    .about-section .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {

    .top-bar,
    .top-bar .container-lg {
        padding: 0;
    }

    .login-button {
        width: 100%;
        justify-content: center;
    }

    h2.title {
        font-size: 28px;
        line-height: 32px;
        font-weight: 700;
    }
}

@media (max-width: 575.98px) {
    .main-footer .bottom-bar .left-links span {
        display: none;
    }

    .product-list .swiper {
        padding: 0;
    }

    .about-section__title {
        font-size: 28px;
    }

    .services-container {
        padding: 48px 0;
    }

    .hero__content {
        position: relative;
        background: #000;
        width: 100%;
        padding: 1rem 2rem;
        top: 0;
        left: 0;
        max-width: 100%;
        transform: unset;
    }

    .hero__paragraph {
        width: 100%;
    }
}