@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Baloo+2:wght@500&family=Geologica:wght@500;800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap);
@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Poppins", sans-serif !important;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=__container] {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
[class*=__container].--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited, a:hover {
  text-decoration: none;
}

[data-opavcity-move] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1.2s cubic-bezier(0.17, 0.16, 0.09, 0.93);
  transition: all 1.2s cubic-bezier(0.17, 0.16, 0.09, 0.93);
}
[data-opavcity-move].animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-opacity] {
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
[data-opacity].animate {
  opacity: 1;
}

.fadeIn {
  opacity: 1 !important;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}

.fadeInTrigger {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.burger {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}

.burger__item {
  width: 30px;
  height: 4px;
  background-color: #000000;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.burger__item:before,
.burger__item:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #000000;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.burger__item:before {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.burger__item:after {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.burger.open .header__burger-item {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.burger.open .burger__item:before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
          transform: rotate(45deg) translate(35px, -35px);
}

.burger.open .burger__item:after {
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
          transform: rotate(-45deg) translate(35px, 35px);
}

[class*=__title] {
  position: relative;
  font-family: "Geologica", sans-serif;
  text-align: center;
  color: rgb(51, 51, 51);
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
[class*=__title]:before {
  content: "";
  position: absolute;
  width: 64%;
  right: -33px;
  height: 20px;
  bottom: -7px;
  display: block;
  background: #00b9e4;
  z-index: -1;
  -webkit-transform: skew(-36deg);
          transform: skew(-36deg);
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #00b9e4;
}

.bd-grid {
  max-width: 1390px;
  display: grid;
  grid-template-columns: 100%;
  padding: 1rem 0;
}

/*===== HEADER =====*/
.header {
  position: relative;
  z-index: 5;
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header hr {
  margin: 0 auto;
  margin-top: 10px;
  width: 60%;
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(#00b9e4), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #00b9e4, rgba(255, 255, 255, 0));
}
.header__toggle {
  z-index: 999;
  font-size: 3rem;
  cursor: pointer;
  color: #00b9e4;
}
.header__mobile {
  padding: 1rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__mobile {
    display: none;
  }
}
.header__mobileLogo {
  width: 120px;
}
.header__mobileLogo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__mobileLogo {
    display: none;
  }
}
.header__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #00b9e4;
  padding: 1rem;
  letter-spacing: 1px;
  font-size: 1.4rem;
  color: white;
  border: 1px solid #00b9e4;
  border-radius: 0.4rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__button:hover {
  cursor: pointer;
  background-color: white;
  color: #00b9e4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__upper {
  background-color: black;
  width: 100%;
  color: white;
}
.header__upperElement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  font-size: 14px;
}
.header__upperElement img {
  width: 20px;
  margin-right: 5px;
}

.footer__container {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__copyright {
  text-align: center;
  padding: 5px;
  background-color: #00b9e4;
  color: white;
}
.footer__text {
  font-size: 1.3rem;
  margin: 1rem 0;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__socials img {
  width: 20px;
  margin-right: 7px;
}
.footer__navigationElement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer__navigationElement img {
  width: 16px;
  margin-right: 7px;
}
.footer__navigationElement p {
  margin: 2px 0;
}
.footer__navigationElementText {
  font-weight: 600;
}
.footer__policy {
  color: #00b9e4;
}
.footer__arrow {
  width: 5px !important;
}

body.page_ header,
body.page_ footer {
  display: none;
}
body.page_ main {
  height: 100vh;
  width: 100vw;
  background: #fff;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.page_ #errorText {
  font-size: 22px;
  margin: 14px 0;
}
body.page_ #errorLink {
  font-size: 20px;
  padding: 12px;
  border: 1px solid;
  color: #000;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.page_ #errorLink:hover, body.page_ #errorLink:active {
  color: #fff;
  background: #000;
}
body.page_ #g6219 {
  -webkit-transform-origin: 85px 4px;
          transform-origin: 85px 4px;
  -webkit-animation: an1 12s 0.5s infinite ease-out;
          animation: an1 12s 0.5s infinite ease-out;
}
@-webkit-keyframes an1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  35% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  45% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  55% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  65% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  85% {
    -webkit-transform: rotate(2.5deg);
            transform: rotate(2.5deg);
  }
  95% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes an1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  35% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  45% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  55% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  65% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  85% {
    -webkit-transform: rotate(2.5deg);
            transform: rotate(2.5deg);
  }
  95% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.about {
  padding: 50px 0;
  margin-bottom: 5vh;
  font-size: 1.6rem;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__image {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__image img {
  width: 100%;
}
@media screen and (min-width: 990px) {
  .about__image {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.about__box {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 990px) {
  .about__box {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.faq {
  font-size: 10px;
  padding: 20px 0;
}
.faq--element {
  background: transparent;
  border-radius: 12px;
  margin: 20px 0;
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.faq--element.active {
  background: white;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1), 0px 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1), 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.faq--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 35px 0 0;
  font-size: 2.2em;
  color: #00659c;
  font-weight: 500;
}
.faq--text {
  display: none;
  margin: 30px 0 0;
  font-size: 1.6em;
  color: grey;
}
.faq--element.active .faq-text {
  display: block;
}
.faq--toggle {
  background: transparent;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  padding: 0;
  top: 20px;
  right: 30px;
  height: 30px;
  width: 30px;
  -webkit-transition: display 2s ease-in;
  transition: display 2s ease-in;
}
.faq.--b1 {
  min-height: 250px;
  background-image: url("../../assets/img/o1.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 200px 200px;
}
.faq.--b2 {
  min-height: 250px;
  background-image: url("../../assets/img/o2.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 200px 200px;
}
.faq.--b3 {
  min-height: 250px;
  background-image: url("../../assets/img/o3.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: contain;
  background-size: 200px 200px;
}

.faq .faq--toggle:focus {
  outline: 0;
}

.faq--element.active .faq--toggle .fa-chevron-down {
  display: none;
}

.faq--element.active .faq--toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq--element.active .faq--text {
  display: block;
}

.active {
  display: block;
}

.active .faq--toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.client__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.client_single {
  width: 200px;
  margin: 20px;
}

.hero {
  position: relative;
  min-height: 70vh;
  background-image: url("../../assets/img/hero_main.png");
  background-size: cover;
  background-repeat: no-repeat;
  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: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: bottom;
}
.hero:after {
  background: rgba(56, 56, 56, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
}
.hero__container {
  z-index: 1;
}
.hero__desc {
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (min-width: 990px) {
  .hero__desc {
    width: 50%;
  }
}
.hero__text {
  font-size: 3rem;
  line-height: 4rem;
  color: white !important;
  z-index: 1;
  font-weight: 600;
  text-align: left;
}
.hero__text mark {
  color: white;
}
@media screen and (min-width: 990px) {
  .hero__text {
    font-size: 6rem;
    line-height: 7rem;
  }
}
.hero__desc {
  color: white;
}
.hero__button {
  padding: 1rem 1.5rem;
  background-color: #00b9e4;
  color: white;
  border: 2px solid #00b9e4;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 1.4rem;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 1;
}
.hero__button:hover {
  cursor: pointer;
  background-color: white;
  color: #00b9e4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.hero__image {
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: 1;
  width: 100%;
}
.hero__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__image {
    width: 40%;
  }
}

.how {
  padding: 50px 0;
  background-color: #e2e8ed;
}
.how__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.how__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.how ul {
  list-style: none;
  padding: 0;
}
.how ul li {
  list-style-position: inside;
  font-size: 1.6rem;
  margin: 1rem 0;
}
.how ul li:before {
  content: "✓";
  font-size: 1.8rem;
}

.offer {
  padding: 80px 0;
}
.offer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 990px) {
  .offer__box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.offer__element {
  width: 80%;
  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;
}
@media screen and (min-width: 990px) {
  .offer__element {
    width: 25%;
  }
}
.offer__elementImg {
  width: 150px;
}
.offer__elementImg img {
  width: 100%;
}
.offer__elementTitle {
  font-weight: 600;
  font-size: 2.1rem;
  margin: 2rem 0;
}
.offer__elementDesc {
  font-size: 1.4rem;
  text-align: justify;
}

.news {
  padding: 8rem 0;
}
.news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.news__picture {
  width: 300px;
  height: 200px;
  border-radius: 1rem;
}
.news__elementTitle {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.help {
  padding: 50px 0;
}
.help ul {
  list-style: none;
  padding: 0;
}
.help ul li {
  list-style-position: inside;
  font-size: 1.6rem;
  margin: 1rem 0;
}
.help ul li:before {
  content: "✓";
  font-size: 1.8rem;
}
.help__button {
  padding: 1rem 1.5rem;
  background-color: #00b9e4;
  color: white;
  border: 2px solid #00b9e4;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 1.4rem;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.help__button:hover {
  cursor: pointer;
  background-color: white;
  color: #00b9e4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

#gallery {
  position: relative;
  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-image: url("../../assets/img/17545.jpg"), -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.418)));
  background-image: url("../../assets/img/17545.jpg"), linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.418));
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2vh 0;
  margin: 10vh 0;
}

.gallery {
  max-width: 1390px;
  margin: 0 auto;
  width: 90vw;
  /* display the anchor links in a grid */
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  grid-auto-rows: 200px;
  /* center the content horizontally & vertically */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  grid-auto-flow: dense;
  /* remove overflow to give the impression of a zoom when scaling the image up */
  /* update the size of a few selected cells */
  /* the default overflow is substituted by the scale/brightness of the nested images */
  /* stretch the overlay to cover the available viewport */
  /* slight delay as the class is added and the overlay is meant to be shown */
  /* size the image according to both the width and height of the viewport */
  /* absolute position the button in the top right corner of the overlay */
}
.gallery:hover {
  cursor: pointer;
}
.gallery .gallery_element {
  margin: 2px;
}
.gallery .gallery .gallery_element {
  overflow: hidden;
}
.gallery .gallery_element:nth-of-type(2) {
  grid-column: span 2;
}
.gallery .gallery_element:nth-of-type(5) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .gallery_element:nth-of-type(7) {
  grid-row: span 2;
}
.gallery .gallery_element:focus {
  outline: none;
}
.gallery .gallery_element img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  /* transition the scale and brightness of the image when hover/focus-ing on the anchor link */
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gallery .gallery_element:focus img,
.gallery .gallery_element:hover img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.gallery .overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* center te image horizontally & vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: hsla(0, 0%, 0%, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  /* transition the opacity and visibility when the class of .overlay is added on the div container */
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.gallery .overlay-container.overlay {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}
.gallery .overlay-container img {
  height: 90vh;
  width: 85vw;
  max-width: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery .overlay-container button {
  color: inherit;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  padding: 0.25rem;
  outline-color: currentColor;
  /* transition the opacity on hover/focus */
  opacity: 0.5;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.gallery .overlay-container button:hover,
.gallery .overlay-container button:focus {
  opacity: 1;
}
.gallery .overlay-container button svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.gallery__button {
  padding: 1rem 1.5rem;
  background-color: #00b9e4;
  color: white;
  border: 2px solid #00b9e4;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 1.4rem;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 3rem;
}
.gallery__button:hover {
  cursor: pointer;
  background-color: white;
  color: #00b9e4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.gallery__buble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5vh;
}

.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact__container.--justify {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 50px 0;
}
.contact__relative {
  position: relative;
}
.contact__square {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  background-color: #00b9e4;
}
.contact__image {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
}
.contact__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__image {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.contact__form {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__form {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}

.wpcf7-form-control-wrap {
  padding: 10px;
  width: 90%;
}

.wpcf7-form-control {
  padding: 10px;
}

.wpcf7-submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #00b9e4;
  color: white;
  border: none;
}

input[type=text],
input[type=email],
textarea {
  width: 90%;
}

/*===== NAV =====*/
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: white;
    border-right: 2px solid #00b9e4;
    width: 100%;
    height: 100vh;
    padding: 2rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.nav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav__perfil {
  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;
  text-align: center;
  margin-bottom: 3rem;
}
.nav__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.nav__img img {
  width: 180px;
}
.nav__name {
  display: block;
  font-size: black;
  color: black;
}
.nav__item {
  font-family: "Geologica", sans-serif;
  margin-bottom: 2rem;
  position: relative;
  font-size: 1.6rem;
  list-style: none;
  color: darkgray;
}
.nav__item:hover {
  cursor: pointer;
}
.nav__link {
  color: var(--first-color-light);
}

/*Show menu*/
.show {
  left: 0;
  z-index: 111;
  border: 5px solid #00b9e4;
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  .nav {
    width: 100% px;
  }
  .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .header__toggle {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__perfil {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: initial;
    margin-bottom: 0;
  }
  .nav__img {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
  .nav__img img {
    width: 150px;
  }
  .nav__name {
    color: var(--dark-color);
  }
  .nav__list {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__list--footer {
    padding: 0;
  }
  .nav__list--footer li {
    padding: 0 2px;
  }
  .nav__list--footer li::after {
    display: none;
  }
  .nav__item {
    margin: 0 1.5rem;
    padding: 1.4rem 0;
    position: relative;
  }
  .nav__item:hover::after {
    width: 50%;
  }
  .nav__item:after {
    content: "";
    position: absolute;
    background-color: #00b9e4;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0.5rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .nav__link {
    color: var(--dark-color);
  }
}
.header__scroll {
  width: 100%;
  z-index: 9999;
}

.scroll {
  width: 100%;
  z-index: 9999;
  position: fixed;
  top: 0;
  background-color: white;
  -webkit-box-shadow: 8px 8px 24px 0px rgb(66, 68, 90);
  box-shadow: 8px 8px 24px 0px rgb(66, 68, 90);
}
.scroll .nav__img img {
  width: 150px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
