@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
a{
    cursor: pointer !important;
}
body{
    scroll-behavior: smooth !important;
}

::selection{
    color: var(--primary-color);
    background-color: var(--sec-color);
}
:root {
    --primary-color: #8CBF3F;
    --bg-color: #F5F9FF;
    --sec-color: #1F4386;
}

.sm-head {
    color: var(--sec-color);
    font-size: 24px !important;
    font-weight: 600 !important;
}

.main-btn {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
}

.main-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 43px;

    span {
        color: var(--primary-color);
    }

    @media(max-width:991px) {
        font-size: 32px;
    }
}

.no-scroll {
    overflow: hidden;
  }

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

// #mouse_move{
//     height: 50px;
//     width: 50px;
//     border-radius: 50%;
//     box-shadow: 0 0 100px #000;
//     pointer-events: none;
//     z-index: 1000;
//     transform: translate(-50%, -50%);
//     position: fixed;
//     transition: .1s ease-out;
//     mix-blend-mode: difference;
//     background-color: #fff;
// }

#mouse_move{
    display: none;
}
#download-btn{
    background-color: var(--primary-color);
    padding: 10px;
    position: fixed;
    top: 50%;
    z-index: 9;
    right: -100px;
    border: 3px solid var(--sec-color);
    transform: translateY(-50px) rotate(-90deg);
    border-radius: 10px 10px 0 0;
    transition: .3s;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;

    &:hover{
        right: -95px;
    }
}

.top-header{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    marquee{
        padding: 10px;
        p{
            display: inline;
            color: #fff;
            padding-bottom: 0;
            margin-bottom: 0;
            padding-left: 50px;
            &:nth-child(1){
                padding-left: 0;
            }
        }
        a,b{
            color: #fff;
            text-decoration: none;
            font-weight: 700;
        }
    }
}
nav {
       top: 0;
    .navbar-nav{
        margin-top: 0 !important;
    }
    li {
        padding: 0 15px;

        a {
            font-size: 18px;
            font-weight: 400;
        }
    }
    .sec-logo{
        a{
            display: flex;
            flex-direction: column !important;
            align-items: center;
            img:nth-child(1){
                border-bottom: 1px solid #6B6A69;
            }
        }
        
    }
    @media(max-width:1200px){
        .navbar-brand{
            img{
                width: 150px !important;
            }
        }
        li {
            padding: 0 10px;
    
            a {
                font-size: 14px;
            }
        }
        .sec-logo{
            max-width: 75px;
            img{
                width: 100%;
            }
        }
    }
}

.head-divider{
    position: relative;
    height: 100px;
}



.top-banner{
    height: 554px;
    width: 100%;
    position: relative;
    z-index: 1;
    background: url('../img/banner.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    .overlay{
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.25);
        z-index: 2;
    }
    h2{
        position: relative;
        z-index: 3;
        text-transform: uppercase;
        color: #fff;
        font-size: 54px;
        letter-spacing: 2px;
        font-weight: 700;
        text-align: center;
    }
    p{
        color: #fff;
        z-index: 3;
        font-size: 16px;

        i{
            font-size: 14px;
        }
        a{
            color: #fff;
            text-decoration: none;
            &:hover{
                color: var(--primary-color);
            }
        }
    }

    @media(max-width:991px){
        height: 110px;
        h2{
            font-size: 36px;
        }
    }
}





#get_in_touch {
    padding: 50px 0;
    background: url('../img/get_in_touch.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #000000BF;
        z-index: 2;
    }

    .container {
        position: relative;
        z-index: 3;
        display: flex;
        gap: 50px;

        h2 {
            span{
                font-size: 20px;
            }
            color: #fff;
            font-size: 40px;
            font-weight: 600;
        }

        .cnt-detail{
            margin-top: 20px;

            ul{
                padding: 0;
                li{

                    .sep{
                        width: 2px;
                        height: 20px;
                        background: #8CBF3F;
                    }
                    display: flex;
                    gap:10px;
                    align-items: center;
                    color: #FFF;
                    margin-bottom: 10px;
                    list-style: none;
                    font-size: 16px;
                    span{
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        padding: 10px;
                        background: var(--primary-color);
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        i{
                            font-size: 22px;
                        }
                    }
                }
            }
        }

        form {
            h2 {
                font-size: 24px;
                font-weight: 600;
                line-height: 46.88px;
            }

            .inputs {
                display: flex;
                gap: 20px;
                padding-bottom: 20px;

                input,
                textarea {
                    width: 100%;
                    border: none;
                    outline: none;
                    padding: 12px 25px;
                    border-radius: 5px;
                }

                textarea {
                    height: 150px;
                }
            }

            button {
                border: none;
                padding: 16px 50px !important;
            }
        }
    }

    @media(max-width:991px) {
        .container {
            flex-direction: column;
            gap: 20px;

            form {
                .inputs{
                    flex-wrap: wrap;
                }
                h2 {
                    font-size: 32px;
                    line-height: 40px;
                }
            }
        }
    }
}

footer {
    background: #F5F9FF;
    padding: 50px 0;

    .container {
        display: flex;
        gap: 20px;

        .both {
            display: flex;
            justify-content: space-around;
        }

        h2 {
            font-size: 24px;
            font-weight: 400;
            line-height: 30.24px;
            color: #000;
        }

        h3 {
            font-size: 24px;
            font-weight: 600;
            line-height: 28.13px;
            color: #000;
        }

        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 18.75px;
            color: #000;

        }

        ul {
            padding: 0;

            li {
                list-style: none;

                a {
                    text-decoration: none;
                    color: #000;
                }
            }
        }

        form {
            .inputs {
                padding: 2px;
                background-color: #fff;
                display: flex;
                border-radius: 50px;
                overflow: hidden;
                border: 2px solid #8CBF3F;

                input {
                    height: 100%;
                    width: 100%;
                    padding: 17px;
                    outline: none;
                    border: none;
                }

                button {
                    border: none;
                    outline: none;
                }
            }

            .check {
                display: flex;
                padding-top: 10px;
                /* justify-content: center; */
                align-items: center;

                p {

                    padding: 0;
                    padding-left: 5px;
                    margin: 0;
                    font-size: 12px;
                }
            }
        }
    }

    @media(max-width:991px) {
        .container {
            flex-direction: column;

            .logo {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .both {
                justify-content: start;
                gap: 50px;
            }

            .pt-4 {
                padding-top: 20px !important;
            }
        }
    }
}


.upper_fotter {
    background-color: var(--sec-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.09px;
    position: relative;
    p{
        display: inline;
        position: absolute;
        top: 50%;
        font-size: 14px;
        right: 20px;
        transform: translateY(-50%);

        a{
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
            font-weight: 700;
        }
    }

    @media(max-width:991px){
        flex-direction: column;
        font-size: 14px;
        text-align: center;
        p{
            position: relative;
            margin: 0;padding: 0;
            transform: none;
            top: 0;
            right: 0;
            display: block;
        }
    }
}
