header, footer, .button, .menu.active {
  background-color: var(--main-color);
}

.button {
  border: 2px solid var(--main-color);
}
.button:hover {
  background-color: #ffffff;
  color: var(--main-color);
}

.link, .color {
  color: var(--main-color);
}

.stroke path {
  stroke: var(--main-color);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #494949;
  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 {
  font-size: clamp(35px, 9vw, 70px);
}

h2 {
  font-size: clamp(25px, 4vw, 32px);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(25px, 3vw, 32px);
}

p, li {
  font-size: 16px;
}

p {
  line-height: 1.6;
}

section {
  padding: 0;
}

.contentWidth {
  max-width: 1430px;
  margin: auto;
  padding: 50px 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  position: relative;
}

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

.logo {
  z-index: 10;
}
.logo img {
  display: block;
  width: clamp(50px, 5vw, 100px);
}

.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: #ffffff;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #ffffff;
}
.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: #ffffff;
}

.menu {
  display: flex;
  gap: clamp(15px, 10vw, 100px);
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
}
.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 4vw, 18px);
  transition: transform 0.25s;
  font-weight: 700;
  display: block;
}
.menu li a:hover {
  transform: scale(1.2);
}

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

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

.cfWrapper .buttonWrapper {
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

form {
  max-width: 750px;
  margin: auto;
}
form .hiden {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
form input:not([type=submit], [type=checkbox], [type=radio]), form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  outline: none;
  background-color: #ffffff;
  font-weight: 400;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
}
form input:not([type=submit], [type=checkbox], [type=radio]):focus, form textarea:focus {
  border: 1px solid var(--main-color);
}
form br {
  display: none;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 400;
}
form textarea {
  width: 100%;
  max-height: 200px;
}
form .inputWrapper p {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
form .button {
  display: block;
  margin: auto;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gdprSubmithWrapper {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gdprSubmithWrapper .button {
  margin-right: 0;
}

.checkboxWrapper {
  margin-top: 10px;
  display: flex;
}
.checkboxWrapper label {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
}
.checkboxWrapper a {
  color: #ffffff;
}
.checkboxWrapper p {
  font-size: 15px;
  margin: auto;
}

.wpcf7-list-item {
  margin: 0;
}

input[type=radio], input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  font-family: inherit;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin-top: 0;
  padding: 0;
  position: relative;
  border: 1px solid #D9D9D9;
}

input[type=radio]::before, input[type=checkbox]::before {
  content: url(../images/inputCross.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  z-index: -1;
}

input[type=radio]::before, input[type=checkbox]::before {
  cursor: pointer;
  font-size: 0;
}

input[type=radio]:checked, input[type=checkbox]:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

input[type=radio]:checked::before, input[type=checkbox]:checked::before {
  z-index: 1;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  margin: 0;
  text-align: center;
  padding: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 15px !important;
  padding: 10px !important;
  margin-top: -10px !important;
  font-weight: 600;
  margin-bottom: -10px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #494949 !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: #494949 !important;
  background: #494949 !important;
  color: #ffffff !important;
}

footer {
  color: #ffffff;
  padding: 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
footer .footerWrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
footer .footerWrapper p, footer .footerWrapper a {
  font-size: 14px;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
}
footer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
footer .contentWidth {
  max-width: 1430px;
  padding: 60px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
footer .socials {
  display: flex;
  align-items: center;
  gap: 40px;
}
footer .socials a {
  transition: transform 0.25s;
}
footer .socials a:hover {
  transform: scale(1.2);
}

.footerMenu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(40px, 4vw, 70px);
  margin: 0;
  padding: 0;
}
.footerMenu li {
  list-style: none;
}
.footerMenu a {
  font-weight: 700;
  font-size: clamp(16px, 4vw, 18px);
  display: block;
  text-decoration: none;
  transition: transform 0.25s;
}
.footerMenu a:hover {
  transform: scale(1.2);
}

.cover .contentWidth {
  padding-top: 100px;
  padding-bottom: 100px;
}
.cover .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.cover .text p {
  max-width: 500px;
}

.bgImg {
  width: 100%;
  height: 100%;
}
.bgImg img {
  z-index: -1;
  width: 100%;
  min-width: 1200px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
}

.textImg .img {
  flex: 1;
}
.textImg .img img {
  max-width: 100%;
  display: block;
  border-radius: 5px;
}
.textImg .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 650px;
  flex: 1;
}
.textImg .content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.textImg .content:nth-child(even) {
  flex-direction: row-reverse;
}
.textImg .container {
  width: 100%;
}

.nextSection {
  display: none;
}
.nextSection.block {
  display: block;
}

.boxContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.box {
  padding: clamp(20px, 3vw, 40px);
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D9D9D9;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  border-radius: 10px;
  align-items: flex-start;
}
.box a {
  font-weight: 700;
  font-size: clamp(16px, 3vw, 18px);
}

.headlineWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.businessCard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.businessCard img {
  border-radius: 50%;
  display: block;
  margin: auto;
}
.businessCard .wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.businessCard .wrapper a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #494949;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
}
.businessCard .wrapper a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.contactBox {
  display: flex;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  max-width: 950px;
  width: 100%;
  overflow: hidden;
}
.contactBox .text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  flex: 1;
}
.contactBox .map {
  width: 60%;
  min-height: 300px;
}
.contactBox .map p {
  height: 100%;
}
.contactBox iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.textPage a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #494949;
}
.textPage a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.textPage h1 {
  font-size: clamp(25px, 6vw, 32px);
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
.textPage h1, .textPage h2, .textPage h3, .textPage h4, .textPage h5, .textPage h6 {
  margin-top: 20px;
}
.textPage ul {
  margin: 0;
  padding-left: 20px;
}
.textPage .contentWidth {
  max-width: 1100px;
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
}
.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.button {
  display: table;
  padding: clamp(5px, 6vw, 10px) clamp(20px, 6vw, 40px);
  font-weight: 600;
  font-size: clamp(16px, 6vw, 18px);
  text-decoration: none !important;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.25s, background-color 0.25s;
}

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

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

.f-24 {
  font-size: clamp(18px, 6vw, 24px);
}

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

.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-750 {
  max-width: 750px;
}

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

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

.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-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;
}

.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: #2A3F82 !important;
}

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

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

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

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

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

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

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

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

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

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

.bg-gray {
  background-color: #F6F6F6;
}

.line-gray {
  border-top: 5px solid #F6F6F6;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-arrow.slick-prev {
  z-index: 1;
  left: 100px;
}
.slick-arrow.slick-next {
  right: 100px;
}

.slick-dots {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 20px;
}
.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 15px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ffffff;
}

.slick-dots li button:before {
  color: #ffffff;
}

.slick-arrow.slick-prev:before {
  content: url(../images/main/slickArrowL.svg);
}
.slick-arrow.slick-next:before {
  content: url(../images/main/slickArrowR.svg);
}

/* MEDIA */
@media (max-width: 1100px) {
  .box {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .cover .text {
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .cover .contentWidth {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .textImg .content {
    max-width: 500px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .textImg .content:nth-child(even) {
    flex-direction: column-reverse;
  }
  .textImg .text {
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  footer .footerWrapper {
    flex-direction: column;
    gap: 10px;
  }
  footer .footerWrapper .copy {
    order: 4;
  }
  footer .container {
    flex-direction: column;
  }
  .contactBox {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
  }
  .contactBox .text {
    align-items: center;
    text-align: center;
  }
  .contactBox .map {
    width: 100%;
    min-height: auto;
  }
}
@media (max-width: 800px) {
  .box {
    flex: 1 1 100%;
  }
  form .inputWrapper p {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */