
p {
    line-height: 1.5;
}
h2 {
    color: #e72165;
}
.content {
    color: #333;
}
.first-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    align-content: center;
    min-height: 100vh;
    padding: 50px;
}
.hero p {
    font-size: 25px;
}

.advantage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px;
}

.advantage-item {
    position: relative;
    padding-top: 60px;
}
.advantage-item:nth-child(1){
    margin-top: 50px;
}
.advantage-item span {
    padding-right: 10px;
    font-family: 'Anonymous Pro', monospace;
    color: rgba(51, 51, 51, 0.09);
    font-size: 136px;
    position: absolute;
    left: -30px;
    top: 0;
}
.price-container {
    margin-top: 150px;
}
.price-container > h2{
    margin-left: 50px;
}
.prices {
    margin-top: 50px;
}
.price-item {
    padding: 20px 50px;
    border-top: 1px solid rgba(231, 33, 101, 0.18);
}
.price-item:hover {
    background-color: #e72165;
    color: #ffffff;
}
.price-info li {
    list-style-type: "— ";
    padding-top: 10px;
}
.price-info li::marker {
    color: #e72165;
}
.price-item:hover li::marker {
    color: #fff;
}

.faq-container {
    margin-top: 150px;
    padding: 50px;
    min-height: 500px;
}

details {
    padding: 15px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.22);
    margin-top: 10px;
}
summary {
    font-size: 20px;
}
summary span {
    margin-right: 10px;
    color: #e72165;
    font-family: 'Anonymous Pro', monospace!important;
    font-size: 0.85em;

}
details[open] summary ~ p{
    animation: sweep .75s ease-in-out;
}

@keyframes sweep {
    0%    {max-height:0;}
    100%  {max-height:200px;}
}
details summary {
    display: grid;
    grid-template-columns: 30px auto 15px;
    align-items: baseline;
}
details summary::after {
    content: "+";
    font-size: 20px;
}
details[open] summary::after {
    content: "-";
    font-size: 20px;
}
/* Убираем стандартный маркер Chrome */
details summary::-webkit-details-marker {
    display: none
}
/* Убираем стандартный маркер Firefox */
details > summary {
    list-style: none;
}
@media (max-width: 1200px) {
    .first-screen {
        grid-template-columns: 1fr;
    }
    .animate {
        display: none;
    }
    .advantage {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .first-screen {
        min-height: 70vh;
    }
    .first-screen, .advantage, .price-item {
        padding: 50px 10px;
    }
    .price-container > h2 {
        margin-left: 10px;
    }
    .prices {
        margin-top: 0;
    }
    .faq-container {
        margin-top: 100px;
        padding: 10px;
        min-height: 500px;
    }
}