
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
a{
    text-decoration: none;
}

.main__inner {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

.main__inner__video {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.main__wrap {
    background: rgba(38, 50, 67, 0.7);
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.main__inner{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_wrapp{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 375px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn_wrapp .btn{
    color: #fff;
    background-color: #38B3BB;
    border: 1px solid  #38B3BB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    padding: 15px 35px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 0;
    transition: all .3s ease-in-out;
}
.btn_wrapp .btn:hover{
    color: #38B3BB;
    background-color: #fff;
}
.btn_wrapp .btn + .btn{
    margin-left: 20px;
}

@media (max-width: 767px) {
    .btn_wrapp{
        flex-direction: column;
    }
    .btn_wrapp .btn{
        width: 100%;
        max-width: 350px;
    }
    .btn_wrapp .btn + .btn{
        margin-left: 0;
        margin-top: 25px;
    }
}
