* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}

.navigation_content {
    height: 87px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 25px;
    border-radius: 60px;
}

.pages ul {
    display: flex;
    gap: 30px;
    list-style: none;
    color: #000000;
}


.click_buttom button {
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #4D74F2;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.link {
    position: relative;
    cursor: pointer;
}

.link:before {
    content: "";
    background-color: black;
    position: absolute;
    left: auto;
    bottom: 0;
    right: 0;
    height: 1%;
    width: 0%;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-duration: .9s;

}

.link:active::before,
.link:hover:before {
    left: 0;
    right: auto;
    width: 100%;
}
.bar{
    display:none;
}
.pages ul li a {
    color: #000000;

}
#pages_button{
        display: flex;
        align-items: center;
        gap: 26vw;
    }

.link_copyright a,.pages ul li a{
    text-decoration: none;
    color: #8b8080;
    
}
.first_container_of_prices_plan{
    width: 100vw;
    place-items: center;
    margin-top:50px;
}
.prices_container{
    font-size: 30px;
}
.big_logo_pic img{
    width: 60vw;
    height: 25vh;

}
.text_plan{
    padding:10px 30px;
}
.plan_boxes_container{
display: flex;
justify-content: space-between;
padding: 20px;
}

.box{
    width: 20vw;
    border: 1px solid black;
    padding:10px 20px;
    border-radius: 9px;
    background-color: #bcc9f3;
    height: fit-content;
}
.box ul li{
    line-height: 30px;
}
.pay_after_work{
    margin-top: 30px;
}
.pay_after_work{
    padding:4px 20px;
    background-color: #51D871;
    border: 2px solid white;
    border-radius: 5px;
    place-items: center;
    cursor: pointer;
}
.pay_button span img{
    width:1.5vw;
    height:2.5vh;
    transform: rotate(45deg);
     margin-left: -4px;
     margin-top: 3px;
}
.pay_after_work a{
    text-decoration: none;
    color: #000000;
}