:root {
  --blue100: #091133;
  --blue25: #306898;
  --black: #000;
  --cinza-dark: #212121;
  --cinza-medium: rgb(119, 118, 118);
  --cinza-light: rgb(189, 187, 187);
  --white: #fff;
}
.menu-background-objects .objects-layer .menu-obj-1 {
  background-image: url("../img/backgrounds/objects/menu-obj-1.svg");
}

.menu-background-objects .objects-layer .menu-obj-2 {
  background-image: url("../img/backgrounds/objects/menu-obj-2.svg");
}
.about-image{
  background-image: url("../img/iStock-1133176165-about.jpg");
  background-size: cover;
  border-radius: 5px;
}
.contact-image {
  background-image: url("../img/alexander-andrews-unsplash-contact.jpg");
  background-size: cover;
  border-radius: 5px;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: var(--cinza-light);
  color: var(--cinza-dark);
  text-shadow: none;
}

::selection {
  background-color: var(--cinza-light);
  color: var(--cinza-dark);
  text-shadow: none;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden !important;
  font: normal 400 1.6rem/1.7 "HelveticaNeueLight", sans-serif;
}

body.light-skin {
  color: var(--cinza-medium);
  background-color: var(--white);
}

body.light-skin section {
  background-color: var(--white);
}

body.light-skin a {
  color: var(--cinza-medium);
}

body.dark-skin {
  color: rgba(255, 255, 255, 0.6);
  background-color: var(--black);
}

body.dark-skin section {
  background-color: var(--black);
}

body.dark-skin section.transparent {
  background-color: transparent;
}

body.dark-skin a {
  color: rgba(255, 255, 255, 0.6);
}

section {
  position: relative;
  min-width: 320px;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: var(--black);
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.fullheight {
  position: static;
  height: auto;
}

@media only screen and (min-width: 992px) {
  .fullheight {
    position: relative;
    height: 100%;
  }
}

.fullheight-mobile {
  position: relative;
  height: 100%;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.color-layer-black {
  background-color: rgba(25, 25, 25, 0.4);
}
.color-layer-black-onethird {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    color-stop(70%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.4))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background: -moz-
    oldlinear-gradient(
      top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.4) 100%
    );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background: linear-gradient(
    to bottom,
    #00000000 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.gradient-layer {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.6s ease-in-out;
  -o-transition: all 1.6s ease-in-out;
  -moz-transition: all 1.6s ease-in-out;
  transition: all 1.6s ease-in-out;
  z-index: 11;
}

.gradient-layer.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Base CSS Styles End */

/* ------------------------------------------------*/
/* Forms and Forms Reply Groups Start */
/* ------------------------------------------------*/
.reply-group {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.reply-group.is-visible {
  opacity: 1;
}

.reply-group__icon {
  display: block;
  position: relative;
  font-size: 5rem;
  line-height: 1;
  color: var(--cinza-dark);
}

.reply-group__icon::before {
  background: -webkit-linear-gradient(
    -45deg,
    var(--cinza-dark) 0%,
    var(--cinza-light) 30%,
    var(--cinza-medium) 70%,
    var(--cinza-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reply-group__title {
  font: normal 700 2rem/1.2 "HelveticaNeueLight", serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--cinza-dark);
  margin-top: 0.6rem;
}

.reply-group__title.light {
  color: var(--white);
}

.reply-group__text {
  font: normal 400 1.4rem/1.7 "Raleway", sans-serif;
  color: var(--cinza-dark);
}

.reply-group__text.light {
  color: rgba(255, 255, 255, 0.6);
}

.notify .reply-group {
  text-align: left;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translateX(0) translateY(0);
  -moz-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

.form-container {
  position: relative;
}

.form {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.form.is-hidden {
  opacity: 0;
}

form {
  position: relative;
  width: 100%;
}

form input,
form textarea {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  padding: 1.2rem 0.3rem;
  font: normal 400 1.4rem/1.7 "Raleway", sans-serif;
  -webkit-transition: border-bottom 0.6s;
  -o-transition: border-bottom 0.6s;
  -moz-transition: border-bottom 0.6s;
  transition: border-bottom 0.6s;
}

form input {
  height: 4.6rem;
  margin: 0 0 2.4rem 0;
}

form textarea {
  height: 12rem;
  resize: none;
  margin: 0 0 0.8rem 0;
}

form .inputs-description {
  display: block;
  width: 100%;
  margin-bottom: 1.4rem;
  text-align: right;
  font: normal 400 1.2rem/1 "Raleway", sans-serif;
}

.notify-form input {
  margin: 0 0 0.8rem 0;
}

.form-dark {
  -moz-placeholder-color: #999999;
  -ms-input-placeholder-color: #999999;
}

.form-dark ::-webkit-input-placeholder {
  color: #999999;
}

.form-dark ::-moz-placeholder {
  color: #999999;
}

.form-dark input:focus:required:invalid,
.form-dark textarea:focus:required:invalid {
  color: #999999;
}

.form-dark input:required:valid,
.form-dark textarea:required:valid {
  color: #999999;
}

.form-dark input,
.form-dark textarea {
  border-bottom: 1px solid #999999;
  color: #999999;
}

.form-dark input:focus,
.form-dark textarea:focus {
  border-bottom: 1px solid var(--cinza-dark);
}

.form-dark .inputs-description {
  color: #858585;
}

.form-light {
  -moz-placeholder-color: rgba(255, 255, 255, 0.6);
  -ms-input-placeholder-color: rgba(255, 255, 255, 0.6);
}

.form-light input,
.form-light textarea {
  font-weight: 300;
}

.form-light ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-light ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-light input:focus:required:invalid,
.form-light textarea:focus:required:invalid {
  color: var(--white);
}

.form-light input:required:valid,
.form-light textarea:required:valid {
  color: var(--white);
}

.form-light input,
.form-light textarea {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.form-light input:focus,
.form-light textarea:focus {
  border-bottom: 1px solid var(--cinza-light);
}

.form-light .inputs-description {
  color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------*/
/* Forms and Forms Reply Groups End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animated Backgrounds Start */
/* ------------------------------------------------*/
.video-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video-background__controls {
  position: absolute !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  text-align: center;
}

.video-background__controls button {
  position: relative;
  display: inline-block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50px;
  height: 50px;
  margin-right: -4px;
}

.video-background__controls button i {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.no-touch .video-background__controls button:hover i {
  color: var(--white);
}

#video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}

#bgndKenburns,
#bgndKenburns-1,
#bgndKenburns-2,
#bgndKenburnsFull {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: transparent;
}

#particles-js,
#snow-js,
#nightsky-js {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-image: url("../img/iStock-1204589722-home.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  border-radius: 5px;
  opacity: 0.80;
}

#particles-js h1 {
  font-family: "HelveticaNeuelight", Helvetica, sans-serif;
  position: absolute;
  pointer-events: none;
  font-weight: bold;
  font-size: 3.1vw;
  color: #989898;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  #particles-js h1 {
    z-index: 1000;
    font-size: 33px;
    color: #989898;
    left: 50%;
    transform: translateX(-50%);
  }
}
.spanTyperwrite {
  border-right: 0.5em solid;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret {
  50% {
    border-color: transparent;
  }
}

/* ------------------------------------------------*/
/* Animated Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Main Section Styles Start */
/* ------------------------------------------------*/
.main-section {
  position: relative;
  padding: 2.4rem;
}

.main-section.transparent {
  height: 100%;
  min-height: 546px;
}

.main-section.is-hidden .main-background-objects {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.main-section.is-hidden .logo,
.main-section.is-hidden .menu-button,
.main-section.is-hidden .main-background-objects,
.main-section.is-hidden .main-section__intro,
.main-section.is-hidden .main-section__media,
.main-section.is-hidden .aside-content {
  opacity: 0;
  visibility: hidden;
}

.main-section.notify-is-visible .logo,
.main-section.notify-is-visible .menu-button,
.main-section.notify-is-visible .headline,
.main-section.notify-is-visible .main-section__media,
.main-section.notify-is-visible .aside-content,
.main-section.notify-is-visible .gradient-layer {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 992px) {
  .main-section {
    height: 100%;
    min-height: 546px;
    padding: 0;
    overflow: hidden;
    z-index: 8;
  }
  .main-section.is-hidden .main-background-objects {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .main-section.is-hidden .logo,
  .main-section.is-hidden .aside-content {
    opacity: 1;
    visibility: visible;
  }
  .main-section.is-hidden .menu-button,
  .main-section.is-hidden .main-section__intro,
  .main-section.is-hidden .main-section__media,
  .main-section.is-hidden .main-background-objects {
    opacity: 0;
    visibility: hidden;
  }
  .main-section.notify-is-visible .logo,
  .main-section.notify-is-visible .menu-button,
  .main-section.notify-is-visible .main-section__media,
  .main-section.notify-is-visible .aside-content,
  .main-section.notify-is-visible .gradient-layer {
    opacity: 1;
    visibility: visible;
  }
  .main-section.notify-is-visible .headline,
  .main-section.notify-is-visible .menu-button {
    opacity: 0;
    visibility: hidden;
  }
}

@media only screen and (min-width: 1600px) {
  .main-section {
    min-height: 654px;
  }
}

.logo {
  position: relative;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.logo img {
  cursor: pointer;
  width: 115px;
  height: 115px;
  opacity: 0.80;
  z-index: 10;
}

@media only screen and (min-width: 992px) {
  .logo {
    position: absolute;
    top: 2.4rem;
    left: 0;
    width: 12.7rem;
    padding: 2.4rem 0;
  }
  .logo img {
    margin: 0 auto;
  }
}

.menu-button {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8%;
  z-index: 9;
  -webkit-transition: opacity 0.8s ease-in-out;
  -o-transition: opacity 0.8s ease-in-out;
  -moz-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .menu-button {
    position: absolute;
    top: 4.4rem;
    right: 4.4rem;
  }
}

.main-section__intro,
.main-section__media {
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.main-section__aside {
  position: relative;
  padding: 0;
}

.main-section__aside .aside-content {
  position: relative;
  border-bottom: none;
  padding-top: 2.4rem;
  text-align: center;
  /* -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out; */
}

.main-section__aside.bottom-mobile {
  position: absolute;
  bottom: 2.4rem;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .main-section__aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    min-width: auto;
    width: 120px;
    height: 100%;
    padding: 24px 0;
  }
  .main-section__aside .aside-content {
    width: 100%;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--cinza-dark);
  }
  .main-section__aside.bottom-mobile {
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    width: 120px;
  }
}

.main-section__content.absolute {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  width: -webkit-calc(100% - 4.8rem);
  width: -moz-calc(100% - 4.8rem);
  width: calc(100% - 4.8rem);
  height: -webkit-calc(100% - 4.8rem);
  height: -moz-calc(100% - 4.8rem);
  height: calc(100% - 4.8rem);
}

@media only screen and (min-width: 992px) {
  .main-section__content {
    position: absolute;
    top: 0;
    right: 0;
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: calc(100% - 120px);
    height: 100%;
    padding-right: 24px;
  }
  .main-section__content.absolute {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: calc(100% - 120px);
    height: 100%;
  }
}

.main-section__intro {
  padding: 8rem 0;
  opacity: .90;
}

.main-section__intro .intro-content {
  position: relative;
  opacity: 1;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.main-section__intro .intro-content .headline {
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.main-section__intro .intro-content .headline.centered-mobile {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 992px) {
  .main-section__intro {
    padding: 24px 0;
  }
  .main-section__intro .intro-content {
    height: 100%;
    min-height: 546px;
  }
  .main-section__intro .intro-content .headline {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding: 0 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .main-section__intro .intro-content .headline {
    padding: 0 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .main-section__intro .intro-content .headline {
    padding: 0 14rem;
  }
}

.main-section__media {
  position: relative;
  padding: 0;
  height: 600px;
}

.main-section__media .media-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-section__media .media-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .main-section__media {
    height: 760px;
  }
}

@media only screen and (min-width: 992px) {
  .main-section__media {
    padding: 24px 0;
    height: 100%;
  }
  .main-section__media .media-content {
    position: relative;
    height: 100%;
  }
}

.main-background-objects {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  width: -webkit-calc(100% - 4.8rem);
  width: -moz-calc(100% - 4.8rem);
  width: calc(100% - 4.8rem);
  height: -webkit-calc(100% - 4.8rem);
  height: -moz-calc(100% - 4.8rem);
  height: calc(100% - 4.8rem);
  overflow: hidden;
  -webkit-transition: all 1.4s ease-in-out;
  -o-transition: all 1.4s ease-in-out;
  -moz-transition: all 1.4s ease-in-out;
  transition: all 1.4s ease-in-out;
}

.main-background-objects.transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-background-objects .main-obj-3 {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.main-background-objects .objects-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-background-objects .objects-layer .main-obj-1,
.main-background-objects .objects-layer .main-obj-2 {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.main-background-objects .objects-layer .main-obj-1 {
  position: absolute;
  top: 40px;
  right: -115px;
  width: 230px;
  height: 230px;
}

.main-background-objects .objects-layer .main-obj-2 {
  position: absolute;
  right: -26px;
  bottom: -73px;
  width: 113px;
  height: 200px;
}

@media only screen and (min-width: 768px) {
  .main-background-objects .objects-layer .main-obj-1 {
    position: absolute;
    top: 40px;
    right: -153px;
    width: 306px;
    height: 306px;
  }
  .main-background-objects .objects-layer .main-obj-2 {
    position: absolute;
    right: -35px;
    bottom: -97px;
    width: 151px;
    height: 267px;
  }
}

@media only screen and (min-width: 992px) {
  .main-background-objects {
    position: absolute;
    top: 2.4rem;
    left: 12rem;
    width: -webkit-calc(100% - 14.4rem);
    width: -moz-calc(100% - 14.4rem);
    width: calc(100% - 14.4rem);
    height: -webkit-calc(100% - 4.8rem);
    height: -moz-calc(100% - 4.8rem);
    height: calc(100% - 4.8rem);
  }
  .main-background-objects.transparent {
    position: absolute;
    top: 0;
    left: 12rem;
    width: -webkit-calc(100% - 12rem);
    width: -moz-calc(100% - 12rem);
    width: calc(100% - 12rem);
    height: 100%;
  }
  .main-background-objects.transparent .main-obj-3 {
    position: absolute;
    right: 100px;
    bottom: 72px;
    width: 180px;
    height: 197px;
  }
  .main-background-objects.transparent .objects-layer .main-obj-1 {
    position: absolute;
    top: 24px;
    right: -153px;
  }
  .main-background-objects .objects-layer {
    width: 50%;
    height: 100%;
  }
  .main-background-objects .objects-layer .main-obj-1 {
    position: absolute;
    top: 0;
    right: -153px;
  }
  .main-background-objects .objects-layer .main-obj-2 {
    position: absolute;
    right: -35px;
    bottom: -97px;
  }
}

@media only screen and (min-width: 1600px) {
  .main-background-objects.transparent .main-obj-3 {
    position: absolute;
    right: 100px;
    bottom: 72px;
    width: 270px;
    height: 295px;
  }
  .main-background-objects.transparent .objects-layer .main-obj-1 {
    position: absolute;
    top: 24px;
    right: -230px;
  }
  .main-background-objects .objects-layer .main-obj-1 {
    position: absolute;
    top: 0;
    right: -230px;
    width: 460px;
    height: 460px;
  }
  .main-background-objects .objects-layer .main-obj-2 {
    position: absolute;
    right: -52px;
    bottom: -146px;
    width: 226px;
    height: 400px;
  }
}

/* ------------------------------------------------*/
/* Main Section Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Socials Start */
/* ------------------------------------------------*/
.socials ul {
  display: block;
}

.socials ul li {
  display: inline-block;
}
.socials ul li a {
  height: auto;
  font: 600 1.7rem/1.7 "HelveticaNeueLight", serif;
  color: var(--cinza-dark);
}

.socials.dark ul li a {
  color: var(--cinza-dark);
}

.socials.light ul li a {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (min-width: 992px) {
  .socials {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    white-space: nowrap;
    text-align: center;
    padding: 0 2.4rem;
    display: flex;
    justify-content: center;
  }
  .socials ul {
    display: flex;
    position: absolute;
    top: 50%;
    flex-direction: column;
    margin: auto;
  }
  .socials ul li {
    display: inline-block;
  }

  .socials ul li a {
    margin: auto;
    height: 7.2rem;
    font: 600 1.7rem/7.2rem "HelveticaNeueLight", sans-serif;
    transform: translateX(50%) rotate(90deg);
  }
}

/* ------------------------------------------------*/
/* Socials End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Swiper Slider Custom Styles Start */
/* ------------------------------------------------*/
.media-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-container {
  width: 100%;
  height: 600px;
}

@media only screen and (min-width: 768px) {
  .swiper-container {
    height: 760px;
  }
}

@media only screen and (min-width: 992px) {
  .swiper-container {
    width: 100%;
    height: 100%;
    padding-right: 10rem;
    overflow: visible;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: auto;
  height: 3rem;
  margin-top: -1.5rem;
  padding: 0 1.2rem;
  line-height: 3rem;
  text-align: center;
  background: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.swiper-button-prev:active,
.swiper-button-prev:focus,
.swiper-button-next:active,
.swiper-button-next:focus {
  outline: none;
}

.swiper-button-prev span,
.swiper-button-next span {
  display: inline-block;
  height: 3rem;
  font: italic 600 1.7rem/3rem "HelveticaNeueLight", serif;
  color: var(--cinza-dark);
}

.swiper-button-prev.dark,
.swiper-button-next.dark {
  background-color: var(--white);
}

.swiper-button-prev.dark span,
.swiper-button-next.dark span {
  color: var(--cinza-dark);
}

.swiper-button-prev.light,
.swiper-button-next.light {
  background-color: var(--black);
}

.swiper-button-prev.light span,
.swiper-button-next.light span {
  color: var(--white);
}

@media only screen and (min-width: 992px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 7.6rem;
    padding: 0 0.2rem;
  }
}

.swiper-button-next span::after {
  content: "\f3d1";
  display: inline-block;
  font-family: "HelveticaNeueLight";
  font-size: 1rem;
  line-height: 3rem;
  margin-left: 0.8rem;
}

.swiper-button-prev span::before {
  content: "\f3cf";
  display: inline-block;
  font-family: "HelveticaNeueLight";
  font-size: 1rem;
  line-height: 3rem;
  margin-right: 0.8rem;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0;
}

@media only screen and (min-width: 992px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 0;
    margin-top: -1.5rem;
    border-bottom: 1px solid #b3b3b3;
    text-align: right;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0;
}

@media only screen and (min-width: 992px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: auto;
    right: 0;
    margin-top: 1.5rem;
    text-align: left;
  }
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-prev.swiper-button-disabled span,
.swiper-button-next.swiper-button-disabled span {
  opacity: 0.35;
}

.swiper-slide {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.slide-caption {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2.4rem;
  text-align: center;
  color: var(--white);
}

.slide-caption span {
  display: block;
  font-family: "Dongle", sans-serif;
  text-transform: none;
  letter-spacing: normal;
  color: var(--white);
}

.slide-caption p {
  font: normal 700 2rem/1.2 "HelveticaNeueLight", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--white);
}

@media only screen and (min-width: 992px) {
  .slide-caption {
    text-align: right;
  }
}

/* ------------------------------------------------*/
/* Swiper Slider Custom Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Popup Dialogs Start */
/* ------------------------------------------------*/
.notify {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.4rem;
  overflow-y: auto;
  background-color: var(--white);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.notify.transparent {
  background-color: transparent;
}

.notify.dark {
  background-color: var(--black);
}

.notify.animate-in {
  opacity: 1;
  visibility: visible;
}

.notify.animate-in .popup-content .popup-title__subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.4s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.4s, -webkit-transform 0.5s 0.3s;
  -o-transition: transform 0.5s 0.3s, opacity 0.5s 0.4s;
  -moz-transition: transform 0.5s 0.3s, opacity 0.5s 0.4s,
    -moz-transform 0.5s 0.3s;
  transition: transform 0.5s 0.3s, opacity 0.5s 0.4s;
  transition: transform 0.5s 0.3s, opacity 0.5s 0.4s,
    -webkit-transform 0.5s 0.3s, -moz-transform 0.5s 0.3s;
}

.notify.animate-in .popup-content .popup-title__title {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.4s;
  transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.4s;
  -o-transition: transform 0.5s 0.4s, opacity 0.5s 0.5s;
  -moz-transition: transform 0.5s 0.4s, opacity 0.5s 0.5s,
    -moz-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s, opacity 0.5s 0.5s;
  transition: transform 0.5s 0.4s, opacity 0.5s 0.5s,
    -webkit-transform 0.5s 0.4s, -moz-transform 0.5s 0.4s;
}

.notify.animate-in .popup-content .popup-title__text {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.6s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.5s 0.6s, -webkit-transform 0.5s 0.5s;
  -o-transition: transform 0.5s 0.5s, opacity 0.5s 0.6s;
  -moz-transition: transform 0.5s 0.5s, opacity 0.5s 0.6s,
    -moz-transform 0.5s 0.5s;
  transition: transform 0.5s 0.5s, opacity 0.5s 0.6s;
  transition: transform 0.5s 0.5s, opacity 0.5s 0.6s,
    -webkit-transform 0.5s 0.5s, -moz-transform 0.5s 0.5s;
}

.notify.animate-in .popup-content .form input {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.7s, border 0.6s,
    -webkit-transform 0.5s 0.6s;
  transition: opacity 0.5s 0.7s, border 0.6s, -webkit-transform 0.5s 0.6s;
  -o-transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s;
  -moz-transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s,
    -moz-transform 0.5s 0.6s;
  transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s;
  transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s,
    -webkit-transform 0.5s 0.6s, -moz-transform 0.5s 0.6s;
}

.notify.animate-in .popup-content .form .inputs-description {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.7s, padding 0.5s,
    -webkit-transform 0.5s 0.6s;
  transition: opacity 0.5s 0.7s, padding 0.5s, -webkit-transform 0.5s 0.6s;
  -o-transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, padding 0.5s;
  -moz-transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, padding 0.5s,
    -moz-transform 0.5s 0.6s;
  transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, padding 0.5s;
  transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, padding 0.5s,
    -webkit-transform 0.5s 0.6s, -moz-transform 0.5s 0.6s;
}

.notify.animate-in .popup-content .form button {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.8s, padding 0.5s,
    -webkit-transform 0.5s 0.7s;
  transition: opacity 0.5s 0.8s, padding 0.5s, -webkit-transform 0.5s 0.7s;
  -o-transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, padding 0.5s;
  -moz-transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, padding 0.5s,
    -moz-transform 0.5s 0.7s;
  transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, padding 0.5s;
  transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, padding 0.5s,
    -webkit-transform 0.5s 0.7s, -moz-transform 0.5s 0.7s;
}

.notify.animate-out {
  opacity: 0;
  visibility: hidden;
}

.notify .popup-content {
  position: relative;
  width: 100%;
}

.notify .popup-content .popup-title__subtitle,
.notify .popup-content .popup-title__title,
.notify .popup-content .popup-title__text {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s,
    -moz-transform 0.3s;
}

.notify .popup-content .form input,
.notify .popup-content .form textarea,
.notify .popup-content .form button,
.notify .popup-content .form .inputs-description {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s,
    -moz-transform 0.3s;
}

.notify .content-block:last-of-type {
  margin-bottom: 4.8rem;
}

@media only screen and (min-width: 992px) {
  .notify {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    background-color: transparent;
  }
  .notify.dark {
    background-color: transparent;
  }
  .notify .popup-content {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .notify .content-block:last-of-type {
    margin-bottom: 0;
  }
}

.writealine {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.4rem !important;
  overflow-y: auto;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.writealine.transparent {
  background-color: transparent;
}

.writealine.light {
  background-color: var(--white);
}

.writealine.dark {
  background-color: var(--black);
}

.writealine.animate-in {
  opacity: 1;
  visibility: visible;
}

.writealine.animate-in .popup-content .popup-title__subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.4s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.4s, -webkit-transform 0.5s 0.3s;
  -o-transition: transform 0.5s 0.3s, opacity 0.5s 0.4s;
  -moz-transition: transform 0.5s 0.3s, opacity 0.5s 0.4s,
    -moz-transform 0.5s 0.3s;
  transition: transform 0.5s 0.3s, opacity 0.5s 0.4s;
  transition: transform 0.5s 0.3s, opacity 0.5s 0.4s,
    -webkit-transform 0.5s 0.3s, -moz-transform 0.5s 0.3s;
}

.writealine.animate-in .popup-content .popup-title__title {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.4s;
  transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.4s;
  -o-transition: transform 0.5s 0.4s, opacity 0.5s 0.5s;
  -moz-transition: transform 0.5s 0.4s, opacity 0.5s 0.5s,
    -moz-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s, opacity 0.5s 0.5s;
  transition: transform 0.5s 0.4s, opacity 0.5s 0.5s,
    -webkit-transform 0.5s 0.4s, -moz-transform 0.5s 0.4s;
}

.writealine.animate-in .popup-content .popup-title__text {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.6s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.5s 0.6s, -webkit-transform 0.5s 0.5s;
  -o-transition: transform 0.5s 0.5s, opacity 0.5s 0.6s;
  -moz-transition: transform 0.5s 0.5s, opacity 0.5s 0.6s,
    -moz-transform 0.5s 0.5s;
  transition: transform 0.5s 0.5s, opacity 0.5s 0.6s;
  transition: transform 0.5s 0.5s, opacity 0.5s 0.6s,
    -webkit-transform 0.5s 0.5s, -moz-transform 0.5s 0.5s;
}

.writealine.animate-in .popup-content .form input[type="text"] {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.7s, border 0.6s,
    -webkit-transform 0.5s 0.6s;
  transition: opacity 0.5s 0.7s, border 0.6s, -webkit-transform 0.5s 0.6s;
  -o-transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s;
  -moz-transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s,
    -moz-transform 0.5s 0.6s;
  transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s;
  transition: transform 0.5s 0.6s, opacity 0.5s 0.7s, border 0.6s,
    -webkit-transform 0.5s 0.6s, -moz-transform 0.5s 0.6s;
}

.writealine.animate-in .popup-content .form input[type="email"] {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.8s, border 0.6s,
    -webkit-transform 0.5s 0.7s;
  transition: opacity 0.5s 0.8s, border 0.6s, -webkit-transform 0.5s 0.7s;
  -o-transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, border 0.6s;
  -moz-transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, border 0.6s,
    -moz-transform 0.5s 0.7s;
  transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, border 0.6s;
  transition: transform 0.5s 0.7s, opacity 0.5s 0.8s, border 0.6s,
    -webkit-transform 0.5s 0.7s, -moz-transform 0.5s 0.7s;
}

.writealine.animate-in .popup-content .form textarea,
.writealine.animate-in .popup-content .form .inputs-description {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 0.9s, padding 0.5s,
    -webkit-transform 0.5s 0.8s;
  transition: opacity 0.5s 0.9s, padding 0.5s, -webkit-transform 0.5s 0.8s;
  -o-transition: transform 0.5s 0.8s, opacity 0.5s 0.9s, padding 0.5s;
  -moz-transition: transform 0.5s 0.8s, opacity 0.5s 0.9s, padding 0.5s,
    -moz-transform 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.9s, padding 0.5s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.9s, padding 0.5s,
    -webkit-transform 0.5s 0.8s, -moz-transform 0.5s 0.8s;
}

.writealine.animate-in .popup-content .form button {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s 1s, padding 0.5s, -webkit-transform 0.5s 0.9s;
  transition: opacity 0.5s 1s, padding 0.5s, -webkit-transform 0.5s 0.9s;
  -o-transition: transform 0.5s 0.9s, opacity 0.5s 1s, padding 0.5s;
  -moz-transition: transform 0.5s 0.9s, opacity 0.5s 1s, padding 0.5s,
    -moz-transform 0.5s 0.9s;
  transition: transform 0.5s 0.9s, opacity 0.5s 1s, padding 0.5s;
  transition: transform 0.5s 0.9s, opacity 0.5s 1s, padding 0.5s,
    -webkit-transform 0.5s 0.9s, -moz-transform 0.5s 0.9s;
}

.writealine.animate-out {
  opacity: 0;
  visibility: hidden;
}

.writealine .popup-content {
  position: relative;
  width: 100%;
}

.writealine .popup-content .popup-title__subtitle,
.writealine .popup-content .popup-title__title,
.writealine .popup-content .popup-title__text {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s,
    -moz-transform 0.3s;
}

.writealine .popup-content .form input,
.writealine .popup-content .form textarea,
.writealine .popup-content .form button,
.writealine .popup-content .form .inputs-description {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s,
    -moz-transform 0.3s;
}

@media only screen and (min-width: 992px) {
  .writealine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.4rem 0 !important;
    overflow-y: hidden;
  }
  .writealine.is-visible {
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (min-width: 992px) {
  .writealine__content {
    position: relative;
    height: 100%;
  }
}

.popup-controls {
  margin-bottom: 4.8rem;
}

@media only screen and (min-width: 992px) {
  .popup-controls {
    padding: 2.4rem 6rem 0 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .popup-controls {
    padding: 2.4rem 10rem 0 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup-controls {
    padding: 2.4rem 14rem 0 14rem;
  }
}

/* ------------------------------------------------*/
/* Popup Dialogs End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Content Section Styles Start */
/* ------------------------------------------------*/
.content-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 2.4rem;
  margin-left: 0;
  overflow-y: auto;
  z-index: 3;
}

@media only screen and (min-width: 992px) {
  .content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: calc(100% - 120px);
    height: 100%;
    margin-left: 120px;
    padding: 0;
    padding-right: 2.4rem;
    overflow: hidden;
    z-index: 3;
  }
}

.about,
.portfolio,
.contact {
  display: none;
}

.blocks-container {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s,
    -moz-transform 0.3s;
}

.static {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.static::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cinza-light);
  -webkit-transform: translateX(-102%);
  -moz-transform: translateX(-102%);
  -ms-transform: translateX(-102%);
  transform: translateX(-102%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out,
    -moz-transform 0.3s ease-in-out;
  z-index: 1;
}

.static.dark::before {
  background-color: #111111;
}

.static.transparent::before {
  background-color: #0a0813;
}

.static .image,
.static .layer-cover,
.static .gallery {
  opacity: 0;
}

@media only screen and (min-width: 768px) {
  .static {
    height: 760px;
  }
}

@media only screen and (min-width: 992px) {
  .static {
    padding: 0;
    height: 100%;
  }
}

.portfolio .static {
  height: auto;
}

@media only screen and (min-width: 768px) {
  .portfolio .static {
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .portfolio .static {
    height: 100%;
  }
}

.active {
  display: block;
  z-index: 10;
}

.active .blocks-container {
  -webkit-animation: 1s ease-in-out 1 both fadeInUp;
  -moz-animation: 1s ease-in-out 1 both fadeInUp;
  animation: 1s ease-in-out 1 both fadeInUp;
}

.active .static::before {
  -webkit-animation: 1.2s 0.8s ease-in-out 1 both blockMove;
  -moz-animation: 1.2s 0.8s ease-in-out 1 both blockMove;
  animation: 1.2s 0.8s ease-in-out 1 both blockMove;
}

.active .static .image,
.active .static .layer-cover,
.active .static .gallery {
  -webkit-animation: 1.2s 0.8s ease-in-out 1 both itemsOpacity;
  -moz-animation: 1.2s 0.8s ease-in-out 1 both itemsOpacity;
  animation: 1.2s 0.8s ease-in-out 1 both itemsOpacity;
}

@-webkit-keyframes blockMove {
  0% {
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
  }
  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}

@-moz-keyframes blockMove {
  0% {
    -moz-transform: translateX(-102%);
    transform: translateX(-102%);
  }
  40% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(102%);
    transform: translateX(102%);
  }
}

@keyframes blockMove {
  0% {
    -webkit-transform: translateX(-102%);
    -moz-transform: translateX(-102%);
    transform: translateX(-102%);
  }
  40% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    -moz-transform: translateX(102%);
    transform: translateX(102%);
  }
}

@-webkit-keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.contact.writealine-is-visible .content-section__info,
.contact.writealine-is-visible .content-section__media {
  opacity: 0;
}

@media only screen and (min-width: 992px) {
  .contact.writealine-is-visible .content-section__info {
    opacity: 0;
  }
  .contact.writealine-is-visible .content-section__media,
  .contact.writealine-is-visible .gradient-layer {
    opacity: 1;
    visibility: visible;
  }
}

.content-section__info,
.content-section__media {
  position: relative;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .content-section__info,
  .content-section__media {
    height: 100%;
    padding: 24px 0;
  }
}

.image {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

@media only screen and (min-width: 992px) {
  .image {
    height: 100%;
  }
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem;
}

.section-controls {
  display: block;
  overflow: hidden;
  margin-bottom: 4.8rem;
}

@media only screen and (min-width: 992px) {
  .section-controls {
    display: block;
    overflow: hidden;
    margin-bottom: 4.8rem;
    padding: 2.4rem 6rem 0 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .section-controls {
    padding: 2.4rem 10rem 0 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .section-controls {
    padding: 2.4rem 14rem 0 14rem;
  }
}

.content-block {
  position: relative;
  width: 100%;
  margin-bottom: 4.8rem;
}

@media only screen and (min-width: 992px) {
  .content-block {   
    padding: 0 6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .content-block {
    padding: 0 10rem;
  }
}

@media only screen and (min-width: 1600px) {
  .content-block {
    padding: 0 14rem;
  }
}

.bottom-element {
  display: none;
}

@media only screen and (min-width: 992px) {
  .bottom-element {
    display: block;
    position: absolute;
    bottom: 2.4rem;
    left: 0;
    width: -webkit-calc(50% - 1.2rem);
    width: -moz-calc(50% - 1.2rem);
    width: calc(50% - 1.2rem);
    height: 4.8rem;
    z-index: 1;
  }
}

.bottom-element.light {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(-1%, rgba(255, 255, 255, 0)),
    color-stop(0%, rgba(255, 255, 255, 0)),
    to(white)
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) -1%,
    rgba(255, 255, 255, 0) 0%,
    white 100%
  );
  background: -moz-
    oldlinear-gradient(
      top,
      rgba(255, 255, 255, 0) -1%,
      rgba(255, 255, 255, 0) 0%,
      white 100%
    );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0) -1%,
    rgba(255, 255, 255, 0) 0%,
    white 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) -1%,
    rgba(255, 255, 255, 0) 0%,
    white 100%
  );
}

.bottom-element.dark {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(25, 25, 25, 0)),
    to(var(--black))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(25, 25, 25, 0) 0%,
    var(--black) 100%
  );
  background: -moz-
    oldlinear-gradient(top, rgba(25, 25, 25, 0) 0%, var(--black) 100%);
  background: -o-linear-gradient(
    top,
    rgba(25, 25, 25, 0) 0%,
    var(--black) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(25, 25, 25, 0) 0%,
    var(--black) 100%
  );
}

/* ------------------------------------------------*/
/* Content Section Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* ------------------------------------------------*/

/* Contact Data Start */
/* ------------------------------------------------*/
.contact-data {
  position: relative;
  margin-bottom: 2.4rem;
}

.contact-data::after {
  clear: both;
  content: "";
  display: table;
}

.contact-data__item {
  margin-bottom: 2.4rem;
}

@media only screen and (min-width: 768px) {
  .contact-data__item:first-of-type {
    padding-right: 1.2rem !important;
  }
  .contact-data__item:last-of-type {
    padding-left: 1.2rem !important;
  }
}

/* ------------------------------------------------*/
/* Contact Data End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
