/* COLORS */
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
/* MIXINS */
/* GENERAL */
html, body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

html p, body p {
  font-size: 16px;
  line-height: 1.5em;
}

html a, body a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

html a:hover, body a:hover {
  opacity: 0.8;
}

html h1, html h2, html h3, html h4, html h5, html h6, body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

html h1, body h1 {
  font-size: 52px;
}

html h2, body h2 {
  font-size: 42px;
}

html h3, body h3 {
  font-size: 32px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
      grid-template-columns: -webkit-max-content auto;
      grid-template-columns: max-content auto;
  background-color: white;
  padding: 10px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}

.navbar .logo img {
  height: 50px;
}

.navbar .menu ul {
  list-style: none;
  text-align: right;
  padding: 0;
  margin: 20px 0 0 0;
}

.navbar .menu ul li {
  display: inline-block;
  margin: 0 20px;
}

.navbar .menu ul li a {
  color: #0569b2;
  font-weight: bold;
}

/* SPLASH */
.splash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("./img/splash.jpg");
  background-position: center center;
  background-attachment: fixed;
  -ms-background-size: cover;
  background-size: cover;
  color: white;
  min-height: 700px;
  padding: 50px 5% 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.splash .content {
  width: 50%;
  background-color: rgba(5, 105, 178, 0.8);
  padding: 5%;
}

.splash .content h1 {
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
}

.splash .content h2 {
  font-size: 26px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 5px;
}

.splash .content h3 {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5em;
}

.splash .content hr {
  margin-top: 20px;
  margin-bottom: 40px;
}

.splash .content a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(209, 50, 21, 0.7);
  color: white;
  padding: 15px 40px;
}

/* SERVICES */
.services .services-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding: 100px 0;
}

.services .services-1 h2 {
  color: #0569b2;
  text-align: center;
  text-transform: uppercase;
}

.services .services-1 .services-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min-content min-content;
      grid-template-columns: -webkit-min-content -webkit-min-content;
      grid-template-columns: min-content min-content;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  gap: 50px;
  margin-top: 30px;
}

.services .services-1 .services-cards .card .title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #0569b2;
  color: white;
  text-align: center;
  text-transform: uppercase;
  padding: 3%;
  margin: auto;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.25);
}

.services .services-1 .services-cards .card .image {
  text-align: center;
}

.services .services-1 .services-cards .card .image img {
  height: 200px;
  width: auto;
}

.services .services-2 {
  background-color: #0569b2;
  color: white;
  padding: 100px 5%;
}

.services .services-2 .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 20px;
}

.services .services-2 .content h2 {
  text-transform: uppercase;
  margin-bottom: 50px;
}

.services .services-2 .content li {
  margin-bottom: 20px;
}

.services .services-2 .content .col-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 20px;
}

/* MISION */
.mision {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 700px;
  padding: 100px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  background: url("./img/mision.jpg");
  background-position: center center;
  background-attachment: fixed;
  -ms-background-size: cover;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .mision {
    min-height: 600px;
    padding: 50px 3%;
  }
}

.mision .content {
  width: 40%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3%;
}

.mision .content p, .mision .content li {
  font-size: 18px;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
  .mision .content {
    width: 100%;
  }
}

/* VISION */
.vision {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 700px;
  padding: 100px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  background: url("./img/vision.jpg");
  background-position: center center;
  background-attachment: fixed;
  -ms-background-size: cover;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .vision {
    min-height: 600px;
    padding: 50px 3%;
  }
}

.vision .content {
  width: 40%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3%;
}

.vision .content p, .vision .content li {
  font-size: 18px;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
  .vision .content {
    width: 100%;
  }
}

/* VALUES */
.values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 700px;
  padding: 100px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  background: url("./img/values.jpg");
  background-position: center center;
  background-attachment: fixed;
  -ms-background-size: cover;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .values {
    min-height: 600px;
    padding: 50px 3%;
  }
}

.values .content {
  width: 40%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3%;
}

.values .content p, .values .content li {
  font-size: 18px;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
  .values .content {
    width: 100%;
  }
}

/* CONTACT */
.contact {
  background-color: #0569b2;
  padding: 50px 5%;
}

.contact .form {
  width: 50%;
  margin: auto;
}

.contact .form h2, .contact .form h3 {
  color: white;
}

.contact .form h2 {
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.contact .form h3 {
  font-size: 24px;
  font-weight: normal;
  margin-top: 10px;
}

.contact .form form input, .contact .form form textarea {
  display: block;
  background-color: white;
  color: #303030;
  width: 100%;
  border: none;
  padding: 10px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact .form form input[type="submit"] {
  background-color: white;
  color: #0569b2;
  width: 50%;
  font-weight: bold;
  cursor: pointer;
}

.contact .phone {
  margin-top: 50px;
}

.contact .phone h3 {
  margin-bottom: 0;
}

.contact .phone p {
  color: white;
  margin-top: 10px;
  margin-bottom: 20px;
}

.contact .phone a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(209, 50, 21, 0.7);
  color: white;
  padding: 15px 40px;
}

/* MAP */
.map {
  background-color: white;
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 400px;
}

.map p {
  font-size: 16px;
}

.confirmation {
  padding: 150px 0;
}

.confirmation .message {
  background-color: white;
  border: 1px solid whitesmoke;
  max-width: 50%;
  padding: 5% 5% 50px 5%;
  margin: auto;
  -webkit-box-shadow: 5px 10px 30px rgba(48, 48, 48, 0.2);
          box-shadow: 5px 10px 30px rgba(48, 48, 48, 0.2);
}

.confirmation .message h1 {
  margin: 0;
}

.confirmation .message p {
  line-height: 25pt;
  margin-bottom: 30px;
}

.confirmation .message a {
  color: #378ec6;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 22px;
  }
  .navbar .menu {
    display: none;
  }
  .splash {
    min-height: 600px;
    padding: 120px 5% 50px 5%;
  }
  .splash .content {
    width: 100%;
    padding: 5%;
  }
  .splash .content h1 {
    font-size: 38px;
  }
  .services .services-1 {
    padding: 50px 5%;
  }
  .services .services-1 .services-cards {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .services .services-2 {
    padding: 50px 5%;
  }
  .services .services-2 .content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .services .services-2 .content .col-2 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact {
    padding: 50px 5%;
  }
  .contact .form {
    width: 100%;
  }
  .map iframe {
    width: 100%;
    height: 300px;
  }
  .confirmation {
    padding: 150px 3%;
  }
  .confirmation .message {
    max-width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */