.section{
    padding: 100px 0;
}


.product-data{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /* justify-content: space-between; */
    padding-top: 20px;
}

.main-image{
    border: none;
    padding: 0;
    border-radius: 0;
}
.main-image>img{
    width: -webkit-fill-available;
}

.main-data{
    width: 50%;
    padding: 10px 20px;
}

.main-data > h1{
    font-size: 24px;
    font-weight: 600;
}

.price{
    font-size: 30px;
    font-family: Rotonda;
    color: #FF520E;
    font-weight: 600;
}

.short-description{
    padding: 10px 0 0 0;  
}

.buttons{
    padding: 10px 0;
}

.buttons__one-click, .buttons__order{
    padding-left: 0px;
}

.buttons__one-click > button, .buttons__order>button{
    font-size: 14px;
    font-family: GothamProRegular;
    color: white;
    background-color: #00a046;
    padding: 10px 20px;
    border-radius: 5px;
    border: 0px;
}

.buttons__one-click > button:hover, .buttons__order>button:hover{
    background-color: #00bc52;
}



.adv-squares{
    display: flex;
}

.square{
    border: 2px solid #c5c5c545;
    padding: 22px;
    border-radius: 10px;  
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.square__img > img{
    height: 35px;
    padding-right: 18px;
}

.important-features{
    padding: 10px 0 0 0; 
}

.feature > p{
    margin-bottom: 5px;
}

.feature > p >span{
    font-weight: 600;
}

.product-additional__section{
    margin: 20px 0;
}
.product-additional__section > h2{
    font-size: 22px;
    font-weight: 600;
}

div.product-additional__section.docs > div > a:hover {
    color: #0056b3;
    text-decoration: underline;
}

div.product-additional__section.full-feature > div > div > p{
    margin-bottom: 5px;
    color: #000;
}
div.product-additional__section.full-feature > div > div > p >span{
    color: #ababa9;
}



.full-feature__block{
    display: flex;
    flex-wrap: wrap;
}

.full-feature__collum{
    width: 45%;
}


@media (max-width: 1240px){
    .main-image{
        width: 40%;
        height: auto;
    }
    .main-data{
        width: 60%;
    }
    .adv-squares{
        width: 100%;
        flex-wrap: wrap;
    }
    .square{
        margin-bottom: 10px;
    }
}

@media (max-width: 768px){

    .product-data {
        padding-top: 110px;
        display: block;
    }

    .main-image{
        width: calc(100% - 40px);
        max-width: 420px;
        height: auto;
        margin: 0 auto 25px auto;
        box-sizing: border-box;
        overflow: visible;
        padding-bottom: 55px;
    }

    .main-image > img {
        width: 100%;
        height: auto;
        display: block;
        transform: scale(1.30);
        transform-origin: center top;
    }

    .main-data {
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .product-additional{
        margin: 0 20px;
    }

    .full-feature__collum{
        width: 100%;
    }
}




