@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;
    text-transform: none;
    transition: .2s linear;
}

html {
    font-size: 63%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section {
    padding: 2rem 9%;
}

.heading {
    text-align: center;
    font-size: 7.8rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.heading h6 {
    font-size: 50px;
    color: #ffffff;
}

.heading span {
    color: var(--pink);
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: var(--pink);
}

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:#000;
}

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;

}





.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 .image img {
    width: 100%;
    height: 30%;
    align-items: center;
}

.proces .row .content {
    flex: 1 1 40rem;
}



.proces .row .content h3 {
    font-size: 3rem;
    color: #333;
    font-family: 'Amiri';
}

.proces .row .content p {
    font-size: 2rem;
    color: #2e2e2e;
    padding: 6rem 0;
    padding-top: 2rem;
    line-height: 2.5rem;
}



.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 2.7rem;
    align-items: center;
    font-family: 'Amiri';
}

.btn:hover {
    background: var(--pink);
}

.caja {
    display: flex;
    justify-content: center;
    align-items: center;
}





.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;
   
}

.icons2:hover{
transform: translateY(-10%);

}





 
@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 {
        padding: 2rem;
    }

    section {
        padding: 2rem;
        font-size: 55%;
    }


    .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: 4.8rem;
        color: #333;
        font-family: 'Amiri';
    }

    .proces .row .content p {
        font-size: 2.3rem;
        color: #2e2e2e;
        padding: 6rem 0;
        padding-top: 2rem;
        line-height: 2.5rem;
    }

    .proces .heading {
        font-size: 13.8rem;
    }

    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;
    }

    
    header a img {
        width: 35rem;
        height: 10rem;
    }

}