.section5{
    width: 100vw;
    height: max-content;
    padding: 0 0 5vh 0;

    background-color: #1b1b1b;
}

.map-container-nexadei {
    width: 100%;
    height: 50vh;
  }

/* Simple style to hide sections until needed */
.hidden {
    display: none;
}

form div {
    margin-bottom: 1em;
}

label {
    display: block;
    margin-bottom: 0.3em;
}

.grid-section5-container{
    width: 100%;
    height: 100%;
    display: grid;

    grid-template-columns: 50% 50%;
    grid-template-rows: 1;
}
.grid-left-section5{
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
}

.form-contact-container{
    grid-column: 1;
    grid-row: 1;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.form-title-container {
    width: 100%;
    height: max-content;

    padding: 0;
    margin: 0;
}

.form-title{
    font-family: 'Sofia Pro';
    font-size: 8vh;
    font-weight: 800;
    color: #fff;
    text-align: center;
}


#contactForm{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    gap: 2vh;
}

#contactForm input{
    background-color: #fff;
    width: 30vw;
    height: 3vh;
    padding: 1vh 2vh;
    border-radius: 8vh;
    border: #ffffff 0.8vh solid;
    transition: 0.5s ease-in-out;
    font-family: 'Sofia Pro';
    font-weight: 200;
    font-size: 2.5vh;
}

#contactForm input:focus{
    border: #ff820d 0.8vh solid;
    transition: 0.3s ease-in-out;
}

#contactForm select{
    background-color: #fff;
    width: 32vw;
    height: 6vh;
    padding: 0;
    border-radius: 8vh;
    border: #ffffff 0.8vh solid;
    transition: 0.5s ease-in-out;
    font-family: 'Sofia Pro';
    font-weight: 200;
    font-size: 2vh;
}

label{
    font-family: 'Sofia Pro';
    font-size: 2.5vh;
    font-weight: 100;
    text-align: center;
    color: #fff;
}

textarea{
    width: 30vw;
    height:15vh;
    border-radius: 5vh;
    padding: 2vh;
    resize: vertical;
}

.btn-submit{
    font-family: 'Sofia Pro';
    background-color: #1b1b1b;
    border: #ff820d 0.2vh solid;
    color: #fff;
    padding: 2vh 5vw;
    font-size: 2vh;
    border-radius: 2vh;
    transition: 0.3s ease-in-out;
}

.btn-submit:hover{
    font-family: 'Sofia Pro';
    background-color: #ffffff;
    border: #ff820d 0.5vh solid;
    color: #000;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn-submit:active{
    font-family: 'Sofia Pro';
    background-color: #ffffff;
    border: #ff820d 0.5vh solid;
    color: #000;
    transform: scale(0.97);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.grid-right-section5{
    width: 90%;

    grid-column: 2;
    grid-row: 1;

    justify-content: center;
}

.container-schedule {
    width: 100%;
    height: max-content;

    display: flex;
    flex-direction: column;

    justify-content: start;

    gap: 2vh;

    padding-top: 1vh;
  }

  .title-schedule {
    text-align: left;
    color: #ffffff;
    font-family: 'Sofia Pro';
    font-size: 5vh;
  }
  .schedule-item {
    margin-bottom: 2vh;
    padding-bottom: 1vh;
    border-bottom: 0.1vh solid #e5e5e5;
  }
  .schedule-item-h2 {
    margin: 0 0 1vh;
    color: #ffffff;
    font-family: 'Sofia Pro';
    font-size: 3vh;
  }
  .schedule-item-p {
    margin: 0;
    font-family: 'Sofia Pro';
    font-size: 2vh;
    color: #ff820d;
  }

  .container-contact {
    width: 100%;
    height: max-content;

    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  .title-contact {
    text-align: right;
    color: #ffffff;
    font-family: 'Sofia Pro';
    font-size: 5vh;
  }
  .contact-item {
    margin-bottom: 2vh;
    padding-bottom: 1vh;
    border-bottom: 0.1vh solid #e5e5e5;
  
}
  .contact-item-h2 {
    text-align: right;
    margin: 0 0 1vh;
    color: #ffffff;
    font-family: 'Sofia Pro';
    font-size: 2vh;
  }
  .contact-item-p {
    text-align: right;
  }
    .contact-item-p a{
    font-family: 'Sofia Pro';
    font-size: 2.5vh;
    color: #ff820d;
    text-decoration: none;
  }


@media screen and (max-width: 1100px){
  .grid-section5-container{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}
.grid-left-section5{
    width: 100%;
    height: 100%;
    display: block;
}


#contactForm input{
  background-color: #fff;
  width: 80vw;
  height: 3vh;
  padding: 1vh 2vh;
  border-radius: 8vh;
  border: #ffffff 0.8vh solid;
  transition: 0.5s ease-in-out;
  font-family: 'Sofia Pro';
  font-weight: 200;
  font-size: 2.5vh;
}

#contactForm select{
  background-color: #fff;
  width: 85vw;
  height: 6vh;
  padding: 0;
  border-radius: 8vh;
  border: #ffffff 0.8vh solid;
  transition: 0.5s ease-in-out;
  font-family: 'Sofia Pro';
  font-weight: 200;
  font-size: 2vh;
}

textarea{
  width: 80vw;
  height:15vh;
  border-radius: 5vh;
  padding: 2vh;
  resize: vertical;
}

.grid-right-section5{
  width: 100%;

  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0;
}

.container-schedule {
  width: 80%;
  height: max-content;

  display: flex;
  flex-direction: column;

  gap: 2vh;

  padding-top: 1vh;
}

.title-schedule {
  text-align: center;
}

.schedule-item-h2 {
  text-align: center;
  margin: 1vh 0 1vh 0;
}

.schedule-item-p{
  text-align: center;
  margin: 1vh 0 2vh 0;
}

.container-contact {
  width: 80%;
}

.title-contact {
  text-align: center;
}

.contact-item-h2 {
  text-align: center;
  margin: 1vh 0 1vh 0;
}

.contact-item-p{
  text-align: center;
  margin: 1vh 0 2vh 0;
}

}