body{
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
}
.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: 40px;
    border: 2px solid #d5d5d5;;
    width: 100%;
}


.btn-submit{
    padding: 15px;
    background: #329f8b;
    color: #f7f2f2;
    width: 100%;
    font-size: 24px;
    border: 0;
}
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: 34px;
    font-weight: bold;
    color: rgb(101, 101, 101);
}
.img{
    width: 80%;
}

.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;
    }
}

/*css player*/

.audio-player {
    margin: 0 auto;
    height: 50px;
    width: 90%;
    background: #444;
    box-shadow: 0 0 10px 0 #000a;
  
    font-family: arial;
    color: white;
    font-size: 0.85em;
    overflow: hidden;
  
    display: grid;
    grid-template-rows: 6px auto;
}
.timeline {
    background: white;
    width: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 #0008;
}
.progress {
    background: coral;
    width: 0%;
    height: 100%;
    transition: 0.25s;
}
    
.controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
}
.play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 7px solid #0000;
    border-left: 13px solid white;
    
}
.play:hover{
    transform: scale(1.1);
}
.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
}

.pause:hover{
    transform: scale(1.1);
}
.pause:before{
    position: absolute;
    top: 0;
    left: 0px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
}
.pause:after {
position: absolute;
top: 0;
right: 8px;
background: white;
content: "";
height: 15px;
width: 3px;
}
        
.time {
    display: flex;
    padding: 2px;
}
.volume-container {
    cursor: pointer;
}
.volume-button {
    height: 26px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.volume {
    transform: scale(0.7);
}  
.volume-slider {
    position: absolute;
    left: -3px; top: 15px;
    z-index: -1;
    width: 0;
    height: 15px;
    background: white;
    box-shadow: 0 0 20px #000a;
    transition: .25s;
}
.volume-percentage {
    background: coral;
    height: 100%;
    width: 75%;
}
.volume-slider :hover{
    left: -123px;
    width: 120px;
}