@charset "utf-8";

/*----------
* theme: finwincampus
* Version: 1.0
---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


body{
    background-color:#0b437b;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.content-section{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100vh;
}

.content-section .row{
    align-items: center;
}

.content-section .left-img img{
    filter: drop-shadow(0px -20px 110px rgba(255, 255, 255, 0.43));
    -webkit-filter: drop-shadow(0px -20px 110px rgba(255, 255, 255, 0.432));
    -moz-filter: drop-shadow(0px -20px 110px rgba(255, 255, 255, 0.444));
}

/* .content-section .logo{
    margin-left: 10px;
} */

.content-section .logo img{
    width: auto;
}

.text h2{
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 0;
    color:#ffffff;
    text-shadow: 0px 6px 10px #00000056;
    line-height: 1;
}

.text h1{
    font-size: 85px;
    font-weight: 800;
    margin-bottom: 0;
    color:#ffffff;
    text-shadow: 0px 6px 10px #00000056;
    line-height: 1;
}

.btn-div .btn-style{
    position: relative;
    background-color: #FFFFFF;
    color:#032503;
    border-radius: 12px;
    font-size: 26px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    padding: 12px 17px;
    border: 1px solid#032503;
}

.btn-div .btn-style span{
    position: relative;
    z-index: 5;
}

.btn-div .btn-style::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color:#05800f;
    border-radius: 12px;
    z-index: 0;
    transition: 0.25s ease-in-out;
}

.btn-div .btn-style:hover{
    color: #FFFFFF;
}

.btn-div .btn-style:hover::before{
    width: 100%;
    border: 1px solid #FFFFFF;
}


@media (max-width:1199px){
    .text h2{
        font-size: 40px;
    }
    .text h1{
        font-size: 85px;
    }
    .btn-div .btn-style{
        font-size: 20px;
    }
}

@media (max-width:991px){
    .content-section .left-img{
        margin-bottom: 30px;
    }
}

@media (max-width:575px){
    .text h2{
        font-size: 30px;
    }
    .text h1{
        font-size: 55px;
    }
    .btn-div .btn-style{
        font-size: 20px;
    }
}