@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #171515;
}
.container{
    max-width: 1142px;
}
.container-sm{
    max-width: 754px;
}
header{
    padding-top: 16px;
    font-size: 14px;
    color: #ACACAC;
}
header .container{
    border-bottom: 1px solid #a074a126;
}
.author{
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
    margin-bottom: 16px;
}
.author p{
    margin: 0;
}
.author .name{
    color: #000000;
    font-weight: 700;
}
.author img{
    width: 40px;
    height: 40px;
}
main{
    padding: 32px 0 60px;
}
.post-info{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #9690a4;
    margin-bottom: 16px;
}
.post-info img{
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.type-info{
    background-color: #efd1ff;
    color: #777777;
    border-radius: 16px;
    padding: 4px 8px;
}
.date, .time{
    display: flex;
    align-items: center;
}
.date p, .time p{
    margin: 0;
}
h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}
h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #171515;
}
.desc{
    font-size: 24px;
}
.cta{
    padding: 24px 16px;
    border: 2px solid #d088ce;
    background-color: #fde1fc;
    box-shadow: 0px 4px 4px 0px #a074a126;
    color: #777777;
    font-size: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.cta .btn{
    color: #FFFFFF;
    padding: 16px;
    display: block;
    margin-top: 24px;
    border-radius: 4px;
    background-color: #d088ce;
}
.card-block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.card{
    background-color: #fde1fc;
    padding: 16px 10px;
    border-radius: 4px;
    color: #777777;
    border: none;
}
.card p{
    margin-bottom: 0;
    font-size: 14px;
}
.card .title{
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #a968ba;
    gap: 8px;
}
.card .title .main{
    font-size: 35px;
    color: #d228ff;
    text-align: center;
}
.list{
    padding: 0;
    margin-bottom: 24px;
}
.list li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}
.list li::before{
    content: "";
    background-image: url(../img/done.svg);
    filter: invert(1);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.review{
    background-color: #fde1fc;
    border: 1px solid #a968ba29;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.review .ico{
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    filter: invert(1);
}
footer{
    background-color: #F3F4F5;
    padding: 24px 0;
}
footer h5{
    color: #556065;
    font-size: 16px;
    font-weight: 600;
}
.quick-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-block: 14px;
}
.quick-link a{
    color: #7a21d5;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.copyright{
    color: #ACACAC;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.region {
  transition: fill 0.3s ease;
  cursor: pointer;
}
.region:hover {
  fill: #a968ba !important;
}
@media screen and (max-width: 560px) {
    html, body{
        font-size: 16px;
    }
    .author{
        justify-content: start;
    }
    h1{
        font-size: 28px;
    }
    .desc{
        font-size: 18px;
    }
    .card-block{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .card-block{
        gap: 16px;
    }
    .post-info{
        gap: 8px;
    }
    .author p{
        font-size: 14px;
    }
}