:root {
    --sizenavbar: 60px;
  }
  
*{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
    font-size: 1rem;
}
a:hover{
    color: gold;
}
.navbar{
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: var(--sizenavbar);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    padding: 10px 10px 10px 10px;
    border-bottom: 2px solid #E7B71A;
}
.navbar .links{
    display: flex;
    gap: 2rem;
}
.navbar .toggle_btn{
    color: black;
    font-size: 1.5 rem;
    cursor: pointer;
    display: none;
    padding: 0 10px 0 0;
}
.action_btn{
    background-color: red;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}
.action_btn:hover{
    scale: 1.15;
    color: #fff;
}
.imglogotipo{
    width: 100%;
    height: 40px;
}


/* DROPDOWN MENU */
.dropdown_menu{
    position: fixed;
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: 240px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* RESPONSIVE MENU */
@media (max-width: 992px){
    .navbar .links, .navbar .action_btn{
        display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
}

@media (max-width: 576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}

.container{
    background-image: url(../../images/texturablanca.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: calc(55px + var(--sizenavbar));
    width: 100%;
    height: 100vh;
}
.contact-box{
    background-image: url(../../images/texturablanca.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 60% 40%;

}
.contact-left{
    padding: 40px 60px;
    grid-column: 1/2;
}
.contact-right{
    padding: 40px;
    background-color: #E7B71A;
    color: #fff;
    grid-column: 2/3;
}
@media (max-width: 856px){
    .contact-box{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr)
    }
    .contact-left{
        grid-column: 1/3;
        grid-row: 1/2;
    }
    .contact-right{
        grid-column: 1/3;
        grid-row: 2/-2;
    }
}
h1{
    margin-bottom: 10px;
}
.container p{
    margin-bottom: 40px;
}
.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.input-row .input-group{
    flex-basis: 45%;
}
input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
}
textarea{
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}
label{
    margin-bottom: 6px;
    display: block;
    color: black;
}
button{
    background-color: #E7B71A;
    width: 100px;
    border: none;
    outline: none;
    color: #fff;
    height: 35px;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px 0 px rgba(28, 0, 181, 0.3);
    cursor: pointer;
}
button:hover{
    scale: 1.2;
    transition: 1s;
}
.contact-left h3{
    color: black;
    font-weight: 600;
    margin-bottom: 30px;
}
.contact-right h3{
    font-weight: 600;
    margin-bottom: 30px;
}
tr td:first-child{
    padding-right: 20px;
}
tr td{
    padding-top: 20px;
}
.info{
    text-align: center;
}
.alert{
    background-color: green;
    border-radius: 5px;
    margin: 0 0 15px 0;
    padding: 5px 5px 5px 5px;
    color: #fff;
    text-align: center;
}
.hidden{
    display: none;
}