/*==================================================
    SECTIONS
==================================================*/

section{

    position:relative;

    padding:var(--section-padding);

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

}

.section-header.text-left{

    margin-left:0;

    text-align:left;

}

.section-header.text-center{

    text-align:center;

}

.section-header.text-right{

    margin-left:auto;

    text-align:right;

}

.section-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title{

    margin-bottom:20px;

    color:var(--title);

    font-size:35px;

    font-weight:700;

    line-height:1.2;

}

.section-description{

    color:var(--text);

    font-size:17px;

    line-height:1.8;

}

@media(max-width:991px){

    section{

        padding:80px 0;

    }

    .section-title{

        font-size:36px;

    }

}

@media(max-width:576px){

    .section-title{

        font-size:30px;

    }

}