#imgI{
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
}

#sectionI{
    margin-top: -5px;
    padding: 8px;
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: #333333;
    display: flex;
}

#sectionI img{
    width: 32px;
    height: 32px;
}

#sectionI a{
    margin-top: 8px;
    padding: 5px;
    color: #333333;
    border-radius: 20px;
    background-color: #ffffff;
    border: #ffffff 1px solid;
}

#sectionI a:hover{
    color: #ffffff;
    transition: 0.4s;
    background-color: #333333;
}

#flex-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.contentI{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin: 24px;
}

.groupI{
    margin-left: 2%;
    padding-left: 2%;
    border-left: 1px solid #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#sectionII{
    display: flex;
    flex-direction: row;

}

#sectionII img{
    max-width: 50%;
}

#groupII{
    padding: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#groupII p{
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 18px;
    margin-left: -25%;
    font-size: 18px;
    color: #000000;
    width: 50%;
}

#groupII a{
    text-align: center;
    border-radius: 20px;
    margin-top: 32px;
    font-size: 18px;
    border: #333333 1px solid;
    width: 30%;
    padding: 8px;
    background-color: #333333;
}

#groupII a:hover{
    border: #333333 1px solid;
    background-color: #ffffff;
    color: #333333;
    transition: 0.4s;
}

#sectionIII{
    padding: 88px;
    background-color: #333333;
}

#sectionIV{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

#sectionIV img{
    max-width: 50%;
}

#groupIV{
    width: 100%;
}

iframe{
    max-width: 100%;
    width: 90%;
    height: 400px;
    border: 0;
    margin: 24px auto;
    display: block;
}

.windows{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.8s ease-in-out;
}

.windows.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; 
    transition: transform 0.8s ease-in-out;
}

.content-windows{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333333;
    padding: 24px;
    border-radius: 5px;
    width: 50%;
    height: 55%;
}

.content-windows p{
    margin: 24px;
}

.content-windows ul{
    margin: 12px 0px 24px 48px;
}

button{
    cursor: pointer;
    text-align: center;
    border-radius: 20px;
    margin-top: 16px;
    font-size: 18px;
    border: #ffffff 1px solid;
    width: 100%;
    padding: 4px;
    color: #333333;
    background-color: #ffffff;
}

button:hover{
    border: #ffffff 1px solid;
    background-color: #333333;
    color: #ffffff;
    transition: 0.4s;
}

.content-windows li{
    list-style-type: disc;
    color: #ffffff;
}

@keyframes upBox{
0%{
    margin-top: 16px;
    opacity: 0;
}

100%{
    margin-top: 0px;
    opacity: 1;
}
}

@keyframes downBox{
0%{
    margin-top: 0px;
    opacity: 1;
}

100%{
    margin-top: 16px;
    opacity: 0;
}
}

@media screen and (max-width:1280px) {
    #imgI{
        margin-top: 64px;
    }
    
    #sectionI{
        padding: 8px 0px;
        display: flex;
        flex-direction: column;
    }

    #sectionI a{
        text-align: center;
        width: 60%;
    }
    
    #flex-row{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    
    iframe{
    margin: 0px;
    margin-top: 24px;
    }

    .contentI{
        align-items: center;
    }
    
    .groupI{
        border-top: 1px solid #ffffff;
        border-left: 0px solid transparent ;
        padding-top: 24px;
        width: 95%;
        display: flex;
        flex-direction: column;
    }
    
    #sectionII{
        display: flex;
        flex-direction: column;
    }
    
    #sectionII img{
        max-width: 100%;
    }
    
    #groupII{
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #groupII p{
        font-size: 18px;
        margin-left: 0%;
        width: 90%;
    }
    
    #groupII a{
        width: 60%;
    }
    
    #sectionIII{
        padding: 44px;
    }
    
    #sectionIV{
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    
    #sectionIV img{
        max-width: 100%;
    }
    
    #groupIV{
        padding: 12px;
        margin: 20px;
    }

    .content-windows{
    width: 90%;
    height: 90%;
    font-size: 10px;
    padding: 12px;
    top: 50%;
    }

    .content-windows p{
    font-size: 12px;
    }

    .content-windows ul{
    margin: 12px 0px 12px 24px;
    font-size: 12px;
}
}