@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #060E28;
    color: white;
   
}


body{
    background-color: #060E28;
    font-family: 'Montserrat', sans-serif !important;
    overflow-x: hidden;
}

h1{
    font-size: 50px !important;
    font-weight: 700 !important;
}

.subtitle{
    color: #00DCFF;
    font-weight: 700 !important;

}

.subtitle::after{
    content: " ";
    position: absolute;
    left: 15px;
    width: 30%;
    margin-top: -20px;
    border: 1px solid white;
}

.subtitle-2{
    color: #00DCFF;
    font-weight: 700 !important;
    padding-bottom: 10px;

}

.subtitle-2::after{
    content: " ";
    position: absolute;
    left: 15px;
    width: 30%;
    margin-top: -15px;
    border: 1px solid white;
}

::-webkit-input-placeholder { /* Edge */
    color: white;
}

:-ms-input-placeholder { /* Internet Explorer */
  color: white;
}

::placeholder {
  color: white;
}


.vh-80{
    height: 90vh;
}

.form-control-custom{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    /* background-clip: padding-box; */
    border: 1px solid #ced4da;
    /* transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out */
}

textarea .form-control {
    height: auto !important;
}

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


.hero-img{
    position: relative;
    margin-left: 30%;
} 

.grid-img{
    position: relative;
    margin-left: 30%;
    height: 80%;
}

.title ::after{
content: " ";
display: inline-block;
position: relative;
width: 15%;
margin-left: 8%;
border: 1px solid white;
}

@media only screen and (max-width: 768px){
    .hero-img {
        position: relative;
        margin-left: auto;
        max-width: 100%;
    }

    .grid-img{
        position: relative;
        margin-left: auto;
        height: auto;
        max-width: 100%;
    }

    .img-sm-fluid{
        max-width: 100%;
    }
}