section{
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}
.hero{
    height: 104vh;
}


section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(1, 13, 24, 0.5);
}
section.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(1, 13, 24, 0.3);
}
.section_content{
    position: relative;
    z-index: 3;
}
.section__img{
    background-color: #eeeeee;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 4s;
    -webkit-transition: all 4s;
    -moz-transition: all 4s;
    -ms-transition: all 4s;
    -o-transition: all 4s;
}
.hero__body{
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 60px;
    padding-inline: 5px;
}
.hero__title{
    color: var(--white-color);
    font-family: var(--regular);
    font-size: 30px;
    line-height: 105%;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}
.hero__text{
    margin-bottom: 30px;
    max-width: 450px;
}
.hero__btn{
    min-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1E1E1E;
    font-size: 18px;
    font-family: var(--semibold);
    background-color: #f8f8f8;
    padding: 15px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
@media (min-width: 480px) {
    .hero__btn{
        min-width: auto;
        padding-inline: 35px;
    }
}
.section_content{
    padding-block: 70px;
    padding-inline: 15px;
}
.about__text:not(:last-child){
    margin-bottom: 10px;
}
.service__title{
    margin-bottom: 30px;
}
.service__box-text,
.advantages__box-text{
    margin-bottom: 15px;
}
.service__box-text_none,
.advantages__box-text_none{
    display: none;
}

.service__text:not(:last-child){
    margin-bottom: 10px;
}
.service__list,
.num__list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.service__list_none{
    display: none;
}
.service__list-item {
    position: relative;
    padding-left: 20px;
}
.service__list-item::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--accent-bg);
    top: 5px;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.num__list-item{
    display: flex;
    gap: 10px;
}
.num__list-item-number{
    color: var(--white-color);
    font-size: 18px;
}
.num__list-item-title{
    color: var(--white-color);
    font-size: 18px;
    font-family: var(--semibold);
    margin-bottom: 10px;
}
.num__list-item-number_padding{
    padding-top: 2px;
}
.footer__body{
    padding: 50px 15px;
}
.footer__top-cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .footer__top-cards{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}
.footer__top-list:not(:last-child){
    margin-bottom: 30px;
}
.footer__top-title{
    color: var(--accent-bg);
    font-size: 20px;
    margin-bottom: 20px;
}
.footer__top-list-item{
    display: flex;
    align-items: start;
    gap: 15px;
}
.footer__top-list-item:not(:last-child){
    margin-bottom: 10px;
}
.footer__top-list-link,
.footer__top-list-item > p{
    color: #1E1E1E;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.footer__top-list-link_blue{
    color: var(--accent-bg);
}
.footer__bottom{
    display: none;
}
.footer__top-btn{
    background-color: var(--accent-bg);
    min-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    font-size: 18px;
    font-family: var(--semibold);
    padding: 15px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
@media (min-width: 480px) {
    .footer__top-btn{
        min-width: auto;
        padding-inline: 35px;
    }
}