body{
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.main-wrap{

    width: 100%;
    height: 100vh;
    display: flex;

}
.left-box-coming{
    width: 400px;
    height: 100%;
    /* background-image: url("/public/images/left-bg.png");
    background-size: cover; */
}
.left-box-coming img{
    width: 100%;
    object-fit: fill;
    height: 100%;
    background-repeat: no-repeat;
}
.right-box-coming{
    width: calc(100% - 400px);
    height: 100%;
    position: relative;
    overflow-y: scroll;
}
.patter{
    position: absolute;
    right: 0;
    top: 0;
    width: 229px;
    height: 365px;
    background-image: url("/public/images/top-pattern.png");
}
/* .logo-box{
    margin: 80px 0 0;
} */
.logo-box img{
    max-width: 350px;
    margin-top: 20px;
}
h1{
font-weight: 400;
font-size: 64px;
    letter-spacing: 0.3em;
color: #0A6032;
/* margin-top: 80px; */
text-transform: uppercase;
}
.form-wrap{
    max-width: 800px;
    margin: 0px auto;
}
.form-control {
    background: #D9D9D9;
    border-radius: 20px;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.095em;
    color: #7D7D7C;
    padding: 0px 20px;
    margin-bottom: 10px;
}
.form-control:focus{
    background-color: #D9D9D9;
    color: #7D7D7C;
    box-shadow: none;
}
textarea.form-control{
        padding: 10px 20px;
    height: 100px;
}
button{
    background: #6DBE45;
border-radius: 80px;
height: 40px;

font-weight: 700;
font-size: 14px;
width: 100%;
/* identical to box height */

letter-spacing: 0.095em;

color: #FFFFFF;
border: none;
outline: none;
margin: 0px auto;
}
.more-info{
    margin:0px 0 50px;
}

.more-info p{
    font-weight: 400;
font-size: 18px;
letter-spacing: 0.3em;

color: #545252;
text-align: center;
margin-bottom: 0;
}
.more-info a{
    font-weight: 400;
font-size: 18px;
/* identical to box height */

letter-spacing: 0.125em;

color: #777777;
text-decoration: none;
display: flex;
    align-items: center;
    margin-right: 13px;
}
.more-info a:last-child{
    margin-right: 0;
}
.more-info img{
    margin-right: 13px;
    width: 45px;
    height: 45px;
}
.bottom-bg{
    width: 100%;
    height: 264px;
    background-size: cover;
    background-image: url("/public/images/bottom.png");
}
.mt-30{
    margin-top: 20px;
}
@media screen and (max-width:1300px){
    
    .patter{
        width: 190px;
    }
}
@media screen and (max-width:1199px){
    h1{
        font-size: 22px;
    }
    .patter{
        width: 160px;
    }
}
@media screen and (max-width:991px){
.mt-30{
    margin-top: 10px;
}
.left-box-coming{
    width: 313px;
}
.right-box-coming{
    width: calc(100% - 313px)
}

.logo-box img {
    max-width: 200px;

}
.bottom-bg{
    height: 140px;
}
}
@media screen and (max-width:767px){
    body{
        height: auto;
        overflow: scroll;
    }
    .main-wrap{
         height: 100%;
    }
    .logo-box img {
        max-width: 280px;

    }
    h1{
        font-size: 22px;
    }
    .more-info a{
        font-size: 14px;
        margin: 0 0px 15px;

    }
    .more-info p{
        font-size: 14px;
    }
    .more-info a img {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
    .form-control,button{
        height: 40px;
        font-size: 14px;
    }

    .mt-30{
        margin-top: 10px;
    }
    .patter{
        display: none;
    }
    .left-box-coming img{
        width: 100%;
        height: auto;
    }
    .main-wrap{
        flex-direction: column;
    }
    .left-box-coming{
    width: 100%;
}
.right-box-coming{
    width: 100%;
}
    
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.invalid-feedback{
        padding-left: 15px;
    margin-top: -8px;
    margin-bottom: 10px;
}
