:root{
    --brand-color: #030E22;
    --secondary-color: #29FAFF;
    --side-padding-sm: 15px;
    --headings-font: 'Red Hat Display', sans-serif;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header {
    display: flex;
    justify-content: space-between;
    background-color: var(--brand-color);
    margin: 0;
    padding: 0 var(--side-padding-sm);
    color: white;
    height: 50px;
    overflow: hidden;
}

.header_logo{
    width: 50px;
    height: 100%;
}
.header_wrapper{
    display: flex;
    align-items: center;
}
.header_title {
    font-family: var(--headings-font);
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    padding: 0;
}
.menu-btn_wrapper {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
}
.carousel{
    -webkit-user-select: none; /* Desactiva la selección en navegadores basados en WebKit, como Chrome y Safari */
    -moz-user-select: none; /* Desactiva la selección en navegadores basados en Gecko, como Firefox */
    -ms-user-select: none; /* Desactiva la selección en Internet Explorer y Microsoft Edge */
    user-select: none;
}
.c-item {
    height:calc(80vh - 50px);
    overflow: hidden; 
 }
  
.c-img {
height: 100%;
object-fit: cover;
filter: brightness(0.6);
}
.book-btn {
    background-color:var(--brand-color);
    color: white;
    border: none;
}
.book-btn:hover {
    background-color:var(--secondary-color);
    color: white;
}
.h2_heading{
    color: var(--brand-color);
}
.h3_heading{
    color: var(--brand-color);
    font-size: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service_card{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}
.card_img{
    width: 110px;
    margin-bottom: 20px;
}
.card_title{
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    color: var(--brand-color);
}
.card_description{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.50);
}
.form_container{
    width: 95%;
    margin: 0 auto;
}
.form{
 width: 100%;
 display: flex;
 flex-direction: column;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 border-radius: 8px;
 overflow: hidden;
 margin-bottom: 50px;
 padding-bottom: 20px;
}

.form_header{
    background-color: var(--brand-color);
    color:white;
    padding: 10px 20px;
}
.form_title{
    font-size: 18px;
    margin: 0;
}
.form_description{
    margin: 0;
}
.form_contact_info{
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    gap: 10px;
}
.form_inner_wrapper{
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
}
.form_customer_name,.form_customer_email {
    padding: 5px 10px;
    width: 100%;
    border-radius: 2px;
    border: solid .5px rgba(0, 0, 0, 0.2);
}
.form_subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-color);
    margin-top: 15px;
    margin-bottom: 7px;
}
.form_multi_select{
    padding: 5px 10px;
    border-radius: 2px;
    border: solid .5px rgba(0, 0, 0, 0.2);
}
.form_textarea {
    min-height: 100px;
    margin-bottom: 20px;
    padding: 10px;
    resize: none; /* Evita que el usuario redimensione horizontalmente */
    width: 100%; /* Ajusta el ancho según tus necesidades */
}

.form_textarea::placeholder {
    text-align: left;
}

.form_btn-submit{
    background-color: var(--brand-color);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    width: 100%;
    max-width: 300px;
    margin:0 auto;
}

.footer{
    display: flex;
    background-color: var(--brand-color);
    width: 100%;
    color: white;
    height: 150px;
    overflow: hidden;
    justify-content: space-between;
    padding-left: 20px;
}
.footer_logo{
    width: 150px;
}
.footer_inner_wrapper{
   display: flex;
   flex-direction: column;
   justify-content: center;
}
.footer_title{
    font-size: 18px;
    margin: 0;
}
.footer_field{
    color: rgb(191, 186, 186);
    font-size: 16px;
    line-height: 18px;
    margin: 0;
}
.footer_field:hover{
    color: white;
}



@media(min-width:800px){
 .header{
    height: 60px;
 }
 .h3_heading{
    font-size: 35px; 
 }  
 .form_container{
    width: 70%;
 }
 .form_contact_info {
    display: flex;
    gap: 15px;
 }
 .footer{
    padding: 0px 100px;
 }
}

