body {
    font-family: 'Roboto';
}

button:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

.form-control {
    background:  #FFFFFF;
    min-height: 50px;
    padding: 1.375rem 2rem;
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    border-radius: 5px;
    color: #828282;
}

.form-control::placeholder {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #828282;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #828282;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #c5c5c545;
}



/* ini: Preloader */

#preloader {
    /*position: fixed;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 1999;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulsex {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.pulseIcon:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.10, 1.10, 1.10);
        transform: scale3d(1.10, 1.10, 1.10);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse2 {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.10, 1.10, 1.10);
        transform: scale3d(1.10, 1.10, 1.10);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


/* end: Preloader */

/* Geral */

h1.title{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
    display: table;
    margin: 0 auto;
    color: #0066B3;
}

h1.title.white{
    color: #ffffff;
}

h1.title::after{
    content: '';
    display: table;
    margin: 0 auto;
    width: 70%;
    height: 5px;
    border-radius: 15px;
    background: #F2994A;
    margin-top: 5px;
    margin-bottom: 4rem;
}

.see-more-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 52px;
    color: #5C440C;
    font-weight: bold;
    font-size: 16px;
    background:#F7B312;
    margin: 2rem auto .5rem;
    border-radius: 10px;
    transition: .4s;
    border: 2px solid #F7B312;
}

.submit-btn{
    background: #0066B3;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    border: 0;
    transition: .4s;
    border: 2px solid #0066B3;
    margin: 1rem auto 2rem;
}

.submit-btn:hover{
    background: transparent;
    color: #0066B3;
}

.see-more-btn:hover{
    background: transparent;
    color: #F7B312;
}

.owl-theme .owl-dots .owl-dot span {
    width: 20px!important;
    height: 12px!important;
    margin: 5px!important;
    background: transparent!important;
    border: 2px solid #13A538!important;
    transition: .2s!important;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span{
    background: #13A538!important;
    width: 32px!important;
}

nav.navigation-page{
    margin: 0 auto;
    display: table;
}

nav.navigation-page .page-link{
    border: 0;
    height: 30px;
    width: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    line-height: 15px;
    margin: 3px;
    transition: .3s;
    color: #4F4F4F!important;
}

nav.navigation-page .page-item.active .page-link{
    color: #ffffff!important;
    background: #0066B3;
}

/* header */

header {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: 1s;
}

header.sticky{
    transform: translateY(-40px);
        box-shadow: 0 0 5px #00000042;
}

header.sticky .navbar-brand img{
    width: 100px;
}

header.sticky nav.navbar{
    height: 80px;
    transition: 1s;
}

header .navbar-brand img{
    width: 100%;
    max-width: 175px;
    transition: width 1s;
}

header nav{
    width: 100%;
}

header nav.cni_group{
    background: #4d555b;
    border-bottom: 3px solid #275CA8;
}

header nav.cni_group .row{
    height: 40px;
}

header nav.cni_group .grupos a,
header .cni_group .social a{
    color: white;
    padding: 0 4px;
    transition: .4s;
}

header nav.navbar {
    height: 112px;
}

header nav.navbar .nav-link{
    display: block;
    padding: .7rem!important;
    color: #4F4F4F;
    font-size: 16px;
    text-transform: uppercase;
    transition: .4s;
    font-weight: normal;
}

header nav.navbar .nav-link:hover{
    font-weight: bold;
}

header .dropdown-menu{
    margin-top: 0;
    width: 100%;
    display: flex!important;
    padding: 0 30%;
    border: 0;
    background: linear-gradient(272.2deg, #BCED4C -22.36%, #219050 34.57%), rgba(33, 150, 83, 0.95);
    height: 0px;
    align-items: center;
    transition: .4s;
    transition-delay: .1s;
    transition-property: height;
    overflow: hidden;
}

header .dropdown-menu.show{
    height: 75px;
}

header .dropdown-menu a{
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: .4s;
}

header .dropdown-menu a:hover{
    background: transparent;
    color: white!important;
}

header .dropdown-menu a:hover::after{
    background: white!important;
    opacity: 1;
}

header .dropdown-menu a::after,
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link::after {
    content: '';
    display: block;
    height: 4px;
    align-items: center;
    justify-content: center;
    background-position: center;
    border-radius: 5px;
    background: #219653!important;
    margin-top: 0rem;
    position: relative;
    right: 0;
    bottom: -4px;
    transition: .6s;    
    opacity: 0;
}

.navbar-nav .nav-item:hover .nav-link::after{
    opacity: 1;
}

section.banner{
    margin-top: 155px;
    position: relative;
}

section.banner .matricula-btn{
    width: 100%;
    position: absolute;
    bottom: 50px;
}

section.banner .matricula-btn a{
    max-width: 280px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /*background: linear-gradient(272.2deg, #BCED4C -30.36%, #219050 60.57%), rgba(33, 150, 83, 0.95); */
    background: linear-gradient(90deg, #58BBE7 0%, #9BE370 100%);
    font-weight: bold;
    color: white;
    font-size: 24px;
    border-radius: 5px;
    -webkit-animation-name: pulse2;
    animation-name: pulse2;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

section.banner img{
    width: 100%;
}

/* section sobre */

section.sobre{
    padding: 4rem 0 6rem;
    background: url('../img/escola-sesi-bg.png');
    background-size: cover;
    background-position: left;
}

section.sobre#sobre-2{
    background: url('../img/escola-sesi-bg2.png');
    background-position: right;
    background-size: cover;
    padding: 7rem 0;
    margin-top: -80px;
}

section.sobre .phrase{
    background: url('../img/escola-sesi-dots.png');
    background-size: 100% 100%;
    height: 280px;
    display: flex;
    align-items: center;
    padding: 0 140px;
}

section.sobre#sobre-2 .phrase{
    background: url('../img/escola-sesi-dots2.png');
    background-size: 100% 100%;
    height: 240px;
}

section.sobre .phrase p{
    font-size: 20px;
    color: #4F4F4F;
    text-align: center; 
}

/* section diferenciais */

section.diferenciais{
    margin-top: -60px;
    background: url('../img/diferenciais-bg.png');
    padding: 6rem 0 10rem;
    background-size: 100% 100%;
    z-index: 10;
    position: relative;
}

section.diferenciais .item{
    background: #ffffff;
    transition: .4s;
    border-radius: 25px;
    height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

section.diferenciais .item svg path,
section.diferenciais .item svg{
    fill: #0066B3;
    transition: .4s;
}

section.diferenciais .item h2{
    text-align: center;
    color: #0066B3;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 2rem;
    font-weight: bold;
    transform: .4s;
}

section.diferenciais .item:hover h2{
    color: white;
}

section.diferenciais .item:hover svg path,
section.diferenciais .item:hover svg{
    fill: white;
}

section.diferenciais .diferencial:nth-child(2) .item:hover{background: #F7B312;}
section.diferenciais .diferencial:nth-child(3) .item:hover{background: #00a727;}
section.diferenciais .diferencial:nth-child(4) .item:hover{background: #ff301d;}
section.diferenciais .diferencial:nth-child(5) .item:hover{background: #017bd7;}


/* section professores */

section.professores{
    background: #FFF;
    padding: 6rem 0 10rem;
    background-size: 100% 100%;
    z-index: 10;
    position: relative;
}

section.professores h2{
    font-size: 20px;
    text-transform: uppercase;
	text-align: center;
	margin-bottom:20px;
    font-weight: bold;
    color: #0066B3;
}


section.professores .item{
    background: #ffffff;
    transition: .4s;
    border-radius: 25px;
    height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

section.professores .item svg path,
section.professores .item svg{
    fill: #0066B3;
    transition: .4s;
}

section.professores .item h2{
    text-align: center;
    color: #0066B3;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 2rem;
    font-weight: bold;
    transform: .4s;
}

section.professores .item:hover h2{
    color: white;
}

section.professores .item:hover svg path,
section.professores .item:hover svg{
    fill: white;
}

section.professores .diferencial:nth-child(2) .item:hover{background: #F7B312;}
section.professores .diferencial:nth-child(3) .item:hover{background: #00a727;}
section.professores .diferencial:nth-child(4) .item:hover{background: #ff301d;}
section.professores .diferencial:nth-child(5) .item:hover{background: #017bd7;}

/* destaques */

section.destaques{
     margin-top: -60px;
    background: url('../img/diferenciais-bg.png');
    padding: 6rem 0 10rem;
    background-size: 100% 100%;
    position: relative;
    z-index: 10;
}

section.destaques .destaque-list{
    padding: 2rem;
    background: white;
    border-radius: 5px;
}

section.destaques .destaque-list img{
    width: 100%;
    transition: .4s;
}

section.destaques .destaque-list img:hover{
    transform: scale(.9);
    box-shadow: 0 0 5px #00000024;
}

section.destaques .destaque-list .owl-dots{
    position: absolute;
    bottom: -100px;
    width: 100%;
}

section.destaques .owl-theme .owl-dots .owl-dot.active span,
section.destaques .owl-theme .owl-dots .owl-dot:hover span{
    background: #F7B312!important;
}

section.destaques .owl-theme .owl-dots .owl-dot span{
    border: 2px solid #F7B312!important;
}

/* sessão depoimentos */

section.depoimentos{
    padding: 3rem 0 7rem;
}

section.depoimentos h1.title::after{
    margin-bottom: 1.5rem;
}

section.depoimentos .card{
    height: 500px;
    background: url('../img/depoimentos-shape.png');
    background-size: 100% 100%;
    border: 0;
    padding: 100px 140px 80px;
    display: flex;
    align-items: center;
    flex-direction: row;    
}

section.depoimentos .card .card-img{
    width: 240px;
    height: 265px;
    background: url('../img/depoimento-img-bg.png');
    background-size: 100% 100%;
    padding: 15px;
    margin-right: 2.5rem;
}

section.depoimentos .card .card-img img{
    width: 100%;
    height: 235px;
    object-fit: cover;
    object-position: center; 
    border-radius: 15px;
}

section.depoimentos .card .card-content p{
    color: #4F4F4F;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

section.depoimentos .card .card-content span{
    font-style: italic;
}

/* sessão blog */

section.blog{
     margin-top: -60px;
    background: url('../img/diferenciais-bg.png');
    padding: 6rem 0 10rem;
    background-size: 100% 100%;
    transform:scaleX(-1);
    position: relative;
    z-index: 10;
    margin-bottom: -90px;
}

section.blog .container{
    transform:scaleX(-1);
}

section.blog .card{
    background: transparent;
    border: 0;
    transition: .4s;
    margin-bottom: 25px;
}

section.blog .card:hover{
    transform: scale(1.1);
}

section.blog .card .card-img{
    width: 100%;
    padding: 5px;
    background: url('../img/blog-img-bg.png');
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transform: scale(1.05) translateY(-5px);
    overflow: hidden;
}

section.blog .card .card-img img{
    width: 100%;
    height: 190px;
    object-position: center;
    object-fit: cover;
    border-radius: 5px;
}

section.blog .card .card-content small{
    color: #ffffff;
    font-style: italic;
    font-size: 10px;
}

section.blog .card .card-content h2{
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

section.blog .card .card-content p{
    color: #ffffff;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

section.blog .element_1{
    position: absolute;
    top: -320px;
    right: 0;
    transform: scaleX(-1);
}

section.blog .element_2{
    position: absolute;
    bottom: -320px;
    left: 0;
    transform: scaleX(-1);
}

section.blog .element_3{
    position: absolute;
    top: 15px;
    left: 0;
}

section.blog.interna{
    background: #ffffff;
    padding: 4rem 0;
    margin-top: 0!important;
}

section.blog.interna .post{
    display: flex;
    transition: .4s;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
    margin-bottom: 3rem;
}

section.blog.interna .post:last-child{
    border-bottom: unset;
    margin-bottom: 3rem;
}

section.blog.interna .post img{
    height: 300px;
    width: 100%;
    min-width: 360px;
    max-width: 360px;
    object-fit: cover;
    object-position: center;
    margin-right: 2.5rem;
    border-radius: 5px;
}

section.blog.interna .post .content small{
    color: #BDBDBD;
    font-size: 14px;
}

section.blog.interna .post .content h2{
    color: #0066B3;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: .3s;
}

section.blog.interna .post .content p{
    color: #4F4F4F;
    font-size: 18px;
    transition: .3s;
}

section.blog.interna .post .content a{
    color: #FFC207;
    transition: .3s;
}

section.blog.interna .post:hover .content a,
section.blog.interna .post:hover .content p,
section.blog.interna .post:hover .content h2{
    color: #E2AD0C;
}

section.blog.interna .post:hover{
    transform: scale(1.04);
}

section.blog.interna .post-detail h2{
    color: #0066B3;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: .3s;
    text-align: center;
}

section.blog.interna .post-detail .content p{
    color: #4F4F4F;
    font-size: 18px;
}

section.blog.interna .post-detail img{
    width: 70%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin: 10px auto 25px;
    display: block;
}

section.blog.interna .post-detail small{
    color: #BDBDBD;
    font-size: 14px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* sessão unidades */

section.unidades{
    padding: 6rem 0 5rem;
    background: #F2F2F2;  
}

section.unidades .card{
    padding: 2.5rem 4rem 1rem;
    border-radius: 15px;
    border: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    min-height: 225px;
}

section.unidades .card h2{
    color: #0066B3;
    font-weight: bold;
    font-size: 18px;
    text-transform:uppercase;
    margin-bottom: 20px;
}

section.unidades .card ul{
    list-style: none;
    padding-left: 0;
}

section.unidades .card ul li{
    display: flex;
    margin-bottom: 10px;
}

section.unidades .card ul li i{
    color: #0066B3;
    margin-right: 15px;
    position: relative;
    top: 3px;
}


/* section escola */

section.escola{
    background: url('../img/a_escola-bg.png');
    background-size: cover;
    background-position: left;
    padding: 4rem 0 6rem;
    position: relative;
}

section.escola .item{
    padding-bottom: 3rem;
}

section.escola .item svg{
    margin: 0 3rem;
    height: 100px!important;
    object-fit: contain;
    min-width: 100px;
}

section.escola .item h2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #0066B3;
}

section.escola .item p{
    color: #4F4F4F;
    font-size: 18px;
}

section.escola .element_2{
    position: absolute;
    right: 0;
    top:-150px;
}

/* sessão proporcionamos */

section.proporcionamos .item{
    border: 1px solid #ffffff;
    border-radius: 5px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

section.proporcionamos .item h2{
    margin: 0!important;
    text-align: center;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

/* section pre matricula */

section.pre-matricula{
    padding: 4rem 0;
    position: relative;
}

section.pre-matricula .element_2{
    position: absolute;
    right: 0;
    top:-150px;
}

/* sessão tour virtual */

section.tour-virtual .cabecalho{
    background: url('../img/tour-virtual-bg.png');
    background-size: cover;
    background-position: center;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.tour-virtual h1.title::after{
    margin-bottom: 0;
}

/* footer */

footer{
    background: url('../img/diferenciais-bg.png');
    background-size: cover;
    background-position: center;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p{
    margin: 0!important;
    color: white;
    font-size: 20px;
}

@media(max-width: 1199px){
    header .navbar-collapse{
        width: 100%;
        position: absolute;
        left: 0;
        top: 110px;
        background: white;
    }
    header nav.navbar .nav-item{
        position: relative;
    }
    header nav.navbar .nav-link{
        text-align: center;
        position: relative;
    }
    header .dropdown-menu a::after,
    .navbar-nav .nav-item.active .nav-link::after,
    .navbar-nav .nav-item .nav-link::after{
        width: 50px;
        margin: 0 auto;
    }
    header .dropdown-menu{
        position: absolute!important;
        top: 50px;
        transition: .4s height;
        flex-direction: column;
    }
    header .dropdown-menu.show{
        height: auto;
        padding: 15px;
    }
    section.sobre{
        background-position: -200px;
    }
    section.sobre .phrase{
        height: 240px;
    }
    section.diferenciais .item{
        height: 220px;
    }
    section.sobre#sobre-2{
        background-position: 80%;
    }
    section.sobre#sobre-2 .phrase{
        height: 210px;
    }
    section.blog,
    section.diferenciais,
    section.destaques{
        background-size: cover;
    }
    section.blog .element_1{
        width: 150px;
        top: -100px;
    }
    section.blog .element_2,
    section.escola .element_2,
    section.pre-matricula .element_2{
        bottom: -100px;
        width: 150px;
    }
    section.unidades .card{
        padding: 2.5rem 3rem 1rem;
    }
    section.escola{
        background-position: -50px top;
    }
}

@media(max-width: 991px){
    section.escola{
        background: unset;
    }
    section.depoimentos .card{
        height: 400px;
            padding: 60px 45px 20px 70px;
    }
    section.depoimentos .card .card-img{
        width: 180px;
        height: 195px;
        padding: 10px;
            margin-right: 1.5rem;
    }

    section.depoimentos .card .card-img img{
        height: auto;   
    }
    section.depoimentos .card .card-content p{
        font-size: 15px;
    }
    section.sobre{
        background: url(../img/escola-sesi-bg_.png);
        background-size: cover;
        background-position: left;
    }
    section.sobre#sobre-2{
        background: url(../img/escola-sesi-bg2_.png);
        background-size: cover;
        background-position: right;
    }
    section.blog .element_3{
        position: absolute;
        top: 100px;
        left: 25%;
        width: 50%;
    }
}

@media(max-width: 767px){
    img#banner-interna{
        height: 150px;
        object-fit: cover;
    }
    section.escola .item svg{
        display: block;
        margin: 20px auto;
    }
    section.escola .item h2{
        text-align: center;
    }
    header.sticky{
        transform: translateY(-60px);
    }
    header .navbar-brand img{
        max-width: 150px;
    }
    header nav.cni_group .row{
        height: 60px;
    }
    header nav.cni_group .grupos,
    header nav.cni_group .social{
        width: 90%;
        display: flex;
        justify-content: flex-end;    
    }
    section.sobre{
        padding: 3rem 0;
    }
    section.banner .matricula-btn{
        bottom: -35px;
        transform: scale(.7);
    }
    section.sobre .phrase{
        padding: 0 35px;
        background: url(../img/escola-sesi-dots_.png);
        background-size: 100% 100%;
        height: 200px;
    }
    section.sobre .phrase p{
        font-size: 18px;
    }
    section.diferenciais{
        padding: 6rem 0;
    }
    section.diferenciais .item{
        height: 180px;
        padding: 1rem 2rem .2rem;
    }
    section.diferenciais .item svg{
        height: 80px;
        width: 80px;
    }
    section.diferenciais .item h2{
        height: 40px;
        text-align: center;
    }
    section.sobre#sobre-2{
        padding: 7rem 0 4rem;
    }
    section.sobre#sobre-2 .phrase{
        background: url(../img/escola-sesi-dots2_.png);
        background-size: 100% 100%;
        height: 180px;
    }
    section.depoimentos .card{
        padding: 60px;
        height: auto;
        min-height: 650px;
        justify-content: center;
        background: url(../img/depoimentos-shape_.png);
        background-size: 100% 100%;
        flex-direction: column;
    }
    section.depoimentos .card .card-img{
        margin-right: 0;
        margin-bottom: 2rem;
    }
    section.unidades .card{
        padding: 2rem;
    }
    section.blog.interna .post{
        flex-direction: column;
        align-items: center;
    }
    section.blog.interna .post img{
        margin-bottom: 15px;
        min-width: auto;
        margin: 0 auto 15px;
    }
    section.blog.interna .post h2,
    section.blog.interna .post small{
        text-align: center;
        display: block;
    }
    section.blog.interna .post-detail .content p{
        margin-bottom: 3rem;
    }
    section.blog .card .card-img img{
        height: 130px;
    }
    section.blog .element_3{
        top: 120px;
        left: 20%;
        width: 60%;
    }
    section.blog .element_1{
        width: 100px;
        top: -30px;
    }
    section.blog .element_2,
    section.pre-matricula .element_2{
        width: 60px;
        bottom: -50px;
    }
    section.blog .element_2,
    section.escola .element_2,
    section.pre-matricula .element_2{
        top: -50px;
        width: 60px;
    }
    footer p{
        text-align: center;
        padding: 0 25px;
        font-size: 16px;
    }
}