@font-face {
    font-family: "montserratSemiBold";
    src: url(../fonts/Montserrat-SemiBold.ttf);
}
*{
    --azul: #283e5e;
    --amarillo: #d9a231;
    --gris: #303030;
    --grisClaro: #efefef;
}
.front-tour{
    /*border: solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.front-tour-f{
    font-family: "montserratSemiBold";
    width: 80%;
    /*border: solid green;*/
    background-color: black;
    padding: 2% 3%;
    height: 100vh;
}
.front-tour-f .t-top{
    color: white;
}
.front-tour-f .t-top h1{
    font-size: 3.5vh;
}
.front-tour-f .t-top h1 span{
    font-weight: bolder;
}
.front-tour-f .t-top p{
    font-weight: lighter;
    font-size: 2vh;
}
.front-tour-f .t-medium{
    margin: 1% 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.front-tour-f .t-medium button{
    background-color: var(--azul);
    padding: .5% 2%;
    font-family: "montserratSemiBold";
    font-size: 2vh;
    color: white;
    cursor: pointer;
    transition: ease-in .2s;
}
.front-tour-f .t-medium button:hover{
    background-color: var(--amarillo);
    transition: ease-out .2s;
}
.front-tour-f .t-bottom iframe{
    display: flex;
    width: 100%;
    height: 75vh;
}
#t-plaza{
    display: none;
}
@media (max-width: 600px){
    .front-tour-f{
        width: 100%;
        height: 80vh;
    }
    .front-tour-f .t-bottom iframe{
        height: 60vh;
    }
}
