@media (min-width: 555px) {
    .BoxLogos {
        margin: 2% 0;
    }
    /* .LogoPrincipal {
        width: 20%;
    } */
    .LogoPanda,
    .LogoToks {
        width: 35%;
    }
    /* .LogoPanda {
        margin-left: 65%;
    } */
    .LogoToks {
        margin-right: 60%;
    }

}

@media (max-width: 555px) {
    /* Styles specific to screens 555px or narrower */
    /* Adjust the styles to make your design responsive */
    body {
      font-size: 12px; /* Example: Increase font size for small screens */
    }

    /* .logo-ethicsglobal img {
        height: 55px !important;
        margin-top: -27px;
    } */

    .home-hero {
        width: 100%;
        margin-top: 100px;
    }

    .home-hero .title {
        position: relative;
        height: 160px;
    }

    .home-hero .title img {
       /*  position: absolute; */
        left: 50%;
        width: 250px;
        height: auto;
        /* margin-left: -140px; */
    }
    
    .hero-btns {
        flex-direction: column !important;
    }

    .hero-btns a {
        margin: 0 0 10px 0 !important;
    }

    .hero-btns button {
        font-size: 11px !important;
        width: 100px !important;
        margin: 0 auto !important;
    }

    .home-hero .botones {
        margin-top: 0px;
    }

    .logo-ethicsglobal img {
        height: 40px !important;
        margin-top: 0%;
    }

    .contact-carousel .carousel-block .react-multi-carousel-list .item .channel_block .social-contact {
        width: 4rem;
        height: 4rem;
    }

    .noti-message {
        width: 100% !important;
        max-width: 100% !important;
        left: 0px !important;
        top: -80px;
        margin: 0 !important;
        font-size: 10px !important;
        /* position: inherit; */
    }

    .noti-message p {
        font-size: 13px !important;
    }

    .home-hero, .contact-carousel, .follow-up, .download, .footer-container {
        width: 100%;
    }

    .react-multi-carousel-list {
        overflow: none !important;
    }
    /* .container {
      padding: 10px;
    } */
    /* .logos .img-fluid {
        width: 15%;
    } */
    .BoxLogos {
        margin-bottom: 1px;
    }
    .LogoOD,
    .LogoMarch,
    .LogoRadio,
    .LogoFesa,
    .LogoOfix {
        width: 60%;
    }


  }

.hero-btn {
    min-width: 200px;
    /* height: 50px; */
    font-size: 13px !important;
    text-align: center;
}

.accordion-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    border: 1px solid rgb(244, 244, 244);
}


.accordion-item__title {
    margin: 0px;
}

.accordion {
    cursor: pointer;
    color: #212529;
    background-color: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
    border-color: var(--bs-border-color);
    border-width: 1px;
    border-radius: .375rem;

}

.accordion-item__line {
    padding: 0.8rem 1.2rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    z-index: 2;
    position: relative;
}

.accordion-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease-in-out 0s;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAABGklEQVR4Ae3RAcZCQRiF4buDfwshBGi+2UQgcIGAVtpSIuS/KyilG+UTcbk6zIH3GQBm3mM6AAAAAAAAAACA+eqf/yZBXcV/2XeCVPYx1FXj/FjGUMd45AQp/1HHGGLZNL+e61jHnKDmv8652YT1IvPfE2LX/Sh27/ycsF60yT/lk58JYn6eU4MJccjnlAmZ/33i0OAH4jg9Qcw/5g9YJpS+m6n0xvzpCfVe+nn59S7kGyYo+YYJWz3fO+E2PaFs9XzPhMy/6fmWCXq+YUJs9HzrhLh+JsQmrnq+bYKeb52g53snXPR88wQ93z9Bz/dP0PP9E/R89wQ93zpBz7dO0POtE/R86wQ93zpBzzdP+MoHAAAAAAAAAADAExTnTW20AtjhAAAAAElFTkSuQmCC);
    opacity: 0.6;
}

.active .accordion-item__icon {
    transform: rotate(180deg);
}

.accordion-item__title {
    animation: faq-unselected 0.35s linear forwards;
}

.active .accordion-item__title {
    animation: faq-selected .15s linear forwards;
}


.accordion-item__inner {
    border-bottom: 1px solid #c3c3c3;
}

.active .accordion-item__inner {
    max-height: 100rem;
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition-duration: 0.5s;
    transition-property: max-height;
}

.accordion-item__inner {
    max-height: 0px;
    overflow: hidden;
    transition-duration: 0.5s;
    transition-property: max-height;
    z-index: 1;
    position: relative;
}

.accordion-item__content {
    background-color: #f0f2f4;
}

.active .accordion-item__content {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.2s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    transition-property: opacity, transform;
}

.accordion-item__content {
    opacity: 0;
    transform: translateY(-1rem);
    transition-timing-function: linear, ease;
    transition-duration: 0.1s;
    transition-property: opacity, transform;
    transition-delay: 0.5s;
    padding: 0px 1.2rem 1.2rem;
}

.accordion-item__paragraph {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-align: -webkit-match-parent;
    margin: 0px;
    font-size: 1rem;
    color: rgb(51, 51, 51);
    font-weight: 300;
    line-height: 1.3;
}

/* .logo-ethicsglobal img {
    height: 60px !important;
} */


.dFdTiA {
    border: none rgb(59, 130, 246);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px 0px, rgba(0, 0, 0, 0.12) 0px 2px 10px 0px;
    box-sizing: border-box;
    font-weight: 600;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background: rgb(59, 130, 246);
    color: rgb(255, 255, 255);
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.ljGPod {
    padding: 0px 4px;
}

.form-page {
    width: 100%;
    padding: 0px !important;
}

.form-page iframe {
    background: #000;
    border: none;
    width: 100%;
    height: 100%;
}


.Rectangle {
    width: 1100px !important;
    max-width: 1100px !important;
    padding: 39px 908px 713px 40px !important;
    border-radius: 6px !important;
    border: solid 1px var(--pale-grey-two) !important;
    background-color: var(--white) !important;

    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
    -ms-box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
  }


  .Rectangle h3 {
    width: 850px !important;
    margin-bottom: 20px !important;
  }

  .Rectangle .rectangle-blue {
    width: 500px !important;
    margin: 0 20px 20px 0;
    padding: 22px 30px 26px;
    opacity: 0.9;
    border-radius: 4px;
    border: solid 1px #a0d4fa;
    background-color: #e8f5fd;
    font-size: 12px;
    position: relative;
  }

  .Rectangle .rectangle-blue .status {
    position: absolute;
    right: 10px;
    top:0px;
    max-width: 200px;
    height: 28px;
    margin: 16px 0 26px 136px;
    padding: 7px 17px 9px;
    border-radius: 4px;
    border: solid 1px #ffc35f;
    background-color: #ffe594;
    text-align: center;
    font-size: 11px;
  }

  .Rectangle .rectangle-white {
        width: 500px !important;
        margin: 0 20px 20px 0;
        padding: 20px;
        opacity: 0.9;
        border-radius: 4px;
        border: solid 1px #e3ebf5;
        background-color: #FFFFFF;
        font-size: 12px;
        position: relative;
  }

  .Rectangle .rectangle-white .rectangle-white__content {
    width: 460px;
    height: 270px;
    padding: 10px;
    border-radius: 4px;
    border: solid 1px #bdcad0;
    background-color: #FFFFFF;
  }

  .Rectangle .rectangle-white .rectangle-white__content textarea {
    border: 0px solid #FFFFFF;
    border-bottom: 1px solid #e3ebf5;
    resize: none;
    background-color: #FFF;
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a;
    line-height: 1.5;
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .Rectangle .rectangle-white button {
    width: 200px;
    height: 38px;
    margin: 20px 260px 0 0;
    padding: 14px 52px 14px 53px;
    border-radius: 4px;
    background-color: #009ed7;
    border: solid 1px #009ed7; 
    color: #FFFFFF;
    padding: 5px;

    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.77;
    letter-spacing: normal;
    text-align: center;
  }

  .Rectangle .messenger {
    display: block;
    position: absolute !important;
    right: 0px;
    top: 86px;
    height: 614px;
    overflow-y: auto;
  }

  #inputMessage {
    border: 0px solid #FFFFFF;
    border-bottom: 1px solid #e3ebf5;
    background-color: #FFF;
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a;
    line-height: 1.5;
    display: block;
    width: 400px;
    margin-bottom: 10px;
    padding: 10px;
  }


  div#ex1 {
    background: #FEFEFE !important;
    z-index: 999;
    max-height: 600px;
}

.jquery-modal.blocker.current {
    z-index: 100;
}


/* ------- Media queries ------ */
@media (max-width: 1440px) {
    .logo {
        width: 40%;
    }
    .home-hero .main-info {
        margin-top: 18% ;
    }
}
@media (max-width: 1439px) {
    .logo {
        width: 40%;
    }
    .home-hero .main-info {
        margin-top: 18% ;
    }

}
@media (max-width: 1300px) {
    .home-hero .main-info {
        margin-top: 18% ;
    }
}
@media (max-width: 1229px) {
    .home-hero .main-info {
        margin-top: 21% ;
    }
}

@media (max-width: 1205px) {
    .home-hero .main-info {
        margin-top: 23% ;
    }
}
@media (max-width: 1100px) {
    .home-hero .main-info {
        margin-top: 24% ;
    }
}
@media (max-width: 1024px) {
    .home-hero .main-info {
        margin-top: 27%;
    }

}
@media (max-width: 991px) {
    .home-hero .main-info {
        margin-top: 24%;
    }

}
@media (max-width: 885px) {
    .home-hero .main-info {
        margin-top: 27%;
    }
}
@media (max-width: 674px) {
    .home-hero .main-info {
        margin-top: 31%;
    }
}
@media (max-width: 640px) {
    .home-hero .main-info {
        margin-top: 33%;
    }
}
@media (max-width: 610px) {
    .home-hero .main-info {
        margin-top: 36%;
    }
}
@media (max-width: 563px) {
    .home-hero .main-info {
        margin-top: 29%;
    }
}
@media (max-width: 425px) {
    .home-hero .main-info {
        margin-top: 39%;
    }
}










/* @media (max-width: 2560px) {
    .logo {
        width: 55%;
    }
    .home-hero .main-info {
        margin-top: 14%;
    }
}
@media (max-width: 2685px) {
    .logo {
        width: 55%;
    }
    .home-hero .main-info {
        margin-top: 20%;
    }
} */