@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');

:root{
    --pink:#202020;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Forum';
    outline: none;
    border: none;
    text-decoration: none;
    transition: .2s linear;
}

.heading {
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(255, 51, 153, .05);
}

html {
    font-size: 63%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}


/*EMPIEZA LA SECCION DEL HEADER*/
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1)
}

header .logo {
    font-size: 3rem;
    color: #333;
    font-weight: bolder;

}

header a img {
    width: 12rem;
    height: 3.7rem;
}

header .logo span {
    color: var(--pink);
}

header .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;

}

header .navbar a:hover {
    color: var(--pink);
}

header .icons a {
    font-size: 2.5rem;
    color: #333;
    margin-left: 1.5rem;
}

header .icons a:hover {
    color: var(--pink);
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: .1rem solid rgba(0, 0, 0, .3);
    display: none;

}

header .logo img {
    width: 5.3rem;
    height: 5rem;
    display: block;
}
/*TERMINA LA SECCION DEL HEADER*/



.proces .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.proces .row .imgcontainer {
    flex: 1 1 40rem;
    position: relative;
    align-items: center;
    text-align: left;
    width: 100%;
}

.proces .row .imgcontainer img {
    width: 550px;
    border: 1.5rem solid #f7f7f7;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    height: 300px;
    object-fit: cover;
}

.proces .row .imgcontainer:hover img  {
    transform: scale(1.05);

}

.proces .row .image img {
    width: 100%;
    height: 30%;
    align-items: center;
}

.proces .row .content {
    flex: 1 1 40rem;
}

.proces .row .content h3 {
    font-size: 3.2rem;
    color: #333;
    font-family: 'Forum';
}

.proces .row .content p {
    font-size: 1.9rem;
    color: #2e2e2e;
    padding: 1rem 0;
    padding-top: 2rem;
    line-height: 2.5rem;
}



/*EMPIEZA LA SECCION DEL BOTON*/

.caja .btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 2.3rem;
    align-items: center;
    font-family: 'Forum';
}

.btn:hover {
    background: var(--pink);
}

.caja {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*TERMINA LA SECCION DEL BOTON*/







/*BREAKPOINTS*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px;
    grid-gap: 20px;
    padding: 100px 0;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.box:hover img {
    transform: scale(1.05);
}

.padre {
    display: flex;
    justify-content: center;
    font-family: 'Forum';
}



.footer .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer .box-container .box {
    flex: 1 1 25rem;

}

.footer .box-container .box h3 {
    color: #333;
    font-size: 2.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a {
    display: flex;
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a:hover {
    color: var(--pink);
    text-decoration: underline;
}

.footer .credits {
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
    font-size: 1.5rem;
    color: #333;
    border-top: .1rem solid rgba(0, 0, 0, 1);
}

.footer .credits span {
    color: var(--pink);
}


.icons2-container {
    display: flex;
}

.icons2-container .icons2 {
    display: inline-block;
   margin-right: 5px;
   margin-left: 5px;
    align-items: center;
    border-radius: 10px;
    flex: 1 1 25rem;
}

.icons2-container .icons2 img {
    height: 35px;
    width: 35px;
   
}

.icons2:hover{
transform: translateY(-10%);

}

/* media queries */

@media (max-width:991px) {
    header .fa-bars{ 
        display: block;
    }

    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #eee;
        border-top: 1rem solid rgba(0, 0, 0, .1);
        clip-path: polygon(0 0,100% 0, 100% 0, 0 0);
    }

    header #toggler:checked ~ .navbar{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a{
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border: 1rem solid rgba(0, 0, 0, .1);
        display: block;
    }

    header a img{
width: 35rem;
height: 10rem;
    }



    header {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }

    .proces .row .imgcontainer {
        flex: 1 1 40rem;
        position: relative;
        align-items: center;
        text-align: left;
        width: 100%;
    }

    .proces .row .imgcontainer img {
        width: 950px;
        border: 1.5rem solid #f7f7f7;
        border-radius: .5rem;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        height: 300px;
        object-fit: cover;
    }


    .proces .row .content h3 {
        font-size: 3.5rem;
        color: #333;
        font-family: 'Forum';
    }

    .proces .row .content p {
        font-size: 2rem;
        color: #2e2e2e;
        padding: 3rem 0;
        padding-top: 1rem;
        line-height: 1.5rem;
    }

    footer .footer .box-container .box h3 {
        font-size: 6.5rem;

    }


    footer .footer .box-container .box a {
        font-size: 4.7rem;
    }

    footer .footer .box-container .box img {
        width: 50px;
        height: 50px;
    }

    
.caja .btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 6.3rem;
    align-items: center;
    font-family: 'Forum';
}
header .icons a {
    font-size: 4.5rem;
    color: #333;
    margin-left: 1rem;
}

}