@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@300;400;500;600;700&family=Rubik+Mono+One&display=swap');

@font-face {
  font-family: 'BebasNeue';
  src: url('fonts/Bebas Neue Cyrillic Regular.woff') format('woff');
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: #333;
  overflow-x: hidden;
}


/* Settings */
body {
  margin: auto;
  background: #f7f7f7;
  font-size: var(--font-size-body);
  color: var(--primary-color__text);
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
  line-height: 1em;
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  font-size: var(--font-size-p);
}

a {
  color: var(--link-color);
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.4em;
}

.theme--primary__bg--color {
  background: var(--primary-color__theme);
}

.theme--secondary__bg--color {
  background: var(--secondary-color__theme);
}

.primary--color {
  color: var(--primary-color__text);
}

.secondary--color {
  color: var(--secondary-color__text);
}

.primary-theme--color {
  color: var(--primary-color__theme) !important;
}

.secondary-theme--color {
  color: var(--secondary-color__theme) !important;
}


.theme--btn__primary--default a {
  color: #fff;
  background: var(--primary-color__theme);
  border: 1px solid var(--primary-color__theme);
}
.theme--btn__primary--default a:hover {
  text-decoration: none;
  color: var(--primary-color__theme);
  background: #fff;
  border-color: var(--primary-color__theme) !important;
}
.theme--btn__primary--default a:active {
  text-decoration: none;
  color: var(--primary-color__theme);
  background: #fff;
  border-color: var(--primary-color__theme) !important;
}
.theme--btn__primary--default a:hover svg path,
.theme--btn__primary--default a:active svg path {
  fill:var(--primary-color__theme) !important;
}
.theme--btn__inverse--default a {
  color: var(--primary-color__theme);
  background: #fff;
  border:1px solid var(--primary-color__theme) !important;
}
.theme--btn__inverse--default a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--primary-color__theme);
  border: 1px solid var(--primary-color__theme);
}
.theme--btn__inverse--default a:active {
  text-decoration: none;
  color: #fff;
  background: var(--primary-color__theme);
  border: 1px solid var(--primary-color__theme);
}
.theme--btn__transparent-white a {
  color: #fff;
  background: transparent;
  border:1px solid #fff !important;
}
.theme--btn__transparent-white a:hover {
  text-decoration: none;
  color: var(--primary-color__theme);
  background: #fff;
  border: 1px solid var(--primary-color__theme);
}
.theme--btn__transparent-white a:active {
  text-decoration: none;
  color: var(--primary-color__theme);
  background: #fff;
  border: 1px solid var(--primary-color__theme);
}



/* End Settings */
.narrow--container {
  max-width: 1000px;
  margin: auto;
}

@media screen and (min-width:1366px) {
  .wide--container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media screen and (min-width:1280px) {
  .section .container {
    max-width: 1280px;
    padding-left: 0em;
    padding-right: 0em;
  }
}

@media screen and (min-width:1440px) {
  .wide--container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media screen and (max-width:1439px) {
  body {
    font-size:14px;
  }
}
@media screen and (min-width: 1200px) {
  /* header .container {
    max-width: 1250px;
  } */
}
@media screen and (max-width: 1200px) {

  /* header .container {
    max-width: 1140px;
  } */
  header .container nav ul li a {
    font-size: 14px;
  }
}
/* Loader */
.swal-modal {
  border-radius: 1rem;
}

.loader__wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.loader--spin {
  border: 1.6rem solid #f3f3f3;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Button */
.global--btn a {
  border-radius: 0rem;
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4em;
  overflow: hidden;
  padding: 10px 20px;
  position: relative;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border-radius: 8px;
  font-weight: 600;
}

.global--btn.btn--has-icon {
  position: relative;
  
}

.global--btn.btn--has-icon a {
  padding-right: 50px;
}

.global--btn.btn--has-icon .btn--icon {
  position: absolute;
  right: 20px;
  top: 9px;
}

.global--btn.btn--has-icon .btn--icon svg {
  width: 20px;
    height: 20px;
}

/* Text */
.text-color--primary {
  color: var(--primary-color__text);
}

.text-color--secondary {
  color: var(--secondary-color__text);
}

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

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

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

/* Colors */
.text--white h1,
.text--white h2,
.text--white h3,
.text--white h4,
.text--white h5,
.text--white h6,
.text--white p,
.text--white a,
.text--white span,
.text--white li {
  color: #fff;
}

/* Bacground */
.bg__ {
  position: absolute;
  top:0;
  left:0;
  height: 100%;
  width: 100%;
}
.bg--white {
  background: #fff;
}
.bg__ img {
  /* width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  -moz-object-fit: cover; */
}

/* 404 page */
.not-found__wrapper {
  align-items: center;
  display: grid;
  height: 100vh;
  justify-items: center;
  width: 100vw;
}

.not-found__inner {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Miscellaneous */
.max-width-block {
  max-width: 715px;
}

.margin--auto {
  margin: auto;
}

.visible--hidden {
  visibility: hidden;
}

.visible--display {
  visibility: visible;
}

.dp--none {
  display: none;
}

.dp--block {
  display: block;
}

.overflow--hidden {
  overflow: hidden;
}

.relative__ {
  position: relative;
}

.absolute__ {
  position: absolute;
}

.img--width__full img {
  width: 100%;
}

.align--spacebetween {
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}

.split--block {
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  flex-wrap: wrap;
}

.flex--100 {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%; 
  -webkit-flex: 0 0 100%;
  max-width: 100%;
}


.flex--60 {
  flex: 0 0 60%;
  -ms-flex: 0 0 60%; 
  -webkit-flex: 0 0 60%;
  max-width: 60%;
}

.flex--40 {
  flex: 0 0 40%;
  -ms-flex: 0 0 40%; 
  -webkit-flex: 0 0 40%;
  max-width: 40%;
}

.split--block .text--block {
  padding: 0em 2em;
}

input:hover, input:active, input:focus, button:hover, button:active, button:focus {
  outline: none;
}

.nav {
  align-items: center;
}
.nav ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.nav ul li {
  list-style-type: none;
  margin-right: 25px;
}
.nav ul li a {
  color: var(--primary-color__text);
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Hamburger */
.hamburger--toggle {
  height: 25px;
  width: 25px;
  position: relative;
  cursor: pointer;
}
.hamburger--toggle .hamburger--toggle__inner {
  position: relative;
}
.hamburger--toggle .hamburger--toggle__inner .hamburger--line {
  position: absolute;
  background: var(--secondary-color__text);
  height: 3px;
  width: 100%;
  top: 0;
  border-radius: 10px;
  display: block;
}
.hamburger--toggle .hamburger--toggle__inner .hamburger--line:nth-child(2) {
  top: 7px;
}
.hamburger--toggle .hamburger--toggle__inner .hamburger--line:nth-child(3) {
  top: 14px;
}

/* Animations */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.delay--500 {
 
}

.delay--1000 {
  animation-delay:1000ms;
}

@-webkit-keyframes zoomIn__ {
  0% {
    opacity: 0;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
}


@keyframes zoomIn__ {
  0% {
    opacity: 0;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
}

.zoomIn__ {
  -webkit-animation-name: zoomIn__;
  animation-name: zoomIn__;
}


@-webkit-keyframes zoomOut__ {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  }
}

@keyframes zoomOut__ {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  }
}

.zoomOut__ {
  -webkit-animation-name: zoomOut__;
  animation-name: zoomOut__;
}


@-webkit-keyframes zoomOut__in {
  0% {
    opacity: 0;
    transform: scale(4.5);
  -ms-transform: scale(4.5);
  -webkit-transform: scale(4.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
}

@keyframes zoomOut__in {
  0% {
    opacity: 0;
    transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
}

.zoomOut__in {
  -webkit-animation-name: zoomOut__in;
  animation-name: zoomOut__in;
}


@-webkit-keyframes zoomOut__in_bottom {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(1.5);
  -ms-transform: translateY(100%) scale(1.5);
  -webkit-transform: translateY(100%) scale(1.5);
  }
  to {
    opacity: 1;
    transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  -webkit-transform: translateY(0%) scale(1);
  }
}

@keyframes zoomOut__in_bottom {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(1.5);
  -ms-transform: translateY(100%) scale(1.5);
  -webkit-transform: translateY(100%) scale(1.5);
  }
  to {
    opacity: 1;
    transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  -webkit-transform: translateY(0%) scale(1);
  }
}

.zoomOut__in_bottom {
  -webkit-animation-name: zoomOut__in_bottom;
  animation-name: zoomOut__in_bottom;
  transform-origin: bottom;
}


@-webkit-keyframes zoomOut__out {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

@keyframes zoomOut__out {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

.zoomOut__out {
  -webkit-animation-name: zoomOut__out;
  animation-name: zoomOut__out;
}

@-webkit-keyframes zoomOut__out_bottom {
  0% {
    opacity: 1;
    transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  -webkit-transform: translateY(0%) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-200%) scale(0);
  -ms-transform: translateY(-200%) scale(0);
  -webkit-transform: translateY(-200%) scale(0);
  }
}

@keyframes zoomOut__out_bottom {
  0% {
    opacity: 1;
    transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    -webkit-transform: translateY(0%) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-200%) scale(0);
    -ms-transform: translateY(-200%) scale(0);
    -webkit-transform: translateY(-200%) scale(0);
  }
}

.zoomOut__out_bottom {
  -webkit-animation-name: zoomOut__out_bottom;
  animation-name: zoomOut__out_bottom;
  transform-origin: bottom;
}


@-webkit-keyframes zoomOut__top {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2) translateY(-100%);
  -ms-transform: scale(2) translateY(-100%);
  -webkit-transform: scale(2) translateY(-100%);
  }
}

@keyframes zoomOut__top {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2) translateY(-100%);
  -ms-transform: scale(2) translateY(-100%);
  -webkit-transform: scale(2) translateY(-100%);
  }
}

.zoomOut__top {
  -webkit-animation-name: zoomOut__top;
  animation-name: zoomOut__top;
}


@-webkit-keyframes zoomOut__in_top {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0%);
  -ms-transform: scale(1) translateY(0%);
  -webkit-transform: scale(1) translateY(0%);
  }
  to {
    opacity: 0;
    transform: scale(0) translateY(-200%);
  -ms-transform: scale(0) translateY(-200%);
  -webkit-transform: scale(0) translateY(-200%);
  }
}

@keyframes zoomOut__in_top {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0%);
  -ms-transform: scale(1) translateY(0%);
  -webkit-transform: scale(1) translateY(0%);
  }
  to {
    opacity: 0;
    transform: scale(0) translateY(-200%);
  -ms-transform: scale(0) translateY(-200%);
  -webkit-transform: scale(0) translateY(-200%);
  }
}

.zoomOut__in_top {
  -webkit-animation-name: zoomOut__in_top;
  animation-name: zoomOut__in_top;
  transform-origin: top;
}


@-webkit-keyframes zoomOut__in_out-left-top {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: left top;
  }
  to {
    opacity: 0;
    transform-origin: left top;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

@keyframes zoomOut__in_out-left-top {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: left top;
  }
  to {
    opacity: 0;
    transform-origin: left top;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

.zoomOut__in_out-left-top {
  -webkit-animation-name: zoomOut__in_out-left-top;
  animation-name: zoomOut__in_out-left-top;
}


@-webkit-keyframes zoomOut__in_out-left-bottom {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: left bottom;
  }
  to {
    opacity: 0;
    transform-origin: left bottom;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

@keyframes zoomOut__in_out-left-bottom {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: left bottom;
  }
  to {
    opacity: 0;
    transform-origin: left bottom;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

.zoomOut__in_out-left-bottom {
  -webkit-animation-name: zoomOut__in_out-left-bottom;
  animation-name: zoomOut__in_out-left-bottom;
}


@-webkit-keyframes zoomOut__in_out-right-bottom {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: right bottom;
  }
  to {
    opacity: 0;
    transform-origin: right bottom;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

@keyframes zoomOut__in_out-right-bottom {
  0% {
    opacity: 1;
    transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: right bottom;
  }
  to {
    opacity: 0;
    transform-origin: right bottom;
    transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  }
}

.zoomOut__in_out-right-bottom {
  -webkit-animation-name: zoomOut__in_out-right-bottom;
  animation-name: zoomOut__in_out-right-bottom;
}


@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
    -ms-transform: translateY(25px); 
    -webkit-transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
    -ms-transform: translateY(25px); 
    -webkit-transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


@-webkit-keyframes fadeInToUp {
  0% {
    opacity: 1;
    transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-200%);
    -ms-transform: translateY(-200%); 
    -webkit-transform: translateY(-200%);
  }
}

@keyframes fadeInToUp {
  0% {
    opacity: 1;
    transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-200%);
    -ms-transform: translateY(-200%); 
    -webkit-transform: translateY(-200%);
  }
}

.fadeInToUp {
  -webkit-animation-name: fadeInToUp;
  animation-name: fadeInToUp;
}

@-webkit-keyframes fadeInToUp__small {
  0% {
    opacity: 1;
    transform: translateY(0px);
    -ms-transform: translateY(0px); 
    -webkit-transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-400px);
    -ms-transform: translateY(-400px);
    -webkit-transform: translateY(-400px);
  }
}

@keyframes fadeInToUp__small {
  0% {
    opacity: 1;
    transform: translateY(0px);
    -ms-transform: translateY(0px); 
    -webkit-transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-400px);
    -ms-transform: translateY(-400px);
    -webkit-transform: translateY(-400px);
  }
}

.fadeInToUp__small {
  -webkit-animation-name: fadeInToUp__small;
  animation-name: fadeInToUp__small;
}

@-webkit-keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}

@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}

.fadeInFromBottom__small {
  -webkit-animation-name: fadeInFromBottom__small;
  animation-name: fadeInFromBottom__small;
}


@-webkit-keyframes fadeInFromBottom__small {
  0% {
    opacity: 0;
    transform: translateY(200px);
    -ms-transform: translateY(200px);
    -webkit-transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}

@keyframes fadeInFromBottom__small {
  0% {
    opacity: 0;
    transform: translateY(200px);
    -ms-transform: translateY(200px);
    -webkit-transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}

.fadeInFromBottom__small {
  -webkit-animation-name: fadeInFromBottom__small;
  animation-name: fadeInFromBottom__small;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;

}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
#fullpage .section--block .to-animate.has--delay {
  opacity: 0;
}
.has--delay.fadeIn {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
#fullpage .section--block .to-animate.has--delay.fadeIn.active {
  opacity: 1;
}
/* .has--delay.fadeInFromBottom__small {
  opacity: 0;
  -webkit-animation-name: fadeInFromBottom__small;
  animation-name: fadeInFromBottom__small;
  transition-duration: 1s;
} */


/*
#fullpage .section--block.active .to-animate.has--delay.fadeInFromBottom__small,
#fullpage .section--block .to-animate.has--delay.fadeInFromBottom__small {
  opacity: 0 !important;
} */
/* #fullpage .section--block .to-animate.has--delay.fadeInFromBottom__small {
  -webkit-animation: unset !important;
  animation: unset !important;
}

#fullpage .section--block .to-animate.has--delay.fadeInFromBottom__small {
  -webkit-animation: fadeInFromBottom__small 1.5s ease !important;
  animation: fadeInFromBottom__small 1.5s ease !important;
  transition-duration: 1s;
  transition-delay: 10000ms;
} */


/* .has--delay.active {
  opacity: 1 !important;
} */


.bg__ {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg__ img {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-5%, -5%);
  }
}




[data-aos=fade-up-short] {
  transform: translate3d(0, 20px, 0);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

[data-aos=fade-up-short].aos-animate {
  transform: translateZ(0);
}

[data-aos=fade-down-short] {
  transform: translate3d(0, -20px, 0);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

[data-aos=fade-down-short].aos-animate {
  transform: translateZ(0);
}

.transition__ {
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
/* Flex */
/* Grid */
.dp--flex {
  display: flex;
  display: -webkit-flex;
}

.flex-wrap--wrap {
  flex-wrap: wrap;
}

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

.align--start {
  align-items: flex-start;
}

.align--end {
  align-items: flex-end;
}

.justify--space-between {
  justify-content: space-between;
}

.justify--space-around {
  justify-content: space-around;
}

.justify--center {
  justify-content: center;
}

.justify--flex-end {
  justify-content: flex-end;
}

.justify--flex-start {
  justify-content: flex-start;
}

.flex--100 {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  max-width: 100%;
}

.flex--50 {
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  max-width: 50%;
}

.flex--33 {
  flex: 0 0 33.333%;
  -ms-flex: 0 0 33.333%;
  -webkit-flex: 0 0 33.333%;
  max-width: 33.333%;
}

.flex--25 {
  flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  -webkit-flex: 0 0 25%;
  max-width: 25%;
}

/* Margins */

.mar-t-0em {
  margin-top: 0em !important;
}

.mar-t-1em {
  margin-top: 1em !important;
}

.mar-t-2em {
  margin-top: 2em !important;
}

.mar-t-3em {
  margin-top: 3em !important;
}

.mar-t-4em {
  margin-top: 4em !important;
}

.mar-t-5em {
  margin-top: 5em !important;
}

.mar-t-6em {
  margin-top: 6em !important;
}

.mar-t-8em {
  margin-top: 8em !important;
}

.mar-t-10em {
  margin-top: 10em !important;
}

.mar-t-12em {
  margin-top: 12em !important;
}

.mar-b-0em {
  margin-bottom: 0em !important;
}

.mar-b-1em {
  margin-bottom: 1em !important;
}

.mar-b-2em {
  margin-bottom: 2em !important;
}

.mar-b-3em {
  margin-bottom: 3em !important;
}

.mar-b-4em {
  margin-bottom: 4em !important;
}

.mar-b-5em {
  margin-bottom: 5em !important;
}

.mar-b-6em {
  margin-bottom: 6em !important;
}

.mar-b-8em {
  margin-bottom: 8em !important;
}

.mar-b-10em {
  margin-bottom: 10em !important;
}

.mar-b-12em {
  margin-bottom: 12em !important;
}

/* Paddings */
.pad-t-0em {
  padding-top: 0em !important;
}

.pad-t-1em {
  padding-top: 1em !important;
}

.pad-t-2em {
  padding-top: 2em !important;
}

.pad-t-3em {
  padding-top: 3em !important;
}

.pad-t-4em {
  padding-top: 4em !important;
}

.pad-t-5em {
  padding-top: 5em !important;
}

.pad-t-6em {
  padding-top: 6em !important;
}

.pad-t-8em {
  padding-top: 8em !important;
}

.pad-t-10em {
  padding-top: 10em !important;
}

.pad-t-12em {
  padding-top: 12em !important;
}

#top .pad-b-0em {
  padding-bottom: 0em !important;
}

.pad-b-1em {
  padding-bottom: 1em !important;
}

.pad-b-2em {
  padding-bottom: 2em !important;
}

.pad-b-3em {
  padding-bottom: 3em !important;
}

.pad-b-4em {
  padding-bottom: 4em !important;
}

.pad-b-5em {
  padding-bottom: 5em !important;
}

.pad-b-6em {
  padding-bottom: 6em !important;
}

.pad-b-8em {
  padding-bottom: 8em !important;
}

.pad-b-10em {
  padding-bottom: 10em !important;
}

.pad-b-12em {
  padding-bottom: 12em !important;
}

/* Add your style below */

.initial--loader {
  position: fixed;
  z-index: 11;
  background:#000000e0;
  width: 100%;
  height: 100%;
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  align-items: center;
  justify-content: center;
}

.initial--loader p {
  color:#fff;
  text-align: center;
  padding-top: 1em;
}
.initial--loader img {
	max-width:200px; 
	margin:auto;
}
body {
  overflow-x: hidden;
	overflow-y:hidden;
}

.call--now .call--now-text {
  font-weight: 700;
  margin-left: 5px;
  color:var(--primary-color__theme);
}

.telephone--icon svg path {
  fill:var(--primary-color__theme);
}

.call--now .contact--num-text {
  color:var(--secondary-color__theme);
  text-decoration: underline;
}

.call--now a:hover {
  text-decoration: none;
}



/* Header */

.main--logo a {
  display: inline-block;
  min-width: 220px;
}

.main--logo a img {
  width: 100%;
}

.header--contact-info__col {
  padding: 0px 25px;
}

.header--contact-info__col.header--cta {
  border-left: 1px solid #C7C8CA;
}

.menu--popup__text-info p {
  margin-bottom: 0px;
}


/* Menu */


ul.menu .menu-item-has-children:after {
  content:url('/wp-content/themes/Custom Theme/icons/arrow-down.svg');
  position: absolute;
  right: 0;
  top: -2px;
}
ul.menu {
  margin: 0px;
  padding: 0px;
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
}

ul.menu li {
  list-style-type: none;
  position: relative;
  
}
header#masthead {
  background:#fff;
}
header#masthead ul.menu li {
  margin: 0px 12px;
}
header#masthead {
  box-shadow: 0 12px 18px -6px #f4f4f4;
  -ms-box-shadow: 0 12px 18px -6px #f4f4f4;
  -webkit-box-shadow: 0 12px 18px -6px #f4f4f4;
  padding: 1.3em 0em;
}
header#masthead ul.menu li ul.sub-menu {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  padding-left: 0px;
}

ul.menu li ul.sub-menu li {
  margin: 0px;
}

ul.menu li.menu-item-has-children {
  padding-right: 25px;
}

ul.menu li.menu-item-has-children ul {
  display: none;
}
header#masthead ul.menu li a,
header#masthead ul.menu li a {
  color: var(--secondary-color__theme);
}
header#masthead ul.menu li a:hover,
header#masthead ul.menu li a:active {
  text-decoration: none;
  color: var(--secondary-color__theme);
}


/* Body */
.preloader--box {
  position: fixed;
  width: 100%;
  height: 100vh;
  background:#fff;
  z-index: 1;
}
.preloader--box.remove {
  opacity: 0;
  visibility: hidden;
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}
.preloader--box__inner {
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.section.section--block  {
  /* position: fixed;
  width: 100%;
  top: 0;
  left: 0; */
}
.section.section--block.sticky--section {
  /* position: fixed; */
    /* top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; */
/* position: fixed;
  width: 100%;
  top:100vh;
  left: 0;
  height: 200vh !important; */
}
/* .section.section--block.sticky--section.active {
  z-index: 10;
} */
.section.section--block.section--block-1 {
  z-index: 9 !important;
}
.section.section--block.active {
  z-index: 1;
}
.section.section--block .section--inner {
  position: relative;
  height: 100%;
  height: 100vh;
}
.section.section--block .container {
  position: relative;
  z-index: 1;
  padding: 4em 0em;
  padding-bottom: 2em;
}

.section--title h1,
.section--title h2,
.section--title h3,
.section--title h4,
.section--sub-title h1,
.section--sub-title h2,
.section--sub-title h3,
.section--sub-title h4,
.section--block__title h2,
.section--block__title h3,
.section--block__title h4 {
  font-weight: 500;
  margin: 0px;
  line-height: 1.2em;
}

.section--title h1 {
  line-height: 1.2em;
}

.text--block p:last-child {
  margin-bottom: 0px !important;
}

.text--block.large--text h2 {
  letter-spacing: -3px;
  font-weight: 600;
}

/* Animation */

.hero--background {
  overflow: hidden;
}

.hero--background img {
  -webkit-animation: kenburns 30s infinite;
          animation: kenburns 30s infinite;
}
/* .section.section--block.inactive {
  opacity: 0;
  transition:1.5s ease;
  -ms-transition:1.5s ease;
  -webkit-transition:1.5s ease;
  -moz-transition:1.5s ease;
  pointer-events: none;
}
.section.section--block.active {
  opacity: 1 !important;
  transition:1.5s ease;
  -ms-transition:1.5s ease;
  -webkit-transition:1.5s ease;
  -moz-transition:1.5s ease;
  pointer-events: all;
} */


.inactive .to-animate.zoom {
  animation:zoomOut__top 3s ease;
  opacity: 0;
}

.active .to-animate.zoom {
  animation:zoomIn__ 2s ease !important;
  opacity: 1 !important;
}

.inactive .to-animate.zoomOut__in {
  animation:zoomOut__out 2s ease;
  opacity: 0;
}
.section--block.inactive .to-animate.zoomOut__in_top {
  animation:zoomOut__in_top 3s ease !important;
}

.active .to-animate.zoomOut__in {
  animation:zoomOut__in 1.5s ease;
  opacity: 1;
}

.inactive .to-animate.zoomOut__in_bottom {
  animation:zoomOut__out_bottom 2s ease;
  opacity: 0;
}

.active .to-animate.zoomOut__in_bottom {
  animation:zoomOut__in_bottom 1.5s ease;
  opacity: 1;
}



.section--block.inactive .to-animate.fadeInFromBottom {
  animation:fadeInToUp 3s ease;
}

.section--block.inactive .to-animate.zoomOut__in_out-left-bottom {
  animation:zoomOut__in_out-left-bottom 3s ease !important;
}
.section--block.inactive .to-animate.zoomOut__in_out-left-top {
  animation:zoomOut__in_out-left-top 3s ease !important;
}

.section--block.active .to-animate.zoomOut__in_out-left-bottom {
  animation:unset!important;
}

.section--block.inactive .to-animate.zoomOut__in_out-right-bottom {
  animation:zoomOut__in_out-right-bottom 3s ease !important;
}

.section--block.active .to-animate.zoomOut__in_out-right-bottom {
  animation:unset!important;
}

.section--block.active .to-animate.fadeInFromBottom {
  animation:fadeInFromBottom 1.5s ease !important;
  opacity: 1 !important;
}




.section--block.inactive .to-animate.fadeInFromBottom__small {
  animation:fadeInToUp__small 3s ease;
}

.section--block.active .to-animate.fadeInFromBottom__small {
  animation:fadeInFromBottom__small 1.5s ease !important;
  opacity: 1 !important;
}

.section--block.inactive .to-animate.fadeInFromBottom__small-2s {
  animation:fadeInToUp__small 3s ease;
}

.section--block.active .to-animate.fadeInFromBottom__small-2s {
  animation-name:fadeInFromBottom__small;
  animation-duration: 1s;
  animation-delay: 2000ms;
}


/* Hero*/

.btn-just--scroll {
  position: absolute;
  bottom: 4em;
  cursor: pointer;
}


/* Misc */

.font--700 {
  font-weight: 700 !important;
}
.soft--shadow {
  box-shadow: 0 12px 18px 0px #f4f4f4;
  -ms-box-shadow: 0 12px 18px 0px #f4f4f4;
  -webkit-box-shadow: 0 12px 18px 0px #f4f4f4;
}

.hard--shadow {
      box-shadow: 0px 4px 13px 2px rgb(138 136 136 / 21%);
      -webkit-box-shadow: 0px 4px 13px 2px rgb(138 136 136 / 21%);
      -moz-box-shadow: 0px 4px 13px 2px rgb(138 136 136 / 21%);
}

.theme--color {
  color:var(--primary-color__theme) !important;
}

.object--cover {
  -ms-object-fit: cover;
  -webkit-object-fit: cover;
  object-fit: cover;
}
.on--center {
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  align-items: center;
  justify-content: center;
}
.on--end {
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  align-items: flex-end !important;
}
.btn--multiple .global--btn {
  margin-right: 1em;
}
.btn--multiple .global--btn:last-child {
  margin-right: 0em;
}
.from--left,
.from--right,
.fade--in-from-bottom {
  opacity: 0;
}
.zoom--in {
  transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
}
.overlay--block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #011209;
}
.circle--bg-large {
  position: absolute;
  width: 100vh;
  height: 100vh;
  top: 0;
  background: #fff;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(2.3);
  -ms-transform: scale(2.3);
  -webkit-transform: scale(2.3);
}
.content--blurb.sixth--divide {
	justify-content:center;
}
.sixth--divide .content--blurb__each {
  flex: 0 0 15%;
  -ms-flex: 0 0 15%;
  -webkit-flex: 0 0 15%;
  max-width: 15%;
}

.third--divide .content--blurb__each {
  flex: 0 0 33.333%;
  -ms-flex: 0 0 33.333%;
  -webkit-flex: 0 0 33.333%;
  max-width: 33.333%;
}

.half--divide .content--blurb__each {
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  max-width: 50%;
}
.height--full {
  height: 100%;
}

.section--block-3 .bg__,
.section--block-10 .bg__{
  background:#008037;
}

/* Header */

header#main--header {
  padding: 1em 0em;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 11;
  left: 0;
  padding-top: 6px;
}
.hamburger--menu {
  cursor: pointer;
}

.hamburger--menu:hover .burger--line-1 {
  transform: translateX(15%);
  -ms-transform: translateX(15%);
  -webkit-transform: translateX(15%);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}
.hamburger--menu:hover .burger--line-2 {
  transform: translateX(-15%);
  -ms-transform: translateX(-15%);
  -webkit-transform: translateX(-15%);
}
.hamburger--menu:hover .burger--line-3 {
  transform: translateX(15%);
  -ms-transform: translateX(15%);
  -webkit-transform: translateX(15%);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}
.hamburger--menu .hamburger--menu__inner {
  position: relative;
  height: 24px;
  width: 40px;
}
.hamburger--menu .hamburger--menu__inner .burger--line {
  position: absolute;
  width: 40px;
  height: 2px;
  background:#fff;
}

.hamburger--menu .hamburger--menu__inner .burger--line-1 {
  top: 0;
  width: 35px;
  left: 0;
}

.hamburger--menu .hamburger--menu__inner .burger--line-2 {
  right: 0;
  top: 11px;
  width: 35px;
}

.hamburger--menu .hamburger--menu__inner .burger--line-3 {
  width: 35px;
}

.hamburger--menu .hamburger--menu__inner .burger--line-3 {
  top: 22px;
}
.hamburger--menu.active .hamburger--menu__inner .burger--line {
  width: 40px !important;
}
.hamburger--menu .hamburger--menu__inner .burger--line,
.hamburger--menu.active .hamburger--menu__inner .burger--line {
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}

.hamburger--menu.active .hamburger--menu__inner .burger--line.burger--line-1 {
  transform: rotate(45deg) translate(8px, 8px);
  -ms-transform: rotate(45deg) translate(8px, 8px); 
  -webkit-transform: rotate(45deg) translate(8px, 8px);
}

.hamburger--menu.active .hamburger--menu__inner .burger--line.burger--line-2 {
  opacity: 0;
  transition:unset;
  -ms-transition:unset;
  -webkit-transition:unset;
  -moz-transition:unset;
}

.hamburger--menu.active .hamburger--menu__inner .burger--line.burger--line-3 {
  transform: rotate(-45deg) translate(8px, -7px);
  -ms-transform: rotate(-45deg) translate(8px, -7px);
  -webkit-transform: rotate(-45deg) translate(8px, -7px);
}

header .menu--popup {
  position: fixed;
    z-index: 111111;
    background: #070733;
    right: 0;
    top: 0;
    height: 100vh;
    max-width: 600px;
    transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}
header .menu--popup.active,
body.invalid--form-head header .menu--popup{
  transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}
header .menu--popup .menu--popup__inner {
    padding: 20px 4em 0;
}

header .menu--popup .menu--close {
  width: 20px;
  margin-left: auto;
  cursor: pointer;
}

header .menu--popup .menu--popup__title p {
  font-size: 22px;
  font-weight: 600;
}

header .menu--popup .menu--popup__block {
  padding-bottom: 0em;
}

header .menu--popup .contact--form__block--text {
  display: none;
}

header .menu--popup .contact--form__block.submit--block input {
  background: var(--primary-color__theme);
  border: 1px solid var(--primary-color__theme);
}

header .menu--popup .contact--form__block.submit--block {
  text-align: right;
}

header .menu--popup .menu--popup__block--wrapper {
  padding-top: 0em;
}
header.dark--icon .hamburger--menu .hamburger--menu__inner .burger--line {
  background:#00002A;
}
header .main--logo .dark__logo {
	display:none;
}
header .main--logo .light__logo {
	display:block;
}
header.dark--icon .main--logo .dark__logo {
	display:block;
}
header.dark--icon .main--logo .light__logo {
	display:none;
}
header.green--bg-section .main--logo .light__logo {
	display:block;
}
header.green--bg-section .main--logo .dark__logo {
	display:none;
}



header .main--logo {
  padding:10px;
	
}
header .main--logo img {
	max-width:280px;
}

/* Body */

/* .container {
  margin:0 auto !important;
} */
.title--block {
  padding-bottom: 5px;
}

.sub-title--block p {
    font-size: 1.3em !important;
    margin: 25px 0 0 0;
}

.block--checklist ul {
  padding-left: 0px;
}

.block--checklist.check--icon ul li {
  position: relative;
  list-style-type: none;
  padding-left: 25px;
  padding-bottom: 10px;
}

.block--checklist.check--icon ul li p:last-child {
  margin-bottom: 0px;
}

.block--checklist .main--list-item {
  margin-bottom: 0px !important;
}


.content--blurb .content--blurb__each svg,
.content--blurb .content--blurb__each img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  -o-object-fit: contain;
  -webkit-object-fit: contain;
  -moz-object-fit: contain;
  object-position: center;
}
.content--blurb .content--blurb__each img {
	 height: 30px;
  width: 30px;
}

.content--blurb .content--blurb__each svg g {
  fill:#fff !important;
}
.content--blurb .content--blurb__each a {
    padding: 20px 0px;
    display: block;
    width: 100%;
/* 	background:red; */
}
.content--blurb .content--blurb__each a:hover {
  background: rgb(255 255 255 / 10%);
  border-radius: 10px;
	
}
.content--blurb .content--blurb__each {
    /* padding: 10px 30px; */
    padding: 5px 10px;
}
.content--blurb .content--blurb__each .blurb--text {
  padding-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.content--blurb .content--blurb__each .blurb--text p {
  font-size: 14px;
  margin-bottom: 0px;
}

.content--blurb .content--blurb__each .blurb--text.bold--title p {
  font-size: 100%;
  font-weight: 700;
}

.content--blurb .content--blurb__each .blurb--description {
  padding-top: 1em;
}

.contact--container {
  padding-top: 1.5em;
  max-width: 500px;
}
.contact--form input {
  padding:10px;
  background:transparent;
  border:1px solid #fff;
  border-radius:10px;
  color:#fff;
  width: 100%;
}

 .contact--form select {
  padding: 0 10px;
  background:transparent;
  border:1px solid #fff;
  border-radius:10px;
  width: 100%;
  color: #fff;
}

.contact--form select:focus{
  color: #fff;
}

.contact--form select option{
  color: #000;
}

.contact--form .custom-select {
  border-radius: 10px 0 0 10px;
  min-height: 41px;
}

.contact--form .custom-input {
  border-radius: 0 10px 10px 0;
}

.contact--form__block.submit--block {
  padding-top: 0em;
}
.contact--form__block.submit--block input{
  padding-left: 30px;
  padding-right: 30px;
  width: auto;
  display: inline-block;
}
.contact--form input::placeholder {
  color: #fff;
}

.contact--form .contact--form__block span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact--form .wpcf7-not-valid-tip {
  background:#dc3232;
  padding: 5px;
  font-size: 13px;
  color:#fff;
}
.contact--container .wpcf7 form.invalid .wpcf7-response-output, 
.contact--container .wpcf7 form.unaccepted .wpcf7-response-output, 
.contact--container .wpcf7 form.payment-required .wpcf7-response-output {
  background: #ffb900;
}
.menu--popup .wpcf7-form .wpcf7-response-output {
	display:none;
}
.menu--popup .wpcf7-form.invalid .wpcf7-response-output {
	display:block;
}
.menu--popup__block .wpcf7 form .wpcf7-response-output {
  color:#fff;
  border-width:1px;
  background: #ffc107;
    padding: 8px 12px;
    font-size: 15px;
}
.slider--video .slick-list {
  overflow: unset;
}
.slider--video {
  width: calc(100% + 30px);
  width: -ms-calc(100% + 30px);
  width: -webkit-calc(100% + 30px);
  margin-left:-15px;
  margin-top: 4em;
}
.slider--video__block-each {
  padding: 0px 15px;
}

.slider--video__block-each .slider--video__block--inner {
  position: relative;
}

.slider--video__block--image {
  position: relative;
  padding-top: 56.25%;
}

.slider--video__block--image.video--iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.slider--video__block-each.active .slider--video__block--image.video--iframe iframe {
  opacity: 1;
  visibility: visible;
}

.slider--video__block-each.active .slider--video__block--play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.slider--video__block--play path {
  fill:#fff;
}

.slider--video__block--image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  object-position: center;
}

.slider--video__block--play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display:flex;
  display:-ms-flexbox;
  display:-webkit-flex;
  align-items: center;
  justify-content: center;
      background: #00002a57;
}

.slider--video__block--play svg {
  width: 80px;
  height: 80px;
  cursor: pointer;
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transform-origin: center;
}

.slider--video__block--play svg:hover {
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transform-origin: center;
}
.image--wrapper img {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
}
.image--wrapper img:hover {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition:0.3s ease;
  -ms-transition:0.3s ease;
  -webkit-transition:0.3s ease;
  -moz-transition:0.3s ease;
  transform-origin: center;
}

.section--block.section--block-12 .text--block p {
  font-size: 24px;
}

.section--block.section--block-12 .title--block {
  padding-bottom: 2em;
}

.section--block.section--block-12 .title--block h2 {
  font-size:50px;
}

/* For older versions of Firefox (prior to version 19) */
.contact--form input:-moz-placeholder {
  color: #fff;
}

/* For older versions of Internet Explorer (prior to version 10) */
.contact--form input::-ms-input-placeholder {
  color: #fff;
}

/* For Safari 14+ */
.contact--form input::-webkit-input-placeholder {
  color: #fff;
}

/* Modal */

.mfp-container.mfp-s-ready {
  position: fixed;
}

.modal.modal-video video {
  width: 100%;
}

.modal__.modal-video {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.modal__.modal-video video {
  width: 100%;
}

.close-modal.close {
  position: absolute;
  height: 30px;
  width: 30px;
  cursor: pointer;
  right: 0;
  z-index: 11;
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
}

.close-modal.close span {
  height: 2px;
  width: 30px;
  display: block;
  background: #fff;
  top: 13px;
  position: absolute;
  
}

.close-modal.close span.first {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.close-modal.close span.last {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media screen and (min-width: 1024px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (max-width: 1366px) {

}
@media screen and (max-width: 1024px) {

}
@media screen and (min-width:1024px) {
  .wow {
    visibility: visible !important;
  }
}
@media screen and (max-width: 1023px) {
  .section.section--block .section--inner {
    height: auto;
    padding: 6em 0em;
  }
  .from--left, 
  .from--right, 
  .fade--in-from-bottom {
    opacity: 1;
  }
  .circle--bg-large,
  .overlay--block {
    display: none;
  }
  .sixth--divide .content--blurb__each {
    flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    max-width: 20%;
  }
  .section.section--block,
  .section.section--block .fp-tableCell {
    height: auto !important;
  }
  header#main--header {
    z-index: 9999;
  }
  .section.section--block .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sixth--divide .content--blurb__each {
    flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    max-width: 25%;
}
  .section--block.section--block-5 .section--inner,
  .section--block.section--block-6 .section--inner,
  .section--block.section--block-7 .section--inner {
    padding-bottom: 0em !important;
  }

  .hamburger--menu .hamburger--menu__inner .burger--line {
    background: #d7d7d7;
  }

  .section--block.section--block-1 .col-md-7,
  .section--block.section--block .col-md-9 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .zoom--in {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }

  /* .mobile--animate {
    opacity: 0;
  } */
}

@media screen and (max-width:767px) {
  .section--block.section--block-2 .image--wrapper,
  .section--block.section--block-3 .image--wrapper,
  .section--block.section--block-4 .content--blurb,
  .section--block.section--block-5 .content--blurb,
  .section--block.section--block-6 .image--wrapper,
  .section--block.section--block-7 .image--wrapper,
  .section--block.section--block-8 .image--wrapper,
  .section--block.section--block-9 .image--wrapper,
  .section--block.section--block-10 .image--wrapper {
    padding-top: 4em !important;
  }

  .sixth--divide .content--blurb__each {
    flex: 0 0 33.333%;
    -ms-flex: 0 0 33.333%;
    -webkit-flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .third--divide .content--blurb__each {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    max-width: 50%;
  }
  .section.section--block .section--inner {
    padding: 4em 0em;
  }
  header#main--header {
    background:#070733;
  }
  header.dark--icon .hamburger--menu .hamburger--menu__inner .burger--line {
    background:#fff;
  }
  header .menu--popup .contact--form__block.submit--block {
    text-align: left;
  }
  
  .section.section--block.section--block-1 .section--inner {
    padding-top: 8em !important;
  }
  .bg__ img {
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    animation: unset !important;
	}
	body.menu--active {
		overflow-y:hidden;
	}
}

@media screen and (max-width:480px) {
    .section--block.section--block .title--block h2 {
      font-size:35px !important;
      line-height: 1.3em !important;
    }
    .section--block.section--block-12 .text--block p {
        font-size: 20px;
    }
    .text--block p {
      line-height: 1.6em;
    }
    .large--p {
      line-height: 1.3em !important;
    }
    .third--divide .content--blurb__each {
      flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      -webkit-flex: 0 0 100%;
      max-width: 100%;
    }
    .sixth--divide .content--blurb__each {
        flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        -webkit-flex: 0 0 50%;
        max-width: 50%;
    }
    .section--block.section--block .title--block h2 span {
      font-size:100% !important;
    }
    header .menu--popup .menu--popup__inner {
      padding: 4em 2em;
		overflow-y: scroll;
		height: 100vh;
    }

}

.scrolling-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* CSS animation to make the text scroll from right to left */
.scrolling-text h2 {
  animation: marquee 10s linear infinite;
}

/* Keyframes for the animation */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.menu--popup__block .screen-reader-response p {
	color: #fff;
    background: #ffc107;
    padding: 10px;
    line-height: 1.4em;
}
.menu--popup__block .wpcf7 > .screen-reader-response {
	display:none !important;
}

a.popup--block:hover {
    text-decoration:none;
}

.modal__.blurb--modal {
    position:relative;
    background: #00002a;
    padding:3em;
    text-align:center;
}
.modal__.blurb--modal .close-modal.close {
    right:1em;
}
.modal__.white--text h2,
.modal__.white--text p {
    color:#fff;
}
.modal__.blurb--modal .blurb--modal__title h2 {
    font-size:26px;
}
.modal__.blurb--modal .blurb--modal__title { 
    padding-bottom:10px;
}
.popup--block .info--description {
    display:none; 
}

body.hovered--modal .mfp-wrap,
body.hovered--modal .mfp-bg{
    pointer-events:none;
}
.modal__.form--modal {
    background: #070733;
    padding: 2em;
    padding-top: 4em; 
}
.modal__.form--modal .close-modal.close,
.modal__.modal-video-main .close-modal.close{
    right:1em !important;
}
.modal__.testimonial--modal .close-modal.close,
.modal__.modal-video-main .close-modal.close {
    right: 0.5em;
    top:2em;
}
.modal__.testimonial--modal,
.modal-video-main{
    background:#000;
        padding: 2em;
    padding-top: 4em;
}
.modal__.testimonial--modal .modal__body--inner {
    position:relative;
    padding-bottom:56.25%;
}
.modal__.testimonial--modal .modal__body--inner iframe {
    position:absolute;
    height:100%;
    width:100%;
    left:0;
    top:0;
        border: 1px solid #242424;
}
.vimeo-youtube-iframe,
.video--upload__el{
    display:none;
}
.modal-video-main.active .vimeo-youtube-iframe {
    display:block !important;
}
.vimeo-youtube-iframe {
    position:relative;
    padding-bottom:56.25%;
   
}

.vimeo-youtube-iframe iframe {
    position:absolute;
    height:100%;
    width:100%;
    top:0;
    left:0;
}

.contact--form .custom-select:focus {
  box-shadow: none;
  background: transparent;
  border-color: #fff;
}

.flash-message .alert{
  position: fixed;
  right: 0;
  bottom: 0;
  width: 33%;
  z-index: 9;
}