

#marketing {
    color: white;
    background-color: white;  
    background: rgba(0, 0, 0, 0.8);

    display: flex;
    flex-wrap: wrap;
    width: 90%;
    align-items: center;
    text-align: center;
    margin: 0 auto 50px;
    padding: 0 auto 0;
    border-radius: 5px;
}

#markTop {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 0 10px 15px;
    margin: 0 auto;
}

#markTop h2 {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
}

#markTop p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    margin: 0 0 10px;
}


#markTop p {
    z-index: 1;
}

#images {
    margin: 0 auto;
}

p {
    margin: 0;
}

.item{
    width: 45%;
    height: 400px;
    border-radius: 10px;
}

.item:hover {
    transform: scale(1.05);
    transition: 0.5s ease-in-out;
    z-index: 10;
    border: solid 3px #5f90c9;
    background: rgba(0, 0, 0, 0.5);
}

#hook {
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    padding: 0 10px 15px;
    align-items: center;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 32px;

}

#hook h2 {
    margin: 0 0 0;
    padding: 10px 0 20px;

}

#hook button {
    background-color: #5f90c9;
    color: white;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    font-size: 16px;
    margin: 10px 0 10px;

    padding: 10px 10px 10px;
}

#hook button:hover {
    transform: translateY(-10px);
    transform: 0.5s ease-in-out;
}

#hook video {
    position: relative;
    width: 60%;
    height: 25%;
    min-width: 340px;
    min-height: 155px;
    border: solid 10px #5f90c9; 
    margin: 20px 0 20px;   
}

#understanding {
    background-color: transparent;
    background-image: url(Images/pose.JPG);
    background-size: cover;
    background-repeat: none;
    background-position-x: center;
    zoom: 130%;
    justify-content: center;
    color: white;
    align-items: top;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

#understanding h2 {
    font-size: 64px;
    margin: 0 0 15px;
    padding: 30px 0 150px;
    text-shadow: 2px 2px 1.5px black;
    font-family: "Roboto", sans-serif;
}

#understanding p {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    margin: 0 0 20px;
    text-shadow: 2px 2px 1.5px black;
}

#understanding img {
    position: relative;
    width: 50%;
    height: 100%;
    z-index: -1;
}

#underInside {
    padding: 0 80px 50px;
}


@media (max-width: 480px) {
    

    #markTop h2{
        font-size: 20px;
    }

    #markTop p {
        font-size: 12px;
    }
    
    .item {
        width: 100%;
        height: 250px;
        
    }


    #hook video {
        width: 80%;
    }

    #hook button {
        height: 40px;
    }

    #hook h2 {
        font-size: 20px;
    }

    #understanding h2 {
        font-size: 24px;
        margin: 0 0 15px;
        padding: 30px 0 100px;
    }

    #understanding p {
        font-size: 14px;
    }

    #understanding img {
        position: relative;
        width: 50%;
        height: 40%;
        z-index: -1;
    }

    #underInside {
        padding: 0 30px 50px;
    }
}