@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@700&family=Josefin+Sans&family=Montserrat&family=Rubik&display=swap');

/***************Default setting****************/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
    background: transparent;
}

/**************** Navbar *****************/
#nav-bar{
    position: fixed;
    width: 100%;
    z-index: 20;
    background: #130d08;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    height: 10vh;
    list-style: none;
}

#nav-links a, li, span{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 0 15px;
    transition: all ease 0.5s;
}
#nav-item:hover{
    transform: translateY(-15%);
    color: rgb(219, 218, 218)
}

span{
    font-size: 22px;
}
.sandwich-bar{
    display: none;
}
.company-name img{
    width: 250px;
}


/*****************Contato****************************/

#contato{
    min-height: 100vh;
    background: #e7e7e7;
    color: #fff;
}
.contact-title h1{
    font-size: 45px;
    text-align: center;
    margin-bottom: 70px;
    color: #000;
    padding-top: 120px;
}
.contato{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.contact-info{
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.contact-items{
    min-height: 200px;
    max-height: 200px;
    width: 30%;
    border-radius: 15px;
    background: #343434;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}
.contact-item{
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-items p{
    padding: 10px;
    padding-left: 15px;
}
.contact-title span{
    font-size: 18px;
    font-weight: 800;
    color: #ddd;
    padding-top: 50px;
}

.contact-message{
    height: auto;
    width: 90%;
    border-radius: 15px;
    background: #343434;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #000;
    margin-bottom: 50px;
}
.material-icons{
    padding-top: 10px;
    padding-bottom: -1000px;
}
.contact-message span{
    color: #fff;
    font-size: 40px;
    padding-top: 30px;
}
.contact-message .input-place{
    width: 90%;
}
.contact-message .input-item{
    position: relative;
    width: 100%;
    margin: auto;
    margin-top: 10px;
}
.contact-message .input-place textarea{
    height: 200px;
}
.contact-message .input-item input,
.contact-message .input-item textarea{
    color: #000;
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid rgb(255, 255, 255);
    outline: none;
    background: #e7e7e7;
}
.contact-message .input-place span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #343434;
}
.contact-message input textarea{
    color: #e7e7e7;
}
.contact-message .input-place input:focus ~ span,
.contact-message .input-place input:valid ~ span,
.contact-message .input-place textarea:focus ~ span,
.contact-message .input-place textarea:valid ~ span{
    font-size: 12px;
    transform: translateY(-20px);
    color: #fff;
}

.contact-message .input-place .sendBtn{
    height: 40px;
    width: 100px;
    cursor: pointer;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 800;
}

/***************** Footer ***************************/
#footer{
    height: 40vh;
    min-height: 20vh;
    max-height: 100vh;
    background: #000;
    width: 100vw;
    padding-top: 35px;
    color: #fff;
}
.footer-wrap{
    flex-wrap: wrap;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-style: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socials li{
    margin: 0 10px;
}

.socials a{
    text-decoration: none;
    color: #fff;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom span{
    opacity: .4;
    font-weight: 200;
    font-size: 25px;
}
.footer-bottom span a{
    text-decoration: none;
    color: inherit;
}








/***************** Media Queries **************************/
@media (max-width: 1300px) {
    .slider-text{
        top: 65%;
        height: 50vh;
        width: 100vw;
    }
   
    .photo-gallery{
        grid-template-columns: repeat(3,1fr);
    }
    .contact-info{
        display: inline-block;
        margin: auto;
    }
    .contact-items{
        min-width: 200px;
        width: auto;
        margin: 20px auto;
    }
}
@media (max-width: 970px) {
    .photo-gallery{
        grid-template-columns: repeat(2,1fr);
    }
    .checkBar h3{
        display: none;
    }
    label{
        margin: auto;
    }
}
@media (max-width: 650px) {
    .photo-gallery{
        grid-template-columns: repeat(1,1fr);
    }
}
@media (max-width: 880px) {
    .checkBar, label{
        font-size: 15px;
    }
    .card-presentation{
        flex-direction: column-reverse;
        min-width: 300px;
        max-width: 860px;
        min-height: 600px;
        margin: 150px 20px 80px 20px;
        
    }
    .presentation-img{
        transform: translateX(0);
        transform: translateY(-6rem);
    }
    .slider-text h2{
        font-size: 18px;
    }
    .slider-text p{
        font-size: 15px;
    }

    #nav-links{
        position: fixed;
        width: 100%;
        height: 95vh;
        background: #343434;
        top: 60px;
        left: 100%;
        text-align: center;
        transition: 0.8s ease;
        z-index: 1;
    }
    #nav-item{
        width: 100%;
        display: block;
        margin: 30px auto;
        line-height: 10px;
    }

    .sandwich-bar{
        display: block;
    }
    .sandwich-bar a{
        color: #fff;
        cursor: pointer;
    }
    .sandwich-bar img{
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
    }
    .contact-message-title{
        font-size: 28px;
    }    
    .contact-message .input-place{
        left: 40px;
    }
}
@media (max-width: 490px) {
    .contact-message-title{
        font-size: 20px;
    }
    .company-name img{
        width: 150px;
    }
}
@media (max-height:500px) {
    
    #footer{
        height: 100vh;
    }
}