@font-face {
  font-family: "Avenir Next Condensed";
  src: url("../fonts/AvenirNextCondensed-Regular.otf") format("truetype");
}

@font-face {
  font-family: "Futural";
  src: url("../fonts/Futural.TTF") format("truetype");
}

@font-face {
  font-family: "Futuraround Light";
  src: url("../fonts/FUTURAROUND-LIGHT.OTF") format("opentype");
}

body {
    font-family: "Futuraround", Arial, sans-serif;
    background-color: #f2f2f2;
    color: #616160;
}

header {
    background-color: #fbfbfb;
    color: #727272;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 100px;
}

.logo{
  margin-left: 160px;
}

.logo img {
    width: 250px;
    height: 100px;
}

.main-nav {
    display: flex;
}

.main-nav ul {
    list-style: none;
    display: flex;
    padding: 0px;
}

.main-nav ul li {
    margin-left: 30px;
    margin-right: 30px;
}

.main-nav ul li a {
    color: #616160;
    text-decoration: none;
    font-family: "Avenir Next Condensed", sans-serif;
    font-weight: bold;
    font-size: 20px;
}

.main-nav a:hover {
    color: #f7bd75;
    font-size: 30px;
}

.social-nav {
    display: flex;
    align-items: center;
    margin-right: 160px;
}

.social-nav a {
    margin-left: 20px;
    margin-right: 20px;
    color: #616160;
    text-decoration: none;
    font-family: "Avenir Next Condensed", sans-serif;
    font-size: 30px;
}

.social-nav a:hover {
    color: #f7bd75;
    font-size: 50px;
}

.dropdown-content {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  visibility: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 5px 15px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.dropdown-content a:hover{
  font-size: 20px;
}

.dropdown:hover .dropdown-content {
  display: block;
  visibility: visible;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 100%;
  padding: 20px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
  font-size: 40px;
  line-height: 32px;
  color: white;
}

.whatsapp-button:hover{
  padding: 30px;
  font-size: 30px;
}

.whatsapp-button:hover i{
  font-size: 50px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Avenir Next Condensed", sans-serif !important;
    color: #616160 !important;
}

p {
    font-family: "Futural", sans-serif !important;
    color: #727272 !important;
}








.content{
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  display: flex;
}

.container{
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 20px !important;
}

.container p{
  text-align: justify;
  font-size: 20px;
}

.form_hint{
  font-family: "Futural", sans-serif !important;
  color: #727272 !important;
}

.form-group {
  margin-bottom: 20px;
}

.mapas{
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}

.alajuela{
  margin-bottom: 20px;
}

.sancarlos{
  margin-top: 20px;
}

.mapas iframe{
  width: 500px;
  height: 400px;
}

#contact-form{
  width: 100%;
}

label {
  font-family: "Avenir Next Condensed", sans-serif;
  color: #616160;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font-family: "Futural", sans-serif;
  background-color: #fff;
  color: #616160;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  font-family: "Futuraround Light", sans-serif  !important;
  background-color: #f7bd75  !important;
  color: #fff  !important;
  padding: 10px 20px  !important;
  border: none  !important;
  border-radius: 5px  !important;
  cursor: pointer  !important;
}

button[type="submit"]:hover {
  background-color: #ffe3ad  !important;
}

.required::after {
  content: "*";
  color: red;
  margin-left: 4px;
}

form .error{
  color: red;
  value= "no";
}

input.error{
  border-color: red;
}

gmp-map{
  width: 500px;
  height: 400px;
}









footer {
    background-color: #333333 !important;
    padding: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100px !important;
}

.footer-logo{
  margin-left: 30px;
  margin-right: 30px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-text {
    flex-grow: 1;
    text-align: center;
}

footer p{
  color: #dadada !important;
  font-size: 15px !important;
}

.footer-social {
    margin-right: 100px;
    margin-left: 30px;
}

.footer-social a {
    color: #dadada;
    margin-right: 15px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #f7bd75;
}






@media screen and (max-width: 767px) {
    header{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: auto;
      padding: 0px;
    }

    .main-nav {
        margin: 0;
    }

    .logo{
      margin: 0px;
    }

    .logo img {
        width: 300px;
        height: 130px;
    }

    .main-nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }

    .main-nav a:hover {
        color: #f7bd75;
        font-size: 25px;
    }

    .social-nav {
        margin: 20px 0;
    }




    .content {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .mapas{
      display: flex;
      flex-direction: column;
      margin-top: 40px;
      margin-left: 0px;
    }

    gmp-map{
      width: 100%;
      height: 400px;
    }






    footer {
        flex-direction: column !important;
        align-items: center !important;
        text-align: justify !important;
        justify-content: space-between !important;
        height: auto !important;
    }

    .footer-text {
        margin: auto 0;
        text-align: center;
    }

    .footer-social {
      align-items: center  !important;
      margin: 0px;
    }

    .footer-logo{
      margin: 0px;
    }

    .footer-social a {
        margin-bottom: 10px;
    }





    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      background-color: #25d366;
      border-radius: 100%;
      padding: 10px;
      font-size: 12px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-button i {
      font-size: 20px;
      line-height: 16px;
      color: white;
    }

    .whatsapp-button:hover{
      padding: 15px;
      font-size: 15px;
    }

    .whatsapp-button:hover i{
      font-size: 25px;
    }
}
