/*
  * BREAK POINTS
  *
  * Large < 75em (lg)
  * Desktop < 56.25em (md)
  * Tablet < 40em (sm)
  * Phone < 30em (xs)
  *
  */
/* SIMPLE FRAMEWORK */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

h1, h2, h3, h4, h5, h6 {
  padding: 0; }

img {
  display: block; }

input,
textarea,
button,
select {
  font-size: inherit;
  font-family: inherit;
  outline: 0;
  border: 0;
  background: none;
  padding: 0;
  margin: 0; }

input[type=submit],
input[type=reset],
button {
  cursor: pointer; }

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear; }

p {
  padding: 0;
  margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-style: normal;
  font-weight: normal;
  color: inherit; }

h1 {
  font-size: 3rem; }

h2 {
  font-size: 2.5rem; }

h3 {
  font-size: 1.9375rem; }

h4 {
  font-size: 1.5625rem; }

h5 {
  font-size: 1.25rem; }

h6 {
  font-size: 1rem; }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: .85em 1em;
  outline: none;
  -webkit-appearance: none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background: none;
  color: #fefefe;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear; }

.input {
  display: block;
  width: 100%;
  padding: .8rem;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: none;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear; }

.select {
  display: block;
  width: 100%;
  padding: .8rem;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: none;
  color: inherit;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.hide {
  display: none; }

.show {
  display: block; }

html {
  height: 100%;
  width: 100%;
  font-size: 16px; }
  @media (max-width: 56.25em) {
    html {
      font-size: 14px; } }
  @media (max-width: 40em) {
    html {
      font-size: 12px; } }
  @media (max-width: 30em) {
    html {
      font-size: 11px; } }

body {
  height: 100%;
  font-family: "Raleway", "Arial", "Helvetica", sans-serif;
  color: #333;
  font-weight: 400;
  position: relative; }

/* ELEMENTS */
.hamburger {
  cursor: pointer;
  height: 16px;
  width: 24px; }
  .hamburger span, .hamburger:before, .hamburger:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
  .hamburger:before {
    top: 0; }
  .hamburger span {
    top: 7px; }
  .hamburger:after {
    bottom: 0; }
  .hamburger.active span {
    background: none; }
  .hamburger.active:before {
    top: 6px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .hamburger.active:after {
    top: 6px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.app-author {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #333;
  font-size: 0.8rem;
  padding: 1rem 0; }
  .app-author__link {
    color: #333; }
    .app-author__link:hover {
      color: #73AE20; }

.container {
  max-width: 1170px;
  margin: 0 auto; }

.display-table {
  display: table;
  width: 100%;
  height: 100%; }
  .display-table-cell {
    display: table-cell;
    vertical-align: middle; }

.fixed {
  position: fixed !important; }

.btn {
  background: #73AE20;
  border-color: #73AE20;
  border-radius: 50px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 2em;
  padding-right: 2em;
  letter-spacing: 1px; }
  .btn:hover {
    background: none; }
  .btn--margin {
    margin: 0 5px; }

p {
  line-height: 1.6; }

/* PRELOADER */
.loading {
  position: fixed;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100; }

.spinner {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: rotate 2s infinite linear;
          animation: rotate 2s infinite linear; }
  .spinner__item {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    -webkit-animation: bounce 2s infinite linear;
            animation: bounce 2s infinite linear; }
    .spinner__item--one {
      background: #000;
      top: 0; }
    .spinner__item--two {
      background: #73AE20;
      bottom: 0;
      -webkit-animation-delay: -1.0s;
              animation-delay: -1.0s; }

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* HEADER */
.logotype {
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px; }
  .logotype__sub {
    font-size: .55em; }
  .logotype a {
    color: #fff; }
  @media (max-width: 56.25em) {
    .logotype {
      text-align: center;
      margin-bottom: .5rem; } }

.header-top {
  width: 100%;
  height: auto;
  color: #fff;
  padding: 5px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear; }
  .header-top.fixed {
    background: #212121; }

.hamburger {
  display: none; }
  @media (max-width: 56.25em) {
    .hamburger {
      display: block;
      position: absolute;
      top: 15px;
      left: 15px;
      z-index: 20; } }

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right; }
  .menu a {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700; }
    .menu a:hover {
      color: #73AE20; }
  .menu li {
    display: inline-block;
    margin-left: 15px;
    padding-bottom: 6px; }
    .menu li.current {
      border-style: solid;
      border-color: #73AE20;
      border-width: 0 0 2px; }
      .menu li.current a {
        color: #73AE20; }
        .menu li.current a:hover {
          color: #a6e054; }
  @media (max-width: 56.25em) {
    .menu {
      visibility: hidden;
      opacity: 0;
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      background: #000;
      text-align: left;
      z-index: 10;
      padding-top: 50px;
      -webkit-transition: all 0.25s linear;
      -o-transition: all 0.25s linear;
      transition: all 0.25s linear; }
      .menu a {
        padding: 12px 0; }
      .menu li {
        display: block;
        margin: 0;
        padding: 0 15px;
        border-width: 0 2px 0 0; }
        .menu li.current {
          border-color: #73AE20;
          border-width: 0 2px 0 0; }
      .menu.active {
        visibility: visible;
        opacity: 1; } }

/*---------------------------------------
    WELCOME
---------------------------------------*/
.section-welcome {
  height: 100vh;
  padding: 100px 0 0;
  background: url("../images/mainbg.jpg") no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 1; }
  .section-welcome:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
    z-index: -1; }

.header-contacts {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem; }
  .header-contacts__li {
    display: inline-block;
    padding: 0 0 1rem; }
    .header-contacts__li + .header-contacts__li {
      margin-left: 1rem; }
    @media (max-width: 30em) {
      .header-contacts__li {
        padding-bottom: 0;
        margin-bottom: 1rem; } }
  .header-contacts__link {
    color: #fff;
    font-size: 1rem; }
    .header-contacts__link:hover {
      color: #cccccc; }
    @media (max-width: 30em) {
      .header-contacts__link {
        display: none; } }
  .header-contacts__icon {
    display: inline-block;
    vertical-align: middle;
    background: #73AE20;
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    border-radius: 50%;
    margin-right: 8px;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
    .header-contacts__icon .svg {
      display: block;
      width: 50%;
      height: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      fill: #fff; }
    .header-contacts__icon:hover {
      background-color: #fff; }
      .header-contacts__icon:hover .svg {
        fill: #73AE20; }
  @media (max-width: 30em) {
    .header-contacts {
      text-align: center;
      padding: 0; } }

.headline {
  text-align: center;
  color: #fff; }
  .headline__title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 4.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0 0 15px;
    padding: 0; }
    @media (max-width: 30em) {
      .headline__title {
        font-size: 3.5rem; } }
  .headline__cont {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1.5rem; }
  .headline__btns .btn {
    margin-bottom: 1em; }
  @media (max-width: 30em) {
    .headline {
      padding: 0 15px; } }

/*---------------------------------------
    SECTIONS
---------------------------------------*/
.section {
  position: relative; }

.section-padding {
  padding: 100px 0; }

.section-coloring {
  background-color: #F7F7F7; }

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; }
  .section-bg:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.8; }
  .section-bg--your-trip {
    background-image: url("../images/wondering.jpg");
    opacity: 0.4; }
  .section-bg--living-here {
    background-image: url("../images/living-bg.jpg");
    opacity: 0.4; }

.section-title {
  text-align: center;
  margin-bottom: 30px; }
  .section-title h2 {
    font-weight: 900;
    font-size: 2.5rem;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 1px; }

/*---------------------------------------
    TOURS
---------------------------------------*/
.tours {
  margin-bottom: 100px; }

.tours-adds {
  text-align: center; }

.tour-card {
  color: #333;
  background: #F7F7F7;
  border: none;
  margin: 0 1rem 1rem;
  outline: none;
  position: relative; }
  .tour-card__img {
    width: 100%;
    outline: none; }
  .tour-card__section {
    padding: 1em; }
  .tour-card .svg {
    position: absolute;
    width: 60px;
    height: 30px;
    left: 50%;
    margin-left: -30px;
    top: 40%;
    fill: #73AE20;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
  .tour-card__link {
    display: block;
    outline: none;
    color: #333; }
    .tour-card__link:after {
      content: '';
      display: block;
      visibility: hidden;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: #000;
      opacity: 0;
      z-index: 5;
      -webkit-transition: all 0.25s linear;
      -o-transition: all 0.25s linear;
      transition: all 0.25s linear; }
    .tour-card__link:hover {
      color: #73AE20; }
    .tour-card__link:hover:after {
      visibility: visible;
      opacity: 0.6; }
    .tour-card__link:hover .svg {
      visibility: visible;
      opacity: 1; }
  .tour-card h2 {
    font-size: 1.1rem;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 0; }
  .tour-card p {
    font-size: 14px;
    font-weight: 300; }
  @media (max-width: 30em) {
    .tour-card {
      margin: 0 4rem 1rem; } }
  .tour-card__btn {
    display: inline-block;
    background-color: #73AE20;
    color: #fff;
    text-align: center;
    padding: 12px 18px;
    border-radius: 4px; }

.tour-carousel {
  padding: 0 2rem; }
  .tour-carousel .slick-arrow {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    background: #73AE20;
    color: #fff;
    border: 1px solid #73AE20;
    border-radius: 100%;
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    z-index: 5;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
    .tour-carousel .slick-arrow:hover {
      background: none;
      color: #000; }
  .tour-carousel .slick-prev {
    left: 0; }
  .tour-carousel .slick-next {
    right: 0; }
  .tour-carousel .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center; }
    .tour-carousel .slick-dots button {
      width: 10px;
      height: 10px;
      border-radius: 20px;
      background: #73AE20;
      opacity: 0.6;
      margin: 5px;
      overflow: hidden;
      text-indent: -9999999px; }
      @media (max-width: 30em) {
        .tour-carousel .slick-dots button {
          width: 8px;
          height: 8px; } }
    .tour-carousel .slick-dots li {
      display: inline-block; }
      .tour-carousel .slick-dots li.slick-active button {
        opacity: 1; }
  @media (max-width: 30em) {
    .tour-carousel {
      padding: 0;
      margin: 0 1rem; } }

/* WONDERING */
.section-wondering {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff; }
  .section-wondering:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    z-index: -1; }

.wondering__title h2 {
  color: #fff; }

.wondering__cont {
  margin-bottom: 50px; }

.your-trip-bg {
  background: url("../images/wondering.jpg") no-repeat center fixed;
  background-size: cover; }

.living-here-bg {
  background: url("../images/living-bg.jpg") no-repeat center fixed;
  background-size: cover; }

.section-benefit {
  text-align: center;
  padding: 30px 0; }

.benefit {
  text-align: center;
  margin-bottom: 3rem; }
  .benefit-icon {
    width: 6.2rem;
    height: 6.2rem;
    border: 1px solid #73AE20;
    background: none;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
    .benefit-icon img {
      width: 100%;
      z-index: -1; }
    .benefit-icon .svg {
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 60%;
      height: 60%;
      fill: #73AE20;
      -webkit-transition: all 0.25s linear;
      -o-transition: all 0.25s linear;
      transition: all 0.25s linear; }
  .benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize; }
  .benefit a {
    color: #333; }
    .benefit a:hover {
      color: #73AE20; }
  .benefit:hover .benefit-icon {
    background: #73AE20; }
    .benefit:hover .benefit-icon .svg {
      fill: #fff; }

/* ABOUT */
.about {
  text-align: left;
  margin-bottom: 50px; }
  .about__img {
    width: 100%;
    border-radius: 100%; }
    @media (max-width: 30em) {
      .about__img {
        width: 50%;
        margin: 0 auto;
        margin-bottom: 1rem; } }

/* TESTIMONIALS */
.section-testimonials {
  background: #F7F7F7; }

.testimonial-carousel {
  padding: 0 2.5rem; }
  .testimonial-carousel .slick-arrow {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    background: #73AE20;
    color: #fff;
    border: 1px solid #73AE20;
    border-radius: 100%;
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    z-index: 5;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
    .testimonial-carousel .slick-arrow:hover {
      background: none;
      color: #000; }
  .testimonial-carousel .slick-prev {
    left: 0; }
  .testimonial-carousel .slick-next {
    right: 0; }
  .testimonial-carousel .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center; }
    .testimonial-carousel .slick-dots button {
      width: 10px;
      height: 10px;
      border-radius: 20px;
      background: #73AE20;
      opacity: 0.6;
      margin: 5px;
      overflow: hidden;
      text-indent: -9999999px; }
      @media (max-width: 30em) {
        .testimonial-carousel .slick-dots button {
          width: 8px;
          height: 8px; } }
    .testimonial-carousel .slick-dots li {
      display: inline-block; }
      .testimonial-carousel .slick-dots li.slick-active button {
        opacity: 1; }
  @media (max-width: 30em) {
    .testimonial-carousel {
      padding: 0; } }

.testimonial {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
  outline: none; }
  .testimonial__cont {
    background: #fff;
    border-radius: 4px;
    padding: 1.8rem 1.8rem .8rem;
    -webkit-box-shadow: 1px 1px 2px rgba(222, 222, 222, 0.32);
            box-shadow: 1px 1px 2px rgba(222, 222, 222, 0.32);
    position: relative;
    margin-bottom: 1.8rem; }
    .testimonial__cont:after {
      content: '';
      display: block;
      width: 2rem;
      height: 1rem;
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -15px;
      border-style: solid;
      border-width: 15px 15px 0 15px;
      border-color: #fff transparent transparent transparent; }
  .testimonial__name h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000; }
  .testimonial__name h3 {
    font-size: 1rem;
    font-weight: 300;
    color: #333; }
  @media (max-width: 30em) {
    .testimonial {
      padding: 0;
      margin-bottom: 2rem; } }

/* ADDS */
.section-adds {
  text-align: center; }

/* CONTACTS */
.section-contact {
  text-align: center; }
  .section-contact > p {
    margin-bottom: 50px; }

.contact {
  margin-bottom: 30px;
  text-align: left; }
  .contact:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }
  .contact-icon {
    width: 3rem;
    height: 3rem;
    position: relative;
    float: left;
    border: 1px solid #73AE20;
    border-radius: 50%;
    margin-right: 15px;
    text-align: center;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear; }
    .contact-icon .svg {
      display: block;
      width: 50%;
      height: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      fill: #73AE20; }
  .contact:hover .contact-icon {
    background: #73AE20; }
    .contact:hover .contact-icon .svg {
      fill: #fff; }
  .contact h2 {
    font-size: 1.1rem;
    font-weight: 600; }
  .contact a {
    color: #333; }
    .contact a:hover {
      opacity: 0.6; }

.contact-form {
  position: relative; }
  .contact-form a {
    color: inherit;
    text-decoration: underline; }
  .contact-form .form-group {
    margin: 0 0 15px;
    text-align: left;
    position: relative; }
  .contact-form .form-label {
    font-weight: 700;
    margin-bottom: .5rem;
    padding-left: .85rem; }
  .contact-form .form-required {
    display: block;
    position: absolute;
    width: 1rem;
    height: 1rem;
    right: 1rem;
    top: 0.5rem; }
    .contact-form .form-required .svg {
      display: block;
      width: 100%;
      height: 100%;
      fill: #999999;
      -webkit-transition: all 0.25s linear;
      -o-transition: all 0.25s linear;
      transition: all 0.25s linear; }
  .contact-form .form-control {
    display: block;
    width: 100%;
    border-radius: 4px;
    border-color: #cccccc;
    background: #fff; }
    .contact-form .form-control::-webkit-input-placeholder {
      color: #cccccc; }
    .contact-form .form-control::-moz-placeholder {
      color: #cccccc; }
    .contact-form .form-control:-ms-input-placeholder {
      color: #cccccc; }
    .contact-form .form-control:-moz-placeholder {
      color: #cccccc; }
    .contact-form .form-control:focus {
      border-color: #73AE20; }
      .contact-form .form-control:focus + .form-required .svg {
        fill: #73AE20; }
    .contact-form .form-control.error {
      border-color: #b71c1c; }
      .contact-form .form-control.error + .form-required .svg {
        fill: #b71c1c; }
    .contact-form .form-control--required {
      padding-right: 2rem; }
  .contact-form textarea {
    min-height: 150px; }
  .contact-form .form-checkbox {
    display: inline-block;
    margin-right: 1rem;
    cursor: pointer; }
  .contact-form .checkbox {
    display: inline-block;
    position: relative;
    padding-left: 1rem; }
    .contact-form .checkbox input {
      width: 1px;
      height: 1px;
      visibility: hidden; }
    .contact-form .checkbox .styling {
      display: block;
      position: absolute;
      top: 0.4rem;
      left: 0;
      margin-right: 0.6rem;
      width: .6rem;
      height: 0.6rem;
      border-radius: 100%;
      border: 1px solid #cccccc; }
    .contact-form .checkbox .label {
      cursor: pointer; }
    .contact-form .checkbox input:checked + .styling {
      border-color: #73AE20;
      background: #73AE20; }
      .contact-form .checkbox input:checked + .styling + .label {
        color: #73AE20; }
  .contact-form .form-checkbox-group {
    line-height: 1.6;
    margin-bottom: 15px; }
  .contact-form .form-btn {
    text-transform: none; }
    .contact-form .form-btn:hover {
      color: #000; }

/*---------------------------------------
    FORM. VALIDATION
---------------------------------------*/
.form .help-block {
  display: block;
  padding: 5px;
  font-size: 0.8rem;
  font-style: italic;
  color: #b71c1c; }

.form .result {
  text-align: center; }
  .form .result .success {
    color: #388e3c;
    padding: 30px;
    margin-bottom: 30px;
    font-weight: 700; }
  .form .result .error {
    color: #b71c1c;
    padding: 30px;
    margin-bottom: 30px; }

/* FOOTER */
.section-footer {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 120px 0; }

.footer-link {
  color: #333; }
  .footer-link:hover {
    color: #73AE20; }

.footer-txt {
  color: #333; }

.footer-menu {
  margin: 0 0 15px;
  padding: 0;
  list-style: none; }
  .footer-menu li {
    display: inline-block;
    padding: 0 10px;
    margin: 0; }
    .footer-menu li + li {
      border-left: 1px solid #73AE20;
      margin-left: -0.3em; }
      @media (max-width: 40em) {
        .footer-menu li + li {
          border-left: 0; } }
    @media (max-width: 40em) {
      .footer-menu li {
        display: block;
        margin-bottom: 5px; } }
  .footer-menu a {
    color: #fff; }
    .footer-menu a:hover {
      color: #73AE20; }

.scroll-top {
  visibility: hidden;
  display: inline-block;
  position: fixed;
  bottom: 3rem;
  right: 1.5rem;
  text-align: center;
  vertical-align: middle;
  background: #73AE20;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear; }
  .scroll-top .svg {
    display: block;
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    fill: #fff; }
  .scroll-top:hover {
    background: #8fd829; }
  .scroll-top.active {
    visibility: visible;
    opacity: 1; }

/* MODAL */
.modal {
  width: 80%;
  border-radius: 4px;
  padding: 1.8rem; }
  .modal p {
    font-weight: 400; }
    .modal p a {
      color: #333;
      text-decoration: underline; }
      .modal p a:hover {
        color: #73AE20; }
    .modal p strong {
      font-weight: 700; }
  .modal__title {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px; }
  @media (max-width: 30em) {
    .modal {
      width: 95%;
      padding: 1.8rem 1rem; } }

.many-text {
  font-size: 80%; }

/* PLUSO */
.pluso-share {
  display: inline-block;
  color: #333;
  margin-bottom: 1rem; }
  .pluso-share .pluso {
    display: inline-block;
    vertical-align: middle; }

/*# sourceMappingURL=../maps/app.css.map */
