@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600;700;800&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
}
.container{
    max-width: 75rem;
    margin: 0 auto;
}
.header{
    background: linear-gradient(
        180deg,
        rgba(251,205,49,1) 0%,
        rgba(249,196,40,1)51%,
        rgba(246,179,32,1)100%);
        min-height: 70vh;
        display: flex;
        align-items: center;
}


.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    width: 6.25rem;
    

}
.menu .navbar ul li {

    position: relative;
    float: left;
}

.menu .navbar ul li a {

    font-size: 1rem;
    padding: 1rem;
    color: #3f3f3f;
    display:block ;
    font-weight: bold;
}

.menu .navbar ul li a:hover {

    color:#e06927;

}


#menu {
    display: none;
}
.menu-icono{
    width: 1.5rem;

}

.menu label {

    cursor: pointer;
    display: none;
}


.header-content {
    padding: 6.25rem 0;
    display: flex;
    align-items: center;

}

.header-txt {
    width: 50%;
    padding-right: 100px;

}
.header-txt h1{
    display: block;
    margin: 2rem auto;
    padding-right: 6.25rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    max-width: 90%;
    text-align: left;

}

p{
    font-size: 1rem;
    color:  #424242;
    margin-bottom: 35px;
}
.btn-1 {
    display: inline-block;
    padding: 13px 30px;
    background-color: #F55442;
    color: white;
    border-radius: 25px;
    font-size: 1rem;
}
.header-img {
    width: 50%;
    text-align: center;
}

.header-img img {
    width: 550px;
}

.about{
    padding: 100px 0;
    background-color: #EFEFEF;

}
.about-content {
    display: flex;
    position: relative;
}

.ab1 {
    position: absolute;
    width: 300px;
    top: 0;
    left: 700px;
    
    
}
.about-txt {

    width: 50%;
}

h2 {

    font-size: 5rem;
    line-height: 90px;
    color: #3f3f3f;
    margin-bottom: 25px;
}

.btn-2 {

    display: inline-block;
    padding: 13px 45px;
    font-size: 1rem;
    background-color: #e06927;
    color: white;
    border-radius: 25px;
    border: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;

}

.bt-2 a:hover {

    background-color: #F55442;
}

.footer {
    border-top: 2px solid #E8E8E8;
    padding: 50px 0 0 0;

}
.footer p {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #E8E8E8;
    color: #7c7c7c;
    font-size: 1rem;
    margin: 0;

}
.footer h2{
    text-align:left;
    font-size: 1rem;
    margin: 25px auto;
    padding-left: 30px;

}



@media(max-width:991px) {
    .menu{
        padding: 30px;
    }
    .menu label {
        display: initial;
    }
    .socials-1 {
        display: none;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #3f3f3f;
        display: none;

    }

    .menu .navbar ul li {
        width: 100%;
    }

    .menu .navbar ul li a {
        color: white;
        
    }

    #menu:checked ~ .navbar {
        display: initial;
    }


    .header{
        min-height: 0vh;
    }

    .header-content {
        padding: 130px 30px 80px 30px;
        flex-direction: column;

    }
    .header-txt {
        width: 100%;
        padding-right: 0;
        text-align:center;
        margin-bottom: 15px;

    }

    .header-txt h1 {

        font-size: 5.5rem;
        line-height: 100px;
    }
    .header-img {
        width: 100%;
       
    }
    .header-img img {
        width: 250px;
    }

    .about {
        padding: 30px;

    }
    .about-content {
        flex-direction: column;
    }

    .ab1 {
        display: none;

    }
    .about-img {
        width: 100%;
        order: 2;
    }

    .about-img img {
        width: 250px;
    }

    .about-txt {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 4.5rem;
        line-height: 80px;

    }
    .footer {
        padding: 30px 30px 0px 30px;
    }
}