h1,
h2,
h3,
h4,
h5,
figure,
p,
ol,
ul {
    margin: 0;
}

ol[role='list'],
ul[role='list'] {
    list-style: none;
    padding-inline: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-size: inherit;
    font-weight: inherit;
}

img {
    display: block;
    max-inline-size: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
@import url('../fonts/Bank\ Gothic\ Light\ Regular.otf');
@import url('../fonts/bank\ gothic\ medium\ bt.ttf');
@import url('../fonts/BankGothicMediumBT.ttf');
@import url('../fonts/BankGothic\ Md\ BT.ttf');
@import url('../fonts/BankGothic\ Bold.ttf');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'BankGothic', sans-serif;
}

:root {
    --main-gold: #ffc100;
    --space-mono: 'Space Mono', monospace;
    --main-title: 68px;
    --padding-block-size: 60px;
    --margin-top-size: 60px;
    --title: 38px;
    --subtitle: 28px;
}

body {
    overflow-x: hidden;
}

.title {
    font-size: var(--title);
    font-weight: 700;

    span {
        color: var(--main-gold);
    }
}

.subtitle {
    font-size: var(--subtitle);
}

.btn_style {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid var(--main-gold);
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-family: var(--space-mono);
    transition: 0.3s all;

    &:hover {
        background: var(--main-gold);

        i {
            color: #fff;
        }
    }

    &:active {
        scale: 0.95;
    }
}

.chevron {
    text-decoration: none;
    position: fixed;
    z-index: 100;
    bottom: 50px;
    right: 50px;
    height: 80px;
    width: 80px;
    background: var(--main-gold);
    border-radius: 100%;
    box-shadow: 0 0 15px 5px gray;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 25px;
    transition: 0.3s all;
}

.chevron__active {
    display: flex;
}

html {
    scroll-behavior: smooth;
}

.header {
    background: #fff;
    z-index: 50;
    position: sticky;
    top: 0;

    .header__items {
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .header__logo {
            display: block;
            width: 180px;

            img {
                width: 100%;
            }
        }

        .header__links {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 50px;

            li {
                a {
                    text-decoration: none;
                    text-transform: capitalize;
                    color: gray;
                    transition: 0.3s all;

                    &::after {
                        content: '';
                        display: block;
                        height: 2px;
                        width: 0%;
                        background: var(--main-gold);
                        transition: 0.3s all;
                    }

                    &:hover::after {
                        width: 100%;
                    }

                    &:hover {
                        color: #000;
                    }
                }
            }
        }

        .header__language {
            display: flex;
            align-items: center;
            gap: 10px;
            form {
                button {
                    img {
                        border-top: 1px solid gainsboro;
                        border-left: 1px solid gainsboro;
                        border-right: 1px solid gainsboro;
                    }
                }
            }
        }
        .lang_btn {
            border: none;
            /* box-shadow: 0 0 15px 5px gainsboro; */
        }
        .header__burger {
            display: none;
        }
    }
}

.promo {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;

    .promo__carousel {
        height: 100%;
        width: 100%;

        .promo__carousel-inner {
            height: 100%;
            width: 100%;

            .promo__carousel-item {
                height: 100%;
                width: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }

    .promo__content {
        position: absolute;
        z-index: 10;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);

        .promo__items {
            height: 100%;
            padding-block: var(--padding-block-size);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            align-items: start;
            .promo__title {
                font-size: var(--main-title);
                width: 60%;
                color: #fff;
                font-weight: 400;
                span {
                    color: var(--main-gold);
                    text-transform: uppercase;
                    font-weight: 700;
                }
            }
            .promo__call {
                color: #fff;
            }
        }
    }
}

.about {
    overflow: hidden;
    width: 100%;

    .about__items {
        height: 100%;
        padding-block: var(--padding-block-size);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        .about__text {
            display: flex;
            flex-direction: column;
            .about__title {
                margin-bottom: 15px;
            }
            p {
                display: block;
                margin: 10px 0;
                span {
                    font-weight: 600;
                }
            }
        }

        .about__img {
            height: 550px;
            width: 100%;
            object-fit: cover;
        }
    }
}

.category {
    width: 100%;

    .category__items {
        height: 100%;
        padding-block: var(--padding-block-size);

        .category__content {
            width: 100%;
            margin-top: var(--margin-top-size);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;

            .category__item {
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 15px;
                justify-content: space-between;
                padding: 20px;
                border: 1px solid var(--main-gold);
                border-radius: 20px;
                transition: 0.3s all;

                img {
                    height: 50px;
                    width: 50px;
                }

                .category__item-text {
                    text-decoration: none;
                    color: gray;
                    text-transform: capitalize;
                }

                &:hover {
                    scale: 1.1;

                    .category__item-text {
                        color: #000;
                    }
                }
            }
        }

        .category__cards {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            .category__card {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-decoration: none;
                width: 100%;
                box-shadow: 0 0 15px 3px gainsboro;
                span {
                    width: 100%;
                    display: block;
                }
                .category__card-img {
                    width: 100%;
                    max-height: 464px;
                    object-fit: cover;
                    object-position: 0 25%;
                }
                .category__card-text {
                    padding: 10px;
                    .category__card-title {
                        font-weight: 700;
                        font-size: 22px;
                        color: #000;
                        color: var(--main-gold);
                    }
                    .category__card-price {
                        font-weight: 600;
                        font-size: 14px;
                        color: #000;
                    }
                    .category__card-descr {
                        color: #000;
                        font-size: 14px;
                        text-decoration: none;
                    }
                }
            }
        }
    }
}

.blog {
    .blog__items {
        height: 100%;
        padding-block: var(--padding-block-size);

        .blog__content {
            margin-top: var(--margin-top-size);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
            gap: 50px;

            .blog__video {
                background: red;
                height: 350px;
                box-shadow: 0 0 15px 5px gainsboro;
                border-radius: 20px;
                iframe {
                    border-radius: 20px;
                    width: 100%;
                    height: 100%;
                }
            }

            .blog__text {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: start;
                gap: 30px;
            }
        }
    }
}

.service {
    .marquee-wrapper {
        overflow: hidden;
        white-space: nowrap;
        box-sizing: border-box;
        padding: 20px 0;
    }

    .marquee {
        display: inline-block;
        animation: scroll 30s linear infinite;
    }

    .slide {
        display: inline-block;
        width: 600px;
        height: 450px;
        margin: 0 15px;
        background: #eee;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        white-space: normal;
        position: relative;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide_text {
            padding: 10px;
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide_text {
        color: #fff;
    }

    .slide-title {
        padding: 5px;
        color: var(--main-gold);

        font-size: 16px;
        font-weight: bold;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners__marquee {
    border-top: 5px solid gainsboro;
    border-bottom: 5px solid gainsboro;
    height: 90px;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 40px;
    white-space: nowrap;
    position: relative;
    .marquee-wrapper {
        white-space: nowrap;
        box-sizing: border-box;
    }
    .marquee {
        height: 100%;
        display: flex;
        align-items: center;
        animation: scroll 30s linear infinite;
        .slide {
            display: inline-block;
            width: 100px;
            /* border: 1px solid red; */
            /* box-shadow: 0 0 15px 5px red; */
            margin: 0 15px;
            img {
                width: 100px;
                object-fit: cover;
            }
        }
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.stores {
    min-height: 100vh;
    border-top: 5px solid gainsboro;
    border-bottom: 5px solid gainsboro;
    .stores__items {
        min-height: 100vh;
        padding-block: var(--padding-block-size);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
        gap: 60px;
        .stores__map {
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            iframe {
                height: 100%;
                width: 100%;
            }
        }

        .stores__content {
            height: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
            gap: 20px;

            .stores__card {
                position: relative;

                .stores__card-img {
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }

                .stores__card-text {
                    min-height: 50%;
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    padding: 15px 10px;
                    background: rgba(0, 0, 0, 0.7);
                    color: #fff;

                    .stores__card-title {
                        font-size: 22px;
                        font-weight: 700;
                    }

                    .stores__card-call {
                        color: #fff;
                    }
                }
            }
        }
    }
}

.application {
    min-height: 100vh;
    .application__items {
        min-height: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        .application__img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .application__form {
            padding: 50px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            gap: 30px;
            input {
                width: 300px;
                height: 64px;
                border: 1px solid gray;
                outline: none;
                border-radius: 40px;
                &::placeholder {
                    font-size: 18px;
                }
            }
            .application__form-name {
                padding-left: 15px;
            }
            .application__form-number {
                padding-left: 15px;
            }
            .application__form-btn {
                height: 64px;
                width: 300px;
                background: var(--main-gold);
                color: #000;
                border: none;
                transition: 0.3s all;
                border-radius: 40px;
                font-weight: 600;
                &:hover {
                    transform: scale(1.05);
                }
            }
        }
    }
}

.footer {
    min-height: 300px;
    padding: 50px 0;
    background: var(--main-gold);
    .footer__items {
        .footer__content {
            display: flex;
            justify-content: space-between;
            .footer__logo {
                display: flex;
                align-items: center;
                gap: 10px;
                img {
                    width: 50px;
                }
                .footer__logo-text {
                    .footer__logo-title {
                        width: 157px;
                    }
                    .footer__logo-descr {
                        font-size: 14px;
                    }
                }
            }
            .footer__contact {
                display: flex;
                flex-direction: column;
                align-items: center;
                a {
                    font-size: 20px;
                    text-decoration: none;
                    color: #000;
                    font-weight: 400;
                }
                .footer__contact-number {
                    font-weight: 600;
                    font-size: 22px;
                }
            }
            .footer__btn {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 53px;
                width: 230px;
                padding: 0 30px;
                border-radius: 40px;
                border: 1px solid #000;
                background: none;
                text-decoration: none;
                color: #000;
            }
            .footer__social {
                display: flex;
                align-items: center;
                gap: 5px;
                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 40px;
                    width: 40px;
                    background: #000;
                    color: var(--main-gold);
                    text-decoration: none;
                    border-radius: 100%;
                    font-size: 22px;
                }
            }
        }
        .footer__title {
            height: 62px;
            margin-top: 100px;
        }
    }
}
