/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #logo {
        width: 35vw;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #logo {
        width: 25vw;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #logo {
        width: 25vw;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #logo {
        width: 25vw;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    #logo {
        width: 22vw;
    }
}

@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 Light";
}

.canelaLight {
    font-family: "Canela Medium";
}

.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";
}

/* FEEDBACK */
#_feedbackMeni {
    display: none;
    background: #fefefe;
    border-radius: 10px;
    position: absolute;
    margin-left: -90px;
    width: 220px;
    box-shadow: 0px 0px 5px gray;
}

#_feedbackMeni li {
    display: block;
    padding: 10px 15px;
}

#_feedbackMeni a {
    color: #072432;
    font-size: 15px;
    font-weight: lighter;
    font-family: 'F37 Ginger Pro Light';
    text-decoration: none;
    margin-top: 5px;
}