:root{
    --text-color: #000;
    --color-white: #FFF;
    --color-grey: #8B9EA2;
    --background-color-white: #FFF;
    --background-color-grey: #A7A7A7;
    --background-color-blue: #04819B;
    --background-primary: #0093B2;
    --background-color-blue-light: #E7F0F1;
    --standart-font-size: 16px;
    --font-family-primary: "Sora", sans-serif;
    --font-family-secondary: "Taviraj", serif;
    --font-family-third: "Playfair Display", serif;
    --font-family-text: "Plus Jakarta Sans", sans-serif;
}

html{
    /*font-size: 62.5%;*/
}

body{
    --color-primary: #0093B2;
    --color-primary-light: #CFEBF1;
    font-family: var(--font-family-primary);
    margin: 0;
    padding: 0;
}
body.desporto,
body.sports-travel{
    --color-primary: #CBC793;
    --background-primary: #CBC793;
}
body.angola-travel{
    --color-primary: #CE3628;
    --background-primary: #CE3628;
}
body.luxury-travel{
    --color-primary: #2d2d2d;
    --background-primary: #2d2d2d;
    --font-family-secondary: var(--font-family-third);
}
body.incentives-travel{
    --color-primary: #223B39;
    --background-primary: #223B39;
}
body.business-travel{
    --color-primary: #8D3289;
    --background-primary: #8D3289;
}

.bg_primary{
    background-color: var(--background-primary) !important;
}
.bg_blue{
    background-color: var(--background-color-blue) !important;
}
.bg_blue2{
    background-color: var(--color-primary) !important;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    max-width: 100%;
}

.bloco{
    padding: 75px 0;
    overflow: hidden;
}
.bloco.not_overflowhidden{
    overflow: unset;
}

.cabecalho{
    margin-bottom: 75px;
    .descricao{
        font-size: 20px;
        line-height: 140.62%;
        font-weight: 300;
        margin-top: 10px;
        strong, b{
            font-weight: 700;
        }
    }
}

h2{
    font-weight: 400;
    font-size: 40px;
    font-family: var(--font-family-secondary);

    b,strong{
        font-weight: 700;
    }
}

h3{
    font-family: var(--font-family-secondary);
    font-size: 36px;
    font-weight: 300;

    b,strong{
        font-weight: 700;
    }
}

h4{
    font-family: var(--font-family-secondary);
    font-size: 36px;
    font-weight: 300;

    b,strong{
        font-weight: 700;
    }
}

h6{
    font-size: 16px;
    font-weight: 400;
}

.text,p{
    font-size: var(--standart-font-size);
}


.button{
    background-color: transparent;
    border: 1px solid var(--color-primary);
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    padding: 10px 25px;
    border-radius: 40px;
    color: var(--color-white);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.button:hover{
    background-color: 1px solid var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: var(--background-color-white);
    color: var(--color-primary);
}
.button.v1{
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.button.v1:hover{
    background-color: transparent;
    color: var(--color-primary);
}
.button.v2{
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.button.v2:hover{
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

.button.v3{
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    color: var(--color-primary);
}

.button.v3:hover{
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}
.button.v4{
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-primary-light);
    color: var(--color-primary);
}

.button.v4:hover{
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.button.v5{
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    color: var(--color-primary);
}

.button.v5:hover{
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.button.v6{
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
    color: var(--color-primary);
}

.button.v6:hover{
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.color-primary{color: var(--color-primary);}
.color-white{color: var(--color-white)}

.aparecer {
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.aparecer.apper {
    opacity: 1;
}


.deslizar_direita {
    right: -1500px;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.deslizar_direita.apper {
    right: 0;
}

.deslizar_direita img {
    max-width: 1000px;
    width: 100%;
}

.deslizar_direita.img_big img {
    width: 80%;
    max-width: 700px;
}

.deslizar_esquerda {
    left: -1500px;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.deslizar_esquerda.apper {
    left: 0;
}

.small_to_big {
    transform: scale(0);
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.small_to_big.apper {
    transform: scale(1);
}

.bottom_top_fade {
    position: relative;
    top: 100px;
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.bottom_top_fade.apper {
    top: 0;
    opacity: 1;
}

.fade_anim {
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.fade_anim.apper {
    opacity: 1;
}

@keyframes animate {
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}

@keyframes animate-two{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(100%);
    }
}
@keyframes animName {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}


.fakebanner{
    height: 134px;
}

@media screen and (max-width: 1400px) {
    h2{
        font-size: 30px;
    }
}
@media screen and (max-width: 992px) {
    .fakebanner {
        height: 118px;
    }
    .cabecalho{
        margin-bottom: 40px;
    }

    .button{
        padding: 8px 15px;
        font-size: 15px;
    }

    .bloco{
        padding: 40px 0;
    }
}
@media screen and (max-width: 500px) {
    .fakebanner {
        height: 100px;
    }
}

.mb-7{
    margin-bottom: 7rem;
}
/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.topbar{
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-primary);
    padding: 10px 0;
    width: 100%;
    z-index: 11;
    color: var(--color-white);
    height: 40px;
    font-weight: 300;
    font-size: 14px;

    .agendamento i{
        margin-right: 10px;
    }
    .agendamento svg{
        margin-right: 5px;
        width: 24px;
        margin-top: -3px;
    }

    .language{
        text-transform: uppercase;
        display: flex;
        .single_idioma{
            margin: 0 5px;
            position: relative;
            &:before{
                content: '';
                width: 1px;
                height: 15px;
                background: #fff;
                position: absolute;
                top: 4px;
                left: -5px;
            }
            &:first-child:before{
                display: none;
            }
            & .active{
                font-weight: 700;
            }
        }
    }

    .icon{
        width: 20px;
        height: 20px;
        margin-top: -2px;
        margin-left: 8px;
        & svg{
            width: 20px;
            height: 20px;
        }
    }
    @media screen and (max-width: 992px){
        &{
            .agendamento{
                font-size: 12px;
            }
        }
    }
    @media screen and (max-width: 500px){
        &{
            .agendamento{
                display: none;
            }
        }
    }
}

.navbar-container{
    position: fixed;
    top: 40px;
    background-color: var(--background-color-white);
    width: 100%;
    left: 0;
    z-index: 10;
    padding: 15px 0;
    &.bg_azul{
        background: #018BA8;
        padding: 24px 0;
    }

    .dropdown-toggle:after{
        width: 0;
        opacity: 0;
        visibility: hidden;

    }

    .navbar-header img{
        width: 210px;
        max-width: 100%;
    }

    .menu-toggler{
        position: relative;
        background: transparent;
        border: 0;
        cursor: pointer;
        display: none;

        .nav-icon1{
            width: 33px;
            height: 20px;
            position: relative;
            margin: 0 auto;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;

            span {
                display: block;
                position: absolute;
                height: 4px;
                width: 100%;
                background: var(--color-primary);
                opacity: 1;
                left: 0;
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-transition: .25s ease-in-out;
                -moz-transition: .25s ease-in-out;
                -o-transition: .25s ease-in-out;
                transition: .25s ease-in-out;

                &:nth-child(1) {top: 0px;}
                &:nth-child(2) {top: 8px;}
                &:nth-child(3) {top: 16px;}

            }
        }

    }

    .menu-toggler .nav-icon1.open span {
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;

        &:nth-child(1) {
            top: 10px;
            -webkit-transform: rotate(140deg);
            -moz-transform: rotate(140deg);
            -o-transform: rotate(140deg);
            transform: rotate(140deg);
        }

        &:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        &:nth-child(3) {
            top: 10px;
            -webkit-transform: rotate(-140deg);
            -moz-transform: rotate(-140deg);
            -o-transform: rotate(-140deg);
            transform: rotate(-140deg);
        }

    }

    .menu ul{
        padding: 0;
        margin: 0;
        list-style: none;

        .dropdown{
            margin: 0 17px;
            color: var(--text-color);
            font-weight: 300;
            padding-top: 20px;
            padding-bottom: 20px;
            font-size: 16px;

            a{
                text-decoration: none;
            }
            .dropdown-toggle i{
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
            }
            &.open{
                .dropdown-toggle i{
                    transform: rotate(-180deg);
                    -moz-transform: rotate(-180deg);
                    -webkit-transform: rotate(-180deg);
                }
            }

            &:hover .dropdown-menu-sub{
                display: block;
                visibility: visible;
            }

            .dropdown-menu-sub{
                border-radius: 0 !important;
                overflow: unset !important;
                border: none !important;
                background: transparent !important;
                display: none;
                visibility: hidden;
                width: 290px;
                position: absolute;
                top: 100%;
                padding-top: 1px;
                z-index: 2;

                .holder-dropdown-menu{
                    margin-top: 14px;
                    border-radius: 0 0 8px 8px !important;
                    overflow: hidden;
                    width: 300px;
                    border: none;
                    background: #fff;
                    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.03);

                    .single_submenu span {
                        display: block;
                        width: 100%;
                        padding: 10px 20px;
                        clear: both;
                        font-weight: 400;
                        color: #000;
                        text-align: inherit;
                        white-space: nowrap;
                        background-color: transparent;
                        border: 0;
                        -webkit-transition: all .3s;
                        -moz-transition: all .3s;
                        transition: all .3s;

                        &:hover, &.active {
                            font-weight: 700;
                            /*background-color: var(--color-primary);*/
                        }
                    }
                }
            }



            @media screen and (max-width: 991px) {

                .dropdown-menu-sub{
                    padding: 0;
                    width: 100%;

                    .holder-dropdown-menu{
                        margin-top: 0;
                        width: 100%;
                        columns: 1;
                    }
                }

            }
        }

        .dropdown.active{
            /*color: var(--color-primary);*/
            color: var(--text-color);
            font-weight: 700;
        }

        .dropdown.assistencia{
            border-radius: 32px;
            background-color: var(--color-primary);
            border: 1px solid var(--color-primary);
            color: var(--color-white);
            padding: 15px 35px;
            margin-right: 0;
            font-size: 16px;

            svg{
                margin-left: 15px;
            }
            &:hover{
                background-color: transparent;
                color: var(--color-primary);
            }
            &:hover svg path{
                fill: var(--color-primary);
            }
        }

        .dropdown.open .dropdown-menu{
            display: block;
            border: none;
            border-radius: 19px;
            box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
            top: 100%;
        }

    }
    &.bg_azul{
        .menu ul{
            .assistencia{
                background-color: transparent;
                border: 1px solid transparent;
                &:hover{
                    background-color: transparent;
                    border: 1px solid transparent;
                    color: #fff;
                    svg{
                        path{
                            fill: #fff;
                        }
                    }
                }
                svg{
                    margin-top: -10px;
                }
            }
        }
    }


    @media screen and (max-width: 500px) {

        .navbar-header img {
            width: 145px;
        }
    }

    &.bg_azul{
        .menu-toggler {
            .nav-icon1 {
                span {
                    background: #fff;
                }
            }
        }
    }
}

@media screen and (max-width: 1199px) {

    .navbar-container .menu ul .dropdown{
        font-size: 14px;
    }

}

@media screen and (max-width: 991px) {

    .navbar-container .menu-toggler{
        display:block;
    }

    .navbar-container .menu{
        padding: 5px 15px 20px;
        display: none;
        text-align: left;
        position: absolute;
        top: 100%;
        right: 15px;
        background-color: #fff;
        width: 300px;
        max-width: Calc(100% - 30px);
        border-radius: 0 0 8px 8px;
    }

    .navbar-container .menu ul {

    }
    .navbar-container .menu ul .dropdown {
        margin: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        .dropdown-menu-sub{
            position: relative;
            left: unset;
            top: unset;
            img{
                width: 100px;
            }
        }
    }
    .navbar-container .menu ul .dropdown.assistencia {
        width: auto;
        text-align: center;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 525px) {

    .topbar .language{
        padding-left: 20px;
    }

}

@media screen and (max-width: 350px) {

    .topbar .language{
        padding-left: 15px;
    }

}


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/

.banner {
    .holder_slider {

    }
    .single_banner {
        position: relative;
        height: 80vh;
        background-size: cover;
        background-position: center;
        .holder_content_img{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            video{
                position: absolute;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
        .conteudo {
            position: absolute;
            width: 100%;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            color: var(--color-white);

            .descricao {
                font-size: 20px;
                font-family: var(--font-family-primary);
                font-weight: 300;
                max-width: 650px;
                img{
                    width: auto;
                    max-width: 400px;
                    margin-bottom: 5px;
                    max-height: 160px;
                }

                b, strong {
                    font-weight: 600;
                }
                h1,
                h2{
                    font-size: 40px;
                    font-family: var(--font-family-secondary);
                    font-weight: 300;
                    margin-bottom: 10px;
                }
            }
            button {
                /*background: var(--color-primary);
                color: var(--color-white);
                border: 1px solid var(--color-primary);
                border-radius: 43px;
                font-weight: 400;
                font-size: 16px;
                padding: 10px 23px;*/
                margin-top: 40px;
                padding: 15px 35px;
            }
            button:hover {
                background: var(--color-white);
                color: var(--color-primary);
                border: 1px solid var(--color-white);
            }

        }
    }
    .owl-dots{
        position: absolute;
        bottom: 120px;
        padding: 0 15px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        .owl-dot{
            width: 19px;
            height: 19px;
            border-radius: 50%;
            border: 1px solid #fff;
            margin-right: 9px;
            &.active{
                background: #fff;
            }
        }
    }
    &.banner_meio{
        .owl-dots{
            bottom: 80px;
        }
    }

    @media screen and (max-width: 1200px){
        & .single_banner {
            .conteudo {
                .descricao {
                    h1,
                    h2 {
                        font-size: 35px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 991px){

        & .single_banner {
            height: 400px;
            .conteudo {
                .descricao {
                    font-size: 18px;
                    h1,
                    h2 {
                        font-size: 30px;
                    }
                }
            }
        }

        .owl-dots{
            bottom: 50px;
            text-align: center;
            .owl-dot{
                width: 15px;
                height: 15px;
            }
        }
    }

    @media screen and (max-width: 767px){

        & .single_banner {
            height: 350px;
            .conteudo {
                .descricao {
                    font-size: 16px;
                    h1,
                    h2 {
                        font-size: 25px;
                    }
                }
            }
        }
    }

}
.banner_servicos{
    position: relative;
    .svg_banner{
        position: absolute;
        z-index: 9;

        .rotate{
            animation: animName 10s linear infinite;
        }
    }
}
@media (min-width: 576px){
    .owl-dots{
        max-width: 540px;
    }
}
@media (min-width: 768px){
    .owl-dots{
        max-width: 720px;
    }
}
@media (min-width: 992px){
    .owl-dots{
        max-width: 960px;
    }
}
@media (min-width: 1200px){
    .owl-dots{
        max-width: 1140px;
    }
}
@media (min-width: 1400px){
    .owl-dots{
        max-width: 1320px;
    }
}

.bloco-numeros{
    background: rgba(0, 147, 178, 0.4);
    padding: 130px 0;
    &.less_padding{
        padding: 85px 0;
    }

    .holder_numeros{
        margin: 0 -15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .single_numero{
        padding: 30px 15px;
        width: Calc(100% / 3);
    }
    .number-holder{
        .zona_numero{
            font-weight: 600;
            font-size: 35px;
            justify-content: center;
            display: flex;
            flex-wrap: wrap;
            .number{
            }
            span{
                margin: 0 5px;
            }
        }

        .title{
            font-family: var(--font-family-secondary);
            font-weight: 300;
            font-size: 24px;
        }

    }

    @media screen and (max-width: 1200px) {
        .number-holder{
            font-size: 80%;
        }
    }
    @media screen and (max-width: 992px) {
        & {
            padding: 60px 0;
        }
        &.less_padding{
            padding: 40px 0;
        }
        .number-holder{
            font-size: 70%;
            padding: 30px 0;
        }


        .single_numero{
            width: Calc(100% / 2);
        }
    }
    @media screen and (max-width: 767px) {
        .holder_numeros{
            margin: 0;
        }


        .single_numero{
            width: 100%;
        }
    }
}
.banner.interno .holder_slider {
    .single_banner {
        height: 70vh;
    }
    @media screen and (max-width: 991px){

        & .single_banner {
            height: 400px;
        }
    }

    @media screen and (max-width: 767px){

        & .single_banner {
            height: 350px;
        }
    }
}
.banner-fim{
    background: #D5E2E4;
    padding: 100px 0;
}
.banner-fim.centro h2{
    font-weight: 700;
}

.banner-fim .descricao{
    font-weight: 300;
    font-size: 20px;
    line-height: 140.62%;
    color: #FFFFFF;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .banner-fim{
        padding: 80px 0;
        font-size: 80%;
    }
    .banner-fim button{
        font-size: 16px;
    }
}
@media screen and (max-width: 578px) {
    .banner-fim{
        padding: 60px 0;
        font-size: 60%;
    }
    .banner-fim button{
        font-size: 14px;
    }
}

.bloco-slider{
    .seta{
        margin-top: 20px;
    }
    @media screen and (max-width: 992px) {
        .seta{
            display: none;
        }
    }
}

.faixa_candidatura{
    background: var(--color-primary);
    h2{
        font-style: italic;
    }
    .holder_faixa_candidatura{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    @media screen and (max-width: 992px){
        .titulo{
            width: 100%;
            text-align: center;
        }
        .botao{
            width: 100%;
            text-align: center;
            margin-top: 20px;
        }
    }
}
.bloco_testemunhos {
    .cabecalho{
        margin-bottom: 25px;
    }
    .holder_slider_testemunhos{
        .slider_testemunhos{
            max-width: 940px;
            margin: 0 auto;
            .conteudo{
                font-weight: 300;
                font-size: 20px;
                line-height: 159%;
                color: var(--color-text);
                max-width: 765px;
                margin: 0 auto;
            }
            .descricao,
            .nome{
                font-weight: 700;
                font-size: 18px;
                line-height: 120%;
                color: var(--color-text);
            }
            .nome{
                margin-top: 20px;
            }
            .owl-dots{
                text-align: center;
                margin-top: 30px;
                .owl-dot{
                    width: 13px;
                    height: 13px;
                    margin: 3px;
                    background-color: transparent;
                    border: 1px solid var(--color-primary);
                    border-radius: 50%;
                    &.active{
                        background-color: var(--color-primary);
                    }
                }
            }

            @media screen and (max-width: 1400px){
                & .conteudo{
                    font-size: 18px;
                }
                & .descricao,
                & .nome{
                    font-size: 16px;
                }
            }
            @media screen and (max-width: 992px){
                & .conteudo{
                    font-size: 16px;
                }
                & .descricao,
                & .nome{
                    font-size: 14px;
                }
            }
        }
    }
}


.bloco-conheca{

    .single-conheca{
        padding: 0 15px;

        @media screen and (max-width: 1199px) {

            &{
                font-size: 80%;
                padding: 0 15px 0 0;
            }
        }
        @media screen and (max-width: 991px) {

            &{
                font-size: 70%;
            }
            & a{
                font-size: 11px !important;
            }
        }
        @media screen and (max-width: 576px) {

            &{
                font-size: 60%;
            }
            & a{
                font-size: 9px !important;
            }
        }
        @media screen and (max-width: 440px) {

            &{
                font-size: 55%;
            }
            .content {
                padding: 0 15px;
                bottom: 15px;
            }
        }
    }
    .box-conheca{
        position: relative;

        .img {
            position: relative;
            height: 0;
            padding-bottom: 81%;
            overflow: hidden;
            img{
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                -moz-transform: translate(-50%,-50%);
                -webkit-transform: translate(-50%,-50%);
            }
        }

        .content{
            position: absolute;
            width: 100%;
            padding: 0 30px;
            bottom: 30px;
            left: 0;
        }

        .botao{
            margin-top: 20px;
        }
    }


    @media screen and (max-width: 1400px) {

        .box-conheca{
            h3{
                font-size: 30px;
            }
        }
    }

    @media screen and (max-width: 1200px) {

        .box-conheca{
            h3{
                font-size: 25px;
            }
        }
    }
    @media screen and (max-width: 991px) {
        .owl-stage{padding-left:0px !important;}
        h2{
            font-size: 25px;
        }

        .box-conheca{
            h3{
                font-size: 20px;
            }
        }
    }

    @media screen and (max-width: 500px) {

        .box-conheca{
            .img {
                padding-bottom: 100%;
            }


            .botao{
                margin-top: 10px;
            }
            h3{

                font-size: 18px;
            }

        }
    }
}

.bloco-servicos{
    position: relative;
    .zona_texto{
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        width: 100%;
        .holder_texto{
            width: 300px;
        }
    }
    .slider_servicos_holder{
        width: 65%;
        margin-left: auto;
        position: relative;
        z-index: 0;
    }

    .owl-stage{padding-left:0px !important;}
    .owl-nav{
        width: 100%;
        position: absolute;
        top: 10%;
        right: 70px;
        .owl-next,
        .owl-prev{
            background: #fff !important;
            color: var(--color-primary) !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 25px !important;
            z-index: 3;
            position: absolute;
            svg{
                width: 30px;
                path{
                    fill: var(--color-primary);
                }
            }
        }
        .owl-next:after,
        .owl-prev:after{
            content: '';
            position: absolute;
            width: 0px;
            height: 0px;
            background: rgba(255,255,255,0.5);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            border-radius: 50%;
            transition: all .6s ease-in-out;
            -moz-transition: all .6s ease-in-out;
            -webkit-transition: all .6s ease-in-out;
            z-index: -1;
        }
        .owl-next:hover:after,
        .owl-prev:hover:after{
            width: 90px;
            height: 90px;
        }
        .owl-prev:before,
        .owl-next:before{
            content: '';
            position: absolute;
            width: 50px;
            height: 50px;
            border: 1px dashed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 2;
        }
        .owl-next{
            right: 0;
        }
        .owl-prev{
            left: 45px;
        }
        .owl-prev svg{
            transform: rotate(-180deg);
        }
    }
    h2 b{
        color: var(--color-primary)
    }

    .slide-servico{
        padding: 0 10px;

        .img{
            padding-bottom: 170%;
            overflow: hidden;
            position: relative;
            img{
                object-fit: cover;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                -moz-transform: translate(-50%,-50%);
                -webkit-transform: translate(-50%,-50%);
                position: absolute;
                width: 100%;
                height: 100%;
            }
        }
        .titulo{
            position: absolute;
            top: 5%;
            left: 0;
            width: 100%;
            padding: 0 45px;
            h3{
            }
            img{
                width: 45%;
                min-width: 160px;
            }
        }

        h6{
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 5px;
        }
        h4{
            font-size: 30px;
            margin-bottom: 10px;
        }

        .content{
            position: absolute;
            bottom: 5%;
            left: 0;
            width: 100%;
            padding: 0 45px 60px;
            font-family: var(--font-family-text);
            font-style: italic;
            font-size: 14px;
            line-height: 150%;
            font-weight: 300;
            height: 300px;
            strong, b{
                font-weight: 700;
            }
            p{
                /*display: none;*/
                font-family: var(--font-family-text);
                font-style: italic;
                font-size: 14px;
                line-height: 150%;
                font-weight: 300;
            }
            .button{
                margin-top: 15px;
                position: absolute;
                bottom: 0;
                left: 45px;
            }
        }

        &:hover p{
            display: block;
        }

        @media screen and (max-width: 1400px) {
            & h4 {
                font-size: 24px;
                margin-bottom: 10px;
            }

            & .content,
            & .titulo {
                padding: 0 25px;
            }
            & .content{

                .button{
                    left: 25px;
                }
            }
        }
        @media screen and (max-width: 991px) {
            &{
                padding: 0 15px 0 0;
            }
        }
        @media screen and (max-width: 440px) {
            .content, .titulo{
                padding: 0 20px;
            }
            .content{
                height: 365px;

                .button{
                    left: 20px;
                }
            }
            .img {
                padding-bottom: 175%;
            }
        }
        @media screen and (max-width: 380px) {

            .img {
                padding-bottom: 195%;
            }
        }

    }

    @media screen and (min-width: 1921px) {
        .slider_servicos_holder{
            width: 55%;
        }
    }
    @media screen and (max-width: 1200px) {

        @media screen and (max-width: 1199px) {
            .slider_servicos_holder {
                width: 55%;
            }
        }
        & .zona_texto {
            .holder_texto {
                width: 250px;
            }
        }
        & .owl-nav {
            right: 70px;
        }
    }
    @media screen and (max-width: 991px) {
        .owl-nav{
            top: 45%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
        }
        .text{
            margin-bottom: 30px;
        }
        & .zona_texto {
            position: relative;
            top: unset;
            transform: unset;
            -moz-transform: unset;
            -webkit-transform: unset;
            margin-bottom: 40px;
            .holder_texto {
                width: 100%;
                text-align: center;
            }
        }
        .slider_servicos_holder{
            width: 100%;
            padding-left: 15px;
        }

    }
    @media screen and (max-width: 578px) {
        & .owl-nav {
            right: 43px;
        }

    }
}

@media screen and (max-width: 991px) {

    .bloco-servicos h2{
        font-size: 30px;

    }

}

.bloco-frases {
    position: relative;
    overflow: hidden;

    .scroll {
        width: Calc(100% + 500px);
        display: flex;
        color: #0093B233;
        font-family: var(--font-family-secondary);
        font-size: 64px;
        font-style: italic;
        font-weight: 400;
        line-height: 115px;

        > div {
            white-space: nowrap;
            animation: animate 18s linear infinite;
            position: relative;
            padding: 0 10px;

            span {
                display: block;
            }
        }

        &:nth-child(even) {
            justify-content: flex-end;
        }

        &:nth-child(even) > div {
            animation: animate-two 20s linear infinite;
        }
    }

    @media screen and (max-width: 992px){
        .scroll {
            font-size: 40px;
            line-height: 64px;
        }
    }
}

#homepage {


    .bloco-experiencia {
        background-image: url('/site/imagens/fundo-experiencia.jpg');
        background-size: cover;

        .experiencia-grande {
            position: relative;

            .txt {
                position: absolute;
                bottom: 80px;
                left: 100px;
                width: Calc(100% - 60px);
                color: var(--color-white);
                font-family: var(--font-family-secondary);

                h3 {
                    font-size: 48px;
                    font-style: italic;
                    font-weight: 600;
                }

                h4 {
                    font-family: var(--font-family-secondary);
                    font-size: 40px;
                    font-weight: 400;
                }
            }


            @media screen and (max-width: 1200px) {
                .txt {
                    bottom: 30px;
                    left: 30px;
                }
            }

            @media screen and (max-width: 991px) {
                &{
                    font-size: 70%;
                }
            }

            @media screen and (max-width: 576px) {
                &{
                    font-size: 60%;
                }
                .txt {
                    bottom: 15px;
                    left: 15px;
                    width: Calc(100% - 30px);
                }
            }

            @media screen and (max-width: 440px) {
                &{
                    font-size: 50%;
                }
            }
        }

        .experiencia {
            flex: 1;
            background-color: var(--background-color-white);
            margin-bottom: 15px;
            padding: 25px;
            display: flex;
            align-items: flex-end;
            font-size: 24px;

            &:last-child {
                margin-bottom: 0px;
            }

            img {
                margin-bottom: 10px;
            }


            @media screen and (max-width: 991px) {
                &{
                    font-size: 120%;
                    justify-content: center;
                    text-align: center;
                }
            }

        }

        @media screen and (max-width: 991px) {
            h2{
                font-size: 30px;
            }
        }
    }



    .gradient-background{
        background: linear-gradient(67.74deg, rgba(0, 147, 178, 0.5) -13.53%, rgba(0, 0, 0, 0.98) 40.61%, rgba(0, 0, 0, 0.92) 79.58%, rgba(0, 147, 178, 0.41) 108.27%);
    }


    .bloco-clientes{
        position: relative;
        .info{
            position: absolute;
            width: 100%;
            left: 0;
            top: 0;
            transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
           -webkit-transition: all .3s ease-in-out;
            .holder_info{
                width: 350px;
            }
            &.hide{
                opacity: 0;
                visibility: hidden;
            }
        }
        .imagem{
            width: Calc(80% - 350px);
            margin-left: auto;
            transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;

            &.full{
                width: 100%;
            }
        }
        .slider-clientes-home{

            .coluna{
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                align-content: center;
                width: 205px;

                .slide-cliente{
                    background: rgba(217, 217, 217, 0.46);
                    box-shadow: 0px 0px 23px 3px rgba(242, 242, 242, 0.5);
                    border-radius: 8px;
                    display: flex;
                    width: 175px;
                    height: 180px;
                    align-items: center;
                    justify-content: center;
                    padding: 25px;
                    margin: 15px;
                }
            }
            .owl-item:nth-child(odd){
                .coluna{
                    padding-top: 115px;
                }
            }

            &:not(.owl-carousel){
                display: flex;
            }
        }


        @media screen and (max-width: 991px) {
            h2{
                font-size: 30px;
            }
        }
    }


    .bloco_testemunhos{
        background-color: var(--background-color-blue-light);
        .holder_slider_testemunhos {
            .slider_testemunhos {
                .conteudo {
                    color: var(--color-primary);
                }

                .descricao,
                .nome {
                    color: var(--color-primary);
                }

                .nome {
                    margin-top: 20px;
                }
            }
        }
    }
    .banner-fim{
        .button{
            width: 315px;
            max-width: 100%;
        }
    }
    @media screen and (max-width: 1399px) {

        .bloco-experiencia .experiencia-grande,
        .bloco-experiencia .experiencia-grande .img {
            height: 100%;
        }

        .bloco-experiencia .experiencia-grande .img img {
            height: 100%;
            object-fit: cover;
        }

    }

    @media screen and (max-width: 991px) {

        .banner .holder_slider .single_banner .conteudo .descricao {
            font-size: 28px;
        }

        .banner .holder_slider .single_banner .conteudo button {
            font-size: 14px;
        }

        .bloco-experiencia .experiencia {
            margin-bottom: 0px;
            margin-top: 15px;
        }

        .bloco-experiencia {
            .experiencia-grande {
                .txt {
                    h3 {
                        font-size: 40px;
                    }
                }
            }
        }
        .bloco-clientes{
            .info {
                position: relative;
                .holder_info {
                    width: 100%;
                }

                &.hide{
                    opacity: 1;
                    visibility: visible;
                }
            }
            .imagem {
                width: 100%;
                margin-left: auto;
            }
        }

        .bloco-servicos h2{
            font-size: 30px;

        }

    }

    @media screen and (max-width: 767px) {

        .bloco-experiencia {
            .experiencia-grande {
                .txt {
                    h3 {
                        font-size: 35px;
                    }
                }
            }
        }
        .bloco-clientes{
            .info{
                .holder_info {
                    width: 100%;
                    padding-bottom: 20px;
                }
            }
            .imagem {
                width: 100%;
                margin-left: auto;
            }
            .slider-clientes-home{
                .coluna{
                    width: 170px;
                    .slide-cliente {
                        width: 140px;
                        height: 140px;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 567px) {

        .bloco-experiencia {
            .experiencia-grande {
                .txt {
                    h3 {
                        font-size: 30px;
                    }
                }
            }
        }
    }

}

/*==================================================================================================*/
/*DESPORTO*/
/*==================================================================================================*/

.pagina_servico{
    overflow: hidden;
    .banner .holder_slider {
        .single_banner {
            height: 700px;
            position: relative;
            .holder_content_img{
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                video{
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            }
            .mask{
                position: absolute;
                left: 0;
                width: 80%;
                top: 0;
                bottom: 0;
                /*background: linear-gradient(90deg, rgba(20,25,26,1) 0%, rgba(0,0,0,0) 100%);*/
            }
        }

    }

    .banner.banner_meio .single_banner{
        height: 600px;
    }
    .banner-fim{
        background: var(--color-primary);

        h2{
          color: var(--color-white);
            font-family: var(--font-family-third);
            font-weight: 300;
        }
        &.centro h2{
            font-weight: 700;
        }
        button.v1 {
            background-color: var(--color-white);
            color: var(--color-primary);
        }
    }

    @media screen and (max-width: 1400px) {
        .banner .holder_slider {
            .single_banner {
                height: 600px;
                position: relative;
            }
        }
    }
    @media screen and (max-width: 1200px) {
        .banner .holder_slider {
            font-size: 82.5%;
            .single_banner {
                height: 500px;
                position: relative;
                .descricao{
                    img{
                        max-width: 200px;
                    }
                }
            }
            .owl-dots {
                bottom: 70px;
            }
        }
    }
    @media screen and (max-width: 992px) {
        .banner .holder_slider {
            font-size: 72.5%;
            .single_banner {
                height: 400px;
                position: relative;
            }
            .owl-dots {
                bottom: 70px;
                .owl-dot{
                    width: 15px;
                    height: 15px;
                    margin-right: 5px;
                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        .banner .holder_slider {
            font-size: 62.5%;
            .single_banner {
                height: 300px;
                position: relative;
            }
            .owl-dots {
                bottom: 50px;
            }
        }
    }
    @media screen and (max-width: 767px) {
        .banner .holder_slider {
            font-size: 52.5%;
            .single_banner {
                height: 350px;
            }
            .owl-dots {
                bottom: 40px;
            }
        }
        .banner.banner_meio .holder_slider {
            .descricao{
                img{
                    max-height: 80px;
                }
            }
            .owl-dots {
                bottom: 20px;
            }
        }
    }
}
.a_gestao{
    .cabecalho{
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        h2{
            color: #fff;
            font-weight: 300;
            text-align: center;
            margin-bottom: 30px;
            font-style: italic;
            em{
                font-weight: 700;
                color: var(--color-primary);
            }
        }
        .descricao{
            font-size: 20px;
            line-height: 140.62%;
            text-align: center;
            color: #FFFFFF;
            font-weight: 300;
            strong, b{
                font-weight: 700;

            }
        }
    }

    .d-flex{
        flex-wrap: wrap;
        justify-content: center;
    }
    .single_gestao{
        width: Calc(100% / 3);
        padding: 35px 15px;
        .holder_single_gestao{
            text-align: center;
            .img{
                margin-bottom: 26px;
                img{
                    width: 56px;
                    height: 54px;
                    object-fit: contain;
                }
            }
            .content{
                .texto{
                    font-size: 20px;
                    line-height: 115%;
                    font-weight: 300;
                    max-width: 325px;
                    margin: 10px auto 0 auto;
                }
            }
        }
    }
}
@media screen and (max-width: 991px){

    .a_gestao{
        .single_gestao {
            width: Calc(100% / 2);

            .holder_single_gestao {
                .content {
                    .texto {

                        font-size: 16px;
                    }
                }
            }
        }
    }
    .a_gestao h3{
        font-size: 22px;
    }
}
@media screen and (max-width: 567px){
    .a_gestao{
        .single_gestao {
            width: 100%;
        }
    }
}
.pagina_servico{


    .assistencia{
        .cabecalho{
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            h2{
                color: var(--text-color);
            }
            .descricao{
                font-size: 20px;
                line-height: 140.62%;
                text-align: center;
                color: var(--text-color);
                font-family: var(--font-family-text);
                font-weight: 300;
            }
        }

        .d-flex{
            flex-wrap: wrap;
            justify-content: center;
        }
        .single_gestao{
            width: Calc(100% / 4);
            padding: 35px 15px;
            h3{
                color: var(--color-primary);
            }
            .holder_single_gestao{
                text-align: center;
                .img{
                    margin-bottom: 26px;
                    img{
                        width: 56px;
                        height: 54px;
                        object-fit: contain;
                    }
                }
                .content{
                    .texto{
                        font-size: 20px;
                        line-height: 115%;
                        font-weight: 200;
                    }
                }
            }
        }
    }

    .bloco_tres_imagens{
        .holder_imagens{
            display: flex;
            flex-wrap: wrap;
            .coluna{
                width: 50%;
            }
            .single_imagem{
                padding: 10px;
                .holder_single_imagem{
                    position: relative;
                    .img{
                        overflow: hidden;
                        position: relative;
                        height: 0;
                        padding-bottom: 50%;
                        &.first{
                            padding-bottom: Calc(100% + 20px);
                        }
                        img{
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%,-50%);
                            -moz-transform: translate(-50%,-50%);
                            -webkit-transform: translate(-50%,-50%);
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    .conteudo{
                        position: absolute;
                        bottom: 40px;
                        left: 50px;
                        color: #fff;
                        font-family: var(--font-family-secondary);
                        font-size: 32px;
                        line-height: 100%;
                        font-style: italic;
                        right: 50px;
                        font-weight: 300;
                        strong, b{
                            font-weight: 700;
                        }
                    }
                }
            }
        }
    }

    .zona_o_que_move{
        h2{
            color: var(--color-primary);
        }
        .o_que_move{
            position: relative;
            margin-top: 98px;
            .cliente{
                width: Calc(100% / 3);
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                text-align: center;
                padding: 0 15px;
                max-width: 336px;
                .nome{
                    font-style: italic;
                    font-weight: 600;
                    font-size: 36px;
                    line-height: 43px;
                    color: var(--color-primary);
                    font-family: var(--font-family-third);
                }
                .descricao{

                }
            }
            .holder_move{
                display: flex;
                flex-wrap: wrap;
                .coluna{
                    width: Calc(100% / 3);
                    &.imagem_centro{
                        order: 2;
                    }
                    &.coluna0{
                        order: 1;
                        text-align: right;
                    }
                    &.coluna2{
                        order: 3;
                    }
                }
                .single_servico{
                    margin-bottom: 100px;
                    position: relative;
                    &:after{
                        top: 0;
                        position: absolute;
                        content: '';
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        border: 1px solid var(--color-primary);
                    }
                    .nome{
                        font-family: var(--font-family-third);
                        font-style: italic;
                        font-weight: 400;
                        font-size: 24px;
                        line-height: 29px;
                        color: #000000;
                    }
                    .descricao{
                        font-style: italic;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 20px;
                        color: #000000;
                    }
                }

                .coluna0{
                    .single_servico{
                        padding-right: 45px;
                        &:first-child:after{
                            background: #fff;
                        }
                        &:last-child{
                            margin-right: -90px;
                            margin-bottom: 0;
                        }
                        &:after{
                            right: -31px;
                            top: -11px;
                        }
                    }
                }
                .coluna2{
                    .single_servico{
                        padding-left: 45px;
                        &:first-child:after{
                            background: #fff;
                        }
                        &:last-child{
                            margin-left: -90px;
                            margin-bottom: 0;
                        }
                        &:after{
                            left: -31px;
                            top: -11px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        .a_gestao,
        .assistencia{
            font-size: 80%;
        }

        .bloco_tres_imagens{
            .holder_imagens{
                .single_imagem{
                    .holder_single_imagem{
                        .conteudo{
                            font-size: 28px;
                        }
                    }
                }
            }
        }

        .zona_o_que_move {
            & .o_que_move {
                .cliente {
                    max-width: 247px;
                }

                .holder_move {
                    .single_servico {
                        margin-bottom: 92px;
                    }

                    .coluna0 {
                        .single_servico {
                            &:last-child {
                                margin-right: -109px;
                            }
                        }
                    }

                    coluna2 {
                        .single_servico {
                            &:last-child {
                                margin-left: -109px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1200px){
        .a_gestao,
        .assistencia{
            font-size: 85%;
        }

        .parceiros {
            font-size: 85%;
        }

        .bloco_tres_imagens{
            .holder_imagens{
                .single_imagem{
                    .holder_single_imagem{
                        .conteudo{
                            left: 30px;
                            right: 30px;
                            bottom: 30px;
                        }
                    }
                }
            }
        }

        .zona_o_que_move {
            .o_que_move {
                .cliente {
                    position: relative;
                    left: unset;
                    transform: unset;
                    -moz-transform: unset;
                    -webkit-transform: unset;
                    margin: 0 auto 40px;
                    max-width: 100%;
                }
                .holder_move{
                    .single_servico{
                        margin-bottom: 50px;

                        .descricao {
                            font-size: 15px;
                        }
                    }
                    .coluna0 {
                        .single_servico {
                            &:last-child {
                                margin-right: -60px;
                            }
                        }
                    }
                    .coluna2 {
                        .single_servico {
                            &:last-child {
                                margin-left: -60px;
                            }
                        }
                    }
                }
            }
        }

    }
    @media screen and (max-width: 991px){

        .banner_servicos{
            .svg_banner{
                display: none;
            }
        }
        .a_gestao,
        .assistencia{
            .single_gestao {
                width: Calc(100% / 2);

                .holder_single_gestao {
                    .content {
                        .texto {

                            font-size: 16px;
                        }
                    }
                }
            }
        }
        .a_gestao h3,
        .assistencia h3{
            font-size: 22px;
        }

        .parceiros {
            .cabecalho {
                order: 1;
                text-align: center;
                width: 100%;
                padding: 0;
                border: none;
                h3{
                    font-size: 20px;
                }
            }
            .holder_parceiros {
                width: 100%;
                order: 2;
            }
        }


        .bloco_tres_imagens{
            .holder_imagens{
                .single_imagem{
                    .holder_single_imagem{
                        .conteudo{
                            left: 20px;
                            right: 20px;
                            bottom: 20px;
                            font-size: 20px;
                        }
                    }
                }
            }
        }
        .zona_o_que_move {
            .o_que_move {
                .cliente{
                    width: 100%;
                    .nome{
                        font-size: 30px;
                    }
                    .descricao{
                        font-size: 18px;
                    }
                }
                .holder_move {
                    .coluna {
                        width: 100%;
                        &.imagem_centro{
                            display: none;
                        }
                    }
                    .single_servico {
                        width: 300px;
                        max-width: 100%;
                        margin: 0 auto;
                        text-align: left;
                        margin: 0 auto 40px auto !important;
                        padding-right: 0 !important;
                        padding-left: 65px !important;
                        &:after{
                            left: 0 !important;
                            right: unset !important;
                            top: 0px !important;
                            background: #fff;
                        }
                        &:not(.last):before{
                            content: '';
                            position: absolute;
                            width: 1px;
                            height: Calc(100% + 40px);
                            top: 50px;
                            border-left: 1px dotted var(--color-primary);
                            left: 25px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px){


        .bloco_tres_imagens{
            .holder_imagens{
                .coluna{
                    width: 100%;
                }
                .single_imagem{
                    padding: 5px 0;
                    .holder_single_imagem{
                        position: relative;
                        overflow: hidden;
                        .img{
                            position: absolute;
                            padding-bottom: 0;
                            height: 100%;
                            width: 100%;
                            overflow: hidden;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%,-50%);
                            -moz-transform: translate(-50%,-50%);
                            -webkit-transform: translate(-50%,-50%);
                        }
                        .conteudo{
                            position: relative;
                            bottom: unset;
                            left: unset;
                            right: unset;
                            padding: 30% 15px 15px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        .a_gestao,
        .assistencia{
            .single_gestao {
                width: 100%;
            }
        }
    }
    @media screen and (max-width: 400px){
        .a_gestao,
        .assistencia{
            .single_gestao {
                width: 100%;
            }
        }

        .parceiros {
            .holder_parceiros {
                .single_parceiro {
                    padding: 20px 10px;
                }
            }
        }
    }
}

#desporto{
    .banner_servicos{
        .svg_banner{
            bottom: -126px;
            right: 15px;
        }
        &.banner_meio{
            .owl-dots{
                .owl-dot{
                    border-color: #CBC793;
                    &.active{
                        background: #CBC793;
                    }
                }
            }
        }
        .zona_logo{
            position: relative;
            z-index: 0;
            width: 100%;
            top: 30%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            display: block;
            .logo{
                width: auto;
                position: relative;
                z-index: 0;
                max-width: 700px;
                max-height: 215px;
            }
        }
        .conteudo {
            z-index: 1;
            top: unset;
            bottom: 120px;
        }
    }

    .gradient-background {
        background: linear-gradient(67.74deg, #CBC793 -13.53%, rgba(0, 0, 0, 0.98) 21.67%, rgba(0, 0, 0, 0.92) 79.29%, #CBC793 108.27%);
    }

    .a_gestao{
        background-image: url(/site/imagens/background_squares_sports.webp);
        .single_gestao{
            .holder_single_gestao{
                padding: 50px 20px;
                background: #EFDBB2;
                .content{
                    h3{
                        color: #AB2328;
                        font-size: 30px;
                    }
                }
            }
        }
        .holder_a_gestao{
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            .info_zona{
                padding: 75px 0;
                text-align: center;
                position: relative;
                &:before{
                    content: '';
                    width: 2000px;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    right: 0;
                    background-image: url(/site/imagens/fundo_titulos.webp);
                    z-index: 0;
                }
                img{
                    position: absolute;
                }
                .meninas{
                    width: 631px;
                    top: -351px;
                    z-index: 2;
                    right: 89px;
                }
                .estadio{
                    width: 419px;
                    right: -40px;
                    top: -300px;
                }
                .guardaredes{
                    width: 577px;
                    right: -248px;
                    z-index: 3;
                    top: -125px;
                }
                .bola{
                    width: 313px;
                    right: 360px;
                    bottom: -210px;
                }
                .holder_info_zona{
                    width: 683px;
                    margin: 0 auto;
                    max-width: 100%;
                    z-index: 2;
                    position: relative;
                }
                h2{
                    color: var(--color-white);
                    font-family: var(--font-family-primary);
                    font-style: normal;
                    font-weight: 600;
                    font-size: 37px;
                    line-height: 110%;
                }
            }
            .coluna{
                width: 100%;
                .d-flex{
                    align-items: flex-end;
                    justify-content: end;
                }
                .single_gestao{
                    width: Calc(100% / 3);
                }
                &.paddingright{
                    padding-right: 30px;
                }
            }
            &.w50{
                .coluna{
                    width: 50%;
                    .d-flex{
                        justify-content: center;
                    }
                    .single_gestao{
                        width: 50%;
                    }
                }
            }
        }
    }

    .bloco-numeros{
        background-color: #000000;
        background-image: url(/site/imagens/background_squares_sports.webp);
        background-size: 100% auto;
        .single_numero{
            width: Calc(100% / 3);
        }
        .number-holder, .number{
            color: var(--text-color);
        }

        @media screen and (max-width: 992px){
            .single_numero{
                width: Calc(100% / 2);
            }
        }
        @media screen and (max-width: 767px){
            .single_numero{
                width: 100%;
                padding: 15px;
            }
        }
    }


    .assistencia{
        background: #F7F7F5;
        .cabecalho{
            h2{
                color: var(--text-color);
            }
            .descricao{
                color: var(--text-color);
                font-family: var(--font-family-text);
            }
        }
        .single_gestao{
            h3{
                color: var(--color-primary);
            }
        }
    }

    .parceiros{
        .d-flex{
            flex-wrap: wrap;
        }
        .cabecalho{
            width: 45%;
            order: 2;
            text-align: right;
            border: 1px solid #CBC793;
            padding: 60px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;

            h2{
                color: var(--color-primary);
                width: 100%;
            }
            .descricao{
                font-size: 20px;
                line-height: 140.62%;
                color: #000;
                font-family: var(--font-family-text);
                font-weight: 300;
                width: 100%;
            }
        }
        .holder_parceiros{
            width: 55%;
            display: flex;
            flex-wrap: wrap;
            order: 1;
            .single_parceiro{
                width: Calc(100% / 3);
                padding: 20px;
            }
        }
    }

    .banner-fim{

        h2{
            color: var(--text-color);
        }
        button.v1 {
            background-color: var(--text-color);
            color: var(--color-primary);
            border: 1px solid var(--text-color);
        }
        button.v1:hover {
            background-color: transparent;
            color: var(--text-color);
        }
        &.viaje_campeao{
            background-image: url(/site/imagens/fundo_viage_como_campeao.webp);
            background-size: 100% auto;
            .info_banner{
                background-image: url(/site/imagens/fundo_titulos.webp);
                padding: 70px 30px;
                position: relative;
                max-width: 1000px;
                margin: 0 auto;
                .jogador1,.jogador2{
                    position: absolute;
                }
                .jogador1{
                    left: -170px;
                    top: -140px;
                    width: 480px;
                }
                .jogador2{
                    right: -220px;
                    top: -131px;
                    width: 450px;
                }
            }
            h2{
                font-family: var(--font-family-primary);
                font-style: normal;
                font-weight: 600;
                font-size: 48px;
                line-height: 110%;
            }
            h2, descricao{
                color: var(--color-white);
            }
            @media screen and (max-width: 1400px){
                .info_banner{
                    .jogador1{
                        left: -170px;
                        top: -140px;
                        width: 480px;
                    }
                    .jogador2{
                        right: -122px;
                        top: -45px;
                        width: 330px;
                    }
                }
            }
            @media screen and (max-width: 1200px){
                .info_banner{
                    .jogador1{
                        left: -89px;
                        top: -78px;
                        width: 330px;
                    }
                    .jogador2{
                        right: -57px;
                        top: -47px;
                        width: 350px;
                    }
                }
            }
            @media screen and (max-width: 992px){
                .info_banner{
                    .jogador1{
                        display: none;
                    }
                    .jogador2{
                        display: none;
                    }
                    h2{
                        font-size: 30px;
                    }
                }
            }
        }
    }

    .bloco_testemunhos{
        background: #F7F7F5;
        padding-top: 160px;
    }


    @media screen and (max-width: 1500px){
        .banner_servicos{
            .holder_slider {
                .single_banner {
                    height: 540px;
                }
            }
            .logo{
                max-width: 500px;
            }
            .conteudo {
            }
        }
    }

    @media screen and (max-width: 1400px){
        .a_gestao {
            .holder_a_gestao{
                .info_zona {
                    h2 {
                        font-size: 29px;

                    }
                    .guardaredes {
                        width: 490px;
                        right: -209px;
                        z-index: 3;
                        top: -90px;
                    }
                    .meninas {
                        width: 470px;
                        top: -267px;
                        z-index: 2;
                        right: 114px;
                    }
                    .estadio {
                        width: 378px;
                        right: -32px;
                        top: -282px;
                    }
                    .bola {
                        width: 231px;
                        right: 295px;
                        bottom: -162px;
                    }
                }
            }
            .single_gestao {
                .holder_single_gestao {
                    .content {
                        .texto {
                            font-size: 18px;
                        }
                        h3 {
                            font-size: 25px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        .banner_servicos{
            .holder_slider {
                .single_banner {
                    height: 500px;
                }
            }
            .conteudo {
                bottom: 55px;
            }
        }
        .a_gestao {
            .holder_a_gestao{
                .info_zona {
                    h2 {
                        font-size: 25px;

                    }
                    .guardaredes {
                        width: 399px;
                        right: -176px;
                        z-index: 3;
                        top: -57px;
                    }
                    .meninas {
                        top: -248px;
                    }
                    .estadio {
                        width: 378px;
                        right: -32px;
                        top: -282px;
                    }
                    .bola {
                        width: 231px;
                        right: 295px;
                        bottom: -162px;
                    }
                }
            }
            .single_gestao {
                padding: 10px 5px;
                .holder_single_gestao {
                    padding: 50px 10px;
                    .content {
                        .texto {
                            font-size: 16px;
                        }
                        h3 {
                            font-size: 22px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        .banner_servicos{
            .holder_slider {
                .single_banner {
                    height: 400px;
                }
            }
            .logo {
                max-width: 300px !important;
                max-height: 130px !important;
                margin: 0 auto;
                display: block;
            }
            .conteudo {
                .descricao{
                    text-align: center;
                }
            }
        }
        .parceiros {
            .cabecalho {
                order: 1;
                text-align: center;
                width: 100%;
                padding: 0;
                border: none;
                h3{
                    font-size: 20px;
                }
            }
            .holder_parceiros {
                width: 100%;
                order: 2;
            }
        }

        .bloco_testemunhos{
            padding-top: 40px;
        }

        .a_gestao {
            .holder_a_gestao{
                &.w50 {
                    .coluna {
                        width: 100%;
                    }
                }
                .coluna {
                    width: 100%;
                    .single_gestao {
                        width: Calc(100% / 2);
                        padding: 30px 10px;
                        .holder_single_gestao {
                            padding: 0;
                            background: transparent;
                        }
                    }
                    .d-flex {
                        align-items: start;
                        justify-content: center;
                    }
                }
                .info_zona {
                    background-image: url(/site/imagens/fundo_titulos.webp);
                    padding: 60px 30px;
                    margin-bottom: 30px;
                    &:before {
                        display: none;
                    }
                    h2 {
                        font-size: 25px;

                    }
                    .guardaredes,
                    .meninas,
                    .estadio,
                    .bola{
                        display: none;
                    }
                }
            }
            .single_gestao {
                width: 100%;
                .holder_single_gestao {
                    padding: 50px 10px;
                    .content {
                        .texto {
                            font-size: 16px;
                        }
                        h3 {
                            font-size: 22px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        .banner_servicos{
            .holder_slider {
                .single_banner {
                    height: 300px;
                }
            }
            .logo {
                max-width: 250px;
                top: 35%;
            }
            .conteudo {
                bottom: 30px;
            }
        }
    }
    @media screen and (max-width: 567px) {
        .banner_servicos{
            .holder_slider {
                .single_banner {
                    height: 300px;
                }
            }
            .logo {
                max-width: 200px;
                top: 25%;
            }
        }
        .a_gestao {
            .holder_a_gestao{
                &.w50 {
                    .coluna {
                        width: 100%;
                        .single_gestao {
                            width: 100%;

                        }
                    }
                }
                .coluna {
                    &.paddingright {
                        padding-right: 0;
                    }
                    .single_gestao {
                        width: 100%;
                        padding: 30px 10px;

                    }
                }
                .info_zona {
                    background-image: url(/site/imagens/fundo_titulos.webp);
                    padding: 60px 30px;
                    margin-bottom: 30px;
                    &:before {
                        display: none;
                    }
                    h2 {
                        font-size: 25px;

                    }
                    .guardaredes,
                    .meninas,
                    .estadio,
                    .bola{
                        display: none;
                    }
                }
            }

        }
    }
}


/*==================================================================================================*/
/*ANGOLA*/
/*==================================================================================================*/


#angola_travel{

    .bloco_testemunhos{
        background: #F1E7E7;
    }

    .gradient-background {
        background: linear-gradient(67.74deg, #CE3628 -13.53%, #62140D 25.2%, rgba(60, 18, 14, 0.92) 71.49%, #CE3628 108.27%);

    }

    .bloco-numeros{
        background: rgba(206, 54, 40, 0.4);
        .single_numero{
            width: Calc(100% / 4);
        }
        @media screen and (max-width: 1400px){
            .single_numero{
                width: Calc(100% / 2);
            }
        }
        @media screen and (max-width: 767px){
            .single_numero{
                width: 100%;
            }
        }
    }

    .a_gestao {
        background: linear-gradient(67.74deg, #CE3628 -13.53%, rgba(0, 0, 0, 0.98) 21.67%, rgba(0, 0, 0, 0.92) 79.29%, #CE3628 108.27%);
        .cabecalho {
            h2 {
                em {
                    color: var(--color-white);
                }
            }
        }
    }
    .bloco-servicos {
        & .slide-servico {
            .content {
                height: auto;
                padding-bottom: 0;

                .button {
                    position: relative;
                    left: unset;
                }
            }
        }
    }
}

/*==================================================================================================*/
/*LEISURE*/
/*==================================================================================================*/
#leisure_travel{
    .bloco-servicos {
        & .owl-nav {
            .owl-prev {
                display: block;
            }
        }
    }
    .gradient-background {
        background: linear-gradient(67.74deg, #2d2d2d -18.56%, rgba(45, 45, 45, 0.98) 23.72%, rgba(45, 45, 45, 0.92) 66%, #2d2d2d 108.27%);
    }
    .a_gestao {
        .cabecalho {
            h2 {
                color: #000;
            }
            .descricao {
                color: #000;
            }
        }

        .single_gestao {
            .holder_single_gestao {
                .content {
                    h3{
                        color: var(--color-primary);
                    }
                    .texto{
                        font-weight: 400;
                    }
                }
            }
        }
    }

    .bloco_testemunhos{
        background-color: var(--color-primary);
        h2{
            color: var(--color-white);
        }

        .holder_slider_testemunhos {
            .slider_testemunhos {
                .conteudo, .nome, .descricao {
                    color: var(--color-white);
                }
                .owl-dots {
                    .owl-dot {
                        border: 1px solid var(--color-white);
                        &.active{
                            background-color: var(--color-white);
                        }
                    }
                }
            }
        }
    }

    .bloco-servicos {
        & .slide-servico {
            .titulo {
                h3{
                    font-weight: 700;
                }
            }
            .content{
                height: auto;
                padding-bottom: 0;
                .button{
                    position: relative;
                    left: unset;
                }
                .descricao{
                    font-weight: 300;
                    font-size: 22px;
                    line-height: 28px;
                    font-style: normal;
                }
            }
        }
    }

    @media screen and (max-width: 1500px){
        .bloco-servicos {
            & .slide-servico {
                .content{
                    .descricao{
                        font-size: 20px;
                        line-height: 26px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        .bloco-servicos {
            & .slide-servico {
                .content{
                    .descricao{
                        font-size: 18px;
                        line-height: 24px;
                    }
                }
            }
        }
    }

}

/*==================================================================================================*/
/*INCENTIVES*/
/*==================================================================================================*/
#incentives_travel{

    .gradient-background {
        background: linear-gradient(67.74deg, #223B39 12.9%, rgba(0, 0, 0, 0.98) 36.42%, rgba(0, 0, 0, 0.92) 79.29%, #223B39 92.95%);
   }
    .a_gestao {
        .cabecalho {
            h2 {
                color: #000;
            }
            .descricao {
                color: #000;
            }
        }

        .single_gestao {
            .holder_single_gestao {
                .content {
                    h3{
                        color: var(--color-primary);
                    }
                    .texto{
                        font-weight: 400;
                    }
                }
            }
        }
    }

    .bloco-servicos {
        & .slide-servico {
            .content{
                padding-bottom: 0;
                height: auto;
                .button{
                    position: relative;
                    left: unset;
                }
                .descricao{
                    font-weight: 300;
                    font-size: 22px;
                    line-height: 28px;
                    font-style: normal;
                }
            }
        }
    }

    .bloco_testemunhos {
        background-color: #F2F2F3;
    }
    .banner-fim h2{
        font-family: var(--font-family-secondary);
    }
    @media screen and (max-width: 1500px){
        .bloco-servicos {
            & .slide-servico {
                .content{
                    .descricao{
                        font-size: 20px;
                        line-height: 26px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        .bloco-servicos {
            & .slide-servico {
                .content{
                    .descricao{
                        font-size: 18px;
                        line-height: 24px;
                    }
                }
            }
        }
    }

}

/*==================================================================================================*/
/*BUSINESS*/
/*==================================================================================================*/
#business_travel{

    .faixa_candidatura{
        background: #71226D;
    }
    .a_gestao {
        .cabecalho {
            h2 {
                color: #000;
                b{
                    color: var(--color-primary);
                }
            }
            .descricao {
                color: #000;
            }
        }

        .single_gestao {
            width: 50%;
            .holder_single_gestao {
                .content {
                    h3{
                        color: var(--color-primary);
                    }
                    .texto{
                        font-weight: 400;
                    }
                }
            }
        }
    }

    .bloco_testemunhos {
        background-color: #F2F2F3;
    }

    .form_contactos{
        .cabecalho{
            margin-bottom: 35px;
            .descricao{
                font-size: 24px;
                line-height: 119.8%;
            }
        }
    }


    @media screen and (max-width: 567px){
        .assistencia{
            .single_gestao {
                width: 100%;
            }
        }
    }
}
/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/
#contactos{
    background: #FAFDFD;
    .intro_contactos{
        h2{
            font-style: italic;
            position: relative;
            b, strong{
                color: var(--color-primary);
            }
            &:after{
                content: '';
                position: absolute;
                width: 2px;
                height: 300px;
                top: Calc(100% + 40px);
                left: 60px;
                background: var(--color-primary);
            }
        }
        .holder_intro_contactos{
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            align-items: center;
            .coluna{
                width: 50%;
                padding: 0 15px;
            }
        }
    }
    .contactos_localizacoes{
        h2{
            color: var(--color-primary);
        }
        .holder_localizacoes{
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            .contact-column{
                width: Calc(100% / 3);
                padding: 15px;
                .single_contacto {
                    display: flex;
                    margin-bottom: 20px;
                    max-width: 330px;
                    .icon{
                        width: 24px;
                        margin-right: 5px;
                        svg{
                            path{

                                fill: var(--color-primary);
                            }
                        }
                    }
                }
            }
        }
    }
    .form_contactos{
        background: #fff;
    }

    @media screen and (max-width: 992px){
        .contactos_localizacoes{
            .holder_localizacoes{
                .contact-column{
                    width: Calc(100% / 2);

                }
            }
        }
        .intro_contactos{
            padding-bottom: 0;
            h2{
                &:after{
                    display: none;
                }
                text-align: center;
            }
            .holder_intro_contactos{
                margin: 0;
                .coluna{
                    width: 100%;
                    padding: 15px 0;
                }
            }
        }
    }
    @media screen and (max-width: 767px){
        .contactos_localizacoes{
            .holder_localizacoes{
                margin: 0;
                .contact-column{
                    width: 100%;

                }
            }
        }
    }
}
/*==================================================================================================*/
/*ASSISTENCIA*/
/*==================================================================================================*/

#assistencia{
    .bloco-frases{
        padding: 40px 0;
        .scroll{
            color: #0063789e;
        }
    }

    .cabecalho.line{
        position: relative;
        &:after{
            content: '';
            position: absolute;
            width: 2px;
            height: Calc(100% + 40px);
            top: Calc(100% + 40px);
            background: #fff;
            left: 50%;
            transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
        }
    }
    .holder_ajuda{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        .single_ajuda{
            width: Calc(100% / 3);
            padding: 15px;
            &:nth-child(2){
                margin-top: 70px;
            }
            .icon{

            }
            .nome{
                h2{
                    font-style: italic;
                    font-family: var(--font-family-third);
                    margin-top: 25px;
                }
            }
            .descricao{
                font-size: 16px;
                line-height: 163.5%;
                font-weight: 300;
            }
            .content{
                margin-top: 34px;
                font-size: 24px;
                line-height: 163.5%;
            }
        }
    }

    @media screen and (max-width: 992px){
        .holder_ajuda{
            margin: 0;
            .single_ajuda{
                width: 100%;
                padding: 30px 0;
                &:nth-child(2){
                    margin-top: 0;
                }
                .nome{
                    h2{
                        margin-top: 20px;
                        font-size: 23px;
                    }
                }
                .content{
                    margin-top: 20px;
                    font-size: 18px;
                    line-height: 163.5%;
                }
            }
        }
        .cabecalho.line{
            &:after{
                display: none;
            }
        }
    }
}

/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/
#quem-somos{
    .gradient-background{
        background: linear-gradient(67.74deg, rgb(94 161 174) -13.53%, rgba(0, 0, 0, 0.98) 40.61%, rgba(0, 0, 0, 0.92) 79.58%, rgb(105 164 174) 98.27%);
    }
    .sobre_nos{
        .holder_sobre_nos{
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            .coluna{
                width: 50%;
            }

            .info{
                padding-right: 40px;
                h2{
                    color: var(--color-primary);
                    font-weight: 700;
                }
                .descricao{
                    font-size: 20px;
                    line-height: 155%;
                    img{
                        display: block;
                        width: 427px !important;
                        margin: 0 auto;
                        max-width: 100%;
                        height: auto !important;
                    }
                }
                .list_sobrenos{
                    margin-top: 30px;
                    .single_sobre{
                        padding: 10px 0;
                        display: flex;
                        flex-wrap: wrap;
                        .imagem{
                            width: 55px;
                            height: 40px;
                            margin: 0;
                            img{
                                max-width: 100%;
                                max-height: 100%;
                                object-fit: contain;
                            }
                        }
                        .info{
                            width: Calc(100% - 55px);
                            padding-left: 15px;
                            .nome{
                                font-weight: 600;
                                font-size: 20px;
                                color: var(--color-primary);
                            }
                            .descricao{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
            .imagem{
                img{
                    width: 100%;
                }
            }
        }
        &.missao_visao{
            .coluna{
                width: 60%;
            }
            .coluna:last-child{
                width: 40%;
            }
        }
    }
    .bloco-numeros{
        .single_numero {
            width: Calc(100% / 4);
            .number-holder {
                .zona_numero {
                    font-size: 37px;
                }
            }
        }
    }

    .a_gestao {
        h2 em{
            color: #fff;
        }
        .single_gestao {
            .holder_single_gestao {
                .content {
                    .texto {
                        max-width: 100%;
                    }
                }
            }
        }
    }
    .banner.banner_meio_quem_somos {
        .single_banner {
            height: unset;
            padding: 120px 0 0;
            background-color: var(--background-color-blue-light);
            .descricao {
                color: var(--color-primary);
                h2 {
                    color: var(--color-primary);
                }
            }
            button{
                background-color: var(--color-primary);
                border: 1px solid var(--color-primary);
                color: var(--color-white);
            }
            .conteudo {
                position: relative;
                top: unset;
                transform: unset;
               -moz-transform: unset;
                webkit-transform: unset;
            }
        }
    }
    .bloco_filosofia{
        background: var(--background-color-blue-light);
        .cabecalho h2{
            color: var(--color-primary);
        }
        .lista_filosofia{
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            .single_filosofia{
                width: Calc(100% / 4);
                padding: 15px;
                .holder_single_filosofia{
                    height: 100%;
                    color: #fff;
                    background: var(--background-color-blue);
                    padding: 30px 25px;
                    border-radius: 6px;
                }
            }
        }
    }
    .banner_meio_quem_somos{
        .descricao{
            font-weight: 300;
            font-size: 28px;
            line-height: 120%;
            font-family: var(--font-family-primary);
            h2{
                margin-bottom: 30px;
            }
        }
        .logo{
            text-align: right;
            img{
                max-width: 80%;
            }
        }
        .conteudo{
            .row{
                align-items: center;
            }
        }
    }

    .zona_equipa{
        position: relative;
        .margem_branca{
            position: absolute;
            top: -2px;
            width: 100%;
            left: 0;
            height: 192px;
            background: var(--background-color-blue-light);
        }
        .margem_azul{
            position: absolute;
            height: 257px;
            bottom: -2px;
            width: 100%;
            left: 0;
            background: #D5E2E4;
        }
        .bg_equipa{

            padding: 75px 0;
            background: #0093B2;
        }
        .holder_zona_equipa{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            .coluna{
                width: 65%;
                &:last-child{
                    width: 35%;
                }
                &.equipa{
                    padding-right: 40px;
                }
            }
            .info{
                text-align: center;
                h2{
                    font-size: 30px;
                }
                .holder_logos{
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    margin-top: 30px;
                    .single_logo{
                        margin: 5px;
                        background: #fff;
                        width: 141px;
                        height: 50px;
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        border-radius: 32px;
                        img{
                            object-fit: contain;
                            max-width: 70%;
                            max-height: 80%;
                        }
                    }
                }
            }
            .holder_lista_membros{
                padding-right: 10px;
                display: flex;
                flex-wrap: wrap;
                margin: 0 -5px;
                z-index: 2;
                position: relative;
                .single_membro{
                    width: Calc(100% / 3);
                    padding: 5px;
                    .holder_single_membro{
                        position: relative;
                        text-align: left;
                    }
                    .img{
                        padding-bottom: 110%;
                        height: 0;
                        overflow: hidden;
                        position: relative;
                        border-radius: 6px;
                        img{
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%,-50%);
                            -moz-transform: translate(-50%,-50%);
                            -webkit-transform: translate(-50%,-50%);
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    .info{
                        position: absolute;
                        bottom: 25px;
                        left: 20px;
                        right: 20px;
                        text-align: left;
                        .nome{
                            font-family: var(--font-family-secondary);
                            font-style: normal;
                            font-weight: 600;
                            font-size: 16px;
                            line-height: 163.48%;
                        }
                        .descricao{
                            font-weight: 300;
                            font-size: 14px;
                            line-height: 129.48%;
                        }
                    }

                    &.count0{

                    }
                    &.count1{
                        margin-top: 125px;
                    }
                    &.count2{
                        margin-top: 250px;
                    }
                    &.count3{
                        margin-top: -250px;
                    }
                    &.count4{
                        margin-top: -125px;
                    }
                    &.count5{

                    }
                    &.count6{
                        margin-top: -250px;
                    }
                    &.count7{
                        margin-top: -125px;
                    }
                    &.count8{

                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        .bloco-numeros{
            .single_numero {
                width: Calc(100% / 2);
                .number-holder {
                    .zona_numero {
                        font-size: 35px;
                    }
                }
            }
        }
        .zona_equipa{
            .margem_azul{
                height: 208px;
            }
            .info {
                h2 {
                    font-size: 22px !important;
                }
            }
        }

        .list_sobrenos{
            .single_sobre{
                .info{
                    text-align: left !important;
                    .nome{
                        font-size: 18px !important;
                    }
                    .descricao{
                        font-size: 16px !important;
                    }
                }
            }
        }

        .bloco_filosofia{
            .lista_filosofia{
                .single_filosofia{
                    width: Calc(100% / 2);
                    .holder_single_filosofia{
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        .sobre_nos {
            .holder_sobre_nos {
                .info {
                    .descricao {
                        font-size: 18px;
                        img{
                            width: 300px !important;
                        }
                    }
                }
            }
        }
        .zona_equipa{

            .margem_azul{
                height: 164px;
            }
            .holder_zona_equipa{
                .holder_lista_membros {
                    .single_membro {
                        .info {
                            bottom: 5px;
                            left: 10px;
                            right: 10px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        /*.banner_meio_quem_somos {
            & .single_banner {
                height: 650px;
            }
        }*/
        .bloco-numeros{
            .single_numero {
                width: 100%;
                .number-holder {
                    .zona_numero {
                        font-size: 35px;
                    }
                }
            }
        }
        .banner.banner_meio_quem_somos {
            .single_banner {
                padding: 85px 0 !important;
            }
        }

        .sobre_nos {
            .holder_sobre_nos {
                margin: 0;
                .info{
                    text-align: center;
                    padding-right: 0;
                    .descricao {
                        font-size: 16px;
                    }
                }
                .coluna {
                    width: 100%;
                }
                .imagem{
                    margin-top: 40px;
                }
            }
            &.missao_visao{
                .coluna{
                    width: 100%;
                }
                .coluna:last-child{
                    width: 100%;
                }
            }
        }
        .zona_equipa{

            .info {
                h2 {
                    font-size: 30px !important;
                }
            }
            .margem_branca,
            .margem_azul{
                display: none;
            }
            .holder_zona_equipa {
                .coluna {
                    width: 100%;
                    order: 2;
                    &:last-child{
                        width: 100%;
                        order: 1;
                    }

                    &.equipa{
                        padding-right: 0;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px){
        .bloco_filosofia{
            .lista_filosofia{
                margin: 0;
                .single_filosofia{
                    width: Calc(100%);
                    padding: 10px 0;
                    .holder_single_filosofia{
                        padding: 15px;
                    }
                }
            }
        }
        .banner_meio_quem_somos{
            & .single_banner {
                height: 650px;
            }
            .conteudo{
                text-align: center;
            }
            .descricao{
                font-size: 20px;
            }
            .logo{
                text-align: center;
                margin-top: 30px;
                img{
                    width: 300px;
                    margin: 0 auto;
                }
            }
        }

        .zona_equipa{
            .bg_equipa{
                padding: 40px 0;
            }
            .holder_zona_equipa {
                .holder_lista_membros{
                    margin-top: 40px;
                    .single_membro{
                        width: 50%;
                        &.count0{

                        }
                        &.count1{
                            margin-top: 125px;
                        }
                        &.count2{
                            margin-top: -125px;
                        }
                        &.count3{
                            margin-top: 0;
                        }
                        &.count4{
                            margin-top: -125px;
                        }
                        &.count5{

                        }
                        &.count6{
                            margin-top: -125px;
                        }
                        &.count7{
                            margin-top: 0;
                        }
                        &.count8{

                        }
                    }
                }
            }
        }
        .banner-fim{
            padding-top: 80px !important;
        }
    }
    @media screen and (max-width: 430px){
        .zona_equipa{
            .holder_zona_equipa {
                .holder_lista_membros{
                    margin: 40px 0 0;
                    justify-content: center;
                    .single_membro{
                        /*width: 200px !important;

                        */
                        margin-top: 0 !important;
                        .info {
                            .nome {
                                font-size: 14px;
                                line-height: 16px;
                            }
                            .descricao {
                                font-size: 12px;
                                line-height: 14px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/

footer{
    position: relative;
    background: var(--background-primary);
    color: var(--color-white);
    text-decoration: none !important;
}
footer.desporto{
    color: var(--text-color);
}

footer .bloco{
    padding: 60px 0;
}

footer .footer-logo img{
    width: 210px;
}

footer .footer-columns{
    margin: 0 -15px;
}
footer .footer-columns .contact-column{
    width: Calc(100% / 4);
    padding: 1rem 15px;
}

footer .footer-columns .contact-column .content{
    font-size: 14px;
    font-weight: 300;
}

footer .footer-columns .contact-column .single_contacto{
    display: flex;
    margin-bottom: 20px;
}
footer .footer-columns .contact-column .single_contacto.mb{
    margin-bottom: 40px;
}
footer .footer-columns .contact-column .single_contacto .icon{
    width: 24px;
    margin-right: 5px;
}

footer .footer-columns .contact-column .content table tr td img{
    max-width: unset;
}

footer .footer-columns .contact-column .content table tr td:last-child{
    padding-left: 10px;
    padding-bottom: 20px;
    color: #EEE2E2;
}
footer.desporto .footer-columns .contact-column .content table tr td:last-child{
    color: var(--text-color);
}

footer.desporto .footer-columns .contact-column .single_contacto .icon svg path{
    fill: #000;
}

footer .logos_certificacoes{

}
footer .logos_certificacoes img{
    height: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
}
footer .redes_sociais{
    text-align: right;
}
footer .redes_sociais .rede_social{
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #EEE2E2;
    margin-left: 10px;
}
footer .redes_sociais .rede_social:hover{
    background: #fff;
    color: var(--color-primary);
}
footer.desporto .redes_sociais .rede_social {
    border: 1px solid var(--text-color);
}
footer.desporto .redes_sociais .rede_social:hover {
    background: var(--text-color);
    color: var(--color-primary);
}
footer .redes_sociais .rede_social i{
    font-size: 22px;
    padding-top: 8px;
}

footer .link-util{
    font-size: 16px;
    margin: 30px 0;
}

footer .link-util a{
    text-decoration: none;
}

footer .link-util i{
    margin-right: 10px;
}

footer h4{
    font-weight: 700;
}

footer h5{
    font-family: var(--font-family-secondary);
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
}

.lower_footer{
    font-size: 13px;
}
.lower_footer .container{
    border-top: 1px solid #FFFFFF;
    padding: 25px 0 25px 0px;
    font-weight: 300;
}
.lower_footer .row{
    margin: 0;
}
footer.desporto .lower_footer .container{
    color: var(--text-color);
    border-top: 1px solid var(--text-color);
}
@media screen and (max-width: 1399px) {

    footer .footer-columns .contact-column{
        padding: 1rem 10px;
    }
    footer .footer-columns{
        flex-direction: row;
        flex-wrap: wrap;
    }
    footer .footer-columns {
        margin: 0 -10px;
    }

    footer .link-util{
        margin: 20px 0;
    }

    footer .footer-columns .first-column{
        width: 100%;
        text-align: center;
    }

}

@media screen and (max-width: 991px) {

    footer .footer-columns .contact-column{
        width: Calc( 100% / 2 );
        margin-bottom: 15px;
    }

}

@media screen and (max-width: 575px) {

    footer .footer-columns .contact-column{
        width: 100%;
    }
    footer .redes_sociais {
        text-align: left;
    }
    footer .logos_certificacoes img {
        margin-left: 0;
        margin-right: 10px;
    }
}


.politica_privacidade table{
    max-width: 100% !important;
    border: none !important;
}

.politica_privacidade table tr td{
    width: Calc(100% / 3) !important;
    padding: 5px 10px;
    border: none !important;
}
.politica_privacidade table tr th{
    background: #c6c5c5;
    padding: 5px 10px;
}


/*FORMULARIOS*/

.formularios{
    .servicos{
        margin: 0 0 60px 0;
        align-items: center;
        flex-wrap: wrap;
        .lista_servicos{
            flex-wrap: wrap;
            margin-top: 25px;
        }
        .titulo{
            font-family: var(--font-family-secondary);
            font-style: italic;
            font-weight: 400;
            font-size: 24px;
            line-height: 119.8%;
        }
        .single_servico{
            margin-right: 20px;
            position: relative;
            cursor: pointer;
            margin-bottom: 10px;
            input{
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 0;
                visibility: hidden;
                cursor: pointer;
                &:checked + label {
                    background-color: var(--color-primary);
                    border-color: var(--color-primary);
                    color: #fff;
                }
            }
            label{
                cursor: pointer;
                font-size: 14px;
                padding: 10px 25px;
                border-radius: 25px;
                color: var(--color-primary);
                font-family: var(--font-family-primary);
                font-style: normal;
            }
            label:hover{
                background: var(--color-primary);
                color: #fff;
            }

        }
    }
    .single_input_radio,
    .single_input.rgpd{
        margin-bottom: 50px;
        margin-right: 20px;

        label{
            font-size: 14px;
            line-height: 18px;
            color: rgb(0 0 0 / 50%);
            font-family: var(--font-family-primary);
            font-style: unset;
            padding-left: 10px;
        }
    }
    .single_input{
        margin-bottom: 50px;
        position: relative;
        .input{
            width: 100%;
            font-size: 16px;
            line-height: 163.48%;
            color:  var(--color-text);
            border: none;
            border-bottom: 1px solid #000000;
            margin-top: 10px;
            outline: none;
            &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                color: var(--color-grey);
            }
            &::-moz-placeholder { /* Firefox 19+ */
                color: var(--color-grey);
            }
            &:-ms-input-placeholder { /* IE 10+ */
                color: var(--color-grey);
            }
            &:-moz-placeholder { /* Firefox 18- */
                color: var(--color-grey);
            }
        }
        .date-picker{
            position: relative;
            .input{
                padding-left: 35px;
            }
            .icon{
                position: absolute;
                top: -2px;
                left: 0;
                svg{
                    width: 32px;
                }
            }
        }

        .input_telefone_indicativo{
            position: relative;

            .input{
                padding-left: 50px;
            }
            .input.indicativo{
                position: absolute;
                width: 45px;
                padding-right: 0;
                padding-left: 0;
            }
        }
        textarea{
            height: 100px;
            resize: none;
        }
        label{
            font-family: var(--font-family-secondary);
            display: block;
            font-family: 'Taviraj';
            font-style: italic;
            font-weight: 400;
            font-size: 24px;
            line-height: 119.8%;
            color: #000000;
        }
        &.required{
            input{
                padding-right: 30px;
            }
            span.required_icon {
                position: absolute;
                bottom: 5px;
                right: 6px;
            }
        }
        &.required.textarea{
            span.required_icon {
                bottom: unset;
                top: 45px;
            }
        }

        @media screen and (max-width: 992px) {
            label{
                font-size: 18px;
            }
            .date-picker{
                .icon{
                    top: -4px;
                    svg{
                        width: 25px;
                    }
                }
            }
        }

        @media screen and (max-width: 767px) {
            label{
                font-size: 20px;
            }

        }
    }
    .alert{
        font-size: 14px;
    }

    .custom_check {
        display: block;
        position: relative;
        padding-left: 17px;
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        .checkbox {
            position: absolute;
            top: 9px;
            left: 0;
            height: 17px;
            width: 17px;
            border-radius: 50%;
            background-color: transparent;
            border: 1px solid rgb(0 0 0 / 50%);
            cursor: pointer;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);

            &:after {
                content: "";
                position: absolute;
                display: none;
            }
        }

        input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        input:checked ~ .checkbox:after {
            display: block;
        }
        input:checked ~ .checkbox {
            background-color: transparent;
        }
        .checkbox:after {
            left: 7px;
            top: -4px;
            width: 7px;
            height: 16px;
            border: solid var(--color-primary);
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }
    }

    .button.enviar{
        min-width: 279px;
        max-width: 100%;
    }

    .select2-container--default .select2-selection--single {
        background-color: transparent;
        border-radius: 0;
        font-size: 16px;
        line-height: 163.48%;
        color: var(--color-text);
        border: none;
        border-bottom: 1px solid #000000;
        margin-top: 10px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: var(--color-text);
        line-height: unset;
        padding-left: 0;
        padding-right: 50px;
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #8b9ea2;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 8px;
        right: 22px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border: none;
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
        content: '';
        width: 15px;
        height: 2px;
        position: absolute;
        background: #000;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        left: -9px;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
        content: '';
        width: 15px;
        height: 2px;
        position: absolute;
        background: #000;
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
        transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
    }
    .select2-container--default .select2-search--dropdown .select2-search__field {
        outline: none;
    }

    .select2-container--default.select2-container--focus .select2-selection--multiple,
    .select2-container--default .select2-selection--multiple{
        border: none;
        outline: 0;
        border-bottom: 1px solid #000;
        border-radius: 0;
        background: transparent;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        padding: 0;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: var(--color-primary);
        border: 1px solid var(--color-primary);
        border-radius: 21px;
        padding: 7px 15px;
        color: #fff;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: #fff;
        font-weight: 400;
        margin-left: -5px;
        margin-right: 5px;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{
        color: #fff;
    }

    @media screen and (max-width: 992px){
        .servicos{
            margin: 30px 0;
            .titulo{
                width: 100%;
            }
            .lista_servicos{
                width: 100%;
                margin-top: 20px;
                .single_servico{
                    margin: 10px 5px 10px 0;

                }
            }
        }
        .single_input {
            margin-bottom: 30px;
            &.required.textarea{
                span.required_icon {
                    bottom: unset;
                    top: 37px;
                }
            }
        }
        .d-flex{
            flex-wrap: wrap;
        }
        .single_input_radio{
            width: 100%;
            margin-bottom: 30px;
        }
    }

}


.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

#desporto .formularios{
    .servicos{
        .single_servico{
            label{
                background-color: #000;
                color: #fff;
                border-color: #000;
            }
            label:hover{
                background-color: var(--color-primary);
                color: #000;
                border-color: var(--color-primary);
            }
            input:checked + label {
                background-color: var(--color-primary);
                border-color: var(--color-primary);
                color: #000;
            }
            input:checked + label:hover {
                background-color: #000;
                border-color: #000;
                color: #fff;
            }
        }
    }
}

.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    padding: 0 40px;
    display: none;
    .holder_popup_m{
        background: #FFFFFF;
        border: 1px solid #E9E9E9;
        box-shadow: 0 2px 10px 0 rgba(132, 132, 132, 0.50);
        border-radius: 22px;
        position: relative;
        max-height: 85vh;
        top: 50%;
        max-width: 634px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: 0 auto;
        overflow: hidden;
        .holder_popup{
            max-height: 85vh;
            top: 50%;
            width: 100%;
            margin: 0 auto;
            overflow: auto;
            .close_lightbox{
                width: 35px;
                margin-left: auto;
                cursor: pointer;
                margin-right: 15px;
                position: sticky;
                position: -webkit-sticky !important;
                top: 20px;
                z-index: 2;
                text-align: center;
                font-size: 25px;
            }
            .conteudo_popup{
                padding: 40px 100px 80px;
            }
        }
    }

    @media screen and (max-width: 767px){
        &{
            padding: 0 15px;
        }
        & .holder_popup_m {
            & .holder_popup {
                .conteudo_popup {
                    padding: 45px 25px 30px;
                }
            }
        }
    }
}

.popup.candidatura .button{
    width: 100%;
    margin-bottom: 10px;
}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    + label {
        display: inline-block;
        letter-spacing: 0;
        text-align: center;
        margin-bottom: 0;
        cursor: pointer;
    }
}


.botao_scroll_to{
    margin-top: 50px;
    .circle{
        background: #fff;
        width: 78px;
        height: 78px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        cursor: pointer;
    }
    @media screen and (max-width: 992px){
        .circle{
            width: 50px;
            height: 50px;
        }
    }

}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
    background-color: var(--color-primary);
}

.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
    background-color: var(--color-primary);
    background-image: none;
    border-color: var(--color-primary);
}

#popover{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    background: white;
    border-radius: 80%;
    backface-visibility: hidden;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 2;
    display: none;
}

tcxspan{
text-decoration: none !important;
}
.iti {
    width: 100%;
}
.iti__flag-container {
    top: 10px;
}
.iti input, .iti input[type=tel], .iti input[type=text] {
    margin-top: 10px !important;
}
.iti--separate-dial-code .iti__selected-flag .iti__flag {
    display: none;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    padding: 0;
}