

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gunterz';
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

p, a, span, label {
    font-family: 'Open Sans';
}

body {
    background-color: #262626;
}

section {
    margin: 100px 0;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}


.p-1 {
    font-size: 16px;
}

.p-2 {
    font-size: 12px;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.container-fluid {
    padding: 0 15px;
}

/* primary button */

.primary-button {
    background-color: #F6AA3B;
    color: #130506;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-button:hover {
    background-color: #E29C35;
    color: #130506;
}

.bottom-section {
    margin-bottom: 0;
    padding-bottom: 200px;
    background: url('../../images/bottom-bg.svg') no-repeat right bottom;
    background-size: contain;
}

.navbar-mobile {
    display: none;
}

/* footer */

footer {
    background-color: #FFF6EA;
}

footer .container.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 80px 0;
}

footer .wrapper-links {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 40px;
}

footer .wrapper-links .links-container-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .logos-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

@keyframes menu-button-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

/* end footer */

@media (min-width: 1440px) {
    .bottom-section {
        background-size: 100%;
    }
}

@media (max-width: 1024px) {

    .container {
        padding: 0 50px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .bottom-section {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }


    .container {
        padding: 0 40px;
    }

    .navbar-mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .navbar-mobile .header-menu-button label {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .navbar-mobile .header-menu-button label .line {
        width: 40px;
        height: 3px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    #menu-button:checked + label .line1 {
        -webkit-transform: rotate(-45deg) translate(-10px, 5px);
        transform: rotate(-45deg) translate(-11px, 8px);
    }

    #menu-button:checked + label .line2 { opacity: 0; }

    #menu-button:checked + label .line3 {
        -webkit-transform: rotate(45deg) translate(-16px, 5px);
        transform: rotate(45deg) translate(-6px, -5px);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #262626;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.08);
    }

    #menu-button:checked + label + .mobile-menu {
        display: block;
    }

    .mobile-menu ul {
        padding: 20px 10px;
    }

    .navbar-desktop {
        display: none !important;
    }

    footer .logos-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    section {
        margin: 50px 0;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    .container-fluid {
        padding: 0 5px;
    }
}
