@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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #333333 50%, #2c2c2c 50%);
    color: white;
}

.wv_wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.wv_details{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    align-items: flex-start;
    justify-content: center;
}

.wv_title{
    display: inline-block;
    font-size: 70px;
    position: relative;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.wv_title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #ff7417;
    border-radius: 10px;
    width: 100%;
}

.wv_intro{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.wv_description{
    margin-bottom: 1rem;
    line-height: 1.77;
    color: #ccc;
}

.wv_subscribe{
    display: flex;
    flex-direction: column;
    margin: auto;
    background-color: #5a5a5a;
    padding: 1.5rem;
    width: 85%;
    border-radius: 3px;
    box-shadow:  0 25px 50px -12px rgba(0, 0, 0, .50);
}

.wv_subscribe h3{
    font-weight: normal;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}


.wv_form{
    position: relative;
}

span{
    color: #ff7417;
    margin: 3px;
    font-size: 18px;
    font-weight: 600;
}

.wv_form input{
    font-family: inherit;
    outline: none;
    font-size: 90%;
    padding: 10px 1rem;
    border: none;
    display: block;
    border-radius: 2px;
}

.wv_form .wv_email{
    width: 100%;
    background-color: #ecf0f1;
}

.wv_form .wv_submit{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff7417;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s ease all;
    cursor: pointer;
}

.wv_form .wv_submit:hover{
    background-color: #e05e08;
}

.wv_logo{
    width: 100%;
    display: block;
    position: relative;

}

.wv_logo img{
    width: 450px;
    margin-bottom: 3rem;
    /* margin-left: 10rem; */
}

.wv_underline{
    width: 90%;
    background-color: #ff7417;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: 1px;
    border: none;
}

.wv_un{
    width: 70%;
}

.wv_contact{
    position: relative;

}



.wv_codesc{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}


.wv_number{
    margin-bottom: 5px;
}

.wv_address{
    margin-bottom: 5px;
    text-transform: uppercase;
    width: 100%;
}

.wv_social a{
    color: #e05e08;
    font-size: 2rem;
    padding: 0 20px;
}

.wv_art{
    position: relative;
    flex-basis: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wv_art img{
    width: 1800px;
}

@media (max-width: 500px){
    .wv_wrapper{
        width: 50%;
    }

}
@media (max-width: 600px){
    .wv_wrapper{
        width: 60%;
    }

}
@media (max-width: 700px){
    .wv_wrapper{
        width: 70%;
    }

}
@media (max-width: 800px){
    .wv_wrapper{
        width: 80%;
    }

}
@media (max-width: 900px){
    .wv_wrapper{
        width: 90%;
    }

}
@media (max-width: 1000px){
    .wv_wrapper{
        width: 100%;
    }

}