body{
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.video-secction{
    background: #000000;
    padding-top: 8px;
    padding-bottom: 8px;
    height: 100vh;
}
.wrapper {
    display: grid;
    height: 100vh;
    grid-template-columns: repeat(3, 1fr);
}
.container {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr;
}
.one,.two,.tree{
    display: grid;
    align-items: center;
    justify-items: center;
    height: auto;
}

.center-center{
    align-items: center;
    justify-items: center;
    background: #000000;
}

input[type="text"],input[type="email"],input[type="tel"]{
    padding: 15px;
    color: #808080;
    border-radius: 5px;
    border: 2px solid gray;
    width: 100%;
}
.btn-submit{
    padding: 15px;
    background: #00b500;
    border-radius: 5px;
    color: #efefef;
    width: 100%;
    font-family: 'Arial Narrow Bold', sans-serif;
    font-weight: bold;
    font-size: 35;
}
input::placeholder{
    color: #808080;
}
.input-container{
    margin-bottom: 15px;
    width: 100%;
    display: inline-flex;
}
.contanier-form{
    min-width: 300px;
    width: 400px;
    margin: 0 auto;
}
.h2-text{
    font-size: 32px;
    font-weight: bold;
    color: grey;
}
.img{
    width: 100%;
}

.ads-superior-lateral{
    display: inherit;
    align-items: center;
    width: 100%;
    color: #efefef;
}
.ads-inferior{
    display: inherit;
    align-items: center;
    width: 100%;
    color: #efefef;
}
.ad-container {
    width: 100%;
}
.mt-5{
    margin-top: 5px;
}

@media only screen and (max-width: 981px) {
    .wrapper {
        grid-template-columns: 1fr;
    }
    .container {
        grid-template-columns: 1fr;
    }
    .contanier-form{
        width: 320px;
    }
}