h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Archivo', sans-serif;
}

main {
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(248, 249, 250);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-block: 25px;
    border-bottom: 0px solid #000;
    z-index: 999;
    top: 0;
    position: fixed;
    background-color: rgba(4, 49, 85, 0);
    transition: background-color 0.5s ease-out;
    width: 100%;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    max-width: 175px;
    height: auto;
}

.links {
    display: flex;
    gap: 1.25rem;
}

.links>* {
    text-decoration: none;
    color: white;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.links a:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    background-color: white;
}

@media(max-width:768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .links {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(248, 249, 250, 1);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 2px solid #000;
        border-top: 2px solid #000;
    }

    .links a {
        margin: 16px 0;
        color: #000;
    }

    .links.active {
        left: 0;
    }
}

.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-container .prev,
.slideshow-container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    opacity: 0.8;
}

.slideshow-container .prev {
    left: 0;
}

.slideshow-container .next {
    right: 0;
}

.what-we-do {
    padding: 20px;
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.what-we-do h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.what-we-do .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
    padding-inline: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 600px;
}


.what-we-do .content img {
    width: 100%;
    border: 5px solid #000;
    max-width: 350px;
    height: auto;
    margin: auto;
}

.what-we-do .content p {
    font-size: 16px;
    text-align: left;
    flex: 1;
    padding-inline: 5px;
    padding-bottom: 20px;
    max-height: 250px;

}


.what-we-do .content .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;

}

.what-we-do .content .info h3 {
    width: calc(100% - 10px);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-inline: 5px;
    max-height: 60px;
}


@media (max-width: 570px) {
    .what-we-do .content {
        min-width: 200px;
    }

    .what-we-do {
        margin-left: 0px;
        margin-right: 0px;

    }
}



@media (max-width: 768px) {
    .what-we-do .content {
        flex-direction: column;
    }

    .what-we-do .content p {
        max-width: 475px;

    }

    .logo img {
        max-width: 150px;
    }

    .what-we-do .content img {
        width: 100%;
        border: 5px solid #000;
        max-width: 300px;

    }

    @keyframes slideshow {
        from {
            transform: translate(768px);
        }

        to {
            transform: translate(-1200px);
        }
    }
}


@media(max-width: 500px) {
    .what-we-do .content .info h3 {
        font-size: 24px;
    }

    .what-we-do .content p {
        max-width: 400px;
    }



    .slideshow-container {
        width: 100%;
        height: 50vh;
        position: relative;
        overflow: hidden;
    }

    .what-we-do .content {
        margin-right: 0px;
        margin-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .what-we-do {
        padding: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }


}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    line-height: 60px;
    font-size: 24px;
    cursor: pointer;
}

.footer-container {
    background-color: #333333;
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-inline: 2rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    margin: 0;
}

.footer-logo img {
    width: 100%;
    max-width: 175px;
    height: auto;
}

.contact-info {
    max-width: 300px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info a {
    background-color: #333333;
    color: #fff;
    text-decoration: none;
}

.navigation {
    text-align: center;
    max-width: 100px;
}

.navigation ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.navigation li {
    display: inline-block;
    margin-bottom: 10px;
}

.navigation a {
    display: block;
    background-color: #333333;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .contact-info {
        margin-bottom: 0;
    }

    .navigation {
        text-align: right;
    }

    .navigation li {
        display: inline-block;
        margin-bottom: 0;
    }
}

.sliderContainer {
    overflow: hidden;
    width: 100vw;
    height: 100px;
    background-color: rgb(248, 249, 250);
}

.logoSlider>img {
    width: 100px;
    background-image: none;
    height: auto;
    display: block;
    margin: auto;
}

.logoSlider {
    display: flex;
    animation: slideshow 30s infinite linear;
}


@keyframes slideshow {
    from {
        transform: translate(800px);
    }

    to {
        transform: translate(-2100px);
    }
}

.communication-buttons{
    position: fixed;
    bottom: 10px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}