* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root {
    --primary-color: #318AC2;
    --secondary-color: #141414;
}

:visited {
    color: unset;
}

html {
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    color: #000;
    font-size: 10px;
    /* overflow-x: hidden; */
}

/* SCROLLBAR */

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #191919;
    border-radius: 6px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* SCROLLBAR */

.dark {
    background-color: #191919;
}

.white {
    background-color: #FFFFFF;
}

/* REMOVE INPUT NUMBER ARROWS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* REMOVE ICONE RECAPTCHA */
.grecaptcha-badge {
    display: none !important;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* REMOVE INPUT NUMBER ARROWS */

/* CAROUSEL */

.slick-dots li button:before{
    color: #888888;
    font-size: 10px;
}

.slick-dots li.slick-active button:before{
    color: var(--primary-color);
    opacity: 1;
}

.slick-prev{
    left: 10px;
}

.slick-next{
    right: 10px;
}

.slick-next:before{
    content: url('./../svg/arrow-right.svg');
}

.slick-prev::before{
    content: url('./../svg/arrow-left.svg');
}

/* CAROUSEL */


#cookie-notice {
    #cn-notice-text {
        color: #464545;
    }

    a {
        color: #AB7780;
    }

    #cn-notice-buttons {
        a {
            color: #fff;
        }
    }
}

[class*="overlay"] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

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

.whatsapp-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 15px;
    bottom: 17px;
    z-index: 10000;

    svg{
        height: 60px;
        width: 60px;
    }
}

.btn {
    border-radius: 7px;
    padding: 16px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.btn.whatsapp, .btn.phone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
}

.btn.whatsapp::after{
    content: url('./../svg/whatsapp-white.svg');
    margin: 0 0 0 9px;
}

.btn.phone::after{
    content: url('./../svg/phone.svg');
    margin: 0 0 0 9px;
}

hr{
    background-color: #000;
    height: 1px;
    border: none;
    max-width: 1440px;
}

.rounded{
    border-radius: 50%;
}

/* HEADER */
header {
    height: 100px;
    align-items: center;
    display: grid;
    margin-bottom: 20px;

    .container {
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            padding: 5px 25px;
            height: 65px;
            width: auto;
        }
    }

    .container :not(:first-child) {
        border-left: solid 2px #fff;
    }
}

/* HEADER */

/* FOOTER */

footer {
    .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        height: 80px;
        align-items: center;

        .copyright {
            text-align: center;
            grid-column-start: 2;

            p {
                font-size: 1.4rem;
                font-weight: normal;
            }
        }

        .social-media {
            display: flex;
            justify-content: flex-start;
            gap: 10px;

            a {
                height: 20px;
                width: 20px;
                display: flex;

                svg {
                    height: 20px;
                }
            }
        }
    }
}

/* FOOTER */

.container-carousel{
    padding-bottom: 50px;

    .carousel{
        margin: 80px 0 0 0;
        .item{
            display: flex;
            /* grid-template-columns: 1fr 1px 1fr; */
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            flex-wrap: wrap;

            .img{
                width: 45%;
                height: auto;
                /* justify-self: end; */
                /* margin-right: 38px; */
                /* background-position: center;
                background-repeat: no-repeat;
                background-size: cover; */
                border-radius: 10px;
            }

            iframe{
                border-radius: 16px;
                width: 45%;
                height: auto;
                min-height: 300px;
            }

            hr{
                height: 220px;
                width: 1px;
                margin: 30px;
            }

            .content{
                color: #ffffff;
                max-width: 460px;
                /* margin-left: 38px; */
                width: 45%;

                h2{
                    color: var(--primary-color);
                    font-size: 2.6rem;
                    font-weight: bold;
                }

                p{
                    margin: 25px 0 30px 0;
                    font-size: 1.8rem;
                    color: #000;
                }
            }
        }
    }
}

/* BANNER */

section.banner {

    .main-banner {
        height: 500px;
        width: 100%;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;

        .content {
            text-align: center;
            margin: auto;
            padding: 0 50px;

            h1 {
                font-size: 3.6rem;
                font-weight: bold;
                color: var(--primary-color);
            }

            p {
                font-size: 2.2rem;
                margin: 15px 0 22px 0;
                color: #000;
            }
        }
    }

    hr{
        margin: 95px auto;
    }
}

.inverted {
    flex-direction: row-reverse;
}

/* BANNER */

/* SERVICES */

section.services{
    margin: 100px auto;
    .container{
        .carousel{
            display: flex;
            justify-content: space-around;

            .card{
                display: grid;
                /* justify-items: center; */
                width: 380px;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
                grid-template-rows: auto 1fr auto;
                text-align: center;

                .img{
                    width: 100%;
                    height: 240px;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: cover;
                    text-align: center;
                    
                    h3{
                        font-size: 3.2rem;
                        font-weight: bold;
                        color: #ffffff;
                        background-color: rgba(0, 0, 0, 0.65);
                        width: 100%;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        padding: 0 20px;
                        justify-content: center;
                    }
                }

                ul{
                    margin: 45px auto 55px auto;
                    padding: 0 15px;
                    width: 100%;
                    text-align: left;

                    li{
                        padding: 24px 10px;
                        font-size: 1.2rem;
                        font-weight: bold;
                        display: flex;
                        align-items: center;
                    }

                    li.active::before{
                        content: url('./../svg/check.svg');
                        margin: 0 8px 0 0;
                        width: 18px;
                        height: 18px;
                    }

                    li.disabled::before{
                        content: url('./../svg/cross.svg');
                        margin: 0 8px 0 0;
                        width: 18px;
                        height: 18px;
                    }
                }

                ul :not(:last-child) {
                    border-bottom: solid 1px #000;
                }

                .btn{
                    margin: 0 auto 50px auto;
                }
            }
        }
    }
}

/* SERVICES */

/* INFOS */

section.infos{
    padding: 65px 0 65px 0;

    h1{
        font-weight: bold;
        color: #000;
        font-size: 3.2rem;
        text-align: center;
    }

    .grid{
        margin: 80px 0 0 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 10%;
        row-gap: 50px;

        .item{
            display: flex;
            column-gap: 30px;
            align-items: center;

            .icon{
                max-width: 70px;
                max-height: 70px;
                min-width: 70px;
            }

            .content{
                display: grid;
                height: 100%;
                grid-template-rows: auto 1fr;

                h2{
                    font-size: 2rem;
                    font-weight: bold;
                    color: var(--primary-color);
                }

                p{
                    font-size: 1.4rem;
                    color: #000;
                    margin: 6px 0 0 0;
                }
            }
        }
    }
}

/* INFOS */

/* CAROUSEL ADDITIONAL */

.carousel-additional{
    margin: 100px auto;

    h2{
        font-weight: bold;
        color: #000;
        font-size: 3.2rem;
        text-align: center;
    }
}

/* CAROUSEL ADDITIONAL */

/* TESTIMONIALS */

section.testimonials{
    padding: 100px 0 0 0;
    margin: 0 auto 120px auto;

    h1{
        font-weight: bold;
        color: #000;
        font-size: 3.2rem;
        text-align: center;
    }

    .carousel{
        margin: 60px auto 0 auto;

        .card{
            display: grid;
            max-width: 300px;
            margin: 0 40px;

            .text{
                font-size: 1.6rem;
                color: #000;
                text-align: left;
                margin: 0 0 18px 0;
            }

            .icon{
                width: 80px;
                height: 12px;
                margin: 0 0 5px 0;
            }

            .client{
                font-size: 1.4rem;
                font-weight: bold;
                color: #000;
            }
        }
        
        .slick-dots {
            bottom: -55px;
        }
    }

}

/* TESTIMONIALS */


/* CONTACT */

section.contact{
    .img{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        min-height: 400px;
        max-width: 1440px;
        margin: 0 auto;

        .container{
            padding: 50px 0;
            display: grid;
            grid-template-columns: 55% 1fr;
            height: 100%;

            .card{
                width: 100%;
                height: 100%;
                background-color: #ffffff;
                border-radius: 16px;
                padding: 55px 100px;
                z-index: 2;

                h1{
                    font-size: 3.2rem;
                    font-weight: bold;
                    color: var(--primary-color);
                    text-align: left;
                }

                p{
                    font-size: 1.6rem;
                    text-align: left;
                    margin: 10px 0 20px 0;
                }

                .buttons{
                    display: flex;
                    gap: 20px;

                    .btn{
                        width: 190px;
                    }
                }
            }
        }
    }

    /* .img::before{
        content: '';
        background-color: rgba(0, 0, 0, 0.4);
        width: 100%;
        max-width: 1440px;
        height: 400px;
        position: absolute;
    } */
}

/* CONTACT */


/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container{
        margin: 0 10px;
    }

    section.services {
        .container {
            .carousel {
                .card {
                    margin: 0 15px 30px 15px;
                }
            }
        }
    }

    section.contact {
        .img {
            .container {
                grid-template-columns: 75% 1fr;
            }
        }
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    section.banner {
        .main-banner {
            grid-template-columns: 2fr 1fr;
        }
    }

    section.contact {
        .img {
            .container {
                grid-template-columns: 1fr;
                justify-items: center;

                .card{
                    width: 85%;

                    .buttons{
                        justify-content: center;
                    }
                }
            }
        }
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 769px) {

    section.infos {
        .grid {
            display: block;
            .item{
                max-width: 80vw;
                margin: 0 10vw 30px 10vw;
            }
        }
    }
    
}

@media (max-width: 575.98px) {
    section.banner {
        .main-banner {
            grid-template-columns:1fr;

            .content{
                width: 100%;
                height: 100%;
                display: grid;
                align-content: center;
                background-color: rgba(0, 0, 0, 0.6);
                border-radius: 16px;

                h1{
                    font-size: 3rem;
                }

                p{
                    color: #ffffff;
                    font-size: 1.8rem;
                }
            }
        }

        hr{
            width: 90%;
        }
    }

    .container-carousel {
        .carousel {
            .item {
                /* grid-template-columns: 1fr;
                grid-template-rows: 1fr 80px 1fr; */
                justify-items: center;
                margin-bottom: 20px;

                .img{
                    justify-self: center;
                    margin-right: 0;
                    width: 90%;
                    /* height: 90vw; */
                }

                hr {
                    height: 1px;
                    width: 60%;
                }

                .content{
                    text-align: center;
                    margin-left: 0;
                    width: 90%;
                }

                iframe {
                    width: 90%;
                }
            }
        }
    }

    section.services {
        .container {
            .carousel {
                .card {
                    /* margin: 0; */
                    width: 90vw;

                    .img{
                        h3{
                            padding: 20px;
                        }
                    }
                }
            }
        }
    }

    section.infos {
        .grid {
            .item {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                justify-content: center;
                max-width: 78vw;
                gap: 25px;

                .icon{
                    max-width: 100px;
                    max-height: 100px;
                }
            }
        }
    }

    section.contact {
        .img {
            height: auto;
            .container {
                .card {
                    width: 100%;
                    padding: 10% 10%;

                    h1{
                        text-align: center;
                    }

                    p{
                        margin: 10px 0 30px 0;
                    }

                    .buttons{
                        flex-wrap: wrap;
                    }
                }
            }
        }
    }

    footer {
        .container {
            display: flex;
            height: 80px;
            text-align: center;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-evenly;
        }
    }
}