@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

:root {
    --main-2-color: #74C0CA;
    --main-color: #00A6BF;
    --light-black: #212121;
    --sec-color: #718E03;
    --main-font: "Antonio", sans-serif;
    --sec-font: "Inter", sans-serif;
}

p {
    font-family: var(--sec-font);
}

.text {
    color: var(--light-black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: justify;
}

.main-btn {
    font-weight: 500;
    color: #fff;
    background: linear-gradient(210deg, var(--sec-color) 0%, var(--main-color) 65%);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 30px 30px 30px 30px;
    font-size: 16px;
    padding: 15px 30px;
    text-decoration: none;
    cursor: pointer;
    transition: background .3s;

    &:hover {
        background: var(--light-black);
        color: var(--main-color);
    }
}

.title-heading {
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--sec-font);
    letter-spacing: 3px;
}

.heading {
    color: var(--light-black);
    font-size: 50px;
    font-family: var(--main-font);
    font-weight: 700;

    @media(max-width:991px) {
        font-size: 24px;
    }
}

.center {
    display: flex !important;
    justify-content: center;
    align-items: center;

    &.center-fdc {
        flex-direction: column;
    }
}

nav {
    height: 100px;
    padding: 0 !important;

    .container {
        height: 100%;

        .navbar-brand {
            img {
                width: 250px;
            }
        }

        .navbar-toggler {
            border-radius: 50%;
            height: 50px;
            width: 50px;
            justify-content: center;
            align-items: center;
            outline: none;
        }

        .navbar-collapse {
            height: 100%;

            ul {
                height: 100%;

                li {
                    height: 100%;

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        padding: 20px 30px !important;
                        position: relative;
                        height: 100%;
                        color: var(--main-color);
                        text-transform: uppercase;
                        font-weight: 600;
                        cursor: pointer !important;
                        z-index: 2;
                        transition: .4s;

                        &:before {
                            content: '';
                            position: absolute;
                            height: 100%;
                            background-color: var(--main-color);
                            width: 100%;
                            top: -100%;
                            transition: .4s;
                            z-index: -1;
                        }

                        &:hover {
                            color: #fff !important;

                            &:before {
                                top: 0;
                            }
                        }

                        &.active {
                            background-color: var(--main-color) !important;
                            color: #fff;
                        }
                    }
                }
            }
        }
    }


    @media(max-width:1200px) {
        padding: 20px 0 !important;
        height: auto;

        .navbar-toggler{
            display: flex;
        }
        .navbar-collapse {
            overflow: hidden;

            .main-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
    }

    @media(max-width:991px) {
        .navbar-collapse {
            padding-bottom: 30px;

            ul {
                padding: 20px 0;

                li {
                    a {
                        justify-content: start !important;

                        &:before {
                            top: 0%;
                            right: -100%;
                        }

                        &:hover {
                            &:before {
                                right: 0;
                            }
                        }
                    }
                }
            }

            .main-btn {

                // position: absolute;
                // left: 50%;
                // transform: translateX(-50%);
            }
        }
    }

}


.hero-banner {
    height: 400px;
    background: url('../img/customs/home/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    z-index: 1;
    position: relative;

    h2 {
        font-size: 40px;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        z-index: 3;
    }

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 2;
    }
}




.down-services {
    .boxes {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        flex-wrap: wrap;

        .box {
            border: 1px solid var(--main-color);
            border-radius: 10px;
            padding: 30px 20px;
            width: 300px;
            height: 350px;
            display: flex;
            align-items: center;
            flex-direction: column;

            i {
                font-size: 50px;
                color: var(--main-color);
            }

            h3 {
                margin: 25px 0;
                font-size: 24px;
            }

            .text {
                text-align: center;
            }

            a {
                color: var(--main-color);
                font-weight: 600;
                font-family: var(--sec-font);
                text-decoration: none;
                padding: 5px 50px;
                border-radius: 50px;
                border: 1px solid var(--main-color);
            }

            &:hover{
                transition: .3s;
                &:hover{
                    background: var(--main-color);
                    i,h3,p,a{
                        color: #fff !important;
                    }

                    a{
                        border-color: #fff;
                    }
                }
            }

        }
    }
    @media(max-width:991px){
        .boxes{
            justify-content: center;
        }
    }
}




footer {
    background-color: var(--light-black);
    padding: 50px;

    .col-lg-4 {
        .footer-logo {
            margin-bottom: 20px;

            img {
                width: 300px;
            }
        }

        .heading,
        .text {
            color: #fff;
            margin-bottom: 10px;
        }

        .text {
            padding-right: 100px;
        }

        .quick-links {
            .links {
                display: flex;
                flex-direction: column;

                a {
                    color: #fff;
                    text-transform: uppercase;
                    font-weight: 600;
                    text-decoration: none;
                    line-height: 40px;
                }
            }
        }

        .subscribe {
            form {
                width: 100%;
                display: flex;

                input {
                    padding: 10px 20px;
                    border: 1px solid var(--main-color);
                    background-color: transparent;
                    width: 100%;
                    color: #fff;

                    &:focus {
                        outline: none;
                    }
                }

                .main-btn {
                    position: relative;
                    left: -25px;
                    transition: 0s !important;
                }
            }
        }

        .social-icons {
            .icons {
                display: flex;
                margin-right: 10px;
                gap: 20px;

                a {
                    color: #fff;
                    font-size: 20px;
                    text-decoration: none;

                    i {
                        font-size: 20px;
                        color: #fff;
                        height: 50px;
                        width: 50px;
                        border-radius: 50%;
                        border: 1px solid #fff;
                        transition: .3s;

                        &:hover {
                            color: var(--main-color);
                            border: none;
                            background-color: #fff;
                        }
                    }
                }

            }
        }
    }

    @media(max-width:991px) {
        padding: 50px 20px;

        .container {
            flex-direction: column;

            .col-lg-4 {
                padding: 0 !important;
                padding-top: 20px !important;

                .text {
                    padding: 0;
                }

                .subscribe {
                    form {
                        flex-direction: column;

                        .main-btn {
                            left: 0;
                            margin-top: 20px;
                        }
                    }
                }

                .social-icons {
                    h2 {
                        text-align: center;
                    }

                    .icons {
                        justify-content: center;
                    }
                }

            }
        }
    }
}


.float{
    position: fixed;
    right: 20px;
    bottom: 75px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    a{
        i{
            color: green;
            font-size: 24px;
        }
    }
}

.bottom-footer{
    height: 50px;
    position: relative;
    background-color: #000;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    ul{
        height: 100%;
        width: 100%;
        padding: 0 20px;
        justify-content: space-between;
        display: flex;
        align-items: center;
        li{
            list-style: none;
            a{
                color: #fff;
                text-decoration: none;
                text-transform: uppercase;
                i{
                    padding-right: 10px;
                }
            }
        }
    }
    @media(max-width:600px){
        display: block;
    }
}