/* HERO */
.hero {
  --hero-nav-height: 100px;
  --elements-roundness: 5px;
  --block-background: var(--gradient-primary);
  --block-text-color: var(--primary-invert);
  background: var(--block-background);
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column
}

.hero-nav {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  z-index: 2
}

.hero-nav__item {
  margin: auto;
  font-size: 1.1rem
}

@media(min-width:992px) {
  .hero-nav__item {
    margin: 0 0.6rem
  }
}

@media(min-width:992px) {
  .nav--lg-side {
    flex-direction: row-reverse
  }
}

.hero-nav__logo {
  height: 35px
}

.hero-nav__link {
  color: inherit;
  opacity: .9
}

.hero-nav__link:focus,
.hero-nav__link:hover {
  color: inherit;
  text-decoration: none;
  opacity: 1
}

.hero__row {
  height: 100%
}

.hero_empty-column {
  height: 100%
}

@media(min-width: 992px) {
  .hero__img-container {
    transform: translateY(-63px);
  }
}

.hero__play-btn {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  background-color: #ffffff;
  border-radius: 10rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 10px rgba(255,255,255,.3);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: .5s;
}

.hero__play-btn:hover,
.hero__play-btn:focus {
  background: var(--gradient-secondary);
  color: var(--secondary-invert);
}

@media(min-width: 992px) {
  .hero__play-btn {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
}

.pulsing-animation {
  animation: shadow-pulse 1s linear infinite;
}

.pulsing-animation::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  animation: shadow-pulse 2s linear infinite;
  z-index: -1;
}

.hero__content {
  text-align: initial
}

.hero__body {
  padding-top: 2rem;
  padding-bottom: 3rem
}

@media(min-width:992px) {
  .hero__body {
    padding-top: 4rem;
    padding-bottom: 5rem
  }
}

.hero__title {
  font-size: 1.8rem;
  font-weight: 900
}

.hero__paragraph {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: .9
}

@media (min-width:576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17
  }

  .hero__paragraph {
    width: 80%
  }
}

@media (min-width:768px) {
  .hero__title {
    font-size: 3rem
  }
}

@media(min-width:992px) {
  .hero__title {
    width: 95%;
    font-size: 3rem;
    line-height: 1.17
  }

  .hero__paragraph {
    font-size: 1rem;
    width: 70%
  }
}

@media(min-width:1200px) {
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.17
  }
}

.highlight {
  color: var(--primary)
}

.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

@media (print),
(prefers-reduced-motion:reduce) {
  .ft-menu {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important
  }
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: .75rem
}

@media(min-width:992px) {
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0
  }
}

.ft-menu--js-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}

.ft-menu::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--primary);
  opacity: .9;
  z-index: -1
}

@media(min-width:992px) {
  .ft-menu {
    -webkit-animation-name: none;
    animation-name: none;
    position: static;
    z-index: auto
  }

  .ft-menu::before {
    content: none
  }
}

.ft-menu__slider {
  --block-background: white;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  background: var(--block-background);
  width: 80%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-100%);
  transition: .5s transform
}

@media(min-width:992px) {
  .ft-menu__slider {
    --block-background: transparent;
    --block-text-color: var(--primary-invert);
    width: auto;
    height: auto;
    background: 0 0;
    transform: none;
    display: flex;
    align-items: center
  }
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0)
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: .5s transform
}

@media(min-width:992px) {
  .ft-menu__close-btn {
    display: none
  }
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0)
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
  color: var(--primary-invert)
}

.pattern {
  position: absolute;
  height: 47%;
  width: 17%;
  opacity: .5
}

.pattern--primary {
  color: var(--primary)
}

.pattern--left-bottom {
  bottom: 0;
  left: 0
}

.pattern--right {
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto
}

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0
  }

  to {
    visibility: visible;
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0
  }

  to {
    visibility: visible;
    opacity: 1
  }
}

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1
  }

  to {
    visibility: hidden;
    opacity: 0
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1
  }

  to {
    visibility: hidden;
    opacity: 0
  }
}
/* ------------------------- */
/* ------------------------- */

.fixed-nav-container {
  height: var(--hero-nav-height);
}

.hero {
  /* This will change the hover color for links, and the color on mobile menu */
  --primary: var(--text-primary);
}

.hero-nav--is-sticky {
  --block-background: white;
  --block-text-color: var(--primary);
  color: var(--block-text-color);
  background: var(--block-background);
  position: fixed !important;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);

  padding: 1rem !important;
  height: 60px;

  transition: .2s height;

  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@media(min-width: 992px) {
  .hero-nav--is-sticky {
    height: 80px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}


.hero-nav--is-sticky .ft-menu {
  --block-background: white;
  --block-text-color: var(--primary);
  color: var(--block-text-color);
}

.hero-nav--is-sticky .ft-menu__slider {
  --block-text-color: var(--primary);
  color: var(--block-text-color);
}

.hero-nav--is-sticky .btn {
  background: var(--gradient-primary);
  color: var(--primary-invert);
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* New CSS for dropdown */
.ft-menu__slider .hero-nav__item {
  font-size: 1.1rem;
  padding: 0 1rem;
}

@media(min-width: 992px) {
  .ft-menu__slider .hero-nav__item {
    padding: 0;
  }
}

.hero-nav__link {
  display: flex;
  align-items: center;
  outline: none !important;
}

.ft-menu__slider {
  overflow-x: hidden;
  overflow-y: auto;
}

@media (min-width: 992px) {
  .ft-menu__slider {
    overflow: visible;
  }
}

.hero-nav__item--with-dropdown {
  position: relative;
  cursor: pointer;
}

@media(min-width: 992px) {
  .hero-nav__item--with-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 176%;
  }
}

.hero-nav__dropdown {
  position: static;
  width: 100%;
  height: auto;
  font-size: .9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: .3s all;
  color: var(--text-primary);
  text-align: initial;
}

@media(min-width: 992px) {
  .hero-nav__dropdown {
    position: absolute;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    z-index: 2;
    max-height: 0;
    padding: 2rem;
    padding-right: 3rem;
    overflow: visible;
    transition: .3s all;
  }
}

.dropdown--important {
  position: absolute;
  width: auto !important;
  top: 176%;
  left: 0;
  margin-top: 0;
  border-radius: 10px;
  border-top: none;
  box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  z-index: 2;
  max-height: 0;
  padding: 2rem;
  padding-right: 3rem;
  overflow: visible;
  transition: .3s all;
}

@media(min-width: 992px) {
  .dropdown--of-1-columns {
    width: 400px;
  }

  .dropdown--of-2-columns {
    width: 700px;
  }

  .dropdown--language-selector {
    width: 250px;
  }
}


.hero-nav__item--show-dropdown .hero-nav__dropdown {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 9999px;
  padding-top: 1rem;
}

@media(min-width: 992px) {
  .hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 0;
    padding: 2rem;
    padding-right: 3rem;
  }
}

.hero-nav__item-chevron {
  transition: .3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
  transform: rotate(180deg);
}

/* Dropdown Direction */

.hero-nav__item--dropdown-left .hero-nav__dropdown {
  transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
  left: 15%;
  right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
  transform: translateX(15px) !important;
  left: auto;
  right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
  left: auto;
  right: 15%;
}

@media(min-width: 992px) {
  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
    left: 0;
    right: auto;
  }

  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
  }
}

/* For RTL */

[dir="rtl"] .hero-nav__item--dropdown-right .hero-nav__dropdown {
  transform: translateX(-15px) !important;
}

[dir="rtl"] .hero-nav__item--dropdown-right .hero-nav__dropdown::before {
  left: 15%;
  right: auto;
}

[dir="rtl"] .hero-nav__item--dropdown-left .hero-nav__dropdown {
  transform: translateX(15px) !important;
  left: auto;
  right: 0;
}

[dir="rtl"] .hero-nav__item--dropdown-left .hero-nav__dropdown::before {
  left: auto;
  right: 15%;
}

@media(min-width: 992px) {
  [dir="rtl"] .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
    transform: translateX(-15px) !important;
    left: 0;
    right: auto;
  }

  [dir="rtl"] .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
  }

  [dir="rtl"] .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
  }

  [dir="rtl"] .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
  }
}

/* Dropdown Important: will force the same design and behavior in all devices (mobile, tablets, etc) */

.dropdown--important::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.85px 8.1px 6.85px;
  border-color: transparent transparent white transparent;
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto;
}

@media(min-width: 992px) {
  .hero-nav__dropdown::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent white transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.dropdown__title {
  color: var(--text-primary);
  opacity: .7;
  font-weight: 600;
  font-size: .9rem;
  display: block;
  margin-top: .5rem;
  margin-bottom: 1.18rem;
}

.dropdown__link {
  display: flex;
  align-items: flex-start;
  opacity: .85;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.dropdown__link:hover,
.dropdown__link:focus {
  color: inherit;
  text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
  border-radius: .5rem;
  padding: .7rem;
  margin-bottom: 3px;
}

.dropdown__link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dropdown__link:last-child {
  margin: 0;
}

.dropdown__link--selected,
.dropdown__link:hover,
.dropdown__link:focus {
  opacity: 1;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:hover,
[javascript-language-selector] .dropdown__link:focus {
  opacity: 1;
  background: rgba(0, 0, 0, .06); 
}

.dropdown__icon {
  width: 34px;
  height: 34px;
  background-image: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 13px;
}

.dropdown__item {
  max-width: 250px;
}

.dropdown__item-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: -1;
}

.dropdown__item-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  width: 100%;
  background: var(--secondary);
  transform: translateY(2px);
  opacity: 0;
  transition: .2s;
}

[javascript-language-selector] .dropdown__item-title::before {
  display: none;
}

.dropdown__link:hover .dropdown__item-title::before,
.dropdown__link:focus .dropdown__item-title::before {
  height: 30%;
  transform: translateY(0);
  opacity: .4;
}

.dropdown__item-description {
  font-size: 13px;
  opacity: .8;
}

.dropdown__item-title, .dropdown__item-description {
  width: 95%;
}

/* SERVICES */
.block-12 {
  --elements-roundness: 10rem;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block-12__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .block-12__title {
    font-size: 3.12rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.card-1 {
  height: 100%;
  padding: 2rem 1rem;
  border-radius: 5px;
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
  background: white;
  transition: 0.1s all;
}

.card-1__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 4.25rem;
  width: 4.25rem;
  background: var(--gradient-primary);
  color: var(--primary-invert);
  border-radius: var(--elements-roundness);
}

.card-1__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
}

.card-1__paragraph {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* UTILITIES */
.mb-2-1rem {
  margin-bottom: 2.1rem;
}

/* PARTNERS */
.block-24 {
  --block-background: var(--gradient-primary);
  --block-text-color: var(--primary-invert);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.logos__img {
  max-width: 45%;
  max-height: 150px;
  padding: 1rem 1rem;
  filter: brightness(0) invert(1);;
  transition: 0.2s all;
}

@media (min-width: 768px) {
  .logos__img {
    max-width: 30%;
  }
}

@media (min-width: 992px) {
  .logos__img {
    max-width: 150px;
    padding: 0;
    margin: auto;
  }
}

/*.logos__img:focus,
.logos__img:hover {
  filter: grayscale(0);
  opacity: 1;
}*/

/* CONTACT */
.block-28 {
  --elements-roundness: 5px;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background-color: var(--block-background);
  color: var(--block-text-color);
  background-image: linear-gradient(to bottom, #f8f8f8 50%, transparent 0)
}

@media(min-width:992px) {
  .block-28 {
    background-image: linear-gradient(to right, #f8f8f8 50%, transparent 0)
  }

  [dir="rtl"] .block-28 {
    background-image: linear-gradient(to left, #f8f8f8 50%, transparent 0)
  }

  .block-28__form-side {
    padding-top: 4rem;
    padding-bottom: 5rem
  }
}

@media(max-width:768px) {

  .block-28__form-side {
    padding-top: 2rem;
    padding-bottom: 6rem
  }
}

.block-28__content-side{
  padding-top: 6rem;
  padding-bottom: 5rem
}


.contact-form,
.contact-info {
  width: 90%;
  margin: auto
}

.contact-info {
  font-size: .9rem
}

.contact-form__title,
.contact-info__title {
  font-size: 2rem;
  font-weight: 600
}

.contact-info__paragraph {
  line-height: 1.7;
  opacity: .9
}

.contact-info__title-2 {
  font-weight: 600
}

.contact-info__title-2 .contact-info__item {
  opacity: .9
}

.contact-form__paragraph {
  font-size: 1rem;
  opacity: .9;
  line-height: 1.7;
  width: 90%
}

.contact-form__input {
  color: var(--text-primary);
  font-size: .87rem;
  padding: .87rem 1.4rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: rgba(0, 0, 0, .01);
  width: 100%;
  margin-bottom: .87rem
}

textarea.contact-form__input {
  height: 130px;
  resize: none
}

.contact-form__input:focus {
  border: 1px solid var(--primary);
  outline: 0;
  box-shadow: none
}

.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.btn--loading::after,
.btn--loading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0)
  }

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

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: spin .5s linear infinite;
  animation: spin .5s linear infinite;
  z-index: 2
}

.h-100 {
  height: 100% !important
}

/* CTA */
.block-32 {
  --block-background: var(--gradient-primary);
  --block-text-color: var(--primary-invert);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .block__title {
    font-size: 3rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Section 2 ------------------------ */

.block-12 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.block__header {
  margin-bottom: 4rem
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4
}

@media(min-width:992px) {
  .block__title {
    font-size: 2.5rem
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9
}

.card-1 {
  height: 100%;
  padding: 2rem 1rem;
  border-radius: 5px;
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
  transition: .1s all
}

.card-1:focus,
.card-1:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary)
}

.card-1__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 3.25rem;
  width: 3.25rem;
  border: 1px solid var(--primary);
  border-radius: var(--elements-roundness);
  background: #fff;
  color: var(--primary)
}

@media(min-width:992px) {
  .card-1__symbol {
    height: 4.25rem;
    width: 4.25rem
  }
}

.card-1__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5
}

.card-1__paragraph {
  font-size: .9rem;
  line-height: 1.5;
  opacity: .8
}

.mb-2-1rem {
  margin-bottom: 2.1rem
}

/* Cards & Numbers ----------------------------- */

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.animate__animated {
  --animate-duration: 1s;
  --animate-delay: 0.1s;
  --animate-repeat: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.block-5 {
  --block-background: var(--primary);
  --block-text-color: var(--primary-invert);
  background: var(--block-background);
  color: var(--block-text-color)
}

.card-2 {
  margin-bottom: 2.1rem
}

.card-2:last-child {
  margin-bottom: 0
}

.card-2__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 3.25rem;
  width: 3.25rem;
  border: 1px solid var(--primary);
  border-radius: var(--elements-roundness);
  background: #fff;
  color: var(--primary)
}

@media(min-width:992px) {
  .card-2__symbol {
    height: 3.8rem;
    width: 3.8rem
  }
}

.card-2__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.46
}

.card-2__paragraph {
  font-size: .9rem;
  line-height: 1.5;
  opacity: .8;
  margin: 0
}

.block-5__sindibad-card {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 45%;
  transition: .5s all;
}

.block-5__tab-btn {
  color: white;
  background: transparent;
  transition: .2s;
}

.block-5__tab-btn:hover {
  color: white;
}

.block-5__tab-btn--selected {
  background: rgba(0, 0, 0, .3);
}

/* Stats & Numbers ----------------------------- */

.block-36 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.block__header {
  margin-bottom: 4rem
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4
}

@media(min-width:992px) {
  .block__title {
    font-size: 2.5rem
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9
}

.stats__li {
  width: 70%;
  margin: auto;
  border-bottom: 1px solid var(--primary);
  padding: 1.5rem 0 !important;
  position: relative
}

.stats__li:last-child {
  border-bottom: none
}

@media(min-width:576px) {
  .stats__li {
    width: 100%;
    border-right: 1px solid var(--primary);
    padding: 1.5rem 0 !important
  }

  .stats__li:nth-child(3),
  .stats__li:nth-child(4) {
    border-bottom: none
  }

  .stats__li:nth-child(even) {
    border-right: none
  }
}

@media(min-width:992px) {
  .stats__li {
    border-bottom: none;
    border-right: none !important;
  }

  .stats__li::after {
    content: '';
    display: inline-block;
    height: 51%;
    border-right: 1px solid #eee;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  [dir="ltr"] .stats__li:last-child::after {
    display: none;
  }

  [dir="rtl"] .stats__li:first-child::after {
    display: none;
  }
}

.stats__number {
  color: var(--primary);
  font-size: 4.3rem;
  font-weight: 600
}

.stats__text {
  font-size: .87rem;
  opacity: .9
}

.block-36__video-container {
  margin-top: 5rem
}

.block-36 .video-js {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  overflow: hidden
}

@media(min-width:992px) {
  .block-36 .video-js {
    height: 400px
  }
}

.block-36 .vjs-poster {
  background-size: cover
}

.block-36 .vjs-big-play-button {
  font-size: 3rem !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  padding: 0 !important;
  border: none !important;
  color: var(--text-primary) !important;
  background: 0 0 !important;
  z-index: 1 !important
}

.block-36 .vjs-big-play-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  opacity: .5;
  z-index: -1
}

.block-36 .vjs-icon-placeholder:before {
  position: static !important
}

.block-36 .vjs-big-play-button .vjs-icon-placeholder {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 91px;
  height: 91px;
  margin: auto;
  border-radius: 10rem;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .5);
  padding: 10px
}

/* Our Products ------------------------------------------ */

.block-8 {
  --block-background: var(--gradient-secondary);
  --block-text-color: var(--secondary-invert);
  background: var(--block-background);
  color: var(--block-text-color);
  text-align: initial;
}

.block__header {
  margin-bottom: 4rem
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4
}

.block__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  opacity: .9
}

.block-8__img {
  height: 448px;
  width: auto;
  filter: drop-shadow(0px 0px 22px rgba(0,0,0,0.2));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1
}

.Ellipse-138, .Ellipse-139 {
  opacity: 0.29;
  background-color: #aa8436;
  border-radius: 100rem;
}

.Ellipse-138 {
  width: 623px;
  height: 623px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Ellipse-139 {
  width: 408px;
  height: 408px;
  box-shadow: 0 0 60px 0 black;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.block-8--img-in-left .block-8__img,
.block-8--img-in-right .block-8__img {
  position: static;
  transform: none;
}

@media(min-width: 992px) {
  .block-8--img-in-right .block-8__img {
    transform: translateX(39%)
  }

  .block-8--img-in-left .block-8__img {
    transform: translateX(-39%)
  }
}

.block-8--img-in-right .Ellipse-138 {
  right: auto;
  left: 0;
}

.block-8--img-in-left .Ellipse-138 {
  left: auto;
  right: 0;
}

/* For RTL mode */

@media(min-width: 992px) {
  [dir="rtl"] .block-8--img-in-right .block-8__img {
    transform: translateX(-39%)
  }

  [dir="rtl"] .block-8--img-in-left .block-8__img {
    transform: translateX(39%)
  }
}

[dir="rtl"] .block-8--img-in-right .Ellipse-138 {
  left: auto;
  right: 0;
}

[dir="rtl"] .block-8--img-in-left .Ellipse-138 {
  right: auto;
  left: 0;
}

/* Get In Touch ------------------------------ */

.block-28 {
  --elements-roundness: 5px;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background-color: var(--block-background);
  color: var(--block-text-color);
  text-align: initial;
  background-image: linear-gradient(to bottom, #f8f8f8 50%, transparent 0)
}

@media(min-width:992px) {
  .block-28 {
    background-image: linear-gradient(to right, #f8f8f8 50%, transparent 0)
  }
}

.block-28__content-side,
.block-28__form-side {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.contact-form,
.contact-info {
  width: 90%;
  margin: auto
}

.contact-info {
  font-size: .9rem
}

.contact-form__title,
.contact-info__title {
  font-size: 2rem;
  font-weight: 600
}

.contact-info__paragraph {
  line-height: 1.7;
  opacity: .9
}

.contact-info__title-2 {
  font-weight: 600
}

.contact-info__title-2 .contact-info__item {
  opacity: .9
}

.contact-form__paragraph {
  font-size: 1rem;
  opacity: .9;
  line-height: 1.7;
  width: 90%
}

.contact-form__input {
  color: var(--text-primary);
  font-size: .87rem;
  padding: .87rem 1.4rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: rgba(0, 0, 0, .01);
  width: 100%;
  margin-bottom: .87rem
}

textarea.contact-form__input {
  height: 130px;
  resize: none
}

.contact-form__input:focus {
  border: 1px solid var(--primary);
  outline: 0;
  box-shadow: none
}

.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.btn--loading::after,
.btn--loading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0)
  }

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

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: spin .5s linear infinite;
  animation: spin .5s linear infinite;
  z-index: 2
}

.h-100 {
  height: 100% !important
}

/* Footer ---------------------------- */

.block-44 {
  --block-background: var(--gradient-primary);
  --block-text-color: var(--primary-invert);
  --text-primary: var(--block-text-color);
  background: var(--block-background);
  color: var(--block-text-color);
  font-size: .87rem;
  text-align: center
}

@media(min-width:992px) {
  .block-44 {
    text-align: initial
  }
}

.block-44__logo-container {
  width: 100%;
  margin-bottom: 2.5rem
}

@media(min-width:992px) {
  .block-44__logo-container {
    width: auto;
    flex-grow: 1;
    margin-bottom: 0
  }
}

.block-44__logo {
  height: 36px
}

.block-44__list {
  display: flex;
  flex-wrap: wrap
}

.block-44__li-1 {
  font-weight: 600;
  margin: 0 1.2rem;
  margin-bottom: .6rem
}

@media(min-width:992px) {
  .block-44__li-1 {
    margin: 0 1.8rem
  }

  .block-44__li-1:last-child {
    margin: 0
  }
}

.block-44__link {
  color: var(--text-primary);
  opacity: .8
}

.block-44__link:focus,
.block-44__link:hover {
  color: var(--primary)
}

.block-44__divider {
  margin: 2.4rem 0
}

.block-44__extra-links {
  justify-content: center
}

@media(min-width:768px) {
  .block-44__extra-links {
    justify-content: flex-start
  }
}

.block-44__copyrights {
  color: var(--text-primary);
  font-size: .87rem;
  line-height: 1.7;
  opacity: .8
}