* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Roboto-Black";
    src: url("../font/roboto/Roboto-Black.ttf");
}
@font-face {
    font-family: "Roboto-BlackItalic";
    src: url("../font/roboto/Roboto-BlackItalic.ttf");
}
@font-face {
    font-family: "Roboto-Bold";
    src: url("../font/roboto/Roboto-Bold.ttf");
}
@font-face {
    font-family: "Roboto-BoldCondensed";
    src: url("../font/roboto/Roboto-BoldCondensed.ttf");
}
@font-face {
    font-family: "Roboto-BoldCondensedItalic";
    src: url("../font/roboto/Roboto-BoldCondensedItalic.ttf");
}
@font-face {
    font-family: "Roboto-BoldItalic";
    src: url("../font/roboto/Roboto-BoldItalic.ttf");
}
@font-face {
    font-family: "Roboto-Condensed";
    src: url("../font/roboto/Roboto-Condensed.ttf");
}
@font-face {
    font-family: "Roboto-CondensedItalic";
    src: url("../font/roboto/Roboto-CondensedItalic.ttf");
}
@font-face {
    font-family: "Roboto-Italic";
    src: url("../font/roboto/Roboto-Italic.ttf");
}
@font-face {
    font-family: "Roboto-Light";
    src: url("../font/roboto/Roboto-Light.ttf");
}
@font-face {
    font-family: "Roboto-LightItalic";
    src: url("../font/roboto/Roboto-LightItalic.ttf");
}
@font-face {
    font-family: "Roboto-Medium";
    src: url("../font/roboto/Roboto-Medium.ttf");
}
@font-face {
    font-family: "Roboto-MediumItalic";
    src: url("../font/roboto/Roboto-MediumItalic.ttf");
}
@font-face {
    font-family: "Roboto-Regular";
    src: url("../font/roboto/Roboto-Regular.ttf");
}
@font-face {
    font-family: "Roboto-Thin";
    src: url("../font/roboto/Roboto-Thin.ttf");
}
@font-face {
    font-family: "Roboto-ThinItalic";
    src: url("../font/roboto/Roboto-ThinItalic.ttf");
}

body,
html {
    overflow-x: hidden;
}

html {
    /* a cada 1rem será considera 10px */
    font-size: 100%;
}

body {
    height: 100vh;
    background-color: #5C6B6E;
}

.mobile {
    display: none;
}

.desk {
    display: inherit;
}

.container {
    /* background-color: red;
    height: 100vh; */
    /* display: flex; */
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

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

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.pt-10 {
    padding-top: 10em;
}

/* MENU */

.menu-toggle-fechado {
    margin-top: 0;
    padding: 20px 0;
    background-color: #2EB3B5;
    position: fixed;
    top: 0;
    width: calc(100% - 278px);
    height: 100vh;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.57, 0.14, 1, 0.82);
    -webkit-transition: transform 0.3s cubic-bezier(0.57, 0.14, 1, 0.82);
    -moz-transition: transform 0.3s cubic-bezier(0.57, 0.14, 1, 0.82);
    -ms-transition: transform 0.3 cubic-bezier(0.57, 0.14, 1, 0.82);
    -o-transition: transform 0.3s cubic-bezier(0.57, 0.14, 1, 0.82);
}

.menu-toggle-aberto {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.navbar-toggler {
    padding: 0.25rem 25px;
    margin-top: 30px;
    position: absolute;
    margin-left: calc(139px - 40px);
}

.navbar-toggler-icon {
    background-image: url("../../assets/img/Hambuguer_Icon2x.png");
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
}

.navbar-toggler-icon-close {
    background-image: url("../../assets/img/Close_Icon2x.png");
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
}

ul.nav.navbar-nav {
    text-align: left !important;
}

.nav-link {
    font-family: roboto-light;
    font-size: 50px;
    line-height: 1;
    color: #fff;
    position: relative;
    transition: width 0.5s;
}

.nav-link:hover {
    text-decoration: none;
    /* border-left: 5px solid #ffd74d; */
    color: #2EB3B5;
    /* color: #2EB3B5; */
}

.over-menu{
    background-color: #ffd74d;
    height: 66px;
    transition: width 1s;
    width: 0px;
    position: absolute;
    top: 0px;
    z-index: 0;
}

.nav-link:hover .over-menu{
    width: 100%;
}

.nav-link span{
    z-index: 10;
    position: relative;
}

#home, #experiencia, #estetica{
    position: relative;
}
.nosso-servico-1, .nossa-experiencia-1, .nossa-estetica-1{
    height: 100vh;
    width: 100%;
    background-color: #2EB3B5;
    position: absolute;
    top: 0;
    right: -100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.nosso-servico-1.active, .nossa-experiencia-1.active, .nossa-estetica-1.active{
    right: 0;
}

.fundoBotao {
    left: 0;
    width: 102%;
    height: 100%;
    transform: scaleX(1);
    transform-origin: left;
    background: #ffd74d;
    z-index: -1;
    transition: transform 0.5s;
}

/* a.nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 102%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: bottom left;
    background: #ffd74d;
    z-index: -1;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
} */

a:hover::after {
    transform: scaleX(1);
}

.design {
    text-align: right;
    margin-right: 10rem;
    margin-top: 2rem;
    /* margin-bottom: 2rem; */
    max-width: 89%;
    min-height: 100px;
}

.folga{
    min-height: 150px;
}

.divisor {
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.dimen-design {
    width: 10rem;
}

.section-logo {
    z-index: 300;
}

.logo {
    position: fixed;
    z-index: 300;
    width: 278px;
    text-align: center;
    margin-top: 95px;
}

.dimen-logo {
    width: 100px;
}

.assinatura {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 31%;
    left: 90%;
    z-index: 200;
}



.dimen-ass {
    width: 15px;
}

.seta-menu {
    position: fixed;
    z-index: 300;
    width: 278px;
    text-align: center;
    margin-top: 360px;
}

.seta1 {
    width: 44px;
}

.fechado {
    display: none;
}

.aberto {
    display: block;
}

/* #Close_Icon{
    visibility:hidden;
  } */

.tel-position {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
}

.titulo-text-white-1 {
    font-family: Roboto-Bold;
    font-size: 0.9rem;
    color: #fff;
}

.conteudo-text-white-1 {
    font-family: Roboto-Regular;
    font-size: 0.8rem;
    color: #fff;
}

.conteudo-text-white-2 {
    font-family: roboto-light;
    font-size: 0.8rem;
    color: #fff;
    line-height: 2rem;
}

.conteudo-text-verde-1 {
    font-family: roboto-light;
    font-size: 0.8rem;
    color: #2EB3B5;
    line-height: 2rem;
}

.rede-sociais {
    text-align: center;
}

.ico-rede-sociais {
    width: 25px;
}

/* CONTEUDO */

#home, #experiencia, #estetica{
    height: 100vh;
}

.conteudo {
    width: 100%;
    /* height: 100vh; */
}

.conteudo .row {
    margin: 0;
    /* height: 100vh; */
}

.conteudo-flex {
    display: flex;
    flex-direction: row;
}

.conteudo-flex .container-menu{
    width: 190px;
    background-color: transparent;
    position: absolute;
    height: 100vh;
    display: block;
    z-index: 200;
}

.conteudo-flex .menu {
    background-color: #2EB3B5;
    justify-content: flex-start;
    margin-left: -258px;
    min-height: 100vh;
    flex: 0 0 278px;
    z-index: 200;
}
.conteudo-flex .menu-mobile nav{
    padding: 70px 20px 20px;
    position: fixed;
    margin-top: 80px;
}
.conteudo-flex .menu-mobile .nav-link{
    font-size: 36px;
}

.conteudo-flex .menu-mobile {
    background-color: #2EB3B5;
    justify-content: flex-start;
    margin-left: -100%;
    min-height: 100vh;
    flex: 0 0 100%;
    z-index: 310;
    justify-content: center;
}

.conteudo-flex .menu-mobile.active{
    margin-left: 0;
}

.conteudo-flex .menu-mobile .navbar-toggler {
    padding: 0.25rem 25px;
    margin-top: 30px;
    position: absolute;
    margin-left: 0;
}


.conteudo-flex .menu-mobile .tel-position {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    text-align: center;
}

.conteudo-flex .menu.menu-active {
    margin-left: 0;
}

.conteudo-flex .conteudo {
    flex-grow: 1;
}

.flex-container {
    display: flex;
}

.produtos {
    flex-wrap: wrap;
}

.column {
    flex: 33%;
    max-width: 34%;
    padding: 0;
}

.column img {
    vertical-align: middle;
}

.quadrado {
    height: 100px;
    flex-grow: 1;
}

.section-page {
    height: 100vh;
}

#secdesign, #secfilosofia, #secequipe{
    height: 100vh;
}

#coloque,
#communication,
#construa,
#descubra,
#filosofia,
#perfil {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.cinza {
    background-color: #5C6B6E;

}

.verde {
    background-color: #2EB3B5;

}

.centro {
    display: flex;
    align-items: center;
}

.img_d {
    width: 100%;
}

.conheca-link, .conheca-link2, .conheca-link3{
    position: absolute;
    bottom: 40px;
    right: 180px;
    z-index: 90;
}

.conheca-link svg, .conheca-link2 svg, .conheca-link3 svg{
    animation-name: arrow-anime-rotate-ini;
    animation-duration: 1s;
    margin-right: 5px;
    margin-left: 5px;
}


.arrow{
    stroke: #FFF;
    animation-name: arrow-anime-color-ini;
    animation-duration: 1s;
}

.conheca-link.active .arrow, .conheca-link2.active .arrow, .conheca-link3.active .arrow{
    stroke: #FFD74D;
    animation-name: arrow-anime-color;
    animation-duration: 1s;
}

.conheca-link.active svg, .conheca-link2.active svg, .conheca-link3.active svg{
    animation-name: arrow-anime-rotate;
    animation-duration: 1s;
    -webkit-transform: rotate(180deg); transform:rotate(180deg);
}

.conheca-link .conheca, .conheca-link2 .conheca, .conheca-link3 .conheca{
    opacity: 1;
    animation-name: arrow-anime-show;
    animation-duration: 1s;
}

.conheca-link .voltar-conheca, .conheca-link2 .voltar-conheca, .conheca-link3 .voltar-conheca{
    opacity: 0;
}

.conheca-link.active .conheca, .conheca-link2.active .conheca, .conheca-link3.active .conheca{
    opacity: 0;
}

.conheca-link.active .voltar-conheca, .conheca-link2.active .voltar-conheca, .conheca-link3.active .voltar-conheca{
    opacity: 1;
    animation-name: arrow-anime-show;
    animation-duration: 1s;
}

@keyframes arrow-anime-color-ini {
    0%   {stroke: #FFD74D;}
    100% {stroke: #FFF;}
  }

@keyframes arrow-anime-color {
    0%   {stroke: #FFF;}
    100% {stroke: #FFD74D;}
  }


@keyframes arrow-anime-rotate-ini {
    from {-webkit-transform: rotate(180deg); transform:rotate(180deg);}
    to {-webkit-transform: rotate(0deg); transform:rotate(0deg);}
}

@keyframes arrow-anime-rotate {
    from {-webkit-transform: rotate(0deg); transform:rotate(0deg);}
    to {-webkit-transform: rotate(180deg); transform:rotate(180deg);}
}

@keyframes arrow-anime-show {
    from   {opacity: 0;}
    to {opacity: 1;}
}

@keyframes arrow-anime-hide {
    from   {opacity: 1;}
    to {opacity: 0;}
}

.linha-seta-menu{
    margin-top: -24px;
    color: #fff;;
}

.bloco-seta-menu #seta-menu{
    -webkit-transform: rotate(180deg);
    transform:rotate(180deg);
    /* transform: translateX(-26px); */
    margin-left: -30px;
}

.bloco-seta-menu.active #seta-menu{
    animation-name: arrow-anime-rotate-menu-in;
    animation-duration: 1s;
    -webkit-transform: rotate(0deg);
    transform:rotate(0deg) translateX(28px);
    /* transform: translateX(26px); */
}

.linha-seta-menu.active .texto-menu{
    opacity: 0;
}

@keyframes arrow-anime-rotate-menu-in {
    0% {-webkit-transform: rotate(180deg);
        transform:rotate(180deg);
    }
    25% {-webkit-transform: rotate(0deg);
        transform:rotate(0deg);
    }
    100%{
        transform:translateX(28px);
    }
}

@keyframes arrow-anime-rotate-menu-out {
    0% {-webkit-transform: rotate(0deg);
        transform:rotate(0deg);
    }
    25% {-webkit-transform: rotate(180deg);
        transform:rotate(180deg);
    }
    100%{
        /* margin-left: 10px; */
        transform: translateX(-26px);
    }
}


.swipe{
    position: absolute;
    bottom: 25px;
    left: 50%;
    margin-left: -60px;
}

/* .conheca_servicos {
    margin-top: 3rem;
    margin-right: 6rem;
    font-size: 0.8rem !important;
    float: right;
} */

.title-verde {
    font-family: roboto-light;
    font-size: 3rem;
    line-height: 3rem;
    color: #2EB3B5;
}

.title-white {
    font-family: roboto-light;
    font-size: 3rem;
    line-height: 3rem;
    color: #fff;
}

.conteudo-white {
    font-family: Roboto-Light;
    font-size: 1rem;
    color: #fff;
    line-height: 2rem;
}

#scrolling {
    text-align: center;
}

#swipe {
    width: 10px;
}

.animacao {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.animacao-img {
    width: 17rem;
}

.bloco-perfil{
    margin-bottom: 50px;
}

.foto-perfil {
    text-align: center;
}
.foto-perfil img{
    width: 60%;
}


.text-perfil {
    font-family: Roboto-Medium;
    font-size: 1.3em;
    color: #fff;
}

.text-perfil-1 {
    font-family: Roboto-Light;
    font-size: 1em;
    color: #fff;
}

.daniel {
    font-family: Roboto-Medium;
    text-transform: uppercase;
    color: #2EB3B5;
    font-size: 1.5em;
}

.andre {
    font-family: Roboto-Medium;
    text-transform: uppercase;
    color: #2EB3B5;
    font-size: 1.5em;
}

.alinha-esquerda {
    text-align: right;
    margin-bottom: 3em;
}

.section-page {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.2805497198879552) 0%, rgba(255,255,255,0) 11%);
}

.color-page {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.2805497198879552) 0%, rgba(255,255,255,0) 11%);
}

.pote-mentos {
    width: 100%;
    margin-top: -65px;
}

.img-portfolio {
    width: 100%;
}

.bn-01 {
    /* height: 550px; */
    overflow: hidden;
}

.bn-02 {
    margin: 0;
    padding: 0;
}

.work-item {
    position: relative;
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.extra-content {
    display: table;
    overflow: hidden;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-servicos {
    width: 100%;
}

.image-extra {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    background-color: rgba(92,107,110,.7);
    -webkit-transition: opacity .25s ease,background-color .45s ease;
    transition: opacity .25s ease,background-color .45s ease;
}

.work-item:hover .image-extra {
    background-color:rgb(8 8 8 / 62%);
    /* background-color:rgba(92,107,110,.7); */
    opacity: 1;
}

.content-title h3{
    font-family: "Roboto-Light";
    font-size: 18px;
    margin-top: 8px;
}

.content-title img{
    width: 50%;
}

.mg-0 {
    margin: 0;
    padding: 0;
}

/* DIV CONHEÇA SERVIÇOS */

.div-case-recente{
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

.case-recente{
    width: 170px;
}

.divConhecaServicos {
    margin-top: 0;
    padding: 0;
    background-color: #2EB3B5;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 299;
    display: none;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -moz-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -ms-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -o-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
}

.divConhecaServicosAberto {
    display: block;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.texto-branco {
    font-family: roboto-light;
    font-size: 2rem;
    line-height: 2rem;
    color: #fff;
}

.texto-branco-conteudo {
    font-family: roboto-light;
    font-size: 1rem;
    line-height: 0;
    color: #fff;
}

.nocentro {
    align-items: center;
    height: 100vh;
}

.flex-container {
    flex-wrap: wrap;
}

.flex-container > div.conteudos {
    width: 100px;
    margin: 7px;
    padding: 0 0 15px;
    border-bottom: 0.1rem solid #ffd74d;
}

.voltar {
    padding-top: 30px;
    float: right;
}

.pointer {
    cursor: pointer;
}

.texto-branco-voltar {
    padding-top: 3px;
    font-family: roboto-light;
    font-size: 0.8rem;
    color: #fff;
}

/* CASE */

.work-item a{
    text-decoration: none;
    color:#fff;
}
.conteudo-portfolio{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.item-portfolio{
    width: 100%;
}

.item-portfolio.container-video{
    margin-bottom: -7px;
}

.item-portfolio img{
    width:100%;
}

.item-portfolio video{
    /* position: fixed;
    right: 0;
    bottom: 0; */
    width: 100%;
    min-height: auto;
}

.divcases {
    margin-top: 0;
    padding: 0;
    background-color: #2EB3B5;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 299;
    display: none;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -moz-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -ms-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
    -o-transition: transform 0.5s cubic-bezier(0.57, 0.14, 1, 0.82);
}

.divcasesAberto {
    display: block;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.img-cases {
    width: 100vw;
}


@media (max-width:768px) {
    .mobile{
        display: inherit;
    }

    .desk{
        display: none!important;
    }

    .logo {
        position: fixed;
        z-index: 300;
        width: 140px;
        text-align: center;
        margin-top: 30px;
    }

    .dimen-logo {
        width: 70px;
    }

    .container {
        padding-left: 60px;
    }

    .divisor{
        margin-top: -10px;
    }

    .seta-menu {
        position: fixed;
        z-index: 300;
        width: 150px;
        text-align: center;
        margin-top: 360px;
    }

    .menu-toggle-fechado {
        width: 100%;
        height: 100vh;
    }

    #home, #experiencia, #estetica {
        height: auto;
    }

    #secdesign, #secfilosofia, #secequipe{
        height: auto;
    }

    .mt-45 {
        margin-top: 45px;
    }
    .img_d {
        width: 85%;
    }

    .margin-mobile {
        margin: 20px 65px 100px 25px;
    }

    .title-verde, .title-white {
        font-size: 40px;
        line-height: 1.2;
    }

    .conteudo .row {
        margin: 0;
    }

    #scrolling {
        display: none;
    }

    .interagir {
        align-items: center;
        /* height: 120vh !important; */
    }

    .column {
        flex: 50%;
        max-width: 50%;
        padding: 0;
    }

    .design-conteudo,
    .filosofia-conteudo {
        /* height: 60vh !important; */
        height: auto !important;
    }

    .offset-md-2 {
        margin-left: 8.333333%;
    }

    .offset-md-2.col-lg-7.pt-10.margin-mobile {
        padding-top: 15em;
    }

    /* .conheca-link, .conheca-link2, .conheca-link3 {
        position: absolute;
        bottom: 10px;
        right: 15px;
        z-index: 90;
        margin-bottom: 10px;
        text-align: right;
    } */

    .conheca-link.mobile, .conheca-link2.mobile, .conheca-link3.mobile {
        position: relative;
        z-index: 90;
        margin-bottom: 10px;
        left: 95px;
    }

    .conheca-link.mobile svg, .conheca-link2.mobile svg, .conheca-link3.mobile svg{
        animation-name: arrow-anime-rotate-mobile-ini;
        animation-duration: 1s;
        -webkit-transform: rotate(90deg);
        transform:rotate(90deg);

    }

    .conheca-link.mobile.active svg, .conheca-link2.mobile.active svg, .conheca-link3.mobile.active svg{
        animation-name: arrow-anime-rotate-mobile;
        animation-duration: 1s;
        -webkit-transform: rotate(270deg); transform:rotate(270deg);
    }

    .conheca-link.mobile .voltar-conheca, .conheca-link2.mobile .voltar-conheca, .conheca-link3.mobile .voltar-conheca{
        display: none;
    }

    .conheca-link.mobile.active .voltar-conheca, .conheca-link2.mobile.active .voltar-conheca, .conheca-link3.mobile.active .voltar-conheca{
        display: inherit;
    }

    .conheca-link.mobile .conheca, .conheca-link2.mobile .conheca, .conheca-link3.mobile .conheca{
        display: inherit;
    }

    .conheca-link.mobile.active .conheca, .conheca-link2.mobile.active .conheca, .conheca-link3.mobile.active .conheca{
        display: none;
    }

    .nosso-servico-1, .nossa-experiencia-1, .nossa-estetica-1 {
        padding-top: 20px;
        height: auto;
        position: relative;
        display: none;
    }

    .nosso-servico-1.active, .nossa-experiencia-1.active, .nossa-estetica-1.active {
        display: inherit;
    }

    .conteudo-mobile{
        margin-top: 50px!important;
    }

    .ml-4, .mx-4 {
        margin: 7px!important;
    }

    .nocentro {
        height: auto;
    }

    @keyframes arrow-anime-rotate-mobile-ini {
        from {-webkit-transform: rotate(270deg); transform:rotate(270deg);}
        to {-webkit-transform: rotate(90deg); transform:rotate(90deg);}
    }

    @keyframes arrow-anime-rotate-mobile {
        from {-webkit-transform: rotate(90deg); transform:rotate(90deg);}
        to {-webkit-transform: rotate(270deg); transform:rotate(270deg);}
    }


}


@media (max-width: 400px)
{
    .title-verde, .title-white {
        font-size: 28px;
        line-height: 1.2;
    }
}




