@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: #0D0D0D;
    --super-light-blue-color: #D8E8F2;
    --light-blue-color: #A0D3F2;
    --blue-color: #4E74A6;
    --dark-blue-color: #1D3973;
    --light-grey-color: #F7F7F7;
    --white-color: #ffffff;
    --box-shadow: 0 8px 24px rgba(44,43,55,.1);
}

html {
    font-size: 18px;
}

body {
    background-color: var(--white-color);
    color: var(--main-color);
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.main-page {
    max-width: 2560px;
    margin: 0 auto;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
}

.justify {
    text-align: justify;

    @media screen and (max-width: 800px) {
        text-align: left;
    }
}

.container {
    width: 96%;
    max-width: 1280px;
    position: relative;
}

.content {
    h3 {
        font-size: 1.6rem;
        font-weight: 700;
    }
}

.section-title {
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    font-weight: 600;

    @media screen and (max-width: 800px) {
        font-size: 1.6rem;
    }
}


.section-start {
    background-color: var(--dark-blue-color);

    .bg-container {
        top: -120px;
    }

    .grey-bg-circle {
        display: block;
        width: 3000px;
        height: 3000px;
        background-color: var(--light-grey-color);
        border-radius: 50%;
        position: absolute;
        z-index: 0;
        top: -1280px;
        right: 230px;
    }

    @media screen and (max-width: 600px) {
        background-color: var(--light-grey-color);
    }
}


.header-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;

    .header-flex__logo {
        max-width: 100%;
    }

    .header-flex__phone {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        white-space: nowrap;

        a {
            color: var(--main-color);
            font-size: 1.6rem;
            font-weight: 900;
        }

        span {
            font-size: 0.8rem;
        }
    }

    @media screen and (max-width: 600px) {
        flex-direction: column;
    }
}

.title-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 0;
    height: 360px;
    margin-top: 170px;
    margin-bottom: 20px;
    background-color: var(--blue-color);
    color: var(--super-light-blue-color);

    .title-flex-container__title {
        margin: 0;
        padding: 0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: calc( (100vw - 480px)/(1280 - 480) * (24 - 16) + 16px);
    }

    .title-flex-container__decription {
        padding: 0;
        margin: 0;
        font-size: 0.9rem;
    }

    .title-flex-container__tags {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        font-size: 0.9rem;

        .tag {
            padding: 10px;
            border: 1px solid var(--super-light-blue-color);
            border-radius: 5px;
        }
    }

    &::before {
        content: '';
        display: block;
        height: 360px;
        width: 1920px;
        background-color: var(--blue-color);
        position: absolute;
        top: 0;
        left: -1920px;
        z-index: 0;
    }
    &::after {
        content: '';
        display: block;
        height: 360px;
        width: 300px;
        background-color: var(--blue-color);
        position: absolute;
        top: 0;
        right: -300px;
        z-index: 0;
        border-radius:  0 50% 50% 0;
    }

    @media screen and (max-width: 992px) {
        height: 300px;
        margin-top: 140px;

        &::before {
            height: 300px;
        }
        &::after {
            height: 300px;
        }

        .title-flex-container__tags {
            gap: 0.6rem;
            .tag {
                padding: 5px;
            }
        }
    }
}

.section-start-image-container {
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;

    .section-start-image-container__image {
        max-width: 100%;
        height: auto;
    }

    @media screen and (max-width: 992px) {
        height: 580px;
    }
}

.button {
    display: inline-flex;
    background-color: var(--dark-blue-color);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    padding: 20px 40px;
    color: var(--white-color);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all .2s ease;

    &.button-white {
        background-color: var(--super-light-blue-color);
        color: var(--main-color);
    }
    
    &.button-with-title {
        position: relative;
        &::after {
            content: '';
            display: block;
            width: 250px;
            height: 65px;
            background-image: url(/assets/img/info-title.svg);
            background-repeat: no-repeat;
            position: absolute;
            left: 30%;
            bottom: -70px;
        }
    }

    &:before {
        content:'';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: rgba(255,255,255,0.3);
        border-radius: 5px;
        transition: all 2s ease;
    }

    &:hover:before {
        width: 100%;
    }
}

.section-info {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
    padding: 60px 0;
    

    .section-info__title {
        font-size: 1.2rem;
        font-weight: 700;
    }

    p {
        text-align: justify;
    }

    .slider {
        border-radius: 10px;
        margin-top: 40px;
        .slides {
            border-radius: 10px;
            overflow: hidden;
            background-color: transparent;

            img {
                border-radius: 10px;
            }
        }
        .indicators {
            bottom: -40px;

            .indicator-item {
                margin: 0 5px;
                &.active {
                    background-color: var(--blue-color);
                }
            }
        }
    }

    @media screen and (max-width: 992px) {
        padding: 30px 0;

        p {
            text-align: left;
        }
    }
}

.section-product {
    background-color: var(--light-grey-color);
    padding: 60px 0;

    @media screen and (max-width: 992px) {
        padding: 30px 0;
        
    }
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 1%),-2px 4px 5px rgba(0, 0, 0, 1%);
    transition: all .2s ease;
    margin-bottom: 20px;

    a {
        color: var(--main-color);
    }

    .product-card__card-image-outer {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 10px;

        .product-card__card-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: 0.3s;
        }
    }
    .product-card__content {
        padding: 20px;
        background-color: var(--light-blue-color);
        .product-card__title {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
        }

        .product-card__description {
            margin-top: 0;
            margin-bottom: 10px;
        }

        .product-card__link {
            color: var(--white-color);
        }
    }

    &:hover {
        transform: translateY(-3px);
        box-shadow: 2px 9px 50px rgba(0, 0, 0, 6%),-2px 9px 60px rgba(0, 0, 0, 6%);

        .product-card__card-image {
            transform: scale(1.1);
            z-index: 5;
        }
    }   
}

.header-page {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    a {
        color: var(--dark-blue-color);
        height: 80px;
        display: flex;
        align-items: center;
    }

    .logo {
        height: 4rem;
    }

    .icon-closed-page {
        font-size: 2rem;

        &:hover {
            color: var(--blue-color);
        }
    }
}

.page-title {
    font-size: 3rem;
    color: var(--main-color);
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
}

.form-card-panel {
    background-color: var(--light-grey-color);
    padding: 40px;
    border-radius: 20px;

    input {
        display: block;
        width: 100%;
        border: none;
        padding: 20px 40px;
        border-radius: 10px;
        background-color: var(--white-color);
    }

    select {
        display: block;
        width: 100%;
        height: 66px;
        border: none;
        padding: 20px 40px;
        border-radius: 10px;
        background-color: var(--white-color);
    }

    textarea {
        display: block;
        width: 100%;
        height: 166px;
        border: none;
        padding: 20px 40px;
        border-radius: 10px;
        background-color: var(--white-color);
    }
}

.owl-carousel .owl-item img {
    border-radius: 10px;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    bottom: 55%;
    width: 100%;

    button {
        position: absolute;
        border-radius: 50%;

        &.owl-prev {
            left: 20px;
            border-radius: 50%;
        }

        &.owl-next {
            right: 20px;
            border-radius: 50%;
        }

        .fa {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            height: 40px;
            width: 40px;
            background-color: var(--light-blue-color);
            opacity: .6;
            transition: .5s;

            &:hover {
               opacity: 1;
            }
        }
    }
}

#up-arrow {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    width: 60px;
    height: 60px;
    background: var(--dark-blue-color);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
    display: none;
}

.section-about {
    background-color: var(--blue-color);
    padding: 60px 0;
    color: var(--white-color);
    position: relative;
    overflow: hidden;

    .section-about__image-container {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
        z-index: 2;
        
        .section-about__image {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            position: relative;
            z-index: 3;
            background-image: url(/assets/img/license-preview.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            &::after {
                content: '';
                display: block;
                width: 100px;
                height: 100px;
                position: absolute;
                left: 50%;
                top: 50%;
                z-index: 4;
                margin-top: -50px;
                margin-left: -50px;
                background-image: url(/assets/img/search.svg);
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
                opacity: 0;
                box-shadow: 2px 4px 5px rgba(0, 0, 0, 1%),-2px 4px 5px rgba(0, 0, 0, 1%);
                transition: all .2s ease;
            }
    
            &:hover {
                cursor: pointer;
                transform: translateY(-3px);
                box-shadow: 2px 9px 50px rgba(0, 0, 0, 6%),-2px 9px 60px rgba(0, 0, 0, 6%);

                &::after {
                    opacity: 1;
                }
            }
        }

        .section-about__bg-circle {
            height: 1920px;
            width: 1920px;
            border-radius: 50%;
            background-color: var(--dark-blue-color);
            position: absolute;
            top: -760px;
            right: 80px;
            z-index: 1;
        }

        
    }

    .section-about__title {
        font-size: 2rem;
        text-transform: uppercase;
        margin-bottom: 40px;
    }

     strong {
        font-size: 1.4rem;
     }
    
    ul > li {
        padding-left: 40px;
        position: relative;
        margin-bottom: 20px;
        &::before {
            content: '';
            display: block;
            width: 20px;
            height: 20px;
            background-image: url(/assets/img/check.svg);
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            left: 0;
            top: 5px;
        }
    }

    @media screen and (max-width: 992px) {
        .section-about__bg-circle {
            display: none;
        }

        .section-about__title {
            font-size: 1.4rem;
        }
    }

}

.section-contact {
    .section-description {
        color: var(--blue-color);
        text-align: center;
    }

    .contact-card-panel {
        margin-top: 20px;
        background-color: var(--dark-blue-color);
        color: var(--white-color);
        padding: 40px;
        border-radius: 10px;

        .contact-card-panel__title {
            font-size: 1.6rem;
            margin-top: 0;
        }

        .contact-card-panel__list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 10px;

            .contact-card-panel__icon {
                opacity: .5;
            }
        }
    }

    .contact-card-panel__bottom {
        text-align: center;
        margin-top: 80px;
    }

    @media screen and (max-width: 992px) {
        padding: 30px 0;

        .contact-card-panel {
            padding: 20px;

            .contact-card-panel__title {
                font-size: 1.2rem;
                font-weight: 700;
            }
        }
    }
}

footer {
    background-color: var(--light-grey-color);
    padding: 20px 0;

    .copy-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;

        .madein {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            
            .madein__text {
                margin-right: 10px;
            }
            
            .madein__link {
                .madein__logo svg {
                    height: 30px;

                    .st0 {
                        fill:var(--dark-blue-color);
                    }

                    .st1 {
                        fill:var(--main-color);
                    }

                    .st2 {
                        fill:var(--blue-color);
                    }
                    
                    .st3 {
                        transition: .5s;
                        fill:var(--light-blue-color);
                    }
                }
                
                &:hover {
                    .madein__logo svg {
                        .st3 {
                            fill:var(--blue-color);
                        }
                    }
                }
            }
        }
    }  

    @media screen and (max-width: 600px) {
        .copy-footer {
            flex-direction: column;
            gap: 20px;
        }
    }
    
}




