@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,200;1,300;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    display: flex;
    height: 80px;
    width: 100%;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    padding: 0 60px 0 60px;
}

nav .logo1 {
    display: flex;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.9s ease;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}


nav ul li a {
    color: #006BFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.9s ease;
    
}

nav ul li a:hover {
    background: #006BFF;
    color: #fff;
}

nav .menu-btn i {
    color: #006BFF;
    cursor: pointer;
    display: none;
}

.banner {
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(../img/bannerback.gif);
    background-size: cover;
    background-repeat: no-repeat;
    height: 85vh;
    width: 100%;
    background-position: center;
    transition: all 0.9s ease;
}

.back {
    margin: 0 450px 0 0;
}

.text{
    padding-top: 160px;
    padding-bottom: 120px;
    color: #fff;
    font-weight: 200;
    transition: all 0.9s ease;
}

.text h1 {
    font-size: 55px;
    font-weight: 1200;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.text p {
    font-size: 20px;
}

.title {
    display: flex   ;
    align-items: center;
    align-content: center;
    color: #fff;
    padding: 30px 0 30px 0;
    justify-content: center;
    font-size: 18px;
}

.bg {
background-color: #006BFF;
}

.services {
    display: flex;
    justify-content: space-between;
    color: #006BFF;
    padding: 0 0 0 0;
}

.images {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

.img {
   width: 50%;
   height: auto;
   margin-bottom: -7px;
   padding-bottom: 0;
   background: rgb(0,64,152);
   background: linear-gradient(1deg, rgba(0,64,152,1) 0%, rgba(0,212,255,0) 34%);
}

.imagem {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.9s ease;
    cursor: pointer;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7),rgba(0,0,0,0.7));
}

.text1 {
    color: white;
    font-size: 24px;
    position: absolute;
    top:250px;
    font-weight: 600;
    margin: 0 0 0 60px;
}

.bloco {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 25px 0 0 0;
}

.text3 {
    width: 50%;
    color: #006BFF;
    text-align: left;

}

.Parent {
    padding: 0 60px 0 60px;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    margin: 35px 0 0 0;
}

.child1 {
    width: 50%;
    height: auto;
    text-align: left;
    color: #006BFF;
}

.child1 p {
    font-size: 15px;
    line-height: 25px;
}

.child1 ul ul li {
    margin: 0 0 0 25px;
}

.child2 {
    width: 50%;
    height: auto;
}

.child2 img {
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

footer {
    background-color: #006BFF;
    height: auto;
}

.Parent1 {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    padding: 50px 0 10px 0;
}

.child3 {
    width: 50%;
    height: auto;
    text-align: left;
    color: #fff;
}

.child4 {
    color: #fff;
    width: 50%;
    height: auto;
}

label, input, textarea {
    display: block;
    width: 100%;
}

input:focus, textarea:focus {
    border: 1px solid #eb0e0e;
}

form {
    margin: 0 0 10px 0;
}

.btn1 {
    color: #006BFF;
    margin: 16px 0 0 0;
}

.copywrite {
    color: #fff;
    padding: 0 0 20px 0;
}

.copywrite a {
    color: #fff;
    text-decoration: none;
}

.copywrite a:hover {
    color: #006BFF;
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.5s ease;
}


@media (max-width: 920px) {
    nav {
        padding: 0 16px 0 16px;
    }

    nav .menu-btn i {
        display: block;
    }
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: #006BFF;
        height: 100vh;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.5s ease;
    }
    nav ul.open {
        left: 0;
    }
    nav ul li {
        display: flex;
        width: 100%;
        margin: 40px 0;
    }
    nav ul li a {
        color: #fff;
        font-size: 23px;
    }
 
    nav ul li a:hover {
        background: #fff;
        color: #006BFF;
    }

    .banner {
        height: 80vh;
    }

    .back {
        margin: 0 0 0 0;
    }

    .text{
        padding-top: 150px;
        color: #fff;
        font-weight: 200;
    }
    
    .text h1 {
        font-size: 40px;
        font-weight: 1200;
    }
    
    .text p {
        font-size: 15.5px;
        line-height: 26px;
    }

    .services {
        padding: 35px 16px 35px 16px;
        flex-direction: column;
    }

    .services ul {
        padding: 0 0 30px 0;
    }

    .last{
        padding: 0;
    }

    .text1 {
        color: white;
        font-size: 18px;
        position: absolute;
        top:180px;
        font-weight: 400;
        margin: 0 0 0 16px;
    }

    .imagem2 {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        color: #006BFF;
    }

    .Parent{
        flex-direction: column;
    }

    .child1 {
        width: 100%;
    }

    .child2 {
        width: 100%;
    }

    .Parent1 {
        flex-direction: column;
        padding: 0 16px 0 16px;
    }

    .child3 {
        padding: 35px 0 0 0;
        width: 100%;
    }

    .child4 {
        width: 100%;
    }

    .copywrite {
        color: #fff;
        padding: 0 16px 0 16px;
    }

    footer {
        height: auto;
    }

}

@media only screen and (max-width: 600px) {
    .banner {
        height: auto;
    }

    .last{
        padding: 0;
    }

    .images {
        flex-direction: column;
    }

    .img {
        width: 100%;
        height: 100%;
     }

     .text1 {
        color: white;
        font-size: 18px;
        position: absolute;
        top:180px;
        font-weight: 500;
        margin: 0 0 0 16px;
    }

    .bloco {
        margin: 25px 16px 0 16px;
    }

    .Parent{
        flex-direction: column;
    }

    .child1 {
        width: 100%;
    }

    .child2 {
        width: 100%;
    }

    .Parent1 {
        margin: 35px 0 0 0;
    }

    .child3 {
        width: 100%;
        height: auto;
        text-align: left;
        color: #fff;
    }

}

@media only screen and (min-width: 600px) {
    .banner {
        height: auto;
    }

    .last{
        padding: 0;
    }

    .images {
        flex-direction: column;

    }

    .img {
        width: 100%;
        height: 100%;
     }

     .text1 {
        color: white;
        font-size: 18px;
        position: absolute;
        top:230px;
        font-weight: 500;
        margin: 0 0 0 16px;
    }
    
    .text3 {
        margin: 35px 16px 0 16px;
        width: 100%;
    }

}

@media only screen and (min-width: 768px) {
    .back {
        margin: 0 250px 0 0;
    }
    .text{
        padding-top: 160px;
        color: #fff;
        font-weight: 200;
    }
    
    .text h1 {
        font-size: 55px;
        font-weight: 1200;
        text-transform: uppercase;
    }
    
    .text p {
        font-size: 20px;
    }

    .services {
        padding: 35px 16px 35px 16px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .last{
        padding: 35px 0 0 0;
    }

    .text1 {
        color: white;
        font-size: 18px;
        position: absolute;
        top:280px;
        font-weight: 500;
        margin: 0 0 0 16px;
    }

    .bloco {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        margin: 0 16px 0 0;
    }

    .text3 {
        margin: 35px 16px 0 16px;
    }

}

@media only screen and (min-width: 992px) {
    .last{
        padding: 35px 0 0 0;
    }

    .images {
        flex-direction: row;
    }

    .img {
        width: 50%;
        height: 100%;
     }

     .text1 {
        color: white;
        font-size: 20px;
        position: absolute;
        top:180px;
        font-weight: 600;
        margin: 0 0 0 60px;
    }
}

@media only screen and (min-width: 1200px) {
    .last{
        padding: 0;
    }

    .text1 {
        color: white;
        font-size: 21px;
        position: absolute;
        top:240px;
        font-weight: 600;
        margin: 0 0 0 60px;
    }
}