/* --- BASE --- */
* {
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  outline: none !important;
  background-color: transparent;
  box-sizing: border-box;
  font-family: "Noto Sans Hanunoo", serif;
}

*::-moz-focus-inner {
  border: none;
}

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

p {
  font-family: "Noto Sans Hanunoo", serif;
  line-height: 25px;
  color: #403a4a;
}

html {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #013882 #fff;
}

html::-webkit-scrollbar {
  width: 0.4vw;
  scroll-behavior: smooth;
  border-radius: 9999px;
}

html::-webkit-scrollbar-thumb {
  background-color: #013882;
  background-clip: padding-box;
  border-radius: 9999px;
}

html::-webkit-scrollbar-track {
  background-color: #fff;
}

html,
body {
  width: 100%;
  display: block;
  margin-top: 0 !important;
  background-color: white;
  position: relative;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  overflow-x: hidden;
}

body {
  color: #000;
  line-height: 1.2;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9em;
  background-color: white;
}

/* HEADER */
.logo img {
  width: 100px;
}

.headerInitial {
  width: 90%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem auto 0px auto;
  position: relative;
}

.headerInitial ul.menuDesktop {
  display: flex;
  gap: 25px;
  width: fit-content;
  justify-content: flex-end;
  backdrop-filter: blur(16px);
  background-color: #ffffff4d;
  border: 1px solid #dfd9da;
  border-radius: 2em;
  transition: border-radius .3s cubic-bezier(.33, 1, .68, 1) 0s, border-color .2s cubic-bezier(.33, 1, .68, 1) 0s, background-color .2s cubic-bezier(.33, 1, .68, 1) 0s;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  padding: 20px;
}

.headerInitial ul.menuDesktop li {
  list-style-type: none;
}

.headerInitial ul.menuDesktop li a {
  color: #000;
  text-decoration: none;
}

header {
  display: none;
  position: relative;
  z-index: 9999;
}

.header-row {
  padding: 30px 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 99;
  display: none;
}

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  text-decoration: none;

}

.hamburger path {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  transition: ease-in-out 1.5s;
}


.fullpage-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 98;
}

.fullpage-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 100px 60px;
}

.menu-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  opacity: 0;
}

nav {
  position: relative;
  z-index: 1;
  text-align: center;
}

nav ul {
  list-style-type: none;
}

nav li {
  overflow: hidden;
}

nav li+li {
  margin-top: 30px;
}

nav li a {
  font-size: 2.2em;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  color: transparent;
}

nav li a span {
  position: relative;
  display: block;
  color: white;
  padding: 5px 0px;
}

nav li:hover a span:before {
  height: 100%;
}

.changeColor .hamburger path {
  fill: none;
  stroke: white;
  transition: ease-in-out 1.5s;
  stroke-linecap: round;
}

@media screen and (max-width:768px) {
  .logo img {
    width: 50px;
  }

  header {
    display: block;
  }

  .header-row {
    display: flex;
    padding: 0px;
    width: 100%;
    position: relative;
    z-index: 9999;
  }

  .headerInitial,
  .headerInitial ul.menuDesktop {
    display: none;
  }

  .headerInitial {
    z-index: 9;
  }

  nav li a {
    font-size: 1.7em;
  }
}

/* --- HEADER */

/* --- INTRO */
.intro {
  width: 100%;
  height: calc(100vh - 127px);
  overflow: hidden;
  position: relative;
}

.imgAreaIntro {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.imgAreaIntro img {
  width: 60%;
  margin: auto;
  display: flex;
}

.contentIntro {
  max-width: 1420px;
  height: inherit;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}

.contentIntro h1 {
  font-size: 3.8em;
  font-weight: bold;
  max-width: 803px;
  display: flex;
  align-items: center;
  letter-spacing: -3px;
}

div.circle {
  aspect-ratio: 1/1;
  border: 1px dashed rgba(64, 58, 74, .5);
  border-radius: 100em;
  top: -7%;
  bottom: 0%;
  left: 0%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  height: 660px;
}

.contentText {
  margin-left: auto;
}

.contentText p {
  margin: 36px 0px;
}

@media (max-width: 1650px) {
  .contentText {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}

@media (max-width: 1366px) {
  .imgAreaIntro img {
    width: 40%;
  }

  div.circle {
    height: 620px;
  }
}

@media (max-width: 1280px) {
  div.circle {
    left: 45px;
    height: 545px;
  }
}

@media (max-width: 1080px) {
  .imgAreaIntro img {}

  div.circle {
    display: none;
  }

  .intro {
    display: flex;
    flex-direction: column;
    margin-top: 9rem;
    height: auto;
    gap: 50px;
  }

  .imgAreaIntro {
    position: relative;
    order: 1;
    margin: auto;
  }

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

  .contentText {
    margin: auto !important;
  }

  @media (max-width: 768px) {
    .contentText p br {
      display: none;
    }
  }
}

/* --- INTRO */

/* MISSION */
.mission {
  width: 100%;
  background-color: #f7f2ee;
  padding: 6rem 0px;
  overflow: hidden;

}

.missionBanner {
  background-color: #013882;
  max-width: 1420px;
  width: 90%;
  padding: 7rem 4rem;
  margin: auto;
  border-radius: 10px;
  color: white;
  position: relative;
}

.missionBannerContent {
  width: 75%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.missionBannerContent h2 {
  font-weight: bold;
  font-size: 2.8em;
  line-height: 40px;
  text-align: center;
}

.missionBannerContent p {
  margin: 2rem 0px;
  color: white;
  text-align: center;
}

.btnDefaultWhite,
.btnDefault {
  text-decoration: none;
  background-color: transparent;
  align-items: center;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  -moz-column-gap: 8px;
  column-gap: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 1.875;
  margin: 0;
  outline: none;
  width: 150px;
  height: 50px;
  position: relative;
  text-transform: uppercase;
  transition: background-color .4s cubic-bezier(.33, 1, .68, 1) 0s, border-color .4s cubic-bezier(.33, 1, .68, 1) 0s;
  white-space: nowrap;
  margin: auto;
}

.btnDefault {
  color: #403a4a;
  border: 1px solid #403a4a;
  margin-top: 1rem;
  margin-left: 0px;

}

.circleBanner {
  border: 1px dashed hsla(0, 0%, 100%, .5);
  height: 150%;
  width: 75%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100em;
  overflow: hidden;
  position: absolute;
}

.revolution {
  max-width: 1420px;
  width: 90%;
  margin: 9rem auto 0px auto;
}

.revolution h3 {
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.revolutionInitialText {
  max-width: 700px;
  margin: 1rem 0px;
}

.revolutionItens {
  display: grid;
  gap: 60px;
  margin: 4.5rem auto 0px auto;
  grid-template-columns: repeat(2, 1fr);
}

.revolutionSingle {
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.revolutionSingle h3 {
  font-size: 2em;
  margin: 2rem 0px 0.5rem 0px;
}

@media (max-width: 1650px) {
  .circleBanner {
    width: 95%;
    height: 160%;
  }
}

@media (max-width: 1336px) {
  .circleBanner {
    width: 90%;
    height: 130%;
  }

  .missionBanner {
    padding: 2rem;
  }
}

@media (max-width: 1180px) {
  .circleBanner {
    display: none;
  }

  .missionBannerContent {
    width: 100%;
  }

  .missionBannerContent h2 {
    font-size: 2em;
  }

  .revolution h3 {
    font-size: 2em;
    text-align: center;
  }

  .revolutionInitialText {
    max-width: 90%;
    text-align: center;
    margin: 1rem auto;
  }

  @media (max-width: 1080px) {
    .revolutionItens {
      grid-template-columns: repeat(1, 1fr);
    }

    .revolution h3 {
      font-size: 2em;
    }

    .missionBannerContent h2 {
      font-size: 2em;
    }
  }

  @media (max-width: 768px) {
    .revolution h3 {
      letter-spacing: 0px;
      font-size: 1.5em;
    }

    .revolution {
      margin: 6rem auto 0px auto;
    }
  }
}

/* --- MISSION */

/* VISSION */
.vision {
  max-width: 1420px;
  width: 90%;
  margin: 6rem auto;
  background-color: #f7f2ee;
  border-radius: 10px;
}

.visionContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

}

.imgVision {
  flex: 1;
}

.imgVision img {
  display: block;
  width: 100%;
  height: 850px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.textVision {
  flex: 1;
}

.textVision h3,
.textVision p {
  width: 80%;
}

.textVision h3 {
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (max-width: 1280px) {
  .imgVision img {
    height: 600px;
  }

  .imgAccurate img {
    height: 600px !important;
  }
}

@media (max-width: 1180px) {
  .visionContent {
    flex-direction: column;
  }

  .imgVision img {
    border-radius: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .textVision h3,
  .textVision p {
    width: 90%;
    text-align: center;
    margin: auto;
  }

  .textVision h3 {
    margin-bottom: 15px;
    font-size: 2em;
  }

  .textVision p {
    margin-bottom: 60px;
  }

  .imgVision {
    width: 100% !important;
  }

  .imgVision img {
    max-height: 450px !important;
  }

  @media (max-width: 768px) {
    .imgVision img {
      max-height: 100% !important;
      height: 100% !important;
    }

    .textVision h3 {
      letter-spacing: 0px;
      font-size: 1.5em;
    }
  }
}

/* --- VISSION */

/* --- ACCURATE */
.accurate {
  max-width: 1420px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.accurateText {
  flex: 1;
}

.accurateText h3 {
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.imgAccurate {
  flex: 2;
}

.imgAccurate img {
  display: block;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 850px;
}

@media (max-width: 1180px) {
  .accurate {
    flex-direction: column;
  }

  .accurateText {
    text-align: center;
  }

  .imgAccurate {
    width: 100%;
  }

  .imgAccurate img {
    max-height: 450px;
  }

  .accurateText h3 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .accurateText h3 {
    letter-spacing: 0px;
    font-size: 1.5em;
  }
}

/* --- ACCURATE */

/* QUESTS */
.quests {
  max-width: 1420px;
  width: 90%;
  margin: 6rem auto;
}

.quests h1 {
  font-weight: bold;
  letter-spacing: -3px;
  font-size: 3.5em;
  text-transform: uppercase;
}

.questLists {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin: 6rem 0px 0px 0px;
}

.questListsSingle {
  max-width: 1000px;
  border-top: 1px solid #403a4a;
  width: 100%;
}

.quest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0px;
  cursor: pointer;
}

.quest h3 {
  font-size: 1.2em;
  text-align: center;
  max-width: 75%;
}

.home-how_accordion-button {
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  display: flex;
}

.home-how_accordion-button-line {
  background-color: #403a4a;
  flex: none;
  width: 1.25rem;
  height: 2px;
}

.home-how_accordion-button-line {
  background-color: #403a4a;
  flex: none;
  width: 1.25rem;
  height: 2px;
}

.home-how_accordion-button-line.is-second {
  transition: transform .4s;
  position: absolute;
  transform: rotate(90deg);
}

.answer {
  display: none;
  text-align: center;
  padding-bottom: 2rem;
}

.rotate-minus {
  transform: rotate(0deg) !important;
}

@media (max-width: 1280px) {
  .quests h1 {
    text-align: center;
  }

  .questListsSingle {
    max-width: 100%;
  }

  @media (max-width: 1180px) {
    .quests h1 {
      font-size: 2.5em;
    }
  }

  @media (max-width: 768px) {
    .quests h1 {
      letter-spacing: 0px;
    }
  }
}

/* --- QUESTS */


/* PRICE */
.price {
  width: 100%;
  background-color: #f7f2ee;
  margin: 4rem auto;
  padding: 3rem 0px;
}

.priceContainer {
  max-width: 1420px;
  width: 90%;
  margin: auto;
  padding: 3rem 0px;
}

.priceSingle {
  border-radius: 10px;
  padding: 3rem;
  color: #000;
  position: relative;
  background: white;
  min-height: 385px !important;
}

.priceSingle button {
  position: absolute;
  right: 10px;
  top: 10px;
  text-decoration: none;
  background-color: #4FD298;
  align-items: center;
  color: white !important;
  border: 0px;
  border-radius: 10px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 1.875;
  margin: 0;
  outline: none;
  width: 150px;
  height: 50px;
  text-transform: uppercase;
  transition: background-color .4scubic-bezier(.33, 1, .68, 1) 0s, border-color .4scubic-bezier(.33, 1, .68, 1) 0s;
  white-space: nowrap;
  margin: auto;
}

.priceSingle h4 {
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.priceTag {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.priceSingle h2 {
  font-size: 2em;
  letter-spacing: -2px;
}

.priceCaracteristicas {
  margin-top: 2rem;
}

.priceCaracteristicas p {
  color: 000;
}

.priceCaracteristicas div {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  gap: 10px;
}

.priceCaracteristicas div svg {
  margin-top: 5px;
}

.priceCaracteristicas div:not(:last-child) {
  margin-bottom: 20px;
}

.priceSingle hr {
  width: 100%;
  position: absolute;
  left: 0%;
  background: #f7f2ee;
  top: 125px;
  z-index: 1;
  height: 2px;
  border: 0px;
}

.slick-slide {
  margin: 0 20px;
}

.price h1 {
  max-width: 1420px;
  width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 3rem;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: -3px;
  text-transform: uppercase;
}

/* --- PRICE */

/* FOOTER */
footer {
  width: 100%;
  position: relative;
  background-color: #013882;
  color: white;
  margin-top: 6rem;
  padding: 6rem 0px;
  overflow: hidden;
}

.footerContent {
  max-width: 1420px;
  width: 90%;
  margin: auto;
  height: inherit;
}

.footerContent h1 {
  font-size: 3em;
  font-weight: bold;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.footerContent p {
  text-align: center;
  color: white;
}

form {
  width: 100%;
  margin-top: 2rem;
}

form input,
form textarea {
  background-color: transparent;
  border: 1.5px solid #dfd9da;
  border-radius: 16px;
  color: #12031a;
  width: 100%;
  outline: none;
  padding: 16px;
  resize: none;
  margin: 1rem 0px;
  color: white;
  height: 60px;
}

textarea {
  min-height: 300px;
}

.divide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

footer .circle {
  border: 1px dashed hsla(0, 0%, 100%, .5);
  height: 140%;
  width: 85%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100em;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

::placeholder {
  color: white !important;
}

.direitos {
  margin: 1.5rem auto 0px auto;
  text-align: center;
  width: 90%;
  color: white;
}

footer button {
  background-color: transparent;
  align-items: center;
  border: 1.5px solid white;
  border-radius: 16px;
  color: white;
  -moz-column-gap: 8px;
  column-gap: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 1.875;
  margin: 0;
  outline: none;
  width: 350px;
  position: relative;
  text-transform: uppercase;
  transition: background-color .4s cubic-bezier(.33, 1, .68, 1) 0s, border-color .4s cubic-bezier(.33, 1, .68, 1) 0s;
  white-space: nowrap;
  margin: 1rem auto;
  color: white;
  height: 60px;
}

.form__error {
  display: block;
  position: relative;
  font-size: 1em;
  margin: 5px 0;
  background: #cf5454;
  margin-left: 5px;
  padding: 5px;
}

.white__form .form__error {
  margin: 0;
  padding: 5px;
  background: #cf5454;
  color: #fff;
}

.form__error::after {
  content: 'X';
  position: absolute;
  right: 5px;
  top: 0px;
  color: white;
  cursor: pointer;
  transform: scaleY(0.8);
  top: 50%;
  transform: translate(-0px, -50%);
}

.white__form .form__error::after {
  color: #fff;
}

.form__control {
  position: relative;
}

.form__group {
  width: 100%;
}

@media (max-width: 1280px) {
  footer {
    padding: 3rem 0px;
  }
}

@media (max-width: 1180px) {
  .footerContent h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .direitos {
    text-align: center;
  }

  .divide {
    flex-direction: column;
    width: 100%;
    gap: 0px;
  }
}

/* --- FOOTER */

.form__group select {
  background-color: #013882;
  border: 1.5px solid #dfd9da;
  border-radius: 16px;
  color: #12031a;
  width: 100%;
  outline: none;
  padding: 16px;
  resize: none;
  margin: 1rem 0px;
  color: white;
  height: 60px;
}

.select2-container--default .select2-selection--single {
  border: 1.5px solid #dfd9da;
  border-radius: 16px;
  padding: 16px;
  resize: none;
  color: white;
  height: 60px;
  margin: 1rem 0px;
  background-color: #013882;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none !important;
}

.select2-selection__arrow {
  display: flex !important;
  align-items: center !important;
  height: inherit !important;
}

.select2-selection__arrow {
  position: relative;
  width: 45px !important;
}

.select2-selection__arrow::before {
  content: '';
  position: absolute;
  height: 98%;
  /* background-color: #013882; */
  width: 2px;
  top: -1px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 0px !important;
  border: solid 2px white !important;
  border-bottom: none !important;
  border-left: none !important;
  width: 15px !important;
  height: 15px !important;
  transform: rotate(135deg);
  position: absolute !important;
  top: 33% !important;
  left: 45% !important;
  transition: all ease-in-out 0.3s !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translate(-0px, -50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translateY(5px) rotate(315deg) rotate3d(-2, 2, 0, 180deg) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #013882 !important;
}

.form__group select {
  width: 100% !important;
}

.dot {
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: bouncedelay 1s infinite ease-in-out both;
  animation: bouncedelay 1s infinite ease-in-out both;
}

.dot-1 {
  -webkit-animation-delay: -.54s;
  animation-delay: -.54s;
}

.dot-2 {
  -webkit-animation-delay: -.48s;
  animation-delay: -.48s
}

.dot-3 {
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s
}

@-webkit-keyframes bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0.8);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0.8);
  }

  40% {
    transform: scale(1);
  }
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 100%;
  margin: 0;
  color: white;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15 !important;
  margin: 0;
  color: white;
}

.dropdown-holder1:hover img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(9%) saturate(1375%) hue-rotate(327deg) brightness(89%) contrast(85%);
}

.infosFooter {
  max-width: 1420px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: white;
  margin-top: 3rem;
}

.infosFooter p {
  color: white;
}

.midias {
  display: flex;
  gap: 10px;
  align-items: center;
}

.midias img {

  width: 30px;
  height: 30px;
}

.artes {
  max-width: 1420px;
  width: 90%;
  margin: auto;
}

.artes h1 {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin: 6rem auto 0px auto;

}

section.horizontal {
  overflow-x: hidden;
}

section.horizontal .pin-wrap,
section.horizontal .animation-wrap {
  display: flex;
  position: relative;
  z-index: 1;
  height: 100vh;
}


section.horizontal .item {
  position: relative;
  padding: 50px 10px;
  height: calc(100vh - 0px);
  display: flex;
  align-items: center;
  line-height: 1.7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
}

section.horizontal .item:before {
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(-30px, -50px);
  transform: translate(-30px, -50px);
  line-height: 1;
}

section.horizontal img {
  height: 100%;
}

section.horizontal .animation-wrap.to-right {
  float: left;
}

section.horizontal .animation-wrap.to-left {
  float: right;
}

section.horizontal .animation-wrap .item:nth-child(2n+2) {
  align-items: flex-start;
}

section.horizontal .animation-wrap .item:nth-child(4n+4) {
  align-items: flex-end;
}

.floating_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.floating_btn a {
  text-decoration: none;
}


@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}