/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: "Unbounded", sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --orange: #F36C30;
    --blue: #040fd9;
    --dark: #232225;
    --cream: #E6E3DC;
}

body {
    background: var(--cream);
}

body.noscroll {
    overflow: hidden;
}

::-webkit-scrollbar {
    display: none;
}

img,
svg {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .5s;
}

button {
    cursor: pointer;
    transition: .25s;
}

h1,
h2,
h3 {
    color: var(--dark);
    font-size: 3.5vw;
    font-weight: 500;
    text-wrap: balance;
}

.dark_section h1,
.dark_section h2,
.dark_section h3 {
    color: white;
}

h1 span,
h2 span,
h3 span {
    color: var(--orange);
}

ul {
    color: var(--dark);
    list-style-position: inside;
}

p,
li {
    color: var(--dark);
    font-size: 1.1vw;
    font-weight: 300;
    text-wrap: balance;
}

li::marker {
    color: var(--orange);
}

.dark_section p,
.dark_section li {
    color: white;
}

.dark_section ul {
    color: white;
}

::-moz-selection {
    background: #F36C3090;
}

::selection {
    background: #F36C3090;
}

.cursor_follower {
    position: fixed;
    top: 0;
    left: 0;
    width: .7vw;
    height: .7vw;
    background: #F36C3050;
    border-radius: 5vw;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: .5s;
}

.cursor_follower.hovering {
    width: 3.5vw;
    height: 3.5vw;
}

.info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.dark_section {
    padding: 5vw;
    border-radius: 2vw;
    background: var(--dark);
}

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main_btn {
    width: fit-content;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5vw;
    padding: .5vw 2vw;
    border: none;
    border-radius: 5vw;
    background: var(--dark);
    overflow: hidden;
}

.main_btn.light_btn {
    background: var(--orange);
}

.main_btn:hover {
    transform: scale(.98);
}

.main_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 30%);
    width: 50%;
    height: 5vw;
    border-radius: 50%;
    background: var(--orange);
    transition: .5s;
}

.main_btn.light_btn::before {
    background: white;
}

.main_btn:hover::before {
    transform: translate(-50%, -50%);
    width: 101%;
    height: 10vw;
}

.main_btn span {
    position: relative;
    color: white;
    font-size: 1.1vw;
    transition: .5s;
    z-index: 1;
}

.main_btn i {
    position: relative;
    color: white;
    font-size: 1.5vw;
    transition: .5s;
    z-index: 1;
}

.main_btn:hover i {
    transform: rotate(45deg);
}

.main_btn.light_btn:hover span,
.main_btn.light_btn:hover i {
    color: var(--dark);
}

.main_btn.icon_only {
    width: 3vw;
    height: 3vw;
    padding: 0;
}

.main_btn.icon_only span {
    display: none;
}

.main_btn.icon_only::before {
    width: 2vw;
    height: 2vw;
    transform: translate(-50%, 90%);
}

.main_btn.icon_only:hover::before {
    width: 3.5vw;
    height: 3.5vw;
    transform: translate(-50%, -50%);
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 7vw;
    }
    p,
    li {
        font-size: 3.5vw;
    }
    .cursor_follower {
        display: none;
    }
    .info_box {
        gap: 5vw;
    }
    .dark_section {
        padding: 10vw 5vw;
        border-radius: 6vw;
    }
    .main_btn {
        gap: 1.5vw;
        padding: 1.5vw 6vw;
        border-radius: 5vw;
    }
    .main_btn::before,
    .main_btn.icon_only::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 30%);
        width: 50%;
        height: 15vw;
    }
    .main_btn:hover::before,
    .main_btn.icon_only:hover::before {
        width: 100%;
        height: 30vw;
    }
    .main_btn span {
        font-size: 3.5vw;
    }
    .main_btn i {
        font-size: 5vw;
    }
    .main_btn.icon_only {
        width: fit-content;
        height: inherit;
        padding: 1.5vw 6vw;
    }
    .main_btn.icon_only span {
        display: block;
    }
}


/* ---HEADER STYLES--- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: .5s;
    opacity: 1;
}

header.hide {
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
}

header.scrolled {
    background: #E6E3DCa0;
    backdrop-filter: blur(1vw);
}

header .desk_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 5vw;
}

header .desk_box .logo_box {
    width: 10vw;
}

header .desk_box .nav_box {
    position: relative;
    display: flex;
    background: #D8D5CD;
    border-radius: 50vw;
}

header .desk_box .nav_box a,
header .desk_box .nav_box span {
    font-size: 1.1vw;
    transition: .5s;
}

header .desk_box .nav_box>a,
header .desk_box .dropdown_box {
    position: relative;
    width: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5vw 0;
    cursor: pointer;
    z-index: 1;
}

header .desk_box .nav_box>a {
    color: var(--dark);
}

header .desk_box .nav_box .item_hover,
header .desk_box .nav_box .item_hover span {
    color: var(--dark) !important;
}

header .desk_box .nav_box>a:hover,
header .desk_box .nav_box>a.active,
header .desk_box .dropdown_box:hover span,
header .desk_box .dropdown_box.active span {
    color: white;
}

header .desk_box .dropdown_items {
    position: absolute;
    bottom: 0;
    left: 0;
    width: fit-content;
    max-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 1vw;
    border-radius: 0 1vw 1vw 1vw;
    transform: translateY(100%);
    background: #D8D5CD;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

header .desk_box .dropdown_box:hover .dropdown_items {
    max-height: 100vw;
    pointer-events: inherit;
    opacity: 1;
}

header .desk_box .dropdown_items a {
    color: var(--dark);
    white-space: nowrap;
}

header .desk_box .dropdown_items a.active,
header .desk_box .dropdown_items a:hover {
    color: var(--orange);
}

header .desk_box .active_box {
    position: absolute;
    width: 10vw;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 50vw;
    background: var(--orange);
    transition: .5s;
}

header .desk_box *:nth-child(1):hover~.active_box {
    left: 0 !important;
}

header .desk_box *:nth-child(2):hover~.active_box {
    left: 10vw !important;
}

header .desk_box *:nth-child(3):hover~.active_box {
    left: 20vw !important;
}

header .desk_box *:nth-child(4):hover~.active_box {
    left: 30vw !important;
}

header .desk_box *:nth-child(5):hover~.active_box {
    left: 40vw !important;
}

header .mobile_box {
    display: none;
}

@media (max-width: 996px) {
    header .desk_box {
        display: none;
        padding: 5vw 5vw;
    }
    header .mobile_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5vw;
    }
    header .mobile_box .logo_box {
        position: relative;
        width: 30vw;
        z-index: 1;
    }
    header .mobile_box .toggle_box {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1vw;
        z-index: 1;
    }
    header .mobile_box .bar_item {
        width: 10vw;
        height: .3vw;
        background: var(--dark);
        transition: .5s;
    }
    header .mobile_box .bar_item:last-child {
        width: 6vw;
    }
    header .mobile_box.active .bar_item:nth-child(1) {
        opacity: 0;
        transform: translateY(1vw);
    }
    header .mobile_box.active .bar_item:nth-child(3) {
        opacity: 0;
        transform: translateY(-1vw);
    }
    header .mobile_box .sidebar_box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 5vw;
        padding: 30vw 5vw 10vw 5vw;
        background: #E6E3DC;
        opacity: 0;
        pointer-events: none;
        transition: .5s;
    }
    header .mobile_box.active .sidebar_box {
        opacity: 1;
        pointer-events: inherit;
    }
    header .mobile_box .nav_box {
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }
    header .mobile_box .nav_box span,
    header .mobile_box .nav_box a {
        width: fit-content;
        color: var(--dark);
        font-size: 4.5vw;
    }
    header .mobile_box .dropdown_box {
        display: flex;
        flex-direction: column;
    }
    header .mobile_box .dropdown_items {
        max-height: 0;
        display: flex;
        flex-direction: column;
        gap: 3vw;
        padding: 0 0 0 4vw;
        opacity: 0;
        transition: .5s;
        pointer-events: none;
    }
    header .mobile_box .dropdown_box.active .dropdown_items,
    header .mobile_box .dropdown_box:hover .dropdown_items {
        max-height: 100vh;
        padding: 3vw 0 0 4vw;
        opacity: 1;
        pointer-events: inherit;
    }
    header .mobile_box .dropdown_items a {
        position: relative;
    }
    header .mobile_box .dropdown_items a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -3vw;
        transform: translate(0, -50%);
        width: 1.5vw;
        height: 1.5vw;
        border-radius: 10vw;
        background: var(--orange);
    }
    header .mobile_box .networks_box {
        display: flex;
        gap: 10vw;
        padding: 10vw 0 0 0;
        border-top: .25vw solid var(--dark);
    }
    header .mobile_box .networks_box i {
        color: var(--dark);
        font-size: 3.5vw;
    }
}


/* ---FOOTER STYLES--- */

footer {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    padding: 5vw 5vw 0 5vw;
    border-radius: 2vw 2vw 0 0;
    background: var(--dark);
}

footer .info_box h2,
footer .info_box p {
    color: white;
}

footer .footer_box {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    padding: 2vw;
    border-radius: 1vw 1vw 0 0;
    background: var(--cream);
}

footer .footer_content {
    display: grid;
    grid-template-columns: 40% 28% 19% 13%;
}

footer .footer_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

footer .footer_item:nth-child(1) {
    gap: 2vw;
}

footer .logo_box {
    width: 12vw;
}

footer .contact_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

footer .contact_box a {
    color: var(--dark);
    font-size: 1.1vw;
    font-weight: 300;
}

footer .contact_box a:hover {
    color: var(--orange);
}

footer .networks_box {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

footer .networks_box a {
    color: var(--dark);
    font-size: 1.25vw;
}

footer .networks_box a:hover {
    color: var(--orange);
}

footer .footer_item h2 {
    font-size: 1.1vw;
}

footer .footer_item>a {
    color: var(--dark);
    font-size: 1.1vw;
    font-weight: 300;
}

footer .footer_item>a:hover {
    color: var(--orange);
}

footer hr {
    width: 100%;
    height: .15vw;
    border: none;
    background: #00000020;
}

footer .bar_box {
    display: flex;
    align-items: center;
}

footer .bar_box a {
    color: var(--dark);
    font-size: .9vw;
    font-weight: 300;
}

footer .bar_box a:hover {
    color: var(--orange);
}

@media (max-width: 996px) {
    footer {
        gap: 10vw;
        padding: 10vw 5vw 0 5vw;
        border-radius: 6vw 6vw 0 0;
    }
    footer .info_box h2 {
        font-size: 6vw;
        text-align: center;
    }
    footer .info_box p {
        text-align: center;
    }
    footer .footer_box {
        gap: 5vw;
        padding: 10vw 5vw 5vw 5vw;
        border-radius: 3vw 3vw 0 0;
    }
    footer .footer_content {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    footer .footer_item {
        align-items: center;
        justify-content: center;
        gap: 5vw;
        text-align: center;
    }
    footer .footer_item:nth-child(1) {
        gap: 5vw;
    }
    footer .logo_box {
        width: 40vw;
    }
    footer .contact_box {
        align-items: center;
        gap: 5vw;
    }
    footer .contact_box a {
        font-size: 3.5vw;
        text-align: center;
    }
    footer .networks_box {
        gap: 5vw;
    }
    footer .networks_box a {
        font-size: 5vw;
    }
    footer .footer_item h2 {
        font-size: 5vw;
        text-align: center;
    }
    footer .footer_item>a {
        font-size: 3.5vw;
        text-align: center;
    }
    footer hr {
        height: .4vw;
    }
    footer .bar_box {
        justify-content: center;
    }
    footer .bar_box a {
        font-size: 3vw;
        text-align: center;
    }
}


/* ---CONTACT STYLES--- */

.contact_section {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 5vw;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.contact_section.active {
    opacity: 1;
    pointer-events: inherit;
}

.contact_section .contact_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    width: 55%;
    height: fit-content;
    border-radius: 2vw;
    padding: 2vw;
    background: var(--dark);
    z-index: 1;
}

.contact_section .contact_box h2 {
    color: white;
}

.contact_section .form_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.contact_section .form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
}

.contact_section .one_column {
    grid-template-columns: 1fr;
}

.contact_section .input_item {
    display: flex;
    flex-direction: column;
}

.contact_section label {
    color: white;
    font-size: 1.1vw;
    font-weight: 300;
    opacity: .25;
}

.contact_section input {
    color: white;
    font-size: 1.1vw;
    font-weight: 300;
    padding: .5vw 0;
    border: none;
    border-bottom: .15vw solid #ffffff20;
    background: none;
    transition: .5s;
}

.contact_section textarea {
    min-height: 5vw;
    resize: none;
    color: white;
    font-size: 1.1vw;
    font-weight: 300;
    padding: .5vw 0;
    border: none;
    border-bottom: .15vw solid #ffffff20;
    background: none;
    transition: .5s;
}

.contact_section input:focus-visible,
.contact_section input:hover,
.contact_section textarea:focus-visible,
.contact_section textarea:hover {
    outline: none;
    border-bottom: .15vw solid #F36C3090;
    background: none;
}

.contact_section .button_box {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.contact_section .button_box button.sending {
    opacity: 0.6;
    pointer-events: none;
}

.contact_section .message_box p {
    font-size: 1vw;
}

.contact_section .success {
    color: #0bb300;
}

.contact_section .error {
    color: #f31212;
}

.contact_section .main_btn:hover i {
    transform: rotate(0);
}

.contact_section .brackdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000aa;
    backdrop-filter: blur(1vw);
    pointer-events: none;
    opacity: 0;
    transition: .5s;
}

.contact_section.active .brackdrop {
    pointer-events: inherit;
    opacity: 1;
    cursor: pointer;
}

.contact_section .contact_box>i {
    position: absolute;
    top: 2vw;
    right: 2vw;
    color: white;
    font-size: 1.5vw;
    cursor: pointer;
    transition: .5s;
}

.contact_section .contact_box>i:hover {
    color: var(--orange);
}

@media (max-width: 996px) {
    .contact_section .contact_box {
        gap: 10vw;
        width: 100%;
        height: fit-content;
        border-radius: 3vw;
        padding: 5vw;
    }
    .contact_section .form_box {
        gap: 5vw;
    }
    .contact_section .form_row,
    .contact_section .one_column {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .contact_section label {
        font-size: 3.5vw;
    }
    .contact_section input {
        font-size: 3.5vw;
        padding: 2vw 0;
        border-bottom: .4vw solid #ffffff20;
    }
    .contact_section textarea {
        min-height: 20vw;
        font-size: 3.5vw;
        padding: 2vw 0;
        border-bottom: .4vw solid #ffffff20;
    }
    .contact_section input:focus-visible,
    .contact_section input:hover,
    .contact_section textarea:focus-visible,
    .contact_section textarea:hover {
        border-bottom: .4vw solid #F36C3090;
    }
    .contact_section .button_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 5vw;
    }
    .contact_section .message_box p {
        font-size: 3.5vw;
    }
    .contact_section .contact_box>i {
        top: 5vw;
        right: 5vw;
        font-size: 5vw;
    }
}


/* ---BRANDS STYLES--- */

.brands_section {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    padding: 5vw 0;
}

.brands_section .info_box {
    align-items: center;
}

.brands_section h2 {
    width: 20vw;
    font-size: 1.7vw;
    text-align: center;
}

.brands_section p {
    width: 50%;
    text-align: center;
}

.brands_section .swiper-wrapper {
    transition-timing-function: linear;
}

.brands_section img {
    object-fit: contain;
    height: 6vw;
    padding: 0 2vw;
    pointer-events: none;
}

@media (max-width: 996px) {
    .brands_section {
        gap: 5vw;
        padding: 10vw 0;
    }
    .brands_section h2 {
        width: 50vw;
        font-size: 5vw;
    }
    .brands_section p {
        width: 90%;
    }
    .brands_section img {
        height: 20vw;
    }
}