*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html body{
    max-width: 100%;
    overflow-x: hidden;
}
.main-body{
    background-image: url("images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 20px;
}

.header{
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding-top: 20px;
}
.menu-div{
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    width: 100px;
    height: 100px;
}
.menu-btn img{
    width: 100px;
    height: 90px;
    position: relative;
    left: -5px;
    top: -4px;
}
.toplogo {
    max-width: 100%;
}
.install-btn{
    background-color: black;
    color: white;
    padding: 10px 40px;
}
.install-btn:hover{
    background-color: #257ecc;
    border: 0;
    color: white;
    outline: 0;
}
.main-content{
    max-width: 80%;
    margin: 30px auto 0;
    text-align: center;
}
.main-content-policies{
    max-width: 70%;
    margin: 30px auto 0;
    text-align: left;
    background-color: white; 
    /*white-space: pre-wrap;*/
    padding: 50px;
}
.main-content h1{
    font-size: 65px;
    font-weight: 600;
    max-width: 80%;
    margin: 30px auto 0;
}
.main-content p{
    max-width: 60%;
    margin: 10px auto;
    font-size: 20px;
}
.qr-codes{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.qr-codes img{
    width: 90%;
}

/* Video Container */
.videos-container{
    max-width: 70%;
    margin: 40px auto;
}
.video-container-1 {
    position: relative;
}

.video-container-1 video {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.video-container-1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    width: 100%;
    height: 98%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    color: white;
    /*background: rgba(0, 0, 0, 0.5);*/
    text-align: center;
}

.overlay h3 {
    font-size: 32px;
}

.overlay-button {
    position:inherit;
    bottom: 15px;
    padding: 10px 30px;
    background-color: #F5AE23;
    border: none;
    color: black;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 50px;
}

.overlay-button:hover {
    background-color: #257ecc;
    color: white;
}

/* form */
.form{
    background-color: black;
    padding: 30px;
    border-radius: 20px;
    max-width: 75%;
    margin: 40px auto 100px;
}
.form input{
    background-color: white;
    padding: 10px;
}
.sub-btn{
    width: 100%;
    background-color: #F5AE23;
    padding: 10px 40px;
    margin-top: 10px;
    font-weight: 600;
}
.sub-btn:hover{
    background-color: #257ecc;
    color: white;
}
.bottom-menu {
    position: fixed;
    width: 750px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: black;
    text-align: center;
    padding: 20px 40px;
    color: white;
    margin-bottom: 20px;
    border-radius: 20px;
}

.bottom-menu ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 0;
}
.bottom-menu ul li span{
    position: relative;
    top: 8px;
    font-weight: 300;
    font-size: 14px;
}
.bottom-menu ul li a{
    color: white;
    text-decoration: none;
}
.side-menu-logo{
    width: 300px;
}
.offcanvas-body ul{
    list-style: none;
    line-height: 40px;
}
.offcanvas-body ul li a{
    color: black;
    text-decoration: none;
}

/* Responsiveness */

@media screen and (max-width: 767px) {
    .menu-div{
        background-color: white;
        padding: 10px;
        border-radius: 50px;
        width: 50px;
        height: 50px;
    }
    .menu-btn img{
        width: 40px;
        height: 40px;
        position: relative;
        left: -2px;
        top: -4px;
    }
    .install-btn{
        font-weight: 500;
        padding: 0;
        background-color: transparent;
        color: white;
        background-color: black;
        padding: 10px;
    }
    .main-content{
        min-width: 100%;

    }
    .main-content h1{
        font-size: 30px;
        min-width: 100%;
    }
    .main-content p{
        min-width: 100%;
        font-size: 16px;
    }
    .videos-container{
        min-width: 100%;
    }
    .video-container-1 .overlay{
        height: 97%;
        padding: 20px;
    }
    .overlay h3 {
        font-size: 24px;
    }
    .form{
        min-width: 100%;
        margin-bottom: 70px;
    }
    .form input{
        margin-bottom: 20px;
    }
    .sub-btn{
        margin-top: 0;
    }
    .bottom-menu{
        max-width: 100%;
        position: fixed;
        bottom: 0;
        padding: 20px 20px 15px;
        border-radius: 0;
        margin: 0;
    }
    .bottom-menu ul li a img{
        width: 32px;
        height: 32px;
    }
    .bottom-menu ul li span{
        font-size: 12px;
        top: 4px;
    }

}
@media (min-width: 768px) and (max-width: 991px) {
    .main-content{
        min-width: 100%;
    }
    .main-content h1{
        font-size: 48px;
    }
    .videos-container{
        max-width: 70%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .main-content{
        max-width: 80%;
    }
    .main-content h1{
        font-size: 55px;
    }
    .videos-container{
        max-width: 55%;
    }
}
