@font-face {
  font-family: "FontAwesome";
  src: url("fontawesom/fontawesome-webfont.eot");
  src: url("fontawesom/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("fontawesom/fontawesome-webfont.woff2") format("woff2"), url("fontawesom/fontawesome-webfont.woff") format("woff"), url("fontawesom/fontawesome-webfont.ttf") format("truetype"), url("fontawesom/fontawesome-webfont.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "et-line";
  src: url("et-line/et-line.eot");
  src: url("et-line/et-line.eot?#iefix") format("embedded-opentype"), url("et-line/et-line.woff2") format("woff2"), url("et-line/et-line.woff") format("woff"), url("et-line/et-line.ttf") format("truetype"), url("et-line/et-line.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
}

.form-group {
  position: relative;
}

form.wpcf7-form.init {

}

.form-group:before {
  position: absolute;
  height: 45px;
  font-family: "FontAwesome";
  top: 0;
  left: 0;
  width: 20px;
  text-align: center;
  line-height: 45px;
  color: #0e82b5;
  font-size: 18px;
}

.icon-megaphone:before {
  font-size: 50px;
}

.contact .icons {
  display: flex;
  flex-direction: row !important;
  gap: 10px;
}
.contact .icons a {
  text-decoration: none;
}
.contact .icons a i {
  width: 55px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  color: #fff;
  background-color: #0e82b5;
  font-size: 25px;
  border-radius: 3px;
}
.contact .icons a i:hover {
  background-color: #444;
}

.in_name:before {
  content: "\f007";
}

.in_email:before {
  content: "\f1d8";
}

.in_message:before {
  content: "\f0e0";
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

.mainSpace {
  margin-top: 75px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

main {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(30px, 6vw, 50px);
}

h2 {
  font-size: clamp(25px, 6vw, 30px);
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
h2:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 6px;
  z-index: 1;
  margin-left: -53px;
  border-radius: 10px;
  border: 1px solid #0e82b5;
}

h3 {
  font-size: clamp(18px, 3vw, 20px);
}
h3.underline::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 70px;
  background: #0e82b5;
  height: 1px;
}

p, li {
  font-size: 15px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

section {
  padding: 0;
}

.contentWidth {
  max-width: 1180px;
  margin: auto;
  padding: 50px 20px;
  position: relative;
  z-index: 2;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

.menu li a.active {
  color: #0e82b5;
}

header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #fff;
}
header.sticky {
  box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 1180px;
  margin: auto;
}

.logo {
  z-index: 10;
}
.logo img {
  display: block;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 5px;
  z-index: 10;
}
.burger span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
  background-color: #444;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #444;
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}
.burger.is-active span:nth-child(3) {
  transform: translate(3px, 3.5px) rotate(-40deg);
  background-color: #444;
}

.menu {
  display: flex;
  gap: clamp(15px, 4vw, 50px);
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
  text-transform: uppercase;
}
.menu li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.menu.active {
  z-index: 9;
  display: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  width: 100%;
  top: 70px;
  left: 0;
  padding: 20px 0;
  animation-name: animaceMenuA;
  animation-duration: 0.5s;
}
@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

form {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form label {
  font-size: 12px;
  text-align: left;
  color: #000;
  line-height: 2;
  display: block;
}
form p {
  max-width: 100% !important;
}
form .form-group {
  border-bottom: 1px solid #ddd;
  padding-left: 20px;
}
form input:not(.button), form textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    background: #f1f1f1;
    border-radius: 8px;
    border: 0;
}
form .button {
  padding: 10px 25px;
  line-height: 1.3;
  font-size: 16px;
}
form textarea {
  height: 110px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #0e82b6;
    color: #fffcfc;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-text-fill-color: #444;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.wpcf7-not-valid-tip {
  font-size: 15px !important;
  font-weight: 600;
  position: absolute;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #444 !important;
  text-align: center !important;
  padding: 10px !important;
  font-weight: 600;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
  font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #444 !important;
  background: #444 !important;
  color: #fff !important;
}

.contact .content {
  display: flex;
  gap: 20px;
}
.contact .box {
  width: 100%;
  text-align: left;
}
.contact .box p {
  margin: 0;
}
.contact .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact .wrapper a {
  text-decoration: none;
  transition: text-decoration-color 0.25s;
  color: #444;
}
.contact .wrapper a:hover {
  color: #0e82b5;
}

footer {
  padding: 20px;
  background-color: #333;
  text-align: center;
}
footer .contentWidth {
  max-width: 1180px;
  margin: 20px auto 0;
}

.textImg .img img {
  max-width: 100%;
  display: block;
  border-radius: 5px;
}
.textImg .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 650px;
}
.textImg .text a {
  text-decoration: none;
  transition: text-decoration-color 0.25s;
  color: #0e82b5;
}
.textImg .text a:hover {
  color: #444;
}
.textImg h3 {
  position: relative;
  padding-bottom: 10px;
}
.textImg h3:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 70px;
  background: #0e82b5;
  height: 1px;
}
.textImg .content {
  display: flex;
  gap: 40px;
}
.textImg .container {
  width: 100%;
}
.textImg .container:nth-child(even) {
  background-color: #f5f5f5;
}
.textImg .container:nth-child(even) .content .text {
  order: 2;
}

.cover {
  min-height: 400px;
  background-image: url(../images/main/intro-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.cover h1, .cover p {
  text-shadow: rgba(0, 0, 0, 0.6) 2px 2px 3px;
}
.cover:before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.bannerLine {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 40px;
}

.boxContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box p {
  max-width: 300px;
  margin: auto;
}
.box img {
  max-width: 100%;
  height: auto;
}

.box .icon {
  font-size: 50px;
  color: #0e82b5;
}

.blueLine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: #fff;
}
.blueLine .text {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blueLine p, .blueLine a:not(.button) {
  color: #fff;
  font-size: clamp(20px, 3vw, 30px);
}
.blueLine a {
  text-decoration: none;
  transition: color 0.25s;
}
.blueLine a:hover {
  color: #444;
}

.gallery .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.galleryWrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.galleryWrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.popupContent {
  display: none;
  padding: 40px 20px;
  width: 100%;
  max-width: 600px;
}
.popupContent h2 {
  text-transform: none;
}
.popupContent h2::before {
  content: none;
}
.popupContent .button {
  margin: auto;
}

.logoSlider .sliderWrapper img {
  max-width: 100%;
  padding: 0 20px;
}

.slick-track {
  display: flex;
  align-items: center;
}

section.contact {
  position: relative;
  background-image: url(../images/main/contact-bg.jpg);
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}
section.contact:before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.link {
  text-decoration: none;
  transition: text-decoration-color 0.25s;
  color: #0e82b5;
}
.link:hover {
  color: #444;
}

.button {
  display: table;
  padding: 0 30px;
  font-weight: 600;
  font-size: clamp(16px, 6vw, 20px);
  text-decoration: none !important;
  border: none;
  border-radius: 10px;
  line-height: 50px;
  cursor: pointer;
}
.button.secondary {
  color: #444;
  background-color: #fff;
  transition: background-color 0.25s;
}
.button.secondary:hover {
  background-color: #0e82b5;
}
.button.ternary {
  color: #fff;
  background-color: #0e82b5;
  transition: background-color 0.25s;
}
.button.ternary:hover {
  background-color: #444;
}
.button.light {
  color: #444;
  background-color: #fff;
  transition: background-color 0.25s, color 0.25s;
}
.button.light:hover {
  color: #fff;
  background-color: #444;
}

.font-p {
  font-family: "Montserrat", sans-serif !important;
}

.font-s {
  font-family: "Poppins", sans-serif !important;
}

.f-22 {
  font-size: 22px;
}

.f-18 {
  font-size: clamp(16px, 3vw, 18px);
}
.f-18 p {
  font-size: clamp(16px, 3vw, 18px);
}

.f-12 {
  font-size: 12px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100%;
}

.mw-800 {
  max-width: 800px;
}

.mw-750 {
  max-width: 750px;
}

.mw-600 {
  max-width: 600px;
}

.mw-510 {
  max-width: 510px;
}
.mw-510 p {
  text-shadow: 1px 1px 2px #fff;
}

.h-100 {
  height: 100vh;
}

.ch-100 {
  height: 100%;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.d-column {
  flex-direction: column;
}

.j-start {
  justify-content: flex-start;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around;
}

.j-center {
  justify-content: center !important;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

.gap-50 {
  gap: 50px;
}

.gap-40 {
  gap: 40px;
}

.gap-30 {
  gap: 30px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-grid {
  display: grid;
}

.gtp-1 {
  grid-template-columns: 1fr;
}

.gtp-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gtp-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gtp-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gtp-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mt-40 {
  margin-top: 40px;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #444 !important;
}

.c-secondary {
  color: #fff !important;
}

.c-ternary {
  color: #0e82b5 !important;
}

.c-light {
  color: #fff !important;
}

.c-dark {
  color: #444 !important;
}

.bg-primary {
  background: #444 !important;
}

.bg-secondary {
  background: #fff !important;
}

.bg-ternary {
  background: #0e82b5 !important;
}

.bg-light {
  background: #fff !important;
}

.bg-dark {
  background: #444 !important;
}

.bg-gray {
  background: #f5f5f5 !important;
}

.bg-gradient {
  background: #444 !important;
}

/* MEDIA */
@media (max-width: 1200px) {
  .textImg .content {
    justify-content: space-around;
  }
  .textImg .text {
    max-width: 500px;
  }
  .gtp-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blueLine {
    gap: 20px;
    flex-direction: column;
  }
  .bannerLine {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .textImg .content {
    flex-direction: column;
  }
  .textImg .content .img {
    margin: auto;
  }
  .textImg .text {
    max-width: 100%;
  }
  .gtp-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact .content {
    flex-direction: column;
  }
  .contact .content .box {
    max-width: 500px;
    margin: auto;
  }
  .galleryWrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
  }
  .galleryWrapper a:nth-child(5) img {
    display: none;
  }
  .blueLine .text {
    flex-direction: column;
    gap: 20px;
  }
  .blueLine .text a {
    line-height: 1;
  }
  .blueLine .text .afterNone {
    display: none;
  }
  .blueLine {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .galleryWrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }
  .galleryWrapper a:nth-child(4) img {
    display: none;
  }
}
@media (max-width: 450px) {
  .galleryWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .galleryWrapper a:nth-child(3) img {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */
