@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

.header-container {
    display: flex;
    justify-content: space-between;
    background: #ffff;
    width: 100%;
}

.cintillo img {
    width: 80%;
    height: 85px;
    display: block;
    border: none;
    position: relative;
    z-index: 9999;
    padding: 5px;
    margin-top: -12px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;   
        gap: 15px;       
    }
    .cintillo img {
        width: 80%;
    }
    .logo img {
        width: 60px;
        height: auto;
    }
}
.main-horizontal {
    height: 65px;
    width: 100%;
    display: flex;
    background-color: #ffff;
    border: none;
    padding: 0 20px;
    position: fixed;
    z-index: 9999;
    justify-content: space-between;
}

ul, ol {
    list-style:none;
}

.nav > li {
    list-style-type: none;
}

.nav li a {
    height: 62px;
    display:block;
    text-decoration: none;
    font-weight: 300;
    color: black;
    font-size: 18px;
    padding: 20px 15px;
    white-space: nowrap;
    list-style-type: none;
}

.nav li a:hover {
    color: #ffff;
    background-color: #005b9b;
}

.nav li ul {
    display: none;
    position: absolute;
    min-width: 140px;
    background-color: #ffff;
    padding: 10px 10px;
    margin-left: -160px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav li:hover > ul {
    display:block;
}

.nav li ul li {
    position:relative;
}

.logo{
    margin-left: 100px;
    height: 30px;
    width: 90px;
}

img{
    width: 110px; 
    height: 40px;
}

.logo_link{
    display: flex;
    align-items: center;
    margin-right: auto;
}
.container1{
    background-color: transparent;
    width: 90%;
    max-width: 1200px;
    margin: -95px auto;
    padding: 0; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.content{
    color: #032750;
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
}
.content_home h2{
    font-size: 20px;
    color: black;
}
.content_home p{
    font-size: 20px;
    color: black;
    color: rgb(58, 63, 75);
    color: rgb(81, 85, 96);
    font-weight: 500;
}

.banner img{
    width: 100%;
    height: 350px;
    margin-top: 4%;
}
@media screen and (max-width: 1280px) {
    .banner img{
        width: 100%;
        height: 400px;
        margin-top: 50px;
    }
}
.banner .lhorizontal{
    width: 40%;
    height: 220px;
    margin-top: -400px;
    margin-left: 550px;
}
@media screen and (max-width: 1280px) {
    .banner .lhorizontal{
        width: 40%;
        height: 120px;
        margin-top: -450px;
    }
}
.banner .mbanner{
    width: 300px;
    height: 300px;
    z-index: 9999;
    margin-top: -400px;
    margin-left: 150px;
}
@media screen and (max-width: 1280px) {
    .banner .mbanner{
        width: 25%;
        height: 200px;
        margin-top: -420px;
        margin-left: 70px;
    }
}

.faq-container {
    width: 100%;
    max-width: 500vh;
    margin: 20px auto;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 30px;
    padding-top: -30px;
}

.faq-item {
    text-align: justify;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 5px 5px;
}

.faq-question {
    background-color: #fff;
    height: auto;
    padding: 15px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-question:hover {
    background-color: #a8dafd;
    color: #012e4e;
    border-radius: 5px;
}

.toggle-icon {
    font-size: 1.8em;
    font-weight: normal;
    transition: transform 0.3s ease;
    line-height: 1;
    display: inline-block;
    min-width: 1em;
    text-align: center;
}

.faq-item.active .toggle-icon {
    transform: rotate(0deg);
}

.faq-answer {
    background-color: #fcfcfc;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; 
}

.faq-answer p {
    text-align: justify;
    margin-top: 15px;
    margin-bottom: 15px;
}
.email{
    width: 310px;
    height: 55px;
    float: center;
}

.faq-answer ul, .faq-answer li {
    text-align: justify;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
}