/* ======== COLORS */
/* ======== FONTS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  font-weight: 100;
  color: #FF7A00;
}
@media (max-width: 820px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  h1 br {
    display: none;
  }
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #8d8c8c;
}
@media (max-width: 620px) {
  h2 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  h2 br {
    display: none;
  }
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #FF7A00;
}
@media (max-width: 620px) {
  h3 {
    font-size: 20px;
  }
}
h3 strong {
  font-weight: 900;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #FF7A00;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #3e3c3c;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: 100;
  color: #8d8c8c;
}

ul li {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: 100;
  color: #FF7A00;
  margin-left: 14px;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}
.container.small {
  width: 80%;
}
@media (max-width: 480px) {
  .container.small {
    width: 100%;
  }
}

.fullwidth {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.flex {
  display: flex;
}

.wrapper-outsite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .wrapper-outsite {
    position: relative;
    top: inherit;
    left: inherit;
    height: auto;
  }
}

.apparition {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0);
}

.apparition.visible {
  opacity: 1;
  transform: translateY(0);
}

.apparition-arrow:after {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0);
}

.apparition-arrow.visible:after {
  opacity: 1;
  transform: translateY(0);
}

.paragraph_hero_banner .hero-banner-title {
  padding: 40px 0;
}
@media (max-width: 820px) {
  .paragraph_hero_banner .hero-banner-title {
    padding: 30px 0;
  }
}
.paragraph_hero_banner .hero-banner-title h1 {
  margin-bottom: 20px;
}
.paragraph_hero_banner .hero-banner-img {
  min-height: 540px;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  background: #FF7A00;
}
@media (max-width: 820px) {
  .paragraph_hero_banner .hero-banner-img {
    min-height: 360px;
  }
}
.paragraph_hero_banner .hero-banner-img img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  animation: scaleUp 5s ease-in-out forwards;
  animation-delay: 0.4s;
}
@media (max-width: 540px) {
  .paragraph_hero_banner .hero-banner-img img {
    width: auto;
    height: 100%;
  }
}
.paragraph_hero_banner .hero-banner-img .container {
  position: relative;
}
.paragraph_hero_banner .hero-banner-img .container p {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 100;
  color: #FFFFFF;
}
@media (max-width: 820px) {
  .paragraph_hero_banner .hero-banner-img .container p {
    font-size: 20px;
  }
}
@media (max-width: 520px) {
  .paragraph_hero_banner .hero-banner-img .container p {
    font-size: 18px;
  }
}
.paragraph_hero_banner .hero-banner-img .container p strong {
  font-weight: 700;
  font-style: italic;
}
@media (max-width: 520px) {
  .paragraph_hero_banner .hero-banner-img .container br {
    display: none;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.paragraph_why_to_choose {
  padding: 60px 0;
  background: #FFFFFF;
}
@media (max-width: 640px) {
  .paragraph_why_to_choose {
    padding: 40px 0;
  }
}
.paragraph_why_to_choose .container {
  position: relative;
}
.paragraph_why_to_choose .container .why-number {
  position: absolute;
  right: 20px;
  bottom: 280px;
  font-family: "Montserra", sans-serif;
  font-size: 35px;
  font-weight: 300;
  color: #FF7A00;
  display: block;
  text-align: center;
  width: calc(33.33% - 30px);
}
@media (max-width: 920px) {
  .paragraph_why_to_choose .container .why-number {
    display: block;
    width: calc(50% - 20px);
  }
}
@media (max-width: 640px) {
  .paragraph_why_to_choose .container .why-number {
    position: relative;
    right: inherit;
    bottom: inherit;
    width: 100%;
  }
}
.paragraph_why_to_choose .container .why-number strong, .paragraph_why_to_choose .container .why-number div {
  display: block;
  font-weight: 700;
  margin-bottom: 0 !important;
  width: 100% !important;
}
.paragraph_why_to_choose .container .why-number hr {
  background: #FF7A00;
  border: none;
  height: 2px;
  display: block;
  margin: 20px auto 0 auto;
  width: 110px;
}
.paragraph_why_to_choose .container .why-number:after {
  display: block;
  margin: 20px auto 0 auto;
  width: 21px;
  height: 26px;
  background: url(../images/arrow.png) no-repeat;
  content: "";
  transform: rotate(180deg) scale(1.2);
  transform-origin: center center;
}
.paragraph_why_to_choose .why-txt {
  align-items: center;
  padding-bottom: 40px;
}
@media (max-width: 920px) {
  .paragraph_why_to_choose .why-txt {
    display: block;
  }
}
.paragraph_why_to_choose .why-txt > div {
  width: 50%;
}
@media (max-width: 920px) {
  .paragraph_why_to_choose .why-txt > div {
    width: 100%;
  }
}
.paragraph_why_to_choose .why-txt > div.why-txt-body {
  border-left: 2px solid #FF7A00;
  padding-left: 40px;
}
@media (max-width: 920px) {
  .paragraph_why_to_choose .why-txt > div.why-txt-body {
    margin-top: 20px;
    padding: 0;
    border-left: 0;
  }
}
.paragraph_why_to_choose .why-txt > div.why-txt-body p {
  margin-bottom: 10px;
}
@media (max-width: 420px) {
  .paragraph_why_to_choose .why-txt > div.why-txt-body p br {
    display: none;
  }
}
.paragraph_why_to_choose .why-txt > div.why-txt-body ul li {
  color: #FF7A00;
}
.paragraph_why_to_choose .why-thumbnails > div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 640px) {
  .paragraph_why_to_choose .why-thumbnails > div {
    display: block;
  }
}
.paragraph_why_to_choose .why-thumbnails > div > div {
  width: calc(33.33% - 30px);
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .paragraph_why_to_choose .why-thumbnails > div > div {
    display: block;
    width: calc(50% - 20px);
  }
}
@media (max-width: 640px) {
  .paragraph_why_to_choose .why-thumbnails > div > div {
    width: 60%;
    margin: 0 auto 40px auto;
  }
}
@media (max-width: 540px) {
  .paragraph_why_to_choose .why-thumbnails > div > div {
    width: 80%;
  }
}
@media (max-width: 440px) {
  .paragraph_why_to_choose .why-thumbnails > div > div {
    width: 100%;
  }
}
.paragraph_why_to_choose .why-thumbnails > div > div img {
  width: 100%;
  height: auto;
}
.paragraph_why_to_choose .why-thumbnails > div > div:nth-child(1) {
  transition-delay: 0.1s;
}
.paragraph_why_to_choose .why-thumbnails > div > div:nth-child(2) {
  transition-delay: 0.2s;
}
.paragraph_why_to_choose .why-thumbnails > div > div:nth-child(3) {
  transition-delay: 0.3s;
}
.paragraph_why_to_choose .why-thumbnails > div > div:nth-child(4) {
  transition-delay: 0.4s;
}
.paragraph_why_to_choose .why-thumbnails > div > div:nth-child(5) {
  transition-delay: 0.4s;
}

.paragraph-vignettes {
  position: relative;
}
.paragraph-vignettes .vignette-img {
  overflow: hidden;
  border-radius: 0 40px 0 40px;
}
.paragraph-vignettes .vignette-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}
.paragraph-vignettes .vignette-img:hover img {
  transform: scale(1.05);
}
.paragraph-vignettes h4 {
  min-height: 105px;
  padding: 10px 0 20px 0;
}
.paragraph-vignettes .vignette-txt {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: 100;
  color: #8d8c8c;
}
.paragraph-vignettes .button {
  display: inline-block;
  padding: 15px 25px;
  background: #FFA755;
  font-size: 1em;
  font-weight: 400;
  color: #FFFFFF;
  border: #000000;
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
  position: relative;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.paragraph-vignettes .button .wrapper {
  opacity: 0;
}
.paragraph-vignettes .button:before {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease-in-out, 0.2s ease-in-out;
  padding: 15px 25px;
  box-sizing: border-box;
  color: white;
}
.paragraph-vignettes .button:after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transition: top 0.2s ease-in-out;
  color: #000000;
  padding: 15px 25px;
  box-sizing: border-box;
}
.paragraph-vignettes .button:hover {
  border: 1px solid #000000;
  background: transparent;
}
.paragraph-vignettes .button:hover:before {
  top: -100%;
  opacity: 0;
}
.paragraph-vignettes .button:hover:after {
  top: 0;
}

.two-cols {
  padding: 60px 0;
}
@media (max-width: 640px) {
  .two-cols {
    padding: 40px 0;
  }
}
@media (max-width: 950px) {
  .two-cols > .flex {
    display: block;
  }
}
.two-cols.orange {
  background: #FF7A00;
}
.two-cols.orange p {
  color: #FFFFFF !important;
}
.two-cols.orange hr {
  border-top: 1px solid #FFFFFF !important;
  background: #FFFFFF !important;
}
.two-cols.orange h2 {
  color: #FFFFFF !important;
}
.two-cols.orange h5 {
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
}
.two-cols.orange h5:after {
  display: inline-block;
  width: 37px;
  height: 42px;
  background: url(../images/arrow-round.png) no-repeat;
  content: "";
  margin-left: 10px;
}
.two-cols.grey {
  background: #e7e7e7;
}
.two-cols.grey h5:after {
  display: inline-block;
  width: 21px;
  height: 26px;
  background: url(../images/arrow.png) no-repeat;
  content: "";
  margin-left: 10px;
}
.two-cols .two-cols-left {
  width: 60%;
}
@media (max-width: 950px) {
  .two-cols .two-cols-left {
    width: 100%;
    padding-bottom: 40px;
  }
}
.two-cols .two-cols-left aside {
  padding-top: 20px;
}
@media (max-width: 550px) {
  .two-cols .two-cols-left aside.flex {
    display: block;
  }
}
.two-cols .two-cols-left aside > div:only-child {
  width: 100% !important;
  overflow: hidden;
  border-radius: 0 40px 0 40px;
  max-height: 180px;
  margin-right: 80px;
}
@media (max-width: 950px) {
  .two-cols .two-cols-left aside > div:only-child {
    max-width: 300px !important;
    margin-right: 0;
    flex-grow: inherit !important;
  }
}
.two-cols .two-cols-left aside > div:only-child > div {
  width: 100%;
  height: 100%;
}
.two-cols .two-cols-left aside > div:only-child img {
  width: 100%;
  height: auto;
  display: block;
}
.two-cols .two-cols-left aside > div:only-child:after {
  display: none !important;
}
.two-cols .two-cols-left aside > div:first-child {
  width: 250px;
  max-height: 180px;
  overflow: hidden;
  border-radius: 0 40px 0 40px;
}
.two-cols .two-cols-left aside > div:first-child img {
  width: 100%;
  height: auto;
  display: block;
}
.two-cols .two-cols-left aside > div:last-child {
  flex-grow: 1;
  text-align: center;
  display: flex;
  align-items: center;
}
@media (max-width: 550px) {
  .two-cols .two-cols-left aside > div:last-child {
    padding-top: 20px;
    text-align: left;
    display: block;
  }
}
.two-cols .two-cols-left aside > div:last-child > div {
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #FF7A00;
  font-weight: 900;
}
.two-cols .two-cols-left aside > div:last-child > div:after {
  content: "";
  display: block;
  height: 2px;
  width: 60%;
  margin: 0 auto;
  background: #FF7A00;
  margin-top: 10px;
}
@media (max-width: 550px) {
  .two-cols .two-cols-left aside > div:last-child > div:after {
    display: none;
  }
}
.two-cols .two-cols-right {
  width: 40%;
}
@media (max-width: 950px) {
  .two-cols .two-cols-right {
    width: 100%;
  }
}
.two-cols .two-cols-right hr {
  height: 1px;
  margin: 20px 0;
  border: none;
  border-top: 1px solid #8d8c8c;
  background: #8d8c8c;
}

.cols-txt-img {
  padding: 60px 0;
}
@media (max-width: 640px) {
  .cols-txt-img {
    padding: 40px 0;
  }
}
.cols-txt-img h5 {
  display: flex;
  align-items: center;
}
.cols-txt-img h5:before {
  display: inline-block;
  width: 21px;
  height: 26px;
  background: url(../images/arrow.png) no-repeat;
  content: "";
  margin-right: 10px;
  transform: rotate(-90deg);
  transform-origin: center center;
}
.cols-txt-img-content {
  padding-top: 40px;
}
.cols-txt-img-content.flex {
  align-items: center;
}
@media (max-width: 740px) {
  .cols-txt-img-content.flex {
    display: block;
  }
}
.cols-txt-img-content p {
  margin-bottom: 20px;
  font-size: 18px;
}
.cols-txt-img-content p em {
  color: #FF7A00;
  font-style: normal;
}
.cols-txt-img-content p:last-child {
  margin-bottom: 0;
}
.cols-txt-img-content > div:first-child {
  overflow: hidden;
  border-radius: 0 40px 0 40px;
  margin-right: 20px;
}
@media (max-width: 740px) {
  .cols-txt-img-content > div:first-child {
    max-width: 240px;
  }
}
.cols-txt-img-content > div:first-child img {
  width: 100%;
  height: auto;
  display: block;
}
.cols-txt-img-content > div:last-child {
  padding-left: 20px;
  border-left: 2px solid #FF7A00;
}
@media (max-width: 740px) {
  .cols-txt-img-content > div:last-child {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
  }
}

.highlighted-wrapper {
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
}
@media (max-width: 640px) {
  .highlighted-wrapper {
    padding: 40px 0;
    min-height: 350px;
  }
}
.highlighted-wrapper:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.highlighted-wrapper .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: right;
}
@media (max-width: 640px) {
  .highlighted-wrapper .container {
    justify-content: center;
  }
}
.highlighted-wrapper .container .highlighted-content h5 {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
}
.highlighted-wrapper .container .highlighted-content h5:after {
  display: inline-block;
  width: 21px;
  height: 26px;
  background: url(../images/arrow.png) no-repeat;
  content: "";
  margin-left: 10px;
}
.highlighted-wrapper .container .highlighted-content-txt {
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-weight: 100;
  color: #3e3c3c;
  padding-right: 20px;
}
@media (max-width: 620px) {
  .highlighted-wrapper .container .highlighted-content-txt {
    font-size: 28px;
  }
}
@media (max-width: 420px) {
  .highlighted-wrapper .container .highlighted-content-txt br {
    display: none;
  }
}

.paragraph-map .container {
  position: relative;
}
.paragraph-map .container h2 {
  padding-top: 60px;
  position: absolute;
  z-index: 9999;
  font-weight: 300;
  color: #FF7A00;
}
@media (max-width: 640px) {
  .paragraph-map .container h2 {
    padding-top: 40px;
  }
}
.paragraph-map #map {
  height: 500px;
  width: 100%;
}

#header {
  padding: 15px 0;
  background: #FFFFFF;
}
#header .container {
  align-items: center;
}
@media (max-width: 1120px) {
  #header .container {
    justify-content: space-between;
  }
}
#header .header-logo {
  margin-right: 40px;
}
#header .header-logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
}
#header .header-menu {
  flex-grow: 1;
}
#header .header-menu nav > ul {
  display: flex;
}
#header .header-menu nav > ul li {
  margin-right: 20px;
  list-style: none;
}
#header .header-menu nav > ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  position: relative;
  transition: color 0.3s ease-in-out;
}
#header .header-menu nav > ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease-in-out;
}
#header .header-menu nav > ul li a:hover:after {
  width: 100%;
}
#header .header-menu nav > ul li:nth-child(4), #header .header-menu nav > ul li:last-child {
  display: none;
}
@media (max-width: 1120px) {
  #header .header-menu nav > ul li:nth-child(4), #header .header-menu nav > ul li:last-child {
    display: block;
  }
}
@media (max-width: 1120px) {
  #header .header-menu {
    display: none;
  }
}
#header .header-cta {
  display: flex;
  align-items: center;
}
#header .header-cta a:not(.button) {
  margin-right: 20px;
  display: block;
  text-decoration: none;
  color: #000000;
  position: relative;
  transition: color 0.3s ease-in-out;
}
#header .header-cta a:not(.button):after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: width 0.3s ease-in-out;
}
#header .header-cta a:not(.button):hover:after {
  width: 0;
}
#header .header-cta .button {
  display: inline-block;
  padding: 15px 25px;
  background: #FF7A00;
  font-size: 1em;
  font-weight: 400;
  color: #000000;
  border: #000000;
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
  position: relative;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
#header .header-cta .button .wrapper {
  opacity: 0;
}
#header .header-cta .button:before {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease-in-out, 0.2s ease-in-out;
  padding: 15px 25px;
  box-sizing: border-box;
  color: white;
}
#header .header-cta .button:after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transition: top 0.2s ease-in-out;
  color: #000000;
  padding: 15px 25px;
  box-sizing: border-box;
}
#header .header-cta .button:hover {
  border: 1px solid #000000;
  background: transparent;
}
#header .header-cta .button:hover:before {
  top: -100%;
  opacity: 0;
}
#header .header-cta .button:hover:after {
  top: 0;
}
@media (max-width: 1120px) {
  #header .header-cta {
    display: none;
  }
}
#header .header-mobile {
  display: none;
}
@media (max-width: 1120px) {
  #header .header-mobile {
    display: block;
  }
}
#header .header-mobile-button {
  display: block;
  width: 30px;
  height: 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
#header .header-mobile-button.active span:first-child {
  width: 100%;
  transform: rotate(45deg);
  transform-origin: 0 0;
  left: 2px;
}
#header .header-mobile-button.active span:nth-child(2) {
  opacity: 0;
}
#header .header-mobile-button.active span:last-child {
  width: 100%;
  transform: rotate(-45deg);
  transform-origin: 0 0;
  top: 20px;
}
#header .header-mobile-button span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000000;
  margin-bottom: 8px;
  position: absolute;
  left: 0;
  transition: width 0.5s ease-in-out, transform 0.5s ease-in-out, top 0.5s ease-in-out, left 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform-origin: 0 0;
}
#header .header-mobile-button span:first-child {
  width: 60%;
  top: 0;
}
#header .header-mobile-button span:nth-child(2) {
  width: 80%;
  top: 9px;
}
#header .header-mobile-button span:last-child {
  margin-bottom: 0;
  bottom: 0;
}
#header .header-mobile-button:hover span {
  width: 100% !important;
}

#mobile_menu {
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  height: calc(100% - 54px);
  background: #FFFFFF;
  z-index: 10;
  padding-top: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
@media (min-width: 1120px) {
  #mobile_menu {
    display: none;
  }
}
#mobile_menu.active {
  opacity: 1;
  pointer-events: inherit;
}
#mobile_menu.active nav {
  transform: translateY(0);
}
#mobile_menu nav {
  transform: translateY(40px);
  transition: transform 0.5s ease-in-out;
}
#mobile_menu nav > ul li {
  margin-bottom: 20px;
  list-style: none;
}
#mobile_menu nav > ul li a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  position: relative;
}

#footer {
  background: #FF7A00;
  padding: 60px 0 40px 0;
}
#footer p {
  color: #FFFFFF;
}
#footer .wrapper {
  justify-content: space-between;
  border-bottom: 1px solid #FFA755;
  padding-bottom: 60px;
}
@media (max-width: 780px) {
  #footer .wrapper {
    display: block;
  }
}
@media (max-width: 780px) {
  #footer .wrapper > div {
    margin-bottom: 30px;
  }
}
#footer .wrapper > div:nth-child(2) nav > ul li {
  margin-bottom: 10px;
  list-style: none;
}
#footer .wrapper > div:nth-child(2) nav > ul li a {
  display: inline-block;
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
  transition: color 0.3s ease-in-out;
}
#footer .wrapper > div:nth-child(2) nav > ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease-in-out;
}
#footer .wrapper > div:nth-child(2) nav > ul li a:hover:after {
  width: 100%;
}

.form-contact {
  position: relative;
}
.form-contact:after {
  content: "";
  display: block;
  width: 100%;
  top: 50%;
  height: 50%;
  background: #FF7A00;
  z-index: -1;
  position: absolute;
}
@media (max-width: 1024px) {
  .form-contact .flex {
    display: block;
  }
}
.form-contact-webform {
  width: 50%;
  background: #e7e7e7;
  padding: 60px 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .form-contact-webform {
    width: 100%;
  }
}
.form-contact-webform h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.form-contact-webform h6 {
  background: #FFFFFF;
  display: inline-block;
  font-size: 1em;
  padding: 5px 10px;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}
.form-contact-webform p {
  margin-bottom: 20px;
}
.form-contact-webform input[type=text],
.form-contact-webform input[type=email],
.form-contact-webform textarea {
  border: 1px solid rgba(17, 17, 17, 0.1);
  padding: 15px 25px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  outline: none;
  background: #e7e7e7;
}
.form-contact-webform textarea {
  height: 200px;
  resize: none;
}
.form-contact-webform input[type=submit] {
  display: block;
  width: 100%;
  display: inline-block;
  padding: 15px 25px;
  background: #000000;
  font-size: 1em;
  font-weight: 400;
  color: #FFFFFF;
  border: #000000;
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
  position: relative;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.form-contact-webform input[type=submit] .wrapper {
  opacity: 0;
}
.form-contact-webform input[type=submit]:before {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease-in-out, 0.2s ease-in-out;
  padding: 15px 25px;
  box-sizing: border-box;
  color: white;
}
.form-contact-webform input[type=submit]:after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transition: top 0.2s ease-in-out;
  color: #000000;
  padding: 15px 25px;
  box-sizing: border-box;
}
.form-contact-webform input[type=submit]:hover {
  border: 1px solid #000000;
  background: transparent;
}
.form-contact-webform input[type=submit]:hover:before {
  top: -100%;
  opacity: 0;
}
.form-contact-webform input[type=submit]:hover:after {
  top: 0;
}
.form-contact-webform input[type=submit]:hover {
  color: #000000;
}
.form-contact-aside {
  width: 50%;
  background: url(../images/form-bg.jpg) no-repeat #3e3c3c;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  min-height: 480px;
}
.form-contact-aside:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.form-contact-aside p {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #FFFFFF;
  position: relative;
}
@media (max-width: 1024px) {
  .form-contact-aside {
    width: 100%;
  }
}
.form-contact-aside #map {
  width: 100%;
  height: 920px;
}
@media (max-width: 1024px) {
  .form-contact-aside #map {
    height: 400px;
  }
}

/*# sourceMappingURL=main.css.map */
