* {
    margin: 0; 
	padding: 0;
	box-sizing: border-box;
}

/*
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
*/

html, body {
	height: 100%;
    font-family: 'Poppins', sans-serif;
}

.header {
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

.container {
	max-width: 1233px;
	margin-left: auto;
	margin-right: auto;
}

.navigation a {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: #414141;
    text-decoration: none;
    padding: 0 17px;
    transition: color .4s;
}

.navigation a:hover {
    color: red;
}


.navigation__btn {
    padding: 9px 40px 9px 20px;
    border-radius: 4px;
    background: #DE3C3C;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: .4s;
}

.navigation__btn:hover {
    background-color: #C00000;
}

.arrow {
    padding-left: 10px
}

/* puzzle */

.puzzle__container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.puzzle__text h2 {
    color: #212121;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.puzzle__item p {
    color: #C5C5C5;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    margin-bottom: 30px;
}

/* plate */

.plate {
    margin-top: 200px;
    margin-bottom: 180px;
}

.plate__container {
    display: flex;
    justify-content: space-between;
}

.plate__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: end;
    gap: 20px;
}

.plate__content_end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plate__box {
    max-width: 480px;
    min-height: 260px;
    padding: 30px;
    transition: .6s;
    border-radius: 5px;
}

.plate__box img {
    margin-bottom: 10px;
}

.plate__box:hover {
    background-color: #C00000;
    color: #fff;
}

.plate_box img:hover {
    stroke: white;
    fill: red;
}

/* hosting */

.host {
    margin-bottom: 200px;
}

.host__container {
    display: flex;
    justify-content: center;
    align-content: center;
    background-image: url(/pictures/bg.png);
    background-repeat: no-repeat;
    background-size: auto;
}

.host__box {
    padding-top: 100px;
    padding-bottom: 100px;
    color: white;
    text-align: center;
}

.host__box h2 {
    padding-bottom: 20px;
    font-size: 26px;
}

.host__box p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #C5C5C5;
    font-family: 'Roboto', sans-serif;
}

/* comment */

.comment__container {
    background-image: url(/pictures/cmmnt.png);
    background-repeat: no-repeat;
    background-size: auto; 
}

.comment__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.comment__content p  {
    font-weight: 500;
    font-size: 24px;
}

.comment__box  {
    padding-top: 396px;
    padding-bottom: 115px;
}

.comment__box p:first-child {
    font-weight: 200;
    font-size: 32px;
    padding-bottom: 51px;
}

.comment__box p:last-child {
    font-size: 14px;
    color: #C5C5C5;
    font-family: 'Roboto', sans-serif;
}

/* plans */

.plans {
    margin-top: 100px;
    margin-bottom: 240px;
}

.plans__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.plans__content h2 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 17px;
}

.plans__text {
    font-size: 14px;
    color: #C5C5C5;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 60px;
}

.plans__cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.card {
    min-height: 360px;
    
}

.card p {
    color: #C5C5C5;
    
}

.card:nth-child(1){
    margin-right: 70px;
}

.card:nth-child(2){
    margin-right: 70px;
}

.card:nth-child(3){
    margin-right: 70px;
}

.cost {
    padding-top: 40px;
    padding-bottom: 82px;
    color: #C5C5C5;
}

.cost p:nth-child(2) {
    padding-top: 0px;
    font-size: 32px;
    color: #FFAA64;
}

.starts {
    padding-top: 15px;
    padding-bottom: 82px;
    color: #C5C5C5;
}

.starts p:nth-child(2) {
    font-size: 32px;
    color: #FFAA64;
}

.card a {
    text-decoration: none;
    color: black;
}

.card:hover {
    border-top: 4px solid red;
    border-radius: 6px;
    transition: 0.1s;
}

/* question */

.question {
    margin-top: 220px;
    margin-bottom: 170px;
}

.question__content {
    display: flex;
    justify-content: center;
    text-align: center;
}

.question__box h2 {
    padding-bottom: 50px;
}

.navigation__btn_question {
    background: #fff;
    color: black;
    padding: 9px 40px 9px 20px;
    border-radius: 4px;
    border: 1px solid black;
    transition: .2s;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.navigation__btn_question:hover {
    color: #C00000;
}
