.main
{
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}
.context
{
    width: 25%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title
{
    font-size: 4.4rem;
}

.s
{
    font-size: 2rem;
}

.video
{
    width: 75%;
    height: 450px;
    text-align: center;
}

.frame
{
    width: 60%;
    height: 450px;
    min-height: 350px;
    border-radius: 20px;
}

.services
{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.item
{
    width: 25%;
}

.item ul
{
    text-align: center;
    list-style: none;
}

.item li
{
    margin:30px;
    font-size: 1.3rem;
}

.icon
{
    width: 100px;
    border: 1px solid black;
    padding: 20px;
    border-radius: 27px;
}

.btns
{
    display: flex;
    width: 100%;
}

.pt_btn
{
    width: 75%;
    text-align: center;
    list-style: none;
}

.ss_btn
{
    width: 25%;
    text-align: center;
    list-style: none;
}

.botons
{
    background-color: white;
    padding: 15px;
    border-radius: 0.5em;
    border: 2px solid green;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.botons a
{
    width: 100%;
    height: 10px;
}

.botons a:link,.botons a:visited, .botons a:active
{
    color:inherit;
    font-weight: bold;
    text-decoration: none;
    
}

.botons a:hover
{
    color:white;
}

.botons:hover
{
    background-color: darkgreen;
    color: white;
}

@media (max-width:600px)
{
    .context
    {
        width: 100%;
        height: 200px;
        text-align: center;
    }
    .video
    {
        width: 100%;
        height: auto;
    }
    .frame
    {
        width: 90%;
        height: auto;
    }
    .services
    {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    ol, ul {
        padding-left: 1rem !important;
    }
}