/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #logo {
        width: 35vw;
    }

    #navLogo {
        width: 140%;
    }

    .navTxt {
        display: none;
    }

    .carousel-item {
        height: 130px;
    }

    .item img {
        position: absolute;
        top: 0;
        left: 0;
        min-height: 130px;
    }


    #navLogo {
        display: none;
    }



}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #logo {
        width: 25vw;
    }

    #navLogo {
        width: 80%;
    }

    #mon {
        display: none;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #logo {
        width: 20vw;
    }

    #navLogo {
        width: 70%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #logo {
        width: 18vw;
    }

    #navLogo {
        width: 70%;
    }

    .carousel-item {
        height: 300px;
    }

    .item img {
        position: absolute;
        top: 0;
        left: 0;
        min-height: 300px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    #logo {
        width: 17vw;
    }

    #navLogo {
        width: 60%;
    }
}

@media only screen and (min-width: 1400px) {
    #logo {
        width: 13vw;
    }

    #navLogo {
        width: 60%;
    }

    .carousel-item {
        height: 300px;
    }

    .item img {
        position: absolute;
        top: 0;
        left: 0;
        min-height: 300px;
    }
}

@font-face {
    font-family: "Canela Light";
    src: url(../fonts/Canela-Light.otf) format("opentype");
}

@font-face {
    font-family: "Canela Medium";
    src: url(../fonts/Canela-Medium.otf) format("opentype");
}

@font-face {
    font-family: "Canela Thin";
    src: url(../fonts/Canela-Thin.otf) format("opentype");
}

@font-face {
    font-family: "F37 Ginger Pro Light";
    src: url(../fonts/F37GingerPro-Light.otf) format("opentype");
}

@font-face {
    font-family: "F37 Ginger Pro Demi";
    src: url(../fonts/F37GingerPro-Demi.otf) format("opentype");
}

@font-face {
    font-family: "F37 Ginger Pro Regular";
    src: url(../fonts/F37GingerPro-Regular.otf) format("opentype");
}

@font-face {
    font-family: "F37 Ginger Pro Thin";
    src: url(../fonts/F37GingerPro-Thin.otf) format("opentype");
}

.canelaMedium {
    font-family: "Canela Medium";
}

.canelaLight {
    font-family: "Canela Light";
}

.canelaThin {
    font-family: "Canela Thin";
}

.proLight {
    font-family: "F37 Ginger Pro Light";
}

.proThin {
    font-family: "F37 Ginger Pro Thin";
}

.proRegular {
    font-family: "F37 Ginger Pro Regular";
}

.proDemi {
    font-family: "F37 Ginger Pro Demi";
}

.specialHr {
    border: 0;
    height: 1px;
    background: rgb(0, 0, 0);
    background-image: -webkit-linear-gradient(left, #B9D9EB, rgb(20, 4, 4), #B9D9EB);
    background-image: -moz-linear-gradient(left, #B9D9EB, #333, #B9D9EB);
    background-image: -ms-linear-gradient(left, #B9D9EB, #333, #B9D9EB);
    background-image: -o-linear-gradient(left, #B9D9EB, #333, #B9D9EB);
}

.specialHr2 {
    border: 0;
    height: 1px;
    background: B9D9EB;
    background-image: -webkit-linear-gradient(left, white, #001E31, white);
    background-image: -moz-linear-gradient(left, white, #001E31, white);
    background-image: -ms-linear-gradient(left, white, #001E31, white);
    background-image: -o-linear-gradient(left, white, #001E31, white);
}

.bgDarkBlue {
    background-color: #001E31;
}

.textDarkBlue {
    color: #001E31;
}

.bgLightBlue {
    background-color: #B9D9EB;
}

.textLightBlue {
    color: #B9D9EB;
}

.mainBtns {
    background-color: white;
    color: #001E31;
    font-size: 1.3rem;
    padding: 1% 2%;
    border: none;
    border-radius: 12px;
    box-shadow: 1px 1px 5px 1px #808486;
}

.submainBtns {
    background-color: #001E31;
    color: white;
    font-size: 1.1rem;
    padding: 2% 2%;
    border: none;
    border-radius: 12px;
    box-shadow: 1px 1px 5px 1px #808486;
}

.content_center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    font-size: 2.7vmin;
}

.test {
    background-color: #001E31;
    color: #B9D9EB;
    font-size: 0.7rem;
    padding: 4% 8%;
    border: none;
    border-radius: 12px;
    box-shadow: 3px 3px 13px 4px #5189a8;
}

.btnBack {
    background-color: #B9D9EB;
    border: 2.5px solid #5189a8;
    color: black;
    padding: 9px 14px;
    text-align: center;
    text-decoration: none;
    text-shadow: 2px 2px 4px #5189a8;
    display: inline-block;
    font-size: 14px;
    margin: 0px 0px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 15px;
    font-family: "F37 Ginger Pro It";
}