@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to top, #2980b9, #6dd5fa, #ffffff);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}



.container_madreloader{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.741);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.loader_container{
    position: relative;
    width: 200px;
    height: 200px;
}

.loader{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: solid 10px transparent;
    border-top-color: #00B0E1;
    border-left-color: #00B0E1;
    border-radius: 50%;
    animation: loader 1.2s linear infinite;
}

.loader2{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    border: solid 10px transparent;
    border-top-color: #00B0E1;
    border-left-color: #00B0E1;
    border-radius: 50%;
    animation: loader 1s linear reverse infinite;
}

@keyframes loader{
    0%{
        transform: translate(-50%, -50%) rotate(0deg)
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.img_logo2{
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    border: solid 20px transparent;
    padding: 10px;
}

.picture_figure{
    display: flex;
    justify-content: center;
}

.img_logo{
    margin-top: 30px;
    width: 400px;
    filter: drop-shadow(0 0 20px rgb(255, 255, 255));
}

.texts{
    text-align: center;
    cursor:context-menu;
    color: #414040;
}

.text_title{
    font-family: 'Lato', sans-serif;
    margin: 10px 0;
}

.text_paragraph{
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

.sucursales{
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 80px;
}

.suc_container{
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.suc{
    display:  inline-block;
    background: #45B1E1;
    margin: 0 10PX;
    width: 160PX;
    height: 50PX;
    font-size:15px;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
    line-height: 50px;
    color: white;
    border-radius: 5px;
    transition: all .3s;
}

.suc:hover{
    background: #3b93b9;
    transition: all .3s;
}

.container_gral{
    display: flex;
    flex-direction: column;
}


@media (max-width: 900px) {
    .img_logo2{
        position: absolute;
        top: 5%;
        left: 5%;
        width: 90%;
        border: solid 10px transparent;
        padding: 10px;
    }
    
    .img_logo{
        width: 300px;
    }
    
    .text_title{
        font-size: 24px;
    }
    
    .suc{
        width: 140px;
        height: 40px;
        font-size: 12px;
        line-height: 40px;
        background: #4fb2dc;
    }

    .sucursales{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}