:root {
    --white: #fff;
    --black: #000;
    --gray: #c2c2c2
}

@font-face {
    font-family: 'Medium';
    src: url(../fonts/Raleway-Medium.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BlackItalic';
    src: url(../fonts/Raleway-BlackItalic.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Black';
    src: url(../fonts/Raleway-Black.ttf);
    font-weight: normal;
    font-style: normal;
}

.main {
    width: 100%;
    overflow-x: hidden;
}

.font-black {
    font-family: 'Black';
}

.font-black-italic {
    font-family: 'BlackItalic';
}

.font-medium {
    font-family: 'Medium';
}

body {
    font-family: 'Medium';
    color: var(--white);
}


.first-banner {
    background-image: url(../img/banner-home.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 100vh;
}

.texts {
    font-size: 1.3rem;
}

.h100 {
    height: 100vh;
}

.text-back-black {
    background-color: var(--black);
}

.philosophy-banner {
    background-image: url(../img/philosophy-back.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.separator {
    height: 3px !important;
    color: white !important;
    background-color: white;
    opacity: 1;
    width: 2rem;
}

.main-philosophy {
    font-size: 5rem;
    line-height: 4.5rem;
}

.list {
    margin-top: -3rem;
}


ul {
    list-style-type: none;
    /* Elimina las viñetas predeterminadas */
    padding: 0;
}

li {
    list-style: square;
}

.weare-banner {
    background-image: url(../img/we-are.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.weare-banner h3 {
    font-size: 2.3rem;
    text-align: end;
}

.weare-banner p {
    letter-spacing: 1px;
}

.lets {
    position: relative;
}

.contact-us {
    position: absolute;
    bottom: 0;
}

.contact-us img {
    width: 20%;
}

.back-gray {
    background-color: var(--gray);
}

.text-black {
    color: var(--black);
}

/* --------------------------------------- MEDIA QUERY ----------------------------------------------------- */

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media screen and (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
}

/* 
##Device = Tablets, Ipads (portrait)
##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    .mobile-only {
        display: none !important;
    }
}

/* 
##Device = Tablets, Ipads (landscape)
##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    .mobile-only {
        display: none !important;
    }
}

/* 
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    .desktop-only {
        display: none !important;
    }

    .text-back-black {
        font-size: .8rem;
    }

    .first-banner {
        height: 30vh;
    }

    .weare-banner h3 {
        font-size: 2.3rem;
        text-align: start;
    }

    .contact-us img {
        width: 40%;
    }

    .first-banner {
        background-image: url(../img/banner-home-mobile.jpeg);
    }

    .texts {
        font-size: 1rem;
    }

    .first-banner .texts {
        text-align: center;
        line-height: 1.2rem;
    }

    .main-philosophy {
        font-size: 1.6rem;
        line-height: 2rem;
        color: var(--black);
    }

    .list {
        margin-top: 0rem;
        color: var(--black);
    }

    .separator {
        height: 2px !important;
        color: black !important;
        background-color: black;
        opacity: 1;
        width: 2rem;
    }
}