/* ======================================= */
/* COMMON */
/* ======================================= */
.logo:active,
a.round-btn:active,
.contacts-item--link:active,
.contact-info--link:active,
.footer-logo:active,
.social__link:active,
.additional-menu a:active,
.collection-link:active,
.primary-btn:active,
.link-elem:active,
.outline-btn:active,
.icon-link:active,
.head-phone:active,
.whatsapp-label:active,
.head-whatsapp:active{
    transform: translateY(1px);
}

.block-title,
.section-title{
    position: relative;
    
    font: 700 36px/1.3 var(--font);
    text-transform: uppercase;
}

.block-title__inside{
    display: inline-block;
}

.block-title__inside:after{
    content: "";
    
    display: block;
    
    height: 10px;
    max-width: 150px;
    margin-top: 14px;
    
    border-radius: 2px;
    background-color: var(--warning);
}

.section-title{
    text-align: center;
}

.section-title.accent{
    color: var(--warning);
}

.section-title:after{
    content: "";
    
    display: block;
    
    height: 1px;
    max-width: 332px;
    margin: 26px auto 0;    

    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, #15C320 51.5%, rgba(255, 255, 255, 0.8) 100%);
}

.common-subtitle{
    font: 700 26px/1.3 var(--font);
    text-transform: uppercase;
}

.block-img__elem{
    position: relative;
    
    display: block;
}

.text-container p:not(:first-child),
.text-container h3 + p,
.text-container h4 + p,
.text-container h5 + p{
    margin-top: 16px;
}

.text-container h1,
.text-container h2,
.text-container h3,
.text-container h4,
.text-container h5{
    color: var(--common);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.text-container h3,
.text-container h4,
.text-container h5{
    font-size: 20px;
    
    margin-top: 26px;
}

.text-container h2{
    font-size: 24px;
}

.text-container h1{
    font-size: 28px;
}

.page-anchor{
    position: relative;
    top: -140px;
}

.fw400{
    font-weight: 400;
}

.fw500{
    font-weight: 500;
}

.fw600{
    font-weight: 600;
}

.picture-block{
    border-radius: 16px;
    
    overflow: hidden;
}

.round-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: var(--common);
    font: 400 14px/1.5 var(--font);
    text-align: center;
    text-transform: uppercase;
    
    width: 188px;
    height: 188px;
    
    border-radius: 50%;
    border: 8px solid var(--light);
    background-color: var(--accent);
    
    box-sizing: border-box;
}

.round-btn.disabled{
    pointer-events: none;
}

.round-btn__inside{
    display: block;
}

.round-btn__icon{
    position: relative;
    
    display: inline-block;
    
    line-height: 0;
}

.round-btn__img{
    width: 40px;
    
    transition: opacity var(--dur) ease-in-out;
    
    pointer-events: none;
}

.round-btn__img.default{
    
}

.round-btn__img.colored{
    position: absolute;
    left: 0;
    top: 0;
    
    opacity: 0;
}

.round-btn__label{
    display: block;
    
    margin-top: 12px;
}

@media screen and (min-width: 1025px){
    .round-btn{
        transition: color var(--dur) ease-in-out;
    }
    
    .round-btn:hover{
        color: var(--primary);
    }
    
    .round-btn:hover .round-btn__img.default{
        opacity: 0;
    }
    
    .round-btn:hover .round-btn__img.colored{
        opacity: 1;
    }
}

@media screen and (max-width: 1379px){
    .text-container p:not(:first-child),
    .text-container h3 + p,
    .text-container h4 + p,
    .text-container h5 + p{
        margin-top: 12px;
    }
}

@media screen and (max-width: 1024px){
    .block-title,
    .section-title{
        font-size: 32px;
    }
    
    .common-subtitle{
        font-size: 24px;
    }
    
    .picture-block{
        border-radius: 8px;
    }
    
    .page-anchor{
        top: -80px;
    }
}

@media screen and (max-width: 767px){
    .block-title,
    .section-title{
        font-size: 26px;
    }
    
    .block-title__inside:after{
        height: 5px;
        margin-top: 4px; 
    }
    
    .section-title:after{
        margin-top: 12px;
    }
    
    .common-subtitle{
        font-size: 20px;
    }
    
    .round-btn{
        font-size: 12px;
        
        width: 150px;
        height: 150px;
        
        border-width: 4px;
    }
    
    .round-btn__label{
        margin-top: 5px;
    }
}

/* to top btn */
.to-top{
    position: fixed;
    bottom: 56px;
    right: 7px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 61px;
    height: 61px;
    
    border-radius: 6px;
    border: 1px solid var(--common);
    background-color: var(--light);
    
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
    
    box-sizing: border-box;
    
    user-select: none;
    cursor: pointer;
    
    z-index: 15;
    
    transition: all var(--dur) ease-in-out;
}

.to-top.active{
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.to-top:active svg.to-top-icon{
    transform: translateY(-1px);
}

.to-top-icon{
    width: 9px;
    height: 25px;
}

.to-top-icon.line{
    fill: var(--common);
}

@media screen and (min-width: 1025px){
    .to-top:hover{
        border-color: var(--primary);
        background-color: var(--primary);
    }
    
    .to-top-icon.line{
        transition: all var(--dur) ease-in-out;
    }
    
    .to-top:hover .to-top-icon.line{
        fill: var(--light);
    }
}

@media screen and (max-width: 1024px){
    .to-top{
        bottom: 24px;
        
        width: 50px;
        height: 50px;        
    }
}

@media screen and (min-width: 1025px) {
    .js-section .js-animation-2,
    .js-section .js-animation-3,
    .js-section .js-animation-child,
    .js-section .js-animation-elem,
    .js-section .js-animation-first,
    .js-section .js-animation-last{
        opacity: 0;
        transform: translate3d(0, 30px, 0);
        transition: opacity 1s ease, transform 1s ease;
    }

    .js-section.active .js-animation-2,
    .js-section.active .js-animation-3,
    .js-section.active .js-animation-elem,
    .js-section.active .js-animation-first,
    .js-section.active .js-animation-last {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .js-section .js-animation-2,
    .js-section .js-animation-elem{
        transition-delay: 0.3s
    }

    .js-section .js-animation-3{
        transition-delay: 0.6s
    }

    .js-section .js-animation-last{
        transition-delay: 1s
    }
}