h1{
    padding: 66px 20px 80px;
    width: calc(85% - 40px);
    max-width: 1644px;
    margin: 0 auto;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: center;
    color: #000000;
    font-family: 'Blender Pro';
}
.section-title{
    width: calc(85% - 40px);
    max-width: 1565px;
    margin: 0 auto 20px;
    font-size: 35px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: center;
    color: #000000;
    padding: 0 20px;
}
h1.section-title, h1{
    font-size: 69px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
}
h2.section-title, h2{
    font-size: 54px;
    font-weight: 700;
    line-height: 88px;
    letter-spacing: 0em;
    text-align: center;
}
h3.section-title, h3{
    font-size: 38px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: 0em;
    text-align: left;
}
.section-title-white{
    color: #FFFFFF;
}
@media (max-width: 1600px) {
    h1.section-title{
        font-size: 44px;
    }
}
@media (max-width: 1440px) {
    h1,
    h1.section-title{
        font-size: 40px;
    }
}
@media (max-width: 900px) {
    h1,
    .section-title{
        width: calc(100% - 40px);
    }
    h1.section-title{
        font-size: 38px;
    }
}
@media (max-width: 700px) {
    h1,
    h1.section-title{
        font-size: 36px;
        line-height: 50px;
    }
}
@media (max-width: 550px) {
    h1,
    h1.section-title{
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width: 500px) {
    h1,
    h1.section-title{
        line-height: 30px;
        font-size: 24px;
    }
}
@media (max-width: 450px) {
    h1,
    h1.section-title{
        line-height: 30px;
        font-size: 24px;
    }
}
/*====SECTION NAVIGATION====*/
.section-nav{
    width: calc(85% - 40px);
    max-width: 1565px;
    padding: 0 20px;
    margin: 0 auto 48px;
}
@media (max-width: 900px) {
    .section-nav{
        width: calc(100% - 40px);
    }
}
.section-nav-list{
    display: flex;
    align-items: center;
    column-gap: 26px;
    width: fit-content;
    border-bottom: 1px solid #DEDEDE;
}
.section-nav-item{
    padding-bottom: 13px;
    cursor: pointer;
    transition: .2s linear;
    display: block;
    position: relative;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: var(--text-color-link);
}
.section-nav-item:after{
    transition: .2s linear;
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    background: var(--text-color-link-hover);
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0;
}
.section-nav-item-active{
    color: var(--text-color-black);
}
.section-nav-item-active:after{
    opacity: 1;
}
.section-nav-item:hover:after{
    opacity: .3;
}
.section-nav-item:hover{
    color: var(--brend-color);
}
@media (max-width: 550px) {
    .section-title {
        font-size: 7vw;
        text-align: left;
    }
    .section-nav-list {
        display: flex;
        align-items: flex-start;
        width: fit-content;
        border-bottom: none;
        padding-right: .5em;
        flex-direction: column;
        padding-left: 5px;
    }
    .section-nav-item {
        padding: 5px 0 5px 12px;
    }
    .section-nav-item:after{
        background: #939393;
        opacity: 1;
    }
    a.section-nav-item.section-nav-item-active:after,
    .section-nav-item:after {
        background: var(--brend-color);
        bottom: 0px;
        left: 0;
        height: 100%;
        width: 3px;
    }
    .section-nav {
        font-size: 18vw;
        align-items: flex-start;
        flex-direction: column;
    }
    .section-nav-select-container,
    .section-nav-select-inner,
    .section-nav-select{
        width: 100%;
    }

}