@charset "UTF-8";
/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

html {
    scroll-behavior: smooth;
    /* Ponemos un color de fondo y redondeamos las esquinas del thumb */
    /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
    /* Cambiamos el fondo cuando esté en active */
    /* Ponemos un color de fondo y redondeamos las esquinas del track */
    /* Cambiamos el fondo cuando esté en active o hover */
}

    html::-webkit-scrollbar {
        width: 6px; /* Tamaño del scroll en vertical */
        height: 8px; /* Tamaño del scroll en horizontal */
        -webkit-appearance: none;
    }

    html::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
        height: 100px; /* Tamaño del thumb en altura*/
    }

        html::-webkit-scrollbar-thumb:hover {
            background: #ddd;
            box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
        }

        html::-webkit-scrollbar-thumb:active {
            background-color: #ddd;
        }

    html::-webkit-scrollbar-track {
        background: #e1e1e1;
        border-radius: 4px;
    }

        html::-webkit-scrollbar-track:hover, html::-webkit-scrollbar-track:active {
            background: #d4d4d4;
        }

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 599px) {
    body {
        font-size: 18px;
    }
}

h1 {
    font-weight: bold;
    font-size: 100px;
    margin: 0;
    font-weight: 700;
}

h2 {
    font-weight: 600;
    font-size: 80px;
    margin: 0;
}

h3 {
    font-weight: 500;
    font-size: 60px;
    margin: 0;
}

h4 {
    margin: 0;
    font-weight: 700;
    font-size: 40px;
}

@media (min-width: 300px) {
    h4 {
        margin: 0;
        font-weight: 700;
        font-size: 20px;
    }
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    color: #00262b;
}

.text-azul {
    color: #84bec0;
}

.text-azul2 {
    color: #00262b;
}

.text-verde {
    color: #8ba342;
}

.text-blanco {
    color: #f4f4f4;
}

.btn {
    padding: 6px 25px;
    border-radius: 5px;
    color: #f4f4f4;
    font-weight: 500;
    border: none;
    outline: none;
    font-size: 20px;
    cursor: pointer;
}

.btn-verde {
    background: #8ba342;
}

.btn-azul {
    background: #84bec0;
    color: #00262b;
}

.btn-azul2 {
    background: #00262b;
    color: #f4f4f4;
}

.main-header {
    background: #00262b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
}

    .main-header .header-logo {
        display: flex;
        align-items: center;
    }

        .main-header .header-logo img {
            width: 320px;
        }

@media (max-width: 599px) {
    .main-header .header-logo img {
        width: 100px;
    }
}

.main-header .header-nav {
    display: flex;
    align-items: center;
}

    .main-header .header-nav .desktop-menu {
        display: flex;
        gap: 50px;
        align-items: center;
    }

        .main-header .header-nav .desktop-menu a {
            color: #f4f4f4;
            font-size: 25px;
            font-weight: 300;
        }

        .main-header .header-nav .desktop-menu .rastrear-nav {
            background: #84bec0;
            padding: 6px 25px;
            border-radius: 5px;
            color: #f4f4f4;
            font-weight: 500;
            white-space: nowrap;
        }

    .main-header .header-nav .burger-menu {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
    }

        .main-header .header-nav .burger-menu span {
            display: block;
            width: 30px;
            height: 3px;
            background: #f4f4f4;
            margin: 3px 0;
            border-radius: 25px;
        }

.main-header .fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00262b;
    color: #f4f4f4;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

    .main-header .fullscreen-menu .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #f4f4f4;
        font-size: 30px;
        cursor: pointer;
    }

        .main-header .fullscreen-menu .close-menu img {
            width: 30px;
        }

    .main-header .fullscreen-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .main-header .fullscreen-menu ul li {
            margin: 20px 0;
        }

            .main-header .fullscreen-menu ul li a {
                color: #f4f4f4;
                font-size: 25px;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .main-header .header-nav .desktop-menu {
        display: none;
    }

    .main-header .header-nav .burger-menu {
        display: flex;
    }
}

@media (max-width: 480px) {
    .title-state-off {
        font-display: none;
    }
}

.main-footer {
    background: #00262b;
    padding: 5% 10% 2%;
}

    .main-footer .container-info {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

@media (max-width: 599px) {
    .main-footer .container-info {
        flex-direction: column;
        align-items: center;
    }
}

.main-footer .container-info ul li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    color: #f4f4f4;
}

    .main-footer .container-info ul li img {
        padding-right: 1rem;
    }

.main-footer .container-info ul .schedule {
    align-items: start;
}

.main-footer .social-icons-container {
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.main-footer .container-copyright {
    text-align: center;
    padding-top: 3rem;
}

    .main-footer .container-copyright img {
        width: 400px;
    }

@media (max-width: 599px) {
    .main-footer .container-copyright img {
        width: 100%;
    }
}

.main-footer .container-copyright p {
    margin-bottom: 0.85rem;
    color: #eeeeee;
}

.main-footer .container-copyright a {
    margin-bottom: 0.85rem;
    color: #eeeeee;
}

.content-card-service {
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

@media (max-width: 599px) {
    .content-card-service {
        flex-direction: column;
        gap: 2rem;
    }
}

.content-card-service .left-content {
    width: 50%;
    display: flex;
    flex-flow: column;
    gap: 50px;
}

@media (max-width: 599px) {
    .content-card-service .left-content {
        width: 100%;
    }
}

.content-card-service .right-content {
    width: 50%;
    display: flex;
    flex-flow: column;
    gap: 50px;
}

@media (max-width: 599px) {
    .content-card-service .right-content {
        width: 100%;
    }
}

.content-card-service .box {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
    padding: 2.5rem;
    border-radius: 50px;
    display: flex;
    flex-flow: column;
}

@media (max-width: 599px) {
    .content-card-service .box {
        text-align: center;
    }
}

.content-card-service .box .title-box-service {
    font-size: 35px;
    font-weight: 700;
}

.content-card-service .box .items-box-service {
    padding: 1.5rem;
}

    .content-card-service .box .items-box-service li {
        padding-bottom: 1.5rem;
    }

        .content-card-service .box .items-box-service li h4 {
            font-size: 30px;
            font-weight: 700;
            padding-bottom: 1.5rem;
        }

.content-card-service .box .dimensions-packs {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .content-card-service .box .dimensions-packs .left-content,
    .content-card-service .box .dimensions-packs .right-content {
        width: 50%;
        text-align: center;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .content-card-service .box .dimensions-packs img {
        width: 100px;
    }

    .content-card-service .box .dimensions-packs p {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
    }

.content-card-service .box.hand {
    background: url("/webentrego/src/assets/img/servicios/Servicios5.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.hand {
        background-size: contain;
    }
}

.content-card-service .box.town {
    background: url("/webentrego/src/assets/img/servicios/Servicios7.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.town {
        background-size: contain;
    }
}

.content-card-service .box.air {
    background: url("/webentrego/src/assets/img/servicios/Servicios6.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.air {
        background-size: contain;
    }
}

.content-card-service .box.world {
    background: url("/webentrego/src/assets/img/servicios/Servicios8.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.world {
        background-size: contain;
    }
}

.content-card-service .box.package {
    background: url("/webentrego/src/assets/img/servicios/Servicios9.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.package {
        background-size: contain;
    }
}

.content-card-service .box.checklist {
    background: url("/webentrego/src/assets/img/servicios/Servicios11.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.checklist {
        background-size: contain;
    }
}

.content-card-service .box.clock {
    background: url("/webentrego/src/assets/img/servicios/Servicios12.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.clock {
        background-size: contain;
    }
}

.content-card-service .box.time {
    background: url("/webentrego/src/assets/img/servicios/Servicios13.png") no-repeat center center;
    background-size: cover;
}

@media (max-width: 599px) {
    .content-card-service .box.time {
        background-size: contain;
    }
}

.hero-section {
    display: flex;
    justify-content: space-around;
    padding: 0 5%;
    gap: 2rem;
}

@media (max-width: 599px) {
    .hero-section {
        flex-direction: column;
        padding: 5%;
    }
}

.hero-section .left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

@media (max-width: 599px) {
    .hero-section .left-content {
        width: 100%;
    }
}

.hero-section .left-content h1 {
    font-size: 50px;
    line-height: 50px;
}

@media (max-width: 599px) {
    .hero-section .left-content h1 {
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }
}

.hero-section .left-content .image-hero {
    padding: 1.5rem 0;
}

.hero-section .left-content .text-hero {
    width: 75%;
    text-align: justify;
}

@media (max-width: 599px) {
    .hero-section .left-content .text-hero {
        width: 100%;
    }
}

.hero-section .left-content .container-buttons-hero {
    width: 80%;
    display: flex;
    gap: 5%;
    margin-top: 1.5rem;
}

@media (max-width: 599px) {
    .hero-section .left-content .container-buttons-hero {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-section .right-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
}

@media (max-width: 599px) {
    .hero-section .right-content {
        width: 100%;
        display: none;
    }
}

.hero-section .right-content img {
    width: 100%;
}

.container-cotizador {
    background: #84bec0;
    padding: 5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
}

    .container-cotizador .title-cotizador {
        color: #f4f4f4;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 2rem;
    }

@media (max-width: 599px) {
    .container-cotizador .title-cotizador {
        font-size: 30px;
        text-align: center;
    }
}

.container-cotizador .container-inputs {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
}

@media (max-width: 599px) {
    .container-cotizador .container-inputs {
        flex-direction: column;
        gap: 1rem;
    }
}

.container-cotizador .container-inputs .input-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 25%;
}

@media (max-width: 599px) {
    .container-cotizador .container-inputs .input-container {
        width: 100%;
    }
}

.container-cotizador .container-inputs .input-container label {
    color: #00262b;
    font-weight: 600;
    font-size: 22px;
}

.container-cotizador .container-inputs .input-container input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.container-cotizador .container-inputs #sendForm {
    width: 200px;
}

.container-proceso-comercial {
    display: flex;
    align-items: center;
    padding: 5%;
}

@media (max-width: 599px) {
    .container-proceso-comercial {
        flex-direction: column;
    }
}

.container-proceso-comercial .principal-image {
    width: 100%;
}

@media (max-width: 599px) {
    .container-proceso-comercial .principal-image {
        padding-bottom: 2rem;
    }
}

.container-proceso-comercial .right-content,
.container-proceso-comercial .left-content {
    width: 50%;
}

@media (max-width: 599px) {
    .container-proceso-comercial .right-content,
    .container-proceso-comercial .left-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

.container-proceso-comercial .first-process,
.container-proceso-comercial .second-process,
.container-proceso-comercial .third-process {
    text-align: center;
}

    .container-proceso-comercial .first-process p,
    .container-proceso-comercial .second-process p,
    .container-proceso-comercial .third-process p {
        font-size: 18px;
        text-align: center;
        margin: 0;
    }

.container-proceso-comercial .title-process {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.container-proceso-comercial .icon-process {
    width: 80px;
}

.container-proceso-comercial .star-icon {
    width: 40px;
}

@media (max-width: 599px) {
    .container-proceso-comercial .star-icon {
        padding-top: 1.5rem;
    }
}

.container-proceso-comercial .first-process,
.container-proceso-comercial .third-process {
    margin-left: 25%;
}

@media (max-width: 599px) {
    .container-proceso-comercial .first-process,
    .container-proceso-comercial .third-process {
        margin-left: 0;
    }
}

.container-proceso-comercial .second-process {
    margin-right: 25%;
    margin-top: -25px;
}

@media (max-width: 599px) {
    .container-proceso-comercial .second-process {
        margin-right: 0;
        margin-top: 0;
    }
}

.container-proceso-comercial .third-process {
    margin-top: -25px;
}

@media (max-width: 599px) {
    .container-proceso-comercial .third-process {
        margin-top: 0;
    }
}

.container-servicios-home {
    padding: 5%;
}

    .container-servicios-home .title-services-home {
        text-align: center;
    }

@media (max-width: 599px) {
    .container-servicios-home .title-services-home {
        font-size: 30px;
    }
}

.container-servicios-home .container-cards-services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 599px) {
    .container-servicios-home .container-cards-services {
        flex-direction: column;
        gap: 2rem;
    }
}

.container-servicios-home .container-cards-services .card-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 350px;
    background: #f0f0f0;
    border-radius: 50px;
}

@media (max-width: 599px) {
    .container-servicios-home .container-cards-services .card-service {
        width: 100%;
        height: 300px;
    }
}

.container-servicios-home .container-cards-services .card-service .icon-card {
    width: 100px;
}

.container-servicios-home .container-cards-services .card-service .title-card-service {
    font-size: 40px;
    font-weight: 700;
    margin: 1rem 0;
}

@media (max-width: 599px) {
    .container-servicios-home .container-cards-services .card-service .title-card-service {
        font-size: 30px;
    }
}

.container-servicios-home .container-cards-services .btn {
    width: 60%;
    text-align: center;
}

.estadisticas-home {
    padding: 3% 10%;
    background: #00262b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
    border-radius: 50px;
}

@media (max-width: 599px) {
    .estadisticas-home {
        flex-direction: column;
        gap: 2rem;
        border-radius: 0;
    }
}

.estadisticas-home .estadistica-home {
    text-align: center;
    line-height: 60px;
}

    .estadisticas-home .estadistica-home .title-estadistica {
        font-weight: 700;
    }

@media (max-width: 599px) {
    .estadisticas-home .estadistica-home .title-estadistica {
        font-size: 45px;
    }
}

.estadisticas-home .estadistica-home p {
    color: #f4f4f4;
    font-size: 45px;
}

@media (max-width: 599px) {
    .estadisticas-home .estadistica-home p {
        font-size: 30px;
    }
}

.beneficios-home {
    padding: 10% 5%;
}

    .beneficios-home .content-beneficios {
        background-image: url("/webentrego/src/assets/img/home/1.png");
        background-repeat: no-repeat;
        background-size: 550px;
        background-position: 100%;
        padding: 5% 0;
    }

@media (max-width: 599px) {
    .beneficios-home .content-beneficios {
        width: 100%;
        background-image: none;
    }
}

.beneficios-home .content-beneficios p {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 599px) {
    .beneficios-home .content-beneficios p {
        text-align: center;
    }
}

.beneficios-home .content-beneficios .destinos-text {
    color: #84bec0;
    font-size: 60px;
    text-align: center;
    margin-right: 50%;
    font-weight: 700;
    line-height: 60px;
    padding: 2rem;
}

@media (max-width: 599px) {
    .beneficios-home .content-beneficios .destinos-text {
        margin-right: 0;
    }
}

.beneficios-home .container-items-beneficios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6%;
}

@media (max-width: 599px) {
    .beneficios-home .container-items-beneficios {
        flex-direction: column;
        gap: 2rem;
    }
}

.beneficios-home .container-items-beneficios .item-beneficios {
    text-align: center;
}

    .beneficios-home .container-items-beneficios .item-beneficios img {
        width: 100px;
    }

    .beneficios-home .container-items-beneficios .item-beneficios p {
        margin-top: 0.5rem;
        font-size: 20px;
    }

.slider-clients {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
    padding: 4%;
    border-radius: 50px;
}

@media (max-width: 599px) {
    .slider-clients {
        border-radius: 0;
    }
}

.slider-clients .slick-list .slick-track {
    display: flex;
    align-items: center;
}

    .slider-clients .slick-list .slick-track .slick-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

        .slider-clients .slick-list .slick-track .slick-slide img {
            width: 100%;
            height: auto;
            max-height: 100px;
            object-fit: contain;
        }

@media (max-width: 599px) {
    .slider-clients .slick-list .slick-track .slick-slide img {
        max-height: 100%;
    }
}

.slider-clients .slick-prev,
.slider-clients .slick-next {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

    .slider-clients .slick-prev::before,
    .slider-clients .slick-next::before {
        content: none;
    }

.slider-clients .slick-prev {
    left: 10px;
}

.slider-clients .slick-next {
    right: 10px;
}

.container-form {
    padding: 0 5% 5%;
}

    .container-form .inner-section {
        display: flex;
        justify-content: center;
        align-items: end;
    }

@media (max-width: 599px) {
    .container-form .inner-section {
        flex-direction: column;
    }
}

.container-form .inner-section .left-content {
    width: 45%;
    display: flex;
}

@media (max-width: 599px) {
    .container-form .inner-section .left-content {
        width: 100%;
        justify-content: center;
    }
}

.container-form .inner-section .left-content img {
    width: 100%;
}

.container-form .inner-section .right-content {
    width: 55%;
    padding-bottom: 5rem;
}

@media (max-width: 599px) {
    .container-form .inner-section .right-content {
        width: 100%;
        padding-bottom: 2rem;
    }
}

.container-form .inner-section .right-content .title-form-section {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

@media (max-width: 599px) {
    .container-form .inner-section .right-content .title-form-section {
        padding-top: 2rem;
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }
}

@media (max-width: 599px) {
    .container-form .inner-section .right-content #formContact {
        text-align: center;
    }
}

.container-form .form-contact-content {
    width: auto;
    padding: 20px;
    background: #eeeeee;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
}

    .container-form .form-contact-content .form-contact {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

        .container-form .form-contact-content .form-contact .container-inputs {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

@media (max-width: 599px) {
    .container-form .form-contact-content .form-contact .container-inputs {
        flex-direction: column;
        margin-bottom: 0;
        gap: 0;
    }
}

.container-form .form-contact-content .form-contact .container-inputs .input-container {
    flex: 1;
}

.container-form .form-contact-content .form-contact .input-container:not(:last-child) {
    margin-bottom: 15px;
}

.container-form .form-contact-content .form-contact .input-container input,
.container-form .form-contact-content .form-contact .input-container textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 25px;
    border: none;
    outline: none;
    font-size: 25px;
    color: #00262b;
}

    .container-form .form-contact-content .form-contact .input-container input::placeholder,
    .container-form .form-contact-content .form-contact .input-container textarea::placeholder {
        color: #ccc;
    }

@media (max-width: 599px) {
    .container-form .form-contact-content .form-contact .input-container input,
    .container-form .form-contact-content .form-contact .input-container textarea {
        font-size: 18px;
    }
}

.container-form .form-contact-content .form-contact .input-container textarea {
    resize: vertical;
    height: 150px;
}

.container-form .form-contact-content .form-contact .input-container button {
    margin: 0.5rem 0;
}

.input-container {
    margin-bottom: 15px;
}

.select-container {
    position: relative;
}

.custom-select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 20px 20px;
    padding-left: 50px; /* Espacio para la bandera */
    outline: none;
}

    .custom-select.colombia {
        background: url("/webentrego/src/assets/img/home/colombia.png") no-repeat 5% center #f0f0f0;
        background-size: 35px 35px;
    }

    .custom-select.checklist {
        background: url("/webentrego/src/assets/img/home/checklist.png") no-repeat 5% center #f0f0f0;
        background-size: 35px 35px;
    }

    .custom-select.package {
        background: url("/webentrego/src/assets/img/home/package.png") no-repeat 5% center #f0f0f0;
        background-size: 35px 35px;
    }

    .custom-select option {
        padding: 10px;
        font-size: 16px;
    }

.about-container .first-section-about {
    padding: 5% 5% 0;
    width: 55%;
}

    .about-container .first-section-about h2 {
        font-size: 50px;
        line-height: 50px;
        font-weight: 700;
    }

@media (max-width: 599px) {
    .about-container .first-section-about h2 {
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }
}

@media (max-width: 599px) {
    .about-container .first-section-about {
        width: auto;
    }
}

.about-container .second-section-about {
    padding: 0 5% 5%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

@media (max-width: 599px) {
    .about-container .second-section-about {
        padding: 5%;
        flex-direction: column-reverse;
        align-items: center;
    }
}

.about-container .second-section-about .left-content {
    width: 50%;
}

@media (max-width: 599px) {
    .about-container .second-section-about .left-content {
        width: 100%;
        padding-top: 2rem;
    }
}

.about-container .second-section-about .left-content h1 {
    font-size: 40px;
}

@media (max-width: 599px) {
    .about-container .second-section-about .left-content h1 {
        text-align: center;
        font-size: 30px;
        line-height: 30px;
    }
}

.about-container .second-section-about .left-content p {
    margin: 1rem 0;
    text-align: justify;
}

.about-container .second-section-about .right-content {
    width: 40%;
}

@media (max-width: 599px) {
    .about-container .second-section-about .right-content {
        width: 100%;
    }
}

.about-container .second-section-about .right-content img {
    width: 100%;
}

.about-container .third-section-about {
    display: flex;
    background: #00262b;
    padding: 5%;
    gap: 10%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
}

@media (max-width: 599px) {
    .about-container .third-section-about {
        flex-direction: column;
        gap: 2rem;
    }
}

.about-container .third-section-about .left-content,
.about-container .third-section-about .right-content {
    width: 50%;
}

@media (max-width: 599px) {
    .about-container .third-section-about .left-content,
    .about-container .third-section-about .right-content {
        width: 100%;
    }
}

.about-container .third-section-about h3 {
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 599px) {
    .about-container .third-section-about h3 {
        text-align: center;
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 1rem;
    }
}

.about-container .third-section-about p.text-blanco {
    text-align: justify;
}

.about-container .fourth-section-about {
    padding: 3%;
}

@media (max-width: 599px) {
    .about-container .fourth-section-about {
        padding: 10% 5% 5%;
    }
}

.about-container .fourth-section-about .title-beneficios {
    font-size: 40px;
    font-weight: 700;
    padding-left: 5%;
}

@media (max-width: 599px) {
    .about-container .fourth-section-about .title-beneficios {
        text-align: center;
        font-size: 30px;
        line-height: 30px;
    }
}

.about-container .fourth-section-about .container-beneficios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5rem;
    gap: 2%;
}

@media (max-width: 599px) {
    .about-container .fourth-section-about .container-beneficios {
        flex-direction: column;
        padding-top: 2rem;
        gap: 2rem;
    }
}

.about-container .fourth-section-about .container-beneficios .card-beneficios {
    text-align: center;
    padding: 25px;
    width: 33%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.72);
    border-radius: 15px;
    background: #f4f4f4;
}

@media (max-width: 599px) {
    .about-container .fourth-section-about .container-beneficios .card-beneficios {
        width: auto;
    }
}

.about-container .fourth-section-about .container-beneficios .card-beneficios img {
    width: 100px;
}

.about-container .fourth-section-about .container-beneficios .card-beneficios .text-verde {
    font-size: 30px;
    font-weight: 700;
}

.about-container .fourth-section-about .container-beneficios .card-beneficios p {
    padding-top: 1rem;
    line-height: 25px;
}

.about-container .fifth-section-about {
    padding: 5% 15% 10%;
}

@media (max-width: 599px) {
    .about-container .fifth-section-about {
        padding: 5%;
    }
}

.about-container .fifth-section-about p {
    font-weight: 600;
    text-align: center;
}

.services-container {
    padding: 5% 5% 0;
}

    .services-container .first-section-services h2 {
        font-size: 50px;
        line-height: 50px;
        font-weight: 700;
        margin-bottom: 2rem;
        width: 55%;
    }

@media (max-width: 599px) {
    .services-container .first-section-services h2 {
        font-size: 30px;
        line-height: 30px;
        text-align: center;
        width: auto;
    }
}

.services-container .first-section-services p {
    width: 55%;
}

@media (max-width: 599px) {
    .services-container .first-section-services p {
        width: auto;
        text-align: center;
    }
}

.services-container .second-section-services {
    padding: 5% 0;
}

    .services-container .second-section-services .tabs-services {
        padding-bottom: 5%;
    }

        .services-container .second-section-services .tabs-services .card-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 5%;
        }

@media (max-width: 599px) {
    .services-container .second-section-services .tabs-services .card-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.services-container .second-section-services .tabs-services .card-container .card-service {
    position: relative;
    text-align: center;
    padding: 25px;
    width: 100%;
    border-radius: 50px;
    background: #f4f4f4;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 599px) {
    .services-container .second-section-services .tabs-services .card-container .card-service {
        width: 100%;
        padding: 0;
    }
}

.services-container .second-section-services .tabs-services .card-container .card-service .image-card {
    width: 120px;
}

.services-container .second-section-services .tabs-services .card-container .card-service .title-card {
    padding-top: 2rem;
    font-size: 35px;
    font-weight: 700;
}

.services-container .second-section-services .tabs-services .card-container .card-service:hover {
    cursor: pointer;
}

.services-container .second-section-services .tabs-services .card-container .card-service.active {
    background: #84bec0;
}

    .services-container .second-section-services .tabs-services .card-container .card-service.active::before {
        content: "";
        position: absolute;
        top: 103%;
        left: 50%;
        transform: translateX(-50%);
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 30px solid #84bec0;
        margin-top: 10px;
    }

@media (max-width: 599px) {
    .services-container .second-section-services .tabs-services .card-container .card-service.active::before {
        display: none;
    }
}
