/*
0. Root de cores
1. Reset
2. Navbar e Footer
3. Blog
4. Servicos
5. Contato
*/

/* ===== Início Root de cores =====*/
:root {
    --verde: #00331D;
    --verde-escuro: #00331D;
    --branco: #ffffff;
    --preto: #000000;
    --amarelo-escuro: #fdd21a;
    --amarelo-meio-termo: #ffde59;
    --amarelo-claro: #ffde59;
    --verde-claro: #2C827E;
    --verde-shadow: #e5e5e5;
}
/* ===== Fim Root de cores =====*/

/* ===== Início Reset ======*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: var(--verde);
    text-decoration: none;
}

a:hover {
    color: var(--verde-claro);
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Khula", sans-serif;
}

section {
    padding: 70px 0 30px 0;
}

/* ===== Fim Reset ======*/

/* ===== Início Navbar e Footer ======*/

/*=============
    Navbar
==============*/
body {
    width: 100%;
    height: 100%;
}

.fixed-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--branco);
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 100;
}

.logo {
    width: 140px;
    margin-left: 25px;
}

.navbar {
    position: relative;
    right: 10%;
}

.nav-list {
    list-style: none;
    display: flex;
    font-family: "Poppins", sans-serif;
}

.nav-list li {
    letter-spacing: 1.5px;
    margin-right: 15px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--verde);
    margin: 8px;
    transition: 0.3s;
}

@media (max-width: 999px) {
    body {
        overflow-x: hidden;
    }
    .inicio:hover,
    .sobrenos:hover,
    .equipe:hover,
    .servicos:hover,
    .portfoliolayout:hover,
    .blog:hover,
    .contato:hover {
        background-color: var(--verde-claro);
    }

    a {
        color: var(--preto);
    }

    a:hover {
        color: var(--branco);
    }

    .logo {
        margin-left: 25%;
        position: relative;
        right: 130px;
    }

    .navbar {
        position: revert;
        right: 0%;
    }

    .nav-list {
        display: flex;
        position: absolute;
        top: 100px;
        right: 0;
        width: 260px;
        height: 286px;
        background: var(--branco);
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }

    .nav-list li {
        margin-left: 0;
        opacity: 0;
    }

    .mobile-menu {
        display: block;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .mobile-menu.active .line2 {
        opacity: 0;
    }

    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -7px);
    }
}

@media (max-width: 660px) {
    .fixed-top {
        height: 80px;
    }

    .inicio,
    .sobrenos,
    .atividades,
    .experimentos,
    .material,
    .contato {
        padding: 3px 0px 3px 25px;
    }

    .inicio:hover,
    .sobrenos:hover,
    .atividades:hover,
    .experimentos:hover,
    .material:hover,
    .contato:hover {
        background-color: var(--verde-claro);
    }

    a {
        color: var(--preto);
    }

    a:hover {
        color: var(--branco);
    }

    .logo {
        margin-left: 57px;
        position: relative;
        right: 90px;
        width: 100px;
    }

    .mobile-menu div {
        right: 0;
        width: 25px;
        height: 2px;
        background: var(--verde);
        margin: 6px;
        transition: 0.3s;
    }

    .nav-list {
        top: 80px;
        width: 210px;
        height: 222px;
    }

    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .mobile-menu.active .line2 {
        opacity: 0;
    }

    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
}

@media (max-width: 500px) {
    .fixed-top {
        margin: 10px 10px 0 20px;
        width: 90%;
        height: 70px;
        position: fixed;
    }

    .logo {
        margin-left: 88px;
    }

    .nav-list {
        width: 190px;
        top: 70px;
    }
}

.nav-list.active {
    opacity: 1;
    transition: 0.4s ease-in;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
#material-adicional{
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.material-title{
    width: 240px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.material-title{
    transition: 0.6s ease;
}
.material-title h4{
    opacity: 1;
    color: var(--verde-escuro);
    font-size: 20px;
}
.material-title:hover h4{
    color: var(--verde-claro);
}
.material-title:hover{
    background: var(--verde-shadow);
}
/*=============
    Footer
==============*/

#footer .footer-top {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--branco);
    height: 100px;
}

.div-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.linha-vertical {
    width: 1px;
    height: 66px;
    margin: 0 7px;
    background: var(--verde);
}

.texto-footer {
    color: var(--verde);
}

.link-buttons-top {
    margin-right: 48px;
}

.fab-top {
    font-size: 25px;
    color: var(--verde-claro);
    margin-right: 34px;
}

#footer .footer-down {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--verde-claro);
    height: 100px;
}

.footer-down-p {
    color: var(--branco);
}

.footer-logo {
    width: 140px;
}

.fab-down {
    font-size: 25px;
    color: var(--verde-claro);
    margin-left: 34px;
}

@media (max-width: 660px) {
    #footer .footer-top {
        height: 80px;
    }

    .div-footer-logo {
        margin-left: 10px;
    }

    .link-buttons-top {
        margin-right: 5px;
    }

    .texto-footer {
        font-size: 10px;
    }

    .fab-top {
        font-size: 18px;
        margin-right: 18px;
    }

    .fab-down {
        font-size: 18px;
        margin-left: 18px;
    }

    #footer .footer-down {
        height: 80px;
    }

    .footer-down-p {
        font-size: 13px;
        margin-left: 5px;
    }

    .footer-logo {
        width: 100px;
    }
}
@media (max-width: 400px) {
    .linha-vertical {
        height: 52px;
    }

    .fab-top {
        font-size: 16px;
        margin-left: 5px;
    }

    .link-buttons-top {
        display: flex;
    }

    .link-buttons-down {
        margin-right: 20px;
        display: flex;
    }

    .fab-down {
        font-size: 16px;
        margin-left: 10px;
    }

    .footer-logo {
        width: 88px;
    }
}
/* ===== Fim Navbar e Footer ======*/

/* ===== Inicio Section About  ======*/
.about{
    padding: 8vw 0;
}
.about-container{
    display: flex;
    width: 100%;
}
@media screen and (max-width: 1000px){
    .about-container{
        flex-direction: column;
    }
    .about-container-texts, .about-image-index{
        width: 100% !important;
        padding: 30px !important;
    }
    .about-text-index{
        font-size: 1rem !important;
    }
    .about-title-index{
        font-size: 1.3rem !important;
    }
    .about-image-index{
        height: auto;
    }
}
.about-container-texts{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    padding: 50px;
}
.about-title-index{
    font-weight: bold;
    color: var(--verde-claro);
    font-size: 40px;
}
.about-text-index{
    max-width: 700px;
    text-align: justify;
    color: var(--verde-claro);
    font-size: 20px;
}
.about-image-index{
    width: 50%;
    padding: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.about-image-index img{
    width: 100%;
}
/* ===== Fim Section About  ======*/

/* ===== Inicio responsividade Sobre Nós ======*/


/* ===== Fim responsividade Sobre Nós ======*/

/* ===== Section Portfolio Index ======*/

section {
    padding-top: 5vw;
    overflow: hidden;
}

.container-text {
    margin-bottom: 25px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.container-text h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--verde-claro);
    position: relative;
    z-index: 2;
    font-family: "Poppins";
    font-weight: 700;
}

.container-text p {
    font-family: "Khula";
    font-size: 18px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    color: var(--verde);
    width: 60vw;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    .section-title span {
        font-size: 45px;
    }
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
    width: 400px;
    height: 300px;
    position: relative !important;
    left: unset !important;
    top: unset !important;
}

.portfolio .portfolio-item img,
.portfolio-item-mobile img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info,
.portfolio .portfolio-item-mobile .portfolio-mobile-text {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: var(--verde-claro);
    width: 100%;
    height: 95px;
}

.portfolio .portfolio-item .portfolio-info h4,
.portfolio .portfolio-item-mobile .portfolio-mobile-text h4 {
    word-wrap: break-word;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: var(--branco);
    text-align: start;
    margin: 15px 0 0 20px;
}

.portfolio .portfolio-item .portfolio-info p,
.portfolio .portfolio-item-mobile .portfolio-mobile-text p {
    word-wrap: break-word;
    color: var(--branco);
    font-size: 14px;
    margin-bottom: 0;
    text-align: start;
    margin-left: 20px;
    width: 250px;
    height: 30px;
    padding-bottom: 2px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link,
.portfolio .portfolio-item-mobile .portfolio-mobile-text .preview-link,
.portfolio .portfolio-item-mobile .portfolio-mobile-text .details-link {
    position: absolute;
    right: 5px;
    font-size: 24px;
    top: 10px;
    color: white;
    transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover,
.portfolio .portfolio-item-mobile .portfolio-mobile-text .preview-link:hover,
.portfolio .portfolio-item-mobile .portfolio-mobile-text .details-link:hover {
    color: var(--verde-escuro);
}

.portfolio .portfolio-item .portfolio-info .details-link,
.portfolio .portfolio-item-mobile .portfolio-mobile-text .details-link {
    right: 15px;
}

.portfolio .portfolio-item:hover .portfolio-info,
.portfolio .portfolio-item-mobile:hover .portfolio-mobile-text {
    opacity: 1;
    bottom: 0;
}

.fa-plus {
    padding: 24px;
}
.portfolio-button-more {
    display: flex;
    justify-content: center;
    margin-top: 2vw;
    height: 49px;
    align-items: center;
    width: 300px;
}

.portfolio:hover {
    background-color: var(--branco);
}

.scrolling-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    gap: 3vw;
    margin-bottom: 90px;
    height: auto !important;
}

/* Mobile */
.portfolio-mobile {
    display: none;
    width: 100vw;
}

@media( max-width: 1280px){
    .scrolling-wrapper{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 850px) {
    .portfolio-mobile {
        display: block !important;
    }
    .portfolio-desktop {
        display: none !important;
    }
    .portfolio-item-mobile {
        display: flex !important;
    }
    .slick-track {
        display: flex !important;
    }
    .slick-initialized .slick-slide {
        display: block;
    }
    .portfolio-container {
        display: flex !important;
        width: 360px;
        flex-wrap: wrap;
    }

    .portfolio-container .portfolio-info h4 {
        margin: 0 0 0 20px;
        font-size: 1rem;
    }
    .portfolio-container .portfolio-info p {
        font-size: 0.75rem;
    }
}

.portfolio-item-mobile img {
    height: auto;
    width: 90vw;
    object-fit: contain;
    min-width: 90vw;
    min-height: 240px;
}

.portfolio-item-mobile {
    margin: 0 5px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative !important;
    left: unset !important;
    top: unset !important;
}

.slick-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.portfolio-mobile-text {
    background-color: var(--verde-claro);
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    display: flex;
}
.portfolio .portfolio-item-mobile .portfolio-mobile-text h4 {
    margin: 0 0 0 20px;
    font-size: 1rem;
}
.portfolio .portfolio-item-mobile .portfolio-mobile-text p {
    font-size: 0.75rem;
}

.portfolio-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
}
.portfolio-title-container > h2 {
    color: var(--verde-claro);
}

.item {
    position: relative !important;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    bottom: unset !important;
}

.portfolio-button-more button {
    width: 283px;
    height: 49px;
    background-color: var(--verde-claro);
    color: var(--branco);
    border: none;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
    cursor: pointer;
    font-family: "khula", sans-serif;
    font-weight: 700;
    font-size: 1.09rem;
    margin-bottom: 45px;
    transition: all 0.4s ease-out;
}

.portfolio-button-more:hover button {
    background-color: var(--verde-escuro);
    color: var(--branco);
    cursor: pointer;
}

#material, #atividades{
    background-color: #ffde59;
}
.atividades, .experimentos, .material{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
@media screen and (max-width: 850px ){
    .atividades, .experimentos, .material{
        gap:50px;
    }
}
/* ===== Section Portfolio Page ======*/

.portfolio-main {
    padding: 6.4vw 0;
}
.portfolio-button-categorie {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    gap: 20px;
    padding-top: 33px;
}
.portfolio-button-categorie button {
    display: block;
    height: 43px;
    padding: 2vh 4vh;
    background-color: var(--verde-claro);
    font: normal bold 1rem/25px "Khula";
    border: none;
}
.portfolio-button-categorie a {
    color: var(--branco);
}
#portfolio-filters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}
#portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    color: var(--preto);
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    border: 1px solid var(--preto);
}

#portfolio-filters li:hover,
#portfolio-filters li.filter-active {
    color: #fff;
    background: var(--verde-claro);
    filter: drop-shadow(0px 3.05152px 3.05152px rgba(0, 0, 0, 0.25));
    border: none;
}

#portfolio-filters li:last-child {
    margin-right: 0;
}

@media screen and (max-width: 400px) {
    .title-container {
        padding-top: 7.4vh;
    }
}

/* ===== Section Project Page ======*/
.project-section{
    padding-top: 120px !important;
}
.project-titles {
    max-width: 90.78vw;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding-bottom: 20px;
}
.project-details-style {
    width: 10px;
    height: auto;
    background-color: var(--verde-claro);
    margin-right: 24px;
}
.project-title-and-subtitle h1 {
    font: normal bold 3rem/4.5rem "Poppins";
    text-align: left;
    color: var(--verde-claro);
    padding-top: 15px;
}
.project-title-and-subtitle h4 {
    font: normal 600 1.4rem/1rem "Khula";
    color: var(--verde);
    padding: 15px 0 15px 0;
}
.project-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 40vw;
    height: auto;
    padding-bottom: 4.83vw;
}
.project-img img {
    display: block;
    object-fit: contain;
    width: 100%;
    max-height: 80vh;
}
.project-text {
    width: 73.2vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
}
.project-text p {
    width: 100%;
    height: auto;
    text-align: justify;
    font: normal 300 1.124rem/1.8125rem "Khula";
    color: var(--verde);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.project-text p img {
    max-width: 570px;
    max-height: 600px;
    height: auto !important;
    width: 90vw !important;
}

@media screen and (max-width: 600px) {
    .project-title-and-subtitle h1 {
        font-size: 2rem;
        line-height: 2.4rem;
    }
    .project-title-and-subtitle h4 {
        font-size: 1.3rem;
        line-height: 1.5rem;
        text-align: justify;
    }
}

/* ==== 5. Contato Inicio ========*/
.div-titulo-contato {
    text-align: center;
}

.titulo-contato {
    font-size: 3rem;
    color: var(--verde-claro);
    line-height: 72px;
    margin-bottom: 0.5vh;
    padding-top: 40px;
}

.subtitulo-contato {
    font-size: 1.125rem;
    line-height: 28.9px;
    color: var(--verde);
    margin-bottom: 4vh;
}

.form-inputs {
    width: auto;
    margin: 55px 5% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-nome {
    width: 100%;
    height: 46px;
    padding: 8px;
    font-size: 15px;
    margin-bottom: 15px;
}

.div-email-telefone {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.input-email,
.input-telefone {
    width: 49%;
    height: 46px;
    padding: 8px;
    font-size: 15px;
    margin-bottom: 15px;
}

.input-mensagem {
    height: 178px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 8px;
    font-size: 15px;
    margin-bottom: 30px;
}

.input-nome,
.input-telefone,
.input-email,
.input-mensagem {
    font-family: "Poppins", sans-serif;
}

.botao-enviar {
    width: 283px;
    height: 49px;
    background-color: var(--verde-claro);
    color: var(--branco);
    border: none;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
    cursor: pointer;
    font-family: "khula", sans-serif;
    font-weight: 700;
    font-size: 1.09rem;
    margin-bottom: 45px;
    transition: all 0.4s ease-out;
}

.botao-enviar:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
}

.loading,
.error-message,
.sent-message {
    display: none;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.error-message {
    color: red;
}

.sent-message {
    color: green;
}

.loading {
    position: relative;
    width: 5vh;
    height: 5vh;
    border: 6px solid var(--verde-shadow);
    border-radius: 50%;
    border-top-color: #1289a7;
    margin: 0 10px;
    animation: animacao 1s infinite linear;
}

@keyframes animacao {
    to {
        transform: rotate(1turn);
    }
}

@media (max-width: 450px) {
    .titulo-contato {
        font-size: 2.4rem;
    }
}
/* ==== 4. Services Fim =======*/


/* ==== Button Whatsapp =========*/
.whatsapp-float {
    position: fixed;
    z-index: 2000;
    width: 75px;
    height: 52px;
    text-align: center;
    top: 50%;
    right: 0;
    background: var(--verde-claro);
    color: var(--branco);
    border-radius: 30px 0px 0px 30px;
    font-size: 39px;
    padding-top: 3px;
    transition: all 0.4s ease-out;
}
.whatsapp-float:hover,
.whatsapp-icon:hover {
    background-color: var(--verde-escuro);
}

.whatsapp-icon {
    position: absolute;
    left: 23px;
    top: 7px;
}

@media (max-width: 900px) {
    .whatsapp-float {
        top: 20%;
    }
}
@media (max-width: 500px) {
    .whatsapp-float {
        top: 15%;
    }
    .project-img{
        width: 80vw;
    }
}
/* ==== Banner =========*/
.index {
    padding-top: 101px;
}
.banner-carousel {
    height: 91vh;
}
.banner-img {
    max-width: 100vw !important;
    max-height: 91vh;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.banner-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 91vh;
    padding: 4vw;
}

.banner-title {
    color: var(--branco);
    text-align: center;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-bottom: 30px;
}
.banner-title h2 {
    font: normal 700 2.25rem/3.125rem "Khula";
    background-color: var(--branco);
    color: var(--verde-claro);
    padding: 0.3vw 1.5vw;
}
.banner-button button {
    background-color: var(--verde-claro);
    color: var(--branco);
}
.banner-button button:hover {
    background-color: var(--verde-escuro);
    cursor: pointer;
}

.slick-dots{
    position: relative;
    bottom: 80px;
}
.contato-container{
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
}
.contatos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    height: 70vh;
}
.generico-container{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-evenly;
}
.container-email,
.container-location,
.container-facebook,
.container-linkedin,
.container-whatsapp{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 500px;
    height: 40px;
    color: var(--verde-claro);
    margin: 0 30px;
}
.contato-contato-email{
    font-size: 32px;
    margin: 0 6px;
}
.download{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}
.download a {
    font-family: "Khula", sans-serif;
    width: 200px;
    height: 50px;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    transition: 0.5s ease;

    background: var(--verde-escuro);
    color: var(--branco);
}
.download a:hover{
    background: var(--verde-shadow);
    color: var(--verde-claro);
}
@media (max-width: 500px) {
    #index
    {
        padding: 0;
    }
    .banner-information {
        padding: 52vw 4vw 4vw 4vw;
        height: 100vh;
    }
    .banner-img, .banner-carousel{
        height: 100vh;
        max-height: 100vh;
    }
    .banner-carousel{
        margin-bottom: 4vw;
    }
    .container-email,
    .container-location,
    .container-facebook,
    .container-linkedin,
    .container-whatsapp{
        width: 300px;
        height: 40px;
    }
}
