@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #bbbbbb;
    overflow-x: hidden;
}

.navbar{
    background-color: #fff;
    color: #000;
} 

.video {
    width: 100%; 
    height: auto; 
    display: block; 
}


.navbar-brand img {
    width: 50px; 
    height: 50px; 
    border-radius: 20%;
}

.login-button{
    background-color: #FA5229;
    color: white;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.login-button:hover{
    background-color: #00b383;
}

.navbar-toggler{
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus, .btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #666777;
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #000;
}

@media (min-width: 991px){
    body{
        overflow-x: hidden;
    }

    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #FA5229;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }
    
    .nav-link:hover::before{
        width: 100%;
        visibility: visible;
    }
}

.btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; 
}

.btn-wsp:hover {
    color: #0df053;
    background: #fff;
}

.icon-container {
    width: 35px;
    height: 35px;
}


@media only screen and (min-width:320px) and (max-width:768px) {
    body{
        overflow-x: hidden;
    }

    .btn-wsp {
        width: 63px;
        height: 63px;
        line-height: 66px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-container {
        width: 35px;
        height: 35px;
    }

}

h1{
    text-align: center;
    position: relative;
    width: 80%;
    margin: 50px auto;
}

body{
    background-color: #ecf4fb;
}
h1::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: black;
    top: 50%;
    z-index: -1;
}
h1 span{
    background-color:#ecf4fb;
    padding: 0 15px;
    line-height: 3.5;
}

@media screen and (max-width:300px){
    h1{
        text-decoration: underline;
    }
    h1::before{
        display: none;
    }
    h1 span{
        padding: 0;
    }
}

.img-responsive{
    width: 1000px;
    height: 600px;
}

@media (max-width: 768px){
    .img-responsive{
        width: 100%;
        height: 250px;
    }

    .carousel-caption h5,
    .carousel-caption p {
        font-size: 16px; 
        margin: 10px; 
    }

    body{
        overflow-x: hidden;
    }
}


article{
    margin-top: 10px;
}

.contenedorimg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50% auto;
    display: flex;
    justify-content: center;
}

.qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    margin-left: 150px;
    margin-top: 20px;
}

.qr .text {
    text-align: left; 
    margin-left: 20px; 
}

.qr img {
    max-width: 50%; 
    height: auto; 
}

@media screen and (max-width: 767px) {
    .qr {
        flex-direction: column; 
        align-items: center; 
        margin: 20px;
    }

    .qr .text {
        text-align: center; 
        margin-right: 0; 
        margin-bottom: 20px; 
    }

    .qr img {
        width: 80%; 
        max-width: none; 
    }
}

.text-primary,
.text-dark {
    text-decoration: none;
    font-size: 17px;
}

.text-center{
    text-decoration: none;
}

.footer-col ul li {
    font-size: 30px;
}

.text-primary, .text-dark a:hover {
    color: #FA5229 !important;
}