@charset "UTF-8";
/*** LTR websites ***/
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: m_font;
  src: url(../fonts/harper.otf);
}
.careers-page {
  overflow: auto !important;
}

html,
body {
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 500 !important;
}
@media (max-width: 1200px) {
  html,
body {
    overflow-x: hidden;
  }
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: #101011 !important;
}
body.ov-hid {
  overflow: hidden;
}
@media (max-width: 1200px) {
  body {
    overflow-x: hidden;
  }
}

/* Reset */
@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
html,
body,
iframe,
header,
footer,
main,
aside,
nav,
section,
article,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
hr,
blockquote,
pre,
figure,
figcaption,
a,
address,
del,
em,
i,
img,
strong,
sub,
sup,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
form,
fieldset,
legend,
label,
input,
select,
textarea,
button {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  font-size: 100%;
  font: inherit;
}

html,
body,
iframe,
header,
footer,
main,
aside,
nav,
section,
article,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
ol,
li,
hr,
blockqoute,
pre,
figure,
figcaption,
form,
fieldset,
legend,
label,
input,
select,
textarea,
button {
  display: block;
}

html,
body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

dl,
dt,
dd,
ul,
ol,
li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}

/* helpers */
* {
  box-sizing: border-box;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
}

.row-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .row-flex {
    flex-direction: column;
  }
}

.col-flex {
  display: flex;
  flex-direction: column;
}

.overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.section-title {
  text-align: center;
}
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  position: relative;
  font-size: 8vw;
  line-height: 1;
  font-family: b_font !important;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
    font-size: 14vw;
  }
}
.section-title h1::before,
.section-title h2::before,
.section-title h3::before,
.section-title h4::before,
.section-title h5::before,
.section-title h6::before {
  content: "";
  display: none;
  position: relative;
  top: -10px;
  width: 44px;
  height: 56px;
  margin-right: 5px;
  background-image: url(../images/title-element.png);
}

[data-color="#000"] {
  color: #fff;
}

[data-color="#fff"] {
  color: #101011;
}

.w-100 {
  width: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: m_font !important;
}

.btn {
  background-color: #FFD100;
  padding: 8px 13px;
  border-radius: 70px;
  display: flex !important;
  align-items: center;
}
.btn a {
  color: #101011 !important;
}
@media (max-width: 767px) {
  .btn a {
    font-size: 21px;
    font-weight: 700;
  }
}
.btn .arrow {
  margin-left: 6px;
  background-color: #101011;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 38px;
  height: 30px;
  transition: 0.3s all ease-in-out;
}
.btn .arrow .icon {
  transition: 0.3s all ease-in-out;
}
.btn:hover .arrow {
  margin-left: 10px;
}
.btn:hover .arrow .icon {
  transform: rotate(45deg);
}
.btn.btn-secondry {
  background-color: #fff;
}

.c-section {
  pointer-events: none;
  position: relative;
  z-index: 1;
  margin-bottom: 300px;
}
@media (max-width: 1600px) {
  .c-section {
    margin-bottom: 200px;
  }
}
@media (max-width: 999px) {
  .c-section {
    margin-bottom: 120px;
  }
}
.c-section .o-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 95rem;
}
@media (min-width: 700px) {
  .c-section .o-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.c-section .o-container .c-direction-block_wrapper {
  margin-bottom: 180px;
}
@media (max-width: 1600px) {
  .c-section .o-container .c-direction-block_wrapper {
    margin-bottom: 100px;
  }
}
.c-section .o-container .c-direction-block {
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}
.c-section .o-container .c-direction-block .c-direction-block_item {
  font-size: 62px;
  font-weight: 600;
  position: absolute;
  white-space: nowrap;
  line-height: 80px;
  font-family: m_font;
}
@media (max-width: 999px) {
  .c-section .o-container .c-direction-block .c-direction-block_item {
    font-size: 32px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .c-section .o-container .c-direction-block .c-direction-block_item {
    font-size: 22px;
    line-height: 40px;
  }
}
.c-section .o-container .c-direction-block .c-direction-block_item span {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
  border: 1px solid #000;
}
.c-section .o-container .c-direction-block .c-direction-block_item span .bol {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #101011;
  border-radius: 50%;
  margin: 0 10px;
}
@media (max-width: 999px) {
  .c-section .o-container .c-direction-block .c-direction-block_item span .bol {
    width: 10px;
    height: 10px;
  }
}
.c-section .o-container .c-direction-block .c-direction-block_item.-one {
  top: 33%;
  transform: translateX(-37%) rotate(3deg);
}
@media (max-width: 1600px) {
  .c-section .o-container .c-direction-block .c-direction-block_item.-one {
    transform: translateX(-47%) rotate(3deg);
  }
}
.c-section .o-container .c-direction-block .c-direction-block_item.-two {
  transform: translateX(-20%) rotate(-3deg);
  top: 45%;
}
.c-section .o-container .c-direction-block .c-direction-block_item.-two span {
  background-color: #FFD100;
}
@media (max-width: 1024px) {
  .c-section .o-container .c-direction-block .c-direction-block_item.-two {
    transform: translateX(-35%) rotate(-6deg);
  }
}
@media (max-width: 999px) {
  .c-section .o-container .c-direction-block .c-direction-block_item.-two {
    transform: translateX(-25%) rotate(-4deg);
  }
}

.c-header_title_line {
  display: block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html.has-scroll-init .c-header_title_line {
  opacity: 1;
  transform: none;
  transition-duration: 0.8s;
}

@media (max-width: 1200px) {
  .hover_box {
    display: none;
  }
}
.show-mobile {
  display: none !important;
}
@media (max-width: 1200px) {
  .show-mobile {
    display: block !important;
  }
}

/* Reset */
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes hero {
  0% {
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@keyframes hero {
  0% {
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@-webkit-keyframes upDOwn {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes upDOwn {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes elements {
  0% {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes elements {
  0% {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-webkit-keyframes elements-reverse {
  0% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  100% {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}
@keyframes elements-reverse {
  0% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  100% {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}
/* Common */
.page-header {
  background-color: #101011;
}
.page-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 0;
}
.page-header .header-container .logo {
  width: 10%;
}
@media (max-width: 1023px) {
  .page-header .header-container .logo {
    display: flex;
    align-items: center;
    width: 40%;
  }
}
.page-header .header-container .logo .mobile-switcher {
  display: none;
}
@media (max-width: 1023px) {
  .page-header .header-container .logo .mobile-switcher {
    display: inline-flex;
    flex-direction: column;
    margin-right: 10px;
  }
  .page-header .header-container .logo .mobile-switcher span {
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 20px;
    background-color: #FFD100;
    margin: 3px 0;
    transition: 0.2s all ease-in-out;
  }
  .page-header .header-container .logo .mobile-switcher span:last-child {
    width: 70%;
  }
  .page-header .header-container .logo .mobile-switcher:hover span:last-child {
    width: 100%;
  }
}
.page-header .header-container .logo h1 {
  font-size: 0;
}
.page-header .header-container .logo h1 img {
  max-width: 180px;
}
@media (max-width: 1023px) {
  .page-header .header-container .logo h1 img {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .page-header .header-container .logo h1 img {
    width: 90px;
  }
}
.page-header .header-container .navigation ul {
  display: flex;
  align-items: center;
}
.page-header .header-container .navigation ul li {
  display: inline-block;
  margin: 0 12px;
}
@media (max-width: 1200px) {
  .page-header .header-container .navigation ul li {
    margin: 0 8px;
  }
}
@media (max-width: 1023px) {
  .page-header .header-container .navigation ul li {
    display: none;
  }
}
.page-header .header-container .navigation ul li a {
  font-size: 18px;
  color: #e6e6e6;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .page-header .header-container .navigation ul li a {
    font-size: 16px;
  }
}
.page-header .header-container .navigation ul li.menu-btn {
  margin-right: 0;
}
@media (max-width: 1200px) {
  .page-header .header-container .navigation ul li.menu-btn {
    padding: 5px 7px;
  }
}
@media (max-width: 1023px) {
  .page-header .header-container .navigation ul li.menu-btn {
    display: inline-block;
    padding: 8px 18px;
  }
  .page-header .header-container .navigation ul li.menu-btn .btn .arrow {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .page-header .header-container .navigation ul li.menu-btn {
    padding: 5px 8px;
  }
}
.page-header .header-container .navigation ul li.menu-btn a {
  text-transform: capitalize;
}
@media (max-width: 1200px) {
  .page-header .header-container .navigation ul li.menu-btn a {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .page-header .header-container .navigation ul li.menu-btn a {
    font-size: 22px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .page-header .header-container .navigation ul li.menu-btn a {
    font-size: 14px;
  }
}
.page-header .mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  transition: opacity 0.2s ease;
  transition: all 0.4s ease;
}
.page-header .mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-header .mobile-menu .close-menu {
    top: 20px;
    right: 20px;
  }
}
.page-header .mobile-menu .close-menu i {
  font-size: 38px;
  color: #fff;
}
.page-header .mobile-menu .menu {
  position: relative;
  height: 100%;
  transform: translateX(-50px);
  width: 50%;
  background-color: #101011;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 20% 50px 50px;
  transition: opacity 0.8s ease;
  transition: all 0.8s ease;
}
@media (max-width: 767px) {
  .page-header .mobile-menu .menu {
    width: 100%;
  }
}
.page-header .mobile-menu .menu .menu-links li {
  line-height: 52px;
}
.page-header .mobile-menu .menu .menu-links li a {
  font-size: 36px;
}
.page-header .mobile-menu .menu .menu-links li.btn {
  line-height: 38px;
  margin-top: 10px;
  justify-content: space-between;
}
.page-header .mobile-menu .menu .menu-links li.btn a {
  font-size: 24px;
  font-weight: 700;
}
.page-header .mobile-menu .menu .social-media {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-header .mobile-menu .menu .social-media {
    margin-top: 40px;
  }
}
.page-header .mobile-menu .menu .social-media li {
  margin-right: 15px;
}
.page-header .mobile-menu .menu .social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: 0.2s all ease-in-out;
}
.page-header .mobile-menu .menu .social-media li a img {
  filter: invert(90%) sepia(6%) saturate(20%) hue-rotate(314deg) brightness(90%) contrast(87%);
  transition: 0.2s all ease-in-out;
}
.page-header .mobile-menu .menu .social-media li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.page-header .mobile-menu .menu .social-media li a:hover img {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(200deg) brightness(103%) contrast(101%);
}
.page-header .mobile-menu .menu .float-image {
  pointer-events: none;
  position: absolute;
  bottom: 2%;
  left: 2%;
  width: 70%;
  opacity: 0.03;
}
.page-header .mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.page-header .mobile-menu.active .menu {
  opacity: 1;
  transform: translateX(0px);
}

.lets-talk {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 767px) {
  .lets-talk {
    padding: 50px 0;
  }
}
.lets-talk .msg .tagline {
  display: table;
  background-color: #ffd100;
  color: #2a2c2e;
  font-size: 21px;
  margin: 0 auto 22px;
  padding: 0 5px;
}
@media (max-width: 767px) {
  .lets-talk .msg .tagline {
    font-size: 16px;
  }
}
.lets-talk .msg h6 {
  font-size: 92px;
  width: 60%;
  margin: 0 auto 40px;
  line-height: 100px;
}
.lets-talk .msg h6 .whitespace {
  display: inline-block;
  width: 20px;
}
@media (max-width: 767px) {
  .lets-talk .msg h6 .whitespace {
    width: 10px;
  }
}
@media (max-width: 1440px) {
  .lets-talk .msg h6 {
    width: 80%;
  }
}
@media (max-width: 1023px) {
  .lets-talk .msg h6 {
    width: 100%;
    font-size: 82px;
    line-height: 90px;
  }
}
@media (max-width: 767px) {
  .lets-talk .msg h6 {
    font-size: 42px;
    line-height: 52px;
    margin: 0 auto 20px;
  }
}
.lets-talk .msg .btn {
  width: max-content;
  margin: 0 auto;
  padding: 14px 22px;
}
@media (max-width: 767px) {
  .lets-talk .msg .btn {
    padding: 12px 18px;
  }
}
.lets-talk .msg .btn a {
  font-size: 40px;
  line-height: 0;
  margin: 0;
  margin: auto;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lets-talk .msg .btn a {
    font-size: 30px;
  }
}

.page-footer .footer-con {
  padding: 70px 0;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .page-footer .footer-con {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .page-footer .footer-con {
    padding: 40px 0 20px;
  }
}
.page-footer .footer-con .col.left {
  width: max-content;
}
.page-footer .footer-con .col.left .logo a {
  display: block;
}
.page-footer .footer-con .col.left .logo img {
  width: 175px;
  max-width: 175px;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.left .logo img {
    width: 120px;
  }
}
.page-footer .footer-con .col.right {
  width: 100%;
  padding-left: 50px;
}
@media (max-width: 1200px) {
  .page-footer .footer-con .col.right {
    padding: 0;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right {
    margin-top: 10px;
  }
}
.page-footer .footer-con .col.right .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(107, 107, 107, 0.5);
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .top {
    flex-direction: column;
    border: none;
    padding-bottom: 0px;
  }
}
@media (max-width: 1200px) {
  .page-footer .footer-con .col.right .top .row-flex {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .top .row-flex {
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }
}
.page-footer .footer-con .col.right .top .row-flex a {
  display: block;
  font-size: 18px;
  margin-right: 50px;
}
.page-footer .footer-con .col.right .top .row-flex a span {
  font-size: 14px;
  color: #6c6c6c;
}
@media (max-width: 1023px) {
  .page-footer .footer-con .col.right .top .row-flex a {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .top .row-flex a {
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
}
.page-footer .footer-con .col.right .top .social-media {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .top .social-media {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}
.page-footer .footer-con .col.right .top .social-media li {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .top .social-media li {
    margin-left: 0;
    margin: 0 10px;
  }
}
.page-footer .footer-con .col.right .top .social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: 0.2s all ease-in-out;
}
.page-footer .footer-con .col.right .top .social-media li a img {
  filter: invert(90%) sepia(6%) saturate(20%) hue-rotate(314deg) brightness(90%) contrast(87%);
  transition: 0.2s all ease-in-out;
}
.page-footer .footer-con .col.right .top .social-media li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.page-footer .footer-con .col.right .top .social-media li a:hover img {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(200deg) brightness(103%) contrast(101%);
}
.page-footer .footer-con .col.right .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .bottom {
    flex-direction: column;
  }
}
.page-footer .footer-con .col.right .bottom .rights p {
  color: #6c6c6c;
  font-size: 14px;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .bottom .rights {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(107, 107, 107, 0.5);
    padding-top: 20px;
  }
}
.page-footer .footer-con .col.right .bottom .links {
  display: flex;
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .bottom .links {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.page-footer .footer-con .col.right .bottom .links li {
  display: inline-block;
  margin-right: 22px;
}
@media (max-width: 1024px) {
  .page-footer .footer-con .col.right .bottom .links li {
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .bottom .links li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-footer .footer-con .col.right .bottom .links li:last-child {
    margin-bottom: 0;
  }
}
.page-footer .footer-con .col.right .bottom .links li a {
  color: #6c6c6c;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .page-footer .footer-con .col.right .bottom .links li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .page-footer .footer-con .col.right .bottom .links li a {
    font-size: 21px;
    font-weight: 400;
  }
}

/* Pages */
.hero {
  padding: 130px 0 0;
}
@media (max-width: 1200px) {
  .hero {
    padding: 50px 0 0;
  }
}
.hero .row-flex {
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .hero .row-flex {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.hero .content {
  width: 670px;
}
@media (max-width: 1200px) {
  .hero .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero .content {
    width: 100%;
  }
}
.hero .content h2 {
  color: #fff;
  font-size: 62px;
  line-height: 80.6px;
}
@media (max-width: 1300px) {
  .hero .content h2 {
    font-size: 52px;
    line-height: 70.6px;
  }
}
@media (max-width: 767px) {
  .hero .content h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
.hero .content h2 span.colored {
  color: #FFD100;
}
.hero .content p {
  color: #cecece;
  font-size: 21px;
  line-height: 27px;
  margin: 24px 0;
  max-width: 90%;
}
@media (max-width: 1300px) {
  .hero .content p {
    margin: 10px 0 25px;
  }
}
@media (max-width: 1200px) {
  .hero .content p {
    max-width: 60%;
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .hero .content p {
    margin: 10px auto;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}
.hero .content .btn {
  padding: 8px 20px;
  max-width: max-content;
}
@media (max-width: 1200px) {
  .hero .content .btn {
    margin: 30px auto;
  }
}
@media (max-width: 767px) {
  .hero .content .btn {
    margin: 20px auto 40px;
  }
}
.hero .content .btn a {
  font-size: 30px;
  font-weight: 700;
}
.hero .image {
  background-image: url(../images/yellow-shadow.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  animation: hero 2s infinite;
  animation-direction: alternate-reverse;
}

.internal-hero {
  position: relative;
  height: 90vh;
}
@media (max-width: 1200px) {
  .internal-hero {
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .internal-hero {
    height: auto;
    padding: 90px 0;
  }
}
.internal-hero .container {
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  top: 15%;
}
@media (max-width: 999px) {
  .internal-hero .container {
    top: 25%;
  }
}
@media (max-width: 767px) {
  .internal-hero .container {
    top: auto;
  }
}
.internal-hero .text {
  text-align: center;
}
.internal-hero .text span {
  display: block;
  color: #FFD100;
  font-size: 16px;
  margin-bottom: 8px;
}
.internal-hero .text h2 {
  color: #fff;
  font-size: 62px;
  line-height: 80px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .internal-hero .text h2 {
    font-size: 42px;
    line-height: 60px;
  }
}
.internal-hero .text p {
  font-size: 21px;
  color: #cecece;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .internal-hero .text p {
    font-size: 18px;
    width: 100%;
  }
}
.internal-hero .float-frame {
  pointer-events: none;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
}
@media (max-width: 999px) {
  .internal-hero .float-frame {
    bottom: -20%;
  }
}
.internal-hero .float-frame img {
  width: 100%;
  object-fit: cover;
}

.clients {
  position: relative;
  padding-top: 130px;
}
@media (max-width: 1300px) {
  .clients {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .clients {
    padding-top: 20px;
  }
}
.clients .float-frame {
  pointer-events: none;
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .clients .float-frame {
    top: -3%;
  }
}
.clients .float-frame img {
  width: -webkit-fill-available;
}
.clients .clients-container {
  position: relative;
  background-color: #000;
  padding: 80px 80px 20px;
  border-radius: 40px;
}
@media (max-width: 1023px) {
  .clients .clients-container {
    padding: 70px 20px 10px;
  }
}
@media (max-width: 767px) {
  .clients .clients-container {
    padding: 50px 12px 10px;
  }
}
.clients .clients-container .title {
  margin-bottom: 42px;
  text-align: center;
}
@media (max-width: 767px) {
  .clients .clients-container .title {
    margin-bottom: 30px;
  }
}
.clients .clients-container .title h3 {
  color: #fff;
  font-size: 62px;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .clients .clients-container .title h3 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 15px;
  }
}
.clients .clients-container .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #e6e6e6;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .clients .clients-container .title p {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .clients .clients-container .title p {
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}
.clients .clients-container .title p span.whitespace {
  display: inline-block;
  margin: 0 1px;
}
.clients .clients-container .logos {
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1200px) {
  .clients .clients-container .logos {
    flex-direction: row;
  }
}
.clients .clients-container .logos li {
  display: inline-block;
  text-align: center;
  width: 20%;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .clients .clients-container .logos li {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .clients .clients-container .logos li {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 40px;
  }
}

.services {
  padding: 120px 0;
}
@media (max-width: 1023px) {
  .services {
    padding: 120px 0 80px;
  }
}
.services .title {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 1023px) {
  .services .title {
    margin-bottom: 50px;
  }
}
.services .title h3 {
  color: #fff;
  font-size: 62px;
  margin-bottom: 10px;
}
.services .title h3 span.whitespace {
  display: inline-block;
  width: 20px;
}
@media (max-width: 767px) {
  .services .title h3 span.whitespace {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .services .title h3 {
    font-size: 42px;
  }
}
.services .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #e6e6e6;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .services .title p {
    max-width: 100%;
    font-size: 14px;
  }
}
.services .services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -21px;
}
@media (max-width: 1200px) {
  .services .services-list {
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start;
  }
  .services .services-list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .services .services-list {
    margin: 0 -10px;
  }
}
.services .services-list li {
  transition: 0.1s all ease-in;
  padding: 90px 48px 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(33.3333333333% - 42px);
  margin: 21px;
  background-color: #2a2c2e;
  clip-path: polygon(4.756% 6.457%, 4.756% 6.457%, 4.02% 6.503%, 3.321% 6.639%, 2.67% 6.855%, 2.076% 7.146%, 1.547% 7.503%, 1.094% 7.92%, 0.724% 8.388%, 0.449% 8.901%, 0.277% 9.451%, 0.218% 10.031%, 0.218% 96.361%, 0.218% 96.361%, 0.277% 96.941%, 0.449% 97.491%, 0.724% 98.004%, 1.094% 98.472%, 1.547% 98.888%, 2.076% 99.246%, 2.67% 99.536%, 3.321% 99.753%, 4.02% 99.888%, 4.756% 99.935%, 95.444% 99.935%, 95.444% 99.935%, 96.18% 99.888%, 96.878% 99.753%, 97.529% 99.536%, 98.124% 99.246%, 98.652% 98.888%, 99.106% 98.472%, 99.475% 98.004%, 99.75% 97.491%, 99.922% 96.941%, 99.981% 96.361%, 99.981% 3.614%, 99.981% 3.614%, 99.922% 3.034%, 99.75% 2.484%, 99.475% 1.972%, 99.106% 1.503%, 98.652% 1.087%, 98.124% 0.73%, 97.529% 0.439%, 96.878% 0.222%, 96.18% 0.087%, 95.444% 0.04%, 79.046% 0.04%, 79.046% 0.04%, 78.399% 0.076%, 77.777% 0.182%, 77.188% 0.353%, 76.64% 0.584%, 76.138% 0.87%, 75.691% 1.208%, 75.304% 1.591%, 74.986% 2.017%, 74.742% 2.48%, 74.581% 2.975%, 74.455% 3.522%, 74.455% 3.522%, 74.294% 4.017%, 74.051% 4.48%, 73.732% 4.905%, 73.346% 5.289%, 72.898% 5.626%, 72.397% 5.913%, 71.848% 6.144%, 71.259% 6.314%, 70.638% 6.42%, 69.991% 6.457%, 4.756% 6.457%);
}
@media (max-width: 1200px) {
  .services .services-list li {
    flex: 0 0 400px;
  }
}
@media (max-width: 767px) {
  .services .services-list li {
    flex: 0 0 250px;
    margin: 0 8px;
    padding: 80px 20px 20px;
  }
}
.services .services-list li .icon-top {
  margin-bottom: 50px;
}
.services .services-list li .icon-top img {
  max-width: 80px;
}
@media (max-width: 767px) {
  .services .services-list li .icon-top {
    margin-bottom: 15px;
  }
  .services .services-list li .icon-top img {
    max-width: 50px;
  }
}
.services .services-list li .content {
  color: #e6e6e6;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .services .services-list li .content {
    margin-bottom: 25px;
  }
}
.services .services-list li .content h4 {
  font-size: 28px;
  margin-bottom: 30px;
  font-family: "IBM Plex Sans" !important;
  font-weight: 400;
}
@media (max-width: 767px) {
  .services .services-list li .content h4 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
.services .services-list li .content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .services .services-list li .content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.services .services-list li .btn {
  width: max-content;
}
@media (max-width: 767px) {
  .services .services-list li .btn {
    padding: 4px 8px 4px 12px;
  }
}
.services .services-list li .btn a {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .services .services-list li .btn a {
    font-size: 16px;
  }
}
.services .services-list li .btn img {
  filter: brightness(0) invert(1);
}

.case-sudies {
  position: relative;
}
.case-sudies .title {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 1023px) {
  .case-sudies .title {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .case-sudies .title {
    margin-bottom: 30px;
  }
}
.case-sudies .title h3 {
  color: #fff;
  font-size: 62px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .case-sudies .title h3 {
    font-size: 42px;
  }
}
.case-sudies .title h3 span.whitespace {
  display: inline-block;
  width: 20px;
}
@media (max-width: 767px) {
  .case-sudies .title h3 span.whitespace {
    width: 10px;
  }
}
.case-sudies .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #e6e6e6;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .case-sudies .title p {
    max-width: 100%;
    font-size: 14px;
  }
}
.case-sudies .swiper {
  transition: 0.1s all ease-in;
  width: 100%;
}
@media (max-width: 767px) {
  .case-sudies .swiper {
    margin-bottom: 50px;
  }
}
.case-sudies .swiper .swiper-wrapper {
  padding-top: 20px;
}
.case-sudies .swiper .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  width: 500px;
  height: 500px;
  padding-top: 10px;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .case-sudies .swiper .swiper-slide {
    width: 100%;
    padding: 0 16px;
    height: auto;
  }
}
.case-sudies .swiper .swiper-slide .project-cat {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 9;
}
@media (max-width: 767px) {
  .case-sudies .swiper .swiper-slide .project-cat {
    top: -10px;
  }
}
.case-sudies .swiper .swiper-slide .project-cat span {
  background-color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
}
.case-sudies .swiper .swiper-slide .project-cat span.web {
  background-color: #ecb843;
  color: #fff;
}
.case-sudies .swiper .swiper-slide .image {
  margin-bottom: 20px;
}
.case-sudies .swiper .swiper-slide .image img {
  display: block;
  width: 100%;
}
.case-sudies .swiper .swiper-slide .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .case-sudies .swiper .swiper-slide .content {
    align-items: flex-start;
  }
}
.case-sudies .swiper .swiper-slide .content .text {
  color: #e6e6e6;
}
.case-sudies .swiper .swiper-slide .content .text h4 {
  font-family: "IBM Plex Sans" !important;
  font-size: 21px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .case-sudies .swiper .swiper-slide .content .text h4 {
    font-size: 18px;
  }
}
.case-sudies .swiper .swiper-slide .content .text p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .case-sudies .swiper .swiper-slide .content .text p {
    font-size: 14px;
  }
}
.case-sudies .swiper .swiper-slide .content .btn {
  padding: 0;
  background-color: transparent;
}
.case-sudies .swiper .swiper-slide .content .btn .arrow {
  background-color: #FFD100;
}
.case-sudies .swiper .swiper-slide .content .btn .arrow img {
  filter: brightness(0) saturate(100%);
}
.case-sudies .btn.view-btn {
  width: max-content;
  margin: 70px auto 50px;
  transition: 0.1s all ease-in;
}
@media (max-width: 1023px) {
  .case-sudies .btn.view-btn {
    margin: 20px auto;
  }
}
.case-sudies .float-frame {
  pointer-events: none;
  position: absolute;
  bottom: -90%;
  left: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .case-sudies .float-frame {
    bottom: -80%;
  }
}
@media (max-width: 1200px) {
  .case-sudies .float-frame {
    bottom: -50%;
  }
}
@media (max-width: 1023px) {
  .case-sudies .float-frame {
    bottom: -40%;
  }
}
@media (max-width: 767px) {
  .case-sudies .float-frame {
    bottom: -35%;
  }
}
.case-sudies .float-frame img {
  width: -webkit-fill-available;
}

.why-section {
  position: relative;
  z-index: -1;
  margin-top: 120px;
}
@media (max-width: 1023px) {
  .why-section {
    margin-top: 60px;
  }
}
.why-section-container {
  transition: 0.1s all ease-in;
  background-color: #FFD100;
  padding: 300px 0 180px;
}
@media (max-width: 1200px) {
  .why-section-container {
    padding: 200px 0 100px;
  }
}
@media (max-width: 767px) {
  .why-section-container {
    padding: 120px 0 60px;
  }
}
.why-section .row-flex {
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .why-section .row-flex {
    align-items: center;
    text-align: center;
  }
}
.why-section .row-flex .content {
  width: 50%;
}
@media (max-width: 1200px) {
  .why-section .row-flex .content {
    width: 100%;
  }
}
.why-section .row-flex .content .logo {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .why-section .row-flex .content .logo {
    margin-bottom: 20px;
  }
}
.why-section .row-flex .content .logo img {
  max-width: 96px;
}
@media (max-width: 1200px) {
  .why-section .row-flex .content .logo img {
    max-width: 145px;
  }
}
@media (max-width: 767px) {
  .why-section .row-flex .content .logo img {
    max-width: 95px;
  }
}
.why-section .row-flex .content h4 {
  position: relative;
  z-index: 1;
  font-size: 62px;
  line-height: 80px;
  color: #101011;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .why-section .row-flex .content h4 {
    font-size: 42px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
.why-section .row-flex .content h4 span.has-decoration {
  position: relative;
  z-index: -1;
  display: inline-block;
  background: url(../images/text-decore.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  top: -22px;
}
@media (max-width: 1200px) {
  .why-section .row-flex .content h4 span.has-decoration {
    top: -2px;
  }
}
@media (max-width: 767px) {
  .why-section .row-flex .content h4 span.has-decoration {
    top: -15px;
    line-height: 50px;
    padding: 14px 0px;
  }
}
.why-section .row-flex .content ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media (max-width: 1200px) {
  .why-section .row-flex .content ul {
    width: 80%;
    margin: 0 auto -12px;
  }
}
@media (max-width: 1023px) {
  .why-section .row-flex .content ul {
    width: 100%;
  }
}
.why-section .row-flex .content ul li {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 22px;
  width: calc(50% - 24px);
  margin: 0 12px 24px;
}
@media (max-width: 767px) {
  .why-section .row-flex .content ul li {
    text-align: left;
    width: calc(50% - 10px);
    margin: 0 5px 14px;
    padding: 12px 10px;
  }
}
.why-section .row-flex .content ul li span {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .why-section .row-flex .content ul li span {
    margin-bottom: 0px;
  }
  .why-section .row-flex .content ul li span i {
    font-size: 20px;
  }
}
.why-section .row-flex .content ul li p {
  font-size: 28px;
  line-height: 36px;
  color: #101011;
}
@media (max-width: 767px) {
  .why-section .row-flex .content ul li p {
    font-size: 14px;
    line-height: 20px;
  }
}
.why-section .row-flex .image {
  margin-bottom: 24px;
  width: 45%;
  animation: upDOwn 1s infinite;
  animation-direction: alternate-reverse;
}
@media (max-width: 1200px) {
  .why-section .row-flex .image {
    display: none;
    margin: 0 auto 30px;
    width: 100%;
  }
}
.why-section .row-flex .image img {
  max-width: 100%;
}
.why-section .row-flex.flip {
  align-items: flex-start;
  margin-top: 150px;
}
@media (max-width: 1200px) {
  .why-section .row-flex.flip {
    align-items: center;
    margin-top: 50px;
  }
}
.why-section .row-flex.flip .image {
  width: 50%;
  margin: 0;
}
@media (max-width: 1200px) {
  .why-section .row-flex.flip .image {
    width: 100%;
    display: block;
    margin-bottom: 50px;
  }
}
.why-section .row-flex.flip .content {
  width: 45%;
}
@media (max-width: 1200px) {
  .why-section .row-flex.flip .content {
    width: 80%;
    text-align: left;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .why-section .row-flex.flip .content {
    width: 100%;
  }
}
.why-section .row-flex.flip .content h4 {
  font-size: 52px;
  line-height: 67.6px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .why-section .row-flex.flip .content h4 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 12px;
  }
}
.why-section .row-flex.flip .content p {
  font-size: 21px;
  line-height: 27px;
  color: #101011;
}
@media (max-width: 767px) {
  .why-section .row-flex.flip .content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.why-section .row-flex.flip .content ul {
  margin: 25px 0 0 0;
}
@media (max-width: 1200px) {
  .why-section .row-flex.flip .content ul {
    text-align: left;
  }
}
.why-section .row-flex.flip .content ul li {
  width: 100%;
  background-color: transparent;
  margin: 0 0 32px 0;
  padding: 0;
}
.why-section .row-flex.flip .content ul li:last-child {
  margin-bottom: 0;
}
.why-section .row-flex.flip .content ul li .title {
  display: flex;
  align-items: center;
}
.why-section .row-flex.flip .content ul li .title span {
  display: flex;
  margin-bottom: 0;
}
.why-section .row-flex.flip .content ul li .title h6 {
  font-size: 21px;
  font-family: "IBM Plex Sans" !important;
  margin-left: 10px;
  color: #101011;
}
@media (max-width: 767px) {
  .why-section .row-flex.flip .content ul li .title h6 {
    margin-left: 5px;
    font-weight: 600;
  }
}
.why-section .row-flex.flip .content ul li p {
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 400;
  margin-top: 12px;
}

.about-section-container {
  transition: 0.1s all ease-in;
  padding: 180px 0 0;
}
@media (max-width: 1200px) {
  .about-section-container {
    padding: 100px 0 0;
  }
}
@media (max-width: 767px) {
  .about-section-container {
    padding: 60px 0 0;
  }
}
@media (max-width: 1200px) {
  .about-section .row-flex {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1200px) {
  .about-section .row-flex .content {
    margin-top: 100px;
  }
}
@media (max-width: 1023px) {
  .about-section .row-flex .content {
    margin-top: 50px;
  }
}
.about-section .row-flex .content .tagline {
  display: block;
  color: #FFD100;
  font-size: 21px;
  margin-bottom: 20px;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .about-section .row-flex .content .tagline {
    font-size: 16px;
    text-align: center;
  }
}
.about-section .row-flex .content h4 {
  font-size: 62px;
  color: #fff;
  line-height: 80px;
  margin-bottom: 20px;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .about-section .row-flex .content h4 {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
  }
}
.about-section .row-flex .content h4 span.has-decoration {
  position: relative;
  z-index: -1;
  display: inline-block;
  background: url(../images/text-decore-yellow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.about-section .row-flex .content p {
  font-size: 18px;
  color: #cecece;
  line-height: 28px;
  margin-bottom: 28px;
  width: 90%;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .about-section .row-flex .content p {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
}
.about-section .row-flex .content .btn {
  width: max-content;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .about-section .row-flex .content .btn {
    display: table;
    margin: 0 auto;
  }
}

.faqs-section-container {
  background-color: #2a2c2e;
  transition: 0.1s all ease-in;
  padding: 120px 0 100px;
}
@media (max-width: 767px) {
  .faqs-section-container {
    padding: 100px 0 60px;
  }
}
.faqs-section .title {
  margin-bottom: 70px;
  text-align: center;
}
@media (max-width: 767px) {
  .faqs-section .title {
    margin-bottom: 25px;
  }
}
.faqs-section .title .tagline {
  display: block;
  color: #FFD100;
  font-size: 21px;
  margin-bottom: 20px;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .faqs-section .title .tagline {
    margin-bottom: 15px;
  }
}
.faqs-section .title h5 {
  color: #fff;
  font-size: 62px;
  margin-bottom: 10px;
}
.faqs-section .title h5 span.whitespace {
  display: inline-block;
  width: 20px;
}
@media (max-width: 767px) {
  .faqs-section .title h5 {
    font-size: 32px;
  }
}
.faqs-section .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #e6e6e6;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .faqs-section .title p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .faqs-section .title p {
    font-size: 14px;
  }
}
.faqs-section .faqs-list {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .faqs-section .faqs-list {
    max-width: 100%;
  }
}
.faqs-section .faqs-list .tab {
  position: relative;
  border-bottom: 1px solid rgba(230, 230, 230, 0.1);
}
.faqs-section .faqs-list .tab:last-child {
  border: none;
}
.faqs-section .faqs-list .tab .faq-title {
  cursor: pointer;
  padding: 25px 0;
}
@media (max-width: 999px) {
  .faqs-section .faqs-list .tab .faq-title {
    padding-right: 25px;
  }
}
.faqs-section .faqs-list .tab .faq-title h3 {
  color: #fff;
  font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  transition: 0.3s all ease-in-out;
  font-family: "IBM Plex Sans" !important;
}
@media (max-width: 767px) {
  .faqs-section .faqs-list .tab .faq-title h3 {
    font-size: 18px;
  }
}
.faqs-section .faqs-list .tab .content {
  display: none;
  padding-bottom: 25px;
}
.faqs-section .faqs-list .tab .content p {
  color: #e6e6e6;
  font-size: 16px;
  line-height: 20px;
  max-width: 80%;
}
@media (max-width: 767px) {
  .faqs-section .faqs-list .tab .content p {
    max-width: 100%;
  }
}
.faqs-section .faqs-list .tab .act-btn {
  height: 24px;
  width: 24px;
  line-height: 24px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  top: 30px;
  right: 0px;
  color: #FFD100;
  font-size: 24px;
  cursor: pointer;
}
.faqs-section .faqs-list .tab .act-btn.hide-ques {
  line-height: 8px;
}
.faqs-section .btn.view-btn {
  width: max-content;
  margin: 70px auto 0;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .faqs-section .btn.view-btn {
    margin: 40px auto 0;
  }
}

.news-section {
  background-color: #fff;
  padding: 100px 0;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .news-section {
    padding: 50px 0;
  }
}
.news-section .title {
  text-align: center;
  max-width: 40%;
  margin: 0 auto 70px;
}
@media (max-width: 1200px) {
  .news-section .title {
    max-width: 100%;
  }
}
.news-section .title h5 {
  color: #101011;
  font-size: 52px;
  line-height: 67px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .news-section .title h5 {
    font-size: 32px;
    line-height: 42px;
  }
}
.news-section .title h5 span.whitespace {
  display: inline-block;
  width: 20px;
}
.news-section .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #101011;
}
@media (max-width: 767px) {
  .news-section .title p {
    font-size: 14px;
  }
}
.news-section .news-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
@media (max-width: 1200px) {
  .news-section .news-list {
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start;
  }
  .news-section .news-list::-webkit-scrollbar {
    display: none;
  }
}
.news-section .news-list .item {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 8px;
  width: calc(33.3333333333% - 16px);
}
@media (max-width: 1200px) {
  .news-section .news-list .item {
    flex: 0 0 400px;
  }
}
@media (max-width: 767px) {
  .news-section .news-list .item {
    flex: 0 0 300px;
    margin: 0 8px;
  }
}
.news-section .news-list .item .date {
  margin-bottom: 20px;
}
.news-section .news-list .item .date span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #6c6c6c;
}
@media (max-width: 767px) {
  .news-section .news-list .item .date span {
    font-size: 14px;
  }
}
.news-section .news-list .item .date a {
  font-size: 26px;
  line-height: 41px;
  font-weight: 400;
  color: #101011;
}
@media (max-width: 767px) {
  .news-section .news-list .item .date a {
    font-size: 21px;
    line-height: 28px;
  }
}
.news-section .news-list .item .image {
  position: relative;
  min-height: 435px;
  background-size: cover;
  clip-path: polygon(4.756% 6.457%, 4.756% 6.457%, 4.02% 6.503%, 3.321% 6.639%, 2.67% 6.855%, 2.076% 7.146%, 1.547% 7.503%, 1.094% 7.92%, 0.724% 8.388%, 0.449% 8.901%, 0.277% 9.451%, 0.218% 10.031%, 0.218% 96.361%, 0.218% 96.361%, 0.277% 96.941%, 0.449% 97.491%, 0.724% 98.004%, 1.094% 98.472%, 1.547% 98.888%, 2.076% 99.246%, 2.67% 99.536%, 3.321% 99.753%, 4.02% 99.888%, 4.756% 99.935%, 95.444% 99.935%, 95.444% 99.935%, 96.18% 99.888%, 96.878% 99.753%, 97.529% 99.536%, 98.124% 99.246%, 98.652% 98.888%, 99.106% 98.472%, 99.475% 98.004%, 99.75% 97.491%, 99.922% 96.941%, 99.981% 96.361%, 99.981% 3.614%, 99.981% 3.614%, 99.922% 3.034%, 99.75% 2.484%, 99.475% 1.972%, 99.106% 1.503%, 98.652% 1.087%, 98.124% 0.73%, 97.529% 0.439%, 96.878% 0.222%, 96.18% 0.087%, 95.444% 0.04%, 79.046% 0.04%, 79.046% 0.04%, 78.399% 0.076%, 77.777% 0.182%, 77.188% 0.353%, 76.64% 0.584%, 76.138% 0.87%, 75.691% 1.208%, 75.304% 1.591%, 74.986% 2.017%, 74.742% 2.48%, 74.581% 2.975%, 74.455% 3.522%, 74.455% 3.522%, 74.294% 4.017%, 74.051% 4.48%, 73.732% 4.905%, 73.346% 5.289%, 72.898% 5.626%, 72.397% 5.913%, 71.848% 6.144%, 71.259% 6.314%, 70.638% 6.42%, 69.991% 6.457%, 4.756% 6.457%);
}
@media (max-width: 767px) {
  .news-section .news-list .item .image {
    min-height: 350px;
  }
}
.news-section .news-list .item .image .btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: max-content;
}
.news-section .news-list .item .image .btn a {
  font-size: 22px;
  font-weight: 700;
}
.news-section .news-list .item .image .btn img {
  filter: brightness(0) invert(1);
}
.news-section .btn.view-btn {
  width: max-content;
  margin: 70px auto 0;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .news-section .btn.view-btn {
    margin: 50px auto 0;
  }
}

@media (max-width: 999px) {
  .projects-section {
    margin-top: 200px;
  }
}
@media (max-width: 767pc) {
  .projects-section {
    margin-top: 120px;
  }
}
.projects-section .item {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(230, 230, 230, 0.3);
}
@media (max-width: 1200px) {
  .projects-section .item {
    flex-direction: row;
  }
}
@media (max-width: 999px) {
  .projects-section .item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .projects-section .item {
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
}
.projects-section .item:last-child {
  border: none;
}
.projects-section .item .image {
  display: block;
  position: relative;
}
@media (max-width: 1200px) {
  .projects-section .item .image {
    width: 50%;
  }
  .projects-section .item .image img {
    max-width: 100%;
  }
}
@media (max-width: 999px) {
  .projects-section .item .image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.projects-section .item .image .tagline {
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 9;
  background-color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
}
.projects-section .item .image .tagline.web {
  background-color: #ecb843;
  color: #fff;
}
.projects-section .item .content {
  padding-left: 45px;
}
@media (max-width: 1200px) {
  .projects-section .item .content {
    width: 50%;
  }
}
@media (max-width: 999px) {
  .projects-section .item .content {
    width: 100%;
    padding: 0;
  }
}
.projects-section .item .content .brand {
  margin-bottom: 20px;
}
.projects-section .item .content h3 {
  font-size: 21px;
  color: #e6e6e6;
  font-family: "IBM Plex Sans" !important;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .projects-section .item .content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.projects-section .item .content span,
.projects-section .item .content p {
  display: block;
  font-size: 16px;
  color: #e6e6e6;
  font-weight: 400;
}
@media (max-width: 767px) {
  .projects-section .item .content span,
.projects-section .item .content p {
    font-size: 14px;
  }
}
.projects-section .item .content span {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .projects-section .item .content span {
    margin-bottom: 15px;
  }
}
.projects-section .item .content .btn {
  width: max-content;
  margin-top: 20px;
}
.projects-section .item .content .btn a {
  font-size: 22px;
  font-weight: 700;
}
.projects-section .item.flip {
  flex-direction: row-reverse;
}
@media (max-width: 999px) {
  .projects-section .item.flip {
    flex-direction: column;
  }
}
.projects-section .item.flip .content {
  padding-left: 0;
  padding-right: 45px;
}
@media (max-width: 999px) {
  .projects-section .item.flip .content {
    padding: 0;
  }
}

.single-projects .hero {
  position: relative;
  height: 100vh;
  background-size: cover;
}
@media (max-width: 1200px) {
  .single-projects .hero {
    height: 50vh;
  }
}
@media (max-width: 999px) {
  .single-projects .hero {
    height: inherit;
    margin-bottom: 50px;
  }
}
.single-projects .hero::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 100%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.9);
}
.single-projects .hero .contain {
  position: relative;
  z-index: 1;
}
.single-projects .hero .contain .back {
  color: #FFD100;
}
.single-projects .hero .contain .back a {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.single-projects .hero .contain .back a::before {
  content: "arrow_back";
  font-family: Material Icons;
  font-size: 30px;
  display: inline-block;
  margin-right: 10px;
}
.single-projects .hero .contain .title {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .single-projects .hero .contain .title {
    margin-top: 40px;
  }
}
.single-projects .hero .contain .title h2 {
  color: #fff;
  font-size: 62px;
  line-height: 80px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .single-projects .hero .contain .title h2 {
    font-size: 42px;
    line-height: 50px;
  }
}
.single-projects .hero .contain .title span {
  display: block;
  color: #FFD100;
  font-size: 21px;
  line-height: 28px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .single-projects .hero .contain .title span {
    font-size: 16px;
  }
}
.single-projects .hero .contain .title b {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #e6e6e6;
}
@media (max-width: 767px) {
  .single-projects .hero .contain .title b {
    font-size: 14px;
  }
}
.single-projects .sm-container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  top: -300px;
}
@media (max-width: 999px) {
  .single-projects .sm-container {
    max-width: 100%;
    top: auto;
  }
}
.single-projects .sm-container .overview {
  display: flex;
  align-items: stretch;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .overview {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
.single-projects .sm-container .overview .content {
  background-color: #000;
  border-top: 12px solid #FFD100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  width: 60%;
}
@media (max-width: 767px) {
  .single-projects .sm-container .overview .content {
    width: 100%;
    padding: 40px 20px;
  }
}
.single-projects .sm-container .overview .content h3 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 68px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .overview .content h3 {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 10px;
  }
}
.single-projects .sm-container .overview .content p {
  font-size: 16px;
  line-height: 20px;
  color: #cecece;
}
@media (max-width: 767px) {
  .single-projects .sm-container .overview .content p {
    font-size: 14px;
  }
}
.single-projects .sm-container .overview .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  background-color: #fff;
  padding: 50px;
}
.single-projects .sm-container .overview .image img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .single-projects .sm-container .overview .image {
    width: 100%;
  }
}
.single-projects .sm-container .overview.testimonial .image {
  padding: 0;
  width: auto;
}
.single-projects .sm-container .challenges {
  background-color: #fff;
  padding: 80px 40px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .challenges {
    padding: 40px 20px;
    margin-bottom: 0px;
  }
}
.single-projects .sm-container .challenges h3 {
  color: #101011;
  font-size: 52px;
  font-weight: 700;
  line-height: 68px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .challenges h3 {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}
.single-projects .sm-container .challenges ul li {
  margin-bottom: 30px;
}
.single-projects .sm-container .challenges ul li h6 {
  display: flex;
  align-items: center;
  color: #101011;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  font-family: IBM Plex Sans !important;
}
@media (max-width: 767px) {
  .single-projects .sm-container .challenges ul li h6 {
    font-size: 18px;
  }
}
.single-projects .sm-container .challenges ul li h6::before {
  content: "done";
  font-family: "Material Icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #373944 0%, #010101 100%);
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 767px) {
  .single-projects .sm-container .challenges ul li h6::before {
    margin-right: 5px;
  }
}
.single-projects .sm-container .challenges ul li:last-child {
  margin-bottom: 0;
}
.single-projects .sm-container .challenges ul li p {
  font-size: 16px;
  font-weight: 400;
  color: #101011;
}
@media (max-width: 767px) {
  .single-projects .sm-container .challenges ul li p {
    font-size: 14px;
  }
}
.single-projects .sm-container .images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.single-projects .sm-container .images .image {
  display: inline-block;
  width: calc(50% - 5px);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .images .image {
    width: calc(50% - 2px);
    margin-bottom: 2px;
  }
}
.single-projects .sm-container .images .image.wide {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 75px 0 150px;
  margin-bottom: 0;
}
@media (max-width: 999px) {
  .single-projects .sm-container .images .image.wide {
    padding: 75px 0 100px;
  }
}
@media (max-width: 999px) {
  .single-projects .sm-container .images .image.wide {
    padding: 40px 0;
  }
}
.single-projects .sm-container .images .image.wide::after {
  content: "";
  position: absolute;
  top: 30%;
  bottom: 0;
  width: 200vw;
  left: -100vw;
  right: -100vw;
  background-color: #FFD100;
}
.single-projects .sm-container .images .image.wide img {
  transform: scale(1.3);
}
.single-projects .sm-container .images .image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.single-projects .sm-container .overview.testimonial .content span {
  display: block;
  color: #55d087;
  margin-top: 28px;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .single-projects .sm-container .overview.testimonial .content span {
    font-size: 12px;
  }
}
.single-projects .sm-container .technologies {
  background-color: #fff;
  padding: 80px 0 30px;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .technologies {
    padding: 70px 0 30px;
  }
}
.single-projects .sm-container .technologies .title {
  margin-bottom: 62px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .technologies .title {
    margin-bottom: 42px;
  }
}
.single-projects .sm-container .technologies .title h5 {
  font-size: 52px;
  color: #010101;
}
@media (max-width: 767px) {
  .single-projects .sm-container .technologies .title h5 {
    font-size: 36px;
  }
}
.single-projects .sm-container .technologies ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.single-projects .sm-container .technologies ul li {
  width: calc(33.3333333333% - 24px);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 21px;
  color: #010101;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .technologies ul li {
    width: calc(50% - 24px);
  }
}
.single-projects .sm-container .technologies ul li::before {
  content: "done";
  font-family: Material Icons;
  background: linear-gradient(180deg, #373944 0%, #010101 100%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.single-projects .sm-container .conclusion {
  background-color: #000000;
  padding: 80px 40px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .conclusion {
    padding: 40px 20px;
  }
}
.single-projects .sm-container .conclusion h6 {
  color: #FFD100;
  font-size: 52px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .conclusion h6 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
.single-projects .sm-container .conclusion p {
  font-size: 16px;
  color: #fff;
  line-height: 21px;
}
@media (max-width: 767px) {
  .single-projects .sm-container .conclusion p {
    font-size: 14px;
    line-height: 22px;
  }
}
.single-projects .more-cases {
  position: relative;
  margin-top: -180px;
  padding-bottom: 120px;
}
@media (max-width: 999px) {
  .single-projects .more-cases {
    padding: 80px 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .single-projects .more-cases {
    padding: 50px 0;
  }
}
.single-projects .more-cases .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.single-projects .more-cases .title .content h6 {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .single-projects .more-cases .title .content h6 {
    font-size: 42px;
  }
}
.single-projects .more-cases .title .content p {
  font-size: 16px;
  color: #6c6c6c;
}
@media (max-width: 767px) {
  .single-projects .more-cases .title .btn {
    display: none !important;
  }
}
.single-projects .more-cases .items-con {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .single-projects .more-cases .items-con {
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start;
    margin: 0 -10px;
  }
  .single-projects .more-cases .items-con::-webkit-scrollbar {
    display: none;
  }
}
.single-projects .more-cases .items-con .item {
  position: relative;
  background-position: center;
  background-size: cover;
  width: calc(50% - 22px);
  padding-top: 10px;
  transition: 0.1s all ease-in;
}
@media (max-width: 767px) {
  .single-projects .more-cases .items-con .item {
    flex: 0 0 320px;
    margin: 0 8px;
  }
}
.single-projects .more-cases .items-con .item .project-cat {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 9;
}
.single-projects .more-cases .items-con .item .project-cat span {
  background-color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
}
.single-projects .more-cases .items-con .item .project-cat span.web {
  background-color: #ecb843;
  color: #fff;
}
.single-projects .more-cases .items-con .item .image {
  margin-bottom: 20px;
}
.single-projects .more-cases .items-con .item .image img {
  display: block;
  width: 100%;
}
.single-projects .more-cases .items-con .item .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .single-projects .more-cases .items-con .item .content {
    align-items: flex-start;
  }
}
.single-projects .more-cases .items-con .item .content .text {
  color: #e6e6e6;
}
.single-projects .more-cases .items-con .item .content .text h4 {
  font-family: "IBM Plex Sans" !important;
  font-size: 21px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .single-projects .more-cases .items-con .item .content .text h4 {
    font-size: 18px;
  }
}
.single-projects .more-cases .items-con .item .content .text p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .single-projects .more-cases .items-con .item .content .text p {
    font-size: 14px;
  }
}
.single-projects .more-cases .items-con .item .content .btn {
  padding: 0;
  background-color: transparent;
}
.single-projects .more-cases .items-con .item .content .btn .arrow {
  background-color: #FFD100;
}
.single-projects .more-cases .items-con .item .content .btn .arrow img {
  filter: brightness(0) saturate(100%);
}
.single-projects .more-cases .btn.show-on-mobile {
  display: none !important;
}
@media (max-width: 767px) {
  .single-projects .more-cases .btn.show-on-mobile {
    display: flex !important;
    width: max-content;
    margin: 50px auto 0;
  }
}

.page-about .hero .content b {
  display: block;
  color: #FFD100;
  margin-bottom: 8px;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .page-about .hero .content {
    width: 100%;
    margin-top: 50px;
    text-align: left;
  }
}
@media (max-width: 1200px) {
  .page-about .hero .content p {
    max-width: 100%;
    margin: 20px auto;
  }
}
.page-about .hero .content .btn {
  margin: 30px 0 0;
}
.page-about .hero .image {
  animation: none;
}
.page-about .why-section-container {
  padding: 140px 0 120px;
}
@media (max-width: 767px) {
  .page-about .why-section-container {
    padding: 100px 0 80px;
  }
}
@media (min-width: 1200px) {
  .page-about .c-section {
    margin-bottom: 25vh;
  }
}
.page-about .experts-section {
  position: relative;
  padding: 160px 0 120px;
}
@media (max-width: 1200px) {
  .page-about .experts-section {
    padding: 80px 0 40px;
  }
}
@media (max-width: 767px) {
  .page-about .experts-section {
    padding: 40px 0;
  }
}
.page-about .experts-section .row-flex {
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .page-about .experts-section .row-flex .image {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .page-about .experts-section .row-flex .image {
    margin-bottom: 20px;
  }
}
.page-about .experts-section .row-flex .content {
  padding-left: 70px;
}
@media (max-width: 1200px) {
  .page-about .experts-section .row-flex .content {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .page-about .experts-section .row-flex .content {
    padding: 0;
  }
}
.page-about .experts-section .row-flex .content .title {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(230, 230, 230, 0.3);
}
.page-about .experts-section .row-flex .content .title h3 {
  display: flex;
  align-items: center;
  font-size: 62px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-about .experts-section .row-flex .content .title h3 {
    font-size: 42px;
    line-height: 60px;
  }
}
.page-about .experts-section .row-flex .content .title h3 span.has-decoration {
  color: #FFD100;
  position: relative;
  z-index: -1;
  display: inline-block;
  background: url(../images/text-decore-white.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px 15px;
  margin-left: 10px;
}
.page-about .experts-section .row-flex .content .title p {
  font-size: 21px;
  color: #cecece;
  line-height: 28px;
}
@media (max-width: 767px) {
  .page-about .experts-section .row-flex .content .title p {
    font-size: 18px;
    line-height: 26px;
  }
}
.page-about .experts-section .row-flex .content ul li {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .page-about .experts-section .row-flex .content ul li {
    font-size: 18px;
  }
}
.page-about .experts-section .row-flex .content ul li::before {
  content: "done";
  font-family: "Material Icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fbd00d 0%, #ecaa00 100%);
  margin-right: 10px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .page-about .experts-section .row-flex .content ul li::before {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    font-size: 14px;
  }
}
.page-about .experts-section .row-flex .content ul li:last-child {
  margin-bottom: 0;
}
.page-about .experts-section .row-flex .content .btn {
  width: max-content;
  margin-top: 32px;
}
.page-about .experts-section .row-flex .content .btn a {
  font-size: 24px;
  font-weight: 700;
}
.page-about .experts-section .float-frame {
  pointer-events: none;
  position: absolute;
  bottom: -40%;
  left: 0;
  right: 0;
}
.page-about .experts-section .float-frame img {
  width: -webkit-fill-available;
}
.page-about .vision-mission .row-flex {
  align-items: stretch;
}
@media (max-width: 1200px) {
  .page-about .vision-mission .row-flex {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .page-about .vision-mission .row-flex {
    flex-direction: column;
  }
}
.page-about .vision-mission .row-flex .item {
  transition: 0.1s all ease-in;
  padding: 150px 85px 100px;
  display: block;
  width: calc(50% - 60px);
  margin: 30px;
  background-color: #2a2c2e;
  clip-path: polygon(4.756% 6.457%, 4.756% 6.457%, 4.02% 6.503%, 3.321% 6.639%, 2.67% 6.855%, 2.076% 7.146%, 1.547% 7.503%, 1.094% 7.92%, 0.724% 8.388%, 0.449% 8.901%, 0.277% 9.451%, 0.218% 10.031%, 0.218% 96.361%, 0.218% 96.361%, 0.277% 96.941%, 0.449% 97.491%, 0.724% 98.004%, 1.094% 98.472%, 1.547% 98.888%, 2.076% 99.246%, 2.67% 99.536%, 3.321% 99.753%, 4.02% 99.888%, 4.756% 99.935%, 95.444% 99.935%, 95.444% 99.935%, 96.18% 99.888%, 96.878% 99.753%, 97.529% 99.536%, 98.124% 99.246%, 98.652% 98.888%, 99.106% 98.472%, 99.475% 98.004%, 99.75% 97.491%, 99.922% 96.941%, 99.981% 96.361%, 99.981% 3.614%, 99.981% 3.614%, 99.922% 3.034%, 99.75% 2.484%, 99.475% 1.972%, 99.106% 1.503%, 98.652% 1.087%, 98.124% 0.73%, 97.529% 0.439%, 96.878% 0.222%, 96.18% 0.087%, 95.444% 0.04%, 79.046% 0.04%, 79.046% 0.04%, 78.399% 0.076%, 77.777% 0.182%, 77.188% 0.353%, 76.64% 0.584%, 76.138% 0.87%, 75.691% 1.208%, 75.304% 1.591%, 74.986% 2.017%, 74.742% 2.48%, 74.581% 2.975%, 74.455% 3.522%, 74.455% 3.522%, 74.294% 4.017%, 74.051% 4.48%, 73.732% 4.905%, 73.346% 5.289%, 72.898% 5.626%, 72.397% 5.913%, 71.848% 6.144%, 71.259% 6.314%, 70.638% 6.42%, 69.991% 6.457%, 4.756% 6.457%);
}
@media (max-width: 1200px) {
  .page-about .vision-mission .row-flex .item {
    width: calc(50% - 10px);
    margin: 0 10px;
    padding: 100px 25px 50px;
  }
}
@media (max-width: 767px) {
  .page-about .vision-mission .row-flex .item {
    width: 100%;
    margin: 0 0 25px;
  }
}
.page-about .vision-mission .row-flex .item .image {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .page-about .vision-mission .row-flex .item .image {
    margin-bottom: 40px;
  }
}
.page-about .vision-mission .row-flex .item .image img {
  max-width: 100%;
  max-height: 220px;
  margin: 0 auto;
}
.page-about .vision-mission .row-flex .item .content h4 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .page-about .vision-mission .row-flex .item .content h4 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .page-about .vision-mission .row-flex .item .content h4 {
    margin-bottom: 10px;
  }
}
.page-about .vision-mission .row-flex .item .content p {
  font-size: 21px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 1200px) {
  .page-about .vision-mission .row-flex .item .content p {
    font-size: 16px;
  }
}
.page-about .clients {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .page-about .clients {
    padding: 25px 0 50px;
  }
}

@media (max-width: 1200px) {
  .page-services .services {
    padding: 0px 0 180px;
  }
}
@media (max-width: 999px) {
  .page-services .services {
    padding: 120px 0 80px;
  }
}
@media (max-width: 1200px) {
  .page-services .services .services-list {
    flex-wrap: wrap;
    overflow: auto;
    justify-content: center;
  }
}
@media (max-width: 999px) {
  .page-services .services .services-list li {
    flex: 0 0 auto;
    width: calc(50% - 50px);
  }
}
@media (max-width: 767px) {
  .page-services .services .services-list li {
    width: 80%;
    margin: 0 auto 20px;
    padding: 60px 20px 40px;
  }
}
.page-services .clients {
  padding-top: 0;
  margin-bottom: -200px;
  z-index: 1;
}
.page-services .clients .float-frame {
  pointer-events: none;
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
}
@media (max-width: 999px) {
  .page-services .clients .float-frame {
    top: -10%;
  }
}
.page-services .faqs-section-container {
  padding: 300px 0 100px;
}

@media (max-width: 1200px) {
  .single-services .hero .row-flex {
    align-items: flex-start;
  }
}
@media (max-width: 1200px) {
  .single-services .hero .content {
    text-align: left;
    margin-top: 50px;
  }
}
.single-services .hero .content .navigation-bar {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.single-services .hero .content .navigation-bar li {
  display: inline-flex;
  align-items: center;
}
.single-services .hero .content .navigation-bar li::after {
  content: "chevron_right";
  font-family: "Material Icons";
  color: #cecece;
  display: inline-block;
  font-size: 26px;
  margin: 0 2px;
}
.single-services .hero .content .navigation-bar li a {
  color: #cecece;
  font-size: 16px;
  font-weight: 400;
}
.single-services .hero .content .navigation-bar li a:hover {
  text-decoration: underline;
}
.single-services .hero .content .navigation-bar li:last-child {
  pointer-events: none;
}
.single-services .hero .content .navigation-bar li:last-child::after {
  display: none;
}
.single-services .hero .content .navigation-bar li:last-child a {
  color: #6c6c6c;
}
.single-services .hero .content b {
  display: block;
  color: #FFD100;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.single-services .hero .content p {
  margin: 10px 0 30px;
}
@media (max-width: 1200px) {
  .single-services .hero .content p {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .single-services .hero .content .btn {
    margin: 30px 0;
  }
}
.single-services .hero .image {
  animation: none;
}
@media (max-width: 1200px) {
  .single-services .hero .image {
    margin: 0 auto;
  }
}
.single-services .service-elements {
  margin-top: 120px;
  padding: 90px 0;
  background-color: #000;
}
@media (max-width: 1200px) {
  .single-services .service-elements {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .single-services .service-elements {
    padding: 30px 0;
  }
}
.single-services .service-elements .elements {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-services .service-elements .elements li {
  font-size: 42px;
  color: #000;
  font-weight: 700;
  background-color: #fff;
  margin: 20px 0;
  padding: 14px 22px;
  border-radius: 100px;
  animation: elements 1.5s infinite;
  animation-direction: alternate-reverse;
}
@media (max-width: 767px) {
  .single-services .service-elements .elements li {
    font-size: 22px;
    text-align: center;
  }
}
.single-services .service-elements .elements li:first-child {
  background-color: #FFD100;
}
.single-services .service-elements .elements li:nth-child(2) {
  background-color: #55d087;
  animation: elements-reverse 1.5s infinite;
  animation-direction: alternate-reverse;
}
.single-services .service-elements .elements li:nth-child(3) {
  background-color: #ff8159;
}
.single-services .service-elements .elements li:nth-child(4) {
  background-color: #ecb843;
  animation: elements-reverse 1.5s infinite;
  animation-direction: alternate-reverse;
}
.single-services .process-section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .single-services .process-section {
    padding: 60px 0;
  }
}
.single-services .process-section .title {
  text-align: center;
  padding-bottom: 80px;
}
@media (max-width: 999px) {
  .single-services .process-section .title {
    padding-bottom: 0;
  }
}
.single-services .process-section .title h3 {
  color: #FFD100;
  font-size: 52px;
}
@media (max-width: 767px) {
  .single-services .process-section .title h3 {
    font-size: 42px;
    line-height: 48px;
  }
}
.single-services .process-section .process-con {
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .single-services .process-section .process-con {
    flex-direction: row;
  }
}
@media (max-width: 999px) {
  .single-services .process-section .process-con {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .single-services .process-section .process-con .image {
    width: 60%;
  }
  .single-services .process-section .process-con .image img {
    max-width: 100%;
  }
}
@media (max-width: 999px) {
  .single-services .process-section .process-con .image {
    width: 100%;
    margin: 30px 0;
  }
}
.single-services .process-section .process-con .content {
  width: 50%;
}
@media (max-width: 1200px) {
  .single-services .process-section .process-con .content {
    width: 60%;
  }
}
@media (max-width: 999px) {
  .single-services .process-section .process-con .content {
    width: 100%;
  }
}
.single-services .process-section .process-con .content h4 {
  color: #e6e6e6;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .single-services .process-section .process-con .content h4 {
    font-size: 32px;
    line-height: 38px;
  }
}
.single-services .process-section .process-con .content ul {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .single-services .process-section .process-con .content ul {
    margin-bottom: 50px;
  }
}
.single-services .process-section .process-con .content ul:last-of-type {
  margin-bottom: 0;
}
.single-services .process-section .process-con .content ul li {
  margin-bottom: 30px;
}
.single-services .process-section .process-con .content ul li:last-child {
  margin-bottom: 0;
}
.single-services .process-section .process-con .content ul li h5 {
  display: flex;
  align-items: center;
  color: #FFD100;
  font-size: 21px;
  margin-bottom: 18px;
  font-family: IBM Plex Sans !important;
}
.single-services .process-section .process-con .content ul li h5::before {
  content: "done";
  font-family: "Material Icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fbd00d 0%, #ecaa00 100%);
  margin-right: 10px;
  font-size: 18px;
  color: #000;
}
@media (max-width: 767px) {
  .single-services .process-section .process-con .content ul li h5::before {
    width: 20px;
    height: 20px;
    font-size: 16px;
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .single-services .process-section .process-con .content ul li h5 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.single-services .process-section .process-con .content ul li p {
  font-size: 21px;
  color: #e6e6e6;
  line-height: 28px;
}
@media (max-width: 767px) {
  .single-services .process-section .process-con .content ul li p {
    font-size: 16px;
    line-height: 24px;
  }
}
.single-services .tech-section {
  background-color: #fff;
  padding: 120px 0 100px;
}
@media (max-width: 767px) {
  .single-services .tech-section {
    padding: 60px 0;
  }
}
.single-services .tech-section .title {
  text-align: center;
  margin-bottom: 50px;
}
.single-services .tech-section .title span {
  display: block;
  color: #FFD100;
  font-size: 21px;
}
@media (max-width: 767px) {
  .single-services .tech-section .title span {
    font-size: 16px;
    width: 70%;
    margin: 0 auto;
  }
}
.single-services .tech-section .title h5 {
  color: #101011;
  font-size: 52px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .single-services .tech-section .title h5 {
    font-size: 32px;
    line-height: 36px;
  }
}
.single-services .tech-section .technologies {
  display: flex;
  width: 740px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .single-services .tech-section .technologies {
    width: 100%;
  }
}
.single-services .tech-section .technologies li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 4px;
  border-top: 3px solid #ffd100;
  box-shadow: 0px 0px 20px 0px #0000001a;
  padding: 42px 18px;
  margin: 22px;
  width: calc(33.3333333333% - 44px);
}
@media (max-width: 767px) {
  .single-services .tech-section .technologies li {
    padding: 20px 30px;
    margin: 10px;
    width: calc(50% - 20px);
  }
}
.single-services .tech-section .technologies li img {
  max-width: 100%;
}
.single-services .approach-section {
  position: relative;
  padding: 160px 0 120px;
}
@media (max-width: 999px) {
  .single-services .approach-section {
    padding: 90px 0 250px;
  }
}
@media (max-width: 767px) {
  .single-services .approach-section {
    padding: 80px 0 60px;
  }
}
.single-services .approach-section .row-flex {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.single-services .approach-section .row-flex .image {
  position: relative;
  width: 560px;
  height: 540px;
}
@media (max-width: 999px) {
  .single-services .approach-section .row-flex .image {
    display: none;
  }
}
.single-services .approach-section .row-flex .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ff8159;
  clip-path: polygon(96.166% 6.513%, 96.166% 6.513%, 96.768% 6.562%, 97.339% 6.702%, 97.871% 6.927%, 98.357% 7.229%, 98.79% 7.6%, 99.16% 8.032%, 99.462% 8.518%, 99.687% 9.051%, 99.828% 9.622%, 99.876% 10.224%, 99.876% 96.26%, 99.876% 96.26%, 99.828% 96.862%, 99.687% 97.433%, 99.462% 97.966%, 99.16% 98.452%, 98.79% 98.884%, 98.357% 99.255%, 97.871% 99.557%, 97.339% 99.782%, 96.768% 99.922%, 96.166% 99.971%, 3.711% 99.971%, 3.711% 99.971%, 3.109% 99.922%, 2.538% 99.782%, 2.005% 99.557%, 1.519% 99.255%, 1.087% 98.884%, 0.716% 98.452%, 0.414% 97.966%, 0.189% 97.433%, 0.049% 96.862%, 0% 96.26%, 0% 3.805%, 0% 3.805%, 0.049% 3.203%, 0.189% 2.632%, 0.414% 2.1%, 0.716% 1.614%, 1.087% 1.181%, 1.519% 0.811%, 2.005% 0.509%, 2.538% 0.284%, 3.109% 0.143%, 3.711% 0.095%, 17.938% 0.095%, 17.938% 0.095%, 18.447% 0.129%, 18.937% 0.231%, 19.403% 0.396%, 19.839% 0.619%, 20.242% 0.897%, 20.604% 1.225%, 20.921% 1.599%, 21.188% 2.015%, 21.399% 2.468%, 21.55% 2.956%, 21.713% 3.652%, 21.713% 3.652%, 21.864% 4.139%, 22.075% 4.593%, 22.342% 5.009%, 22.659% 5.383%, 23.021% 5.711%, 23.423% 5.989%, 23.86% 6.212%, 24.326% 6.376%, 24.816% 6.478%, 25.325% 6.513%, 96.166% 6.513%);
}
.single-services .approach-section .row-flex .image img {
  position: relative;
  top: 20px;
  left: 20px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(96.166% 6.513%, 96.166% 6.513%, 96.768% 6.562%, 97.339% 6.702%, 97.871% 6.927%, 98.357% 7.229%, 98.79% 7.6%, 99.16% 8.032%, 99.462% 8.518%, 99.687% 9.051%, 99.828% 9.622%, 99.876% 10.224%, 99.876% 96.26%, 99.876% 96.26%, 99.828% 96.862%, 99.687% 97.433%, 99.462% 97.966%, 99.16% 98.452%, 98.79% 98.884%, 98.357% 99.255%, 97.871% 99.557%, 97.339% 99.782%, 96.768% 99.922%, 96.166% 99.971%, 3.711% 99.971%, 3.711% 99.971%, 3.109% 99.922%, 2.538% 99.782%, 2.005% 99.557%, 1.519% 99.255%, 1.087% 98.884%, 0.716% 98.452%, 0.414% 97.966%, 0.189% 97.433%, 0.049% 96.862%, 0% 96.26%, 0% 3.805%, 0% 3.805%, 0.049% 3.203%, 0.189% 2.632%, 0.414% 2.1%, 0.716% 1.614%, 1.087% 1.181%, 1.519% 0.811%, 2.005% 0.509%, 2.538% 0.284%, 3.109% 0.143%, 3.711% 0.095%, 17.938% 0.095%, 17.938% 0.095%, 18.447% 0.129%, 18.937% 0.231%, 19.403% 0.396%, 19.839% 0.619%, 20.242% 0.897%, 20.604% 1.225%, 20.921% 1.599%, 21.188% 2.015%, 21.399% 2.468%, 21.55% 2.956%, 21.713% 3.652%, 21.713% 3.652%, 21.864% 4.139%, 22.075% 4.593%, 22.342% 5.009%, 22.659% 5.383%, 23.021% 5.711%, 23.423% 5.989%, 23.86% 6.212%, 24.326% 6.376%, 24.816% 6.478%, 25.325% 6.513%, 96.166% 6.513%);
}
.single-services .approach-section .row-flex .content {
  width: 40%;
  margin-left: 100px;
}
@media (max-width: 999px) {
  .single-services .approach-section .row-flex .content {
    width: 100%;
    margin: 0;
  }
}
.single-services .approach-section .row-flex .content h3 {
  color: #fff;
  font-size: 52px;
  line-height: 67px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .single-services .approach-section .row-flex .content h3 {
    font-size: 42px;
    line-height: inherit;
    margin-bottom: 30px;
  }
}
.single-services .approach-section .row-flex .content ul li {
  margin-bottom: 30px;
}
.single-services .approach-section .row-flex .content ul li h6 {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 500;
  font-family: IBM Plex Sans !important;
}
.single-services .approach-section .row-flex .content ul li h6::before {
  content: "done";
  font-family: "Material Icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fbd00d 0%, #ecaa00 100%);
  margin-right: 10px;
  font-size: 18px;
  color: #000;
}
@media (max-width: 767px) {
  .single-services .approach-section .row-flex .content ul li h6::before {
    width: 20px;
    height: 20px;
    font-size: 16px;
    margin-right: 5px;
  }
}
.single-services .approach-section .row-flex .content ul li:last-child {
  margin-bottom: 0;
}
.single-services .approach-section .row-flex .content ul li p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.single-services .approach-section .row-flex .content .btn {
  width: max-content;
  margin-top: 32px;
}
.single-services .approach-section .row-flex .content .btn a {
  font-size: 24px;
  font-weight: 700;
}
.single-services .approach-section .float-frame {
  pointer-events: none;
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
}
.single-services .approach-section .float-frame img {
  width: -webkit-fill-available;
}
.single-services .case-sudies {
  padding: 220px 0 80px;
}
@media (max-width: 767px) {
  .single-services .case-sudies {
    padding: 200px 0 40px;
  }
}
.single-services .case-sudies .title .tagline {
  display: block;
  color: #FFD100;
  font-size: 16px;
  margin-bottom: 11px;
}

.page-contact .contact-section {
  padding: 100px 0 70px;
}
@media (max-width: 767px) {
  .page-contact .contact-section {
    padding: 50px 0;
  }
}
.page-contact .contact-section .row-flex {
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .page-contact .contact-section .row-flex {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1200px) {
  .page-contact .contact-section .row-flex .content {
    width: 100%;
  }
}
.page-contact .contact-section .row-flex .content .title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-contact .contact-section .row-flex .content .title {
    margin-bottom: 30px;
  }
}
.page-contact .contact-section .row-flex .content .title .tagline {
  display: block;
  color: #FFD100;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .page-contact .contact-section .row-flex .content .title .tagline {
    font-size: 14px;
  }
}
.page-contact .contact-section .row-flex .content .title h2 {
  color: #fff;
  font-size: 62px;
  line-height: 70px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .page-contact .contact-section .row-flex .content .title h2 {
    font-size: 36px;
    line-height: inherit;
  }
}
.page-contact .contact-section .row-flex .content .title h2 span {
  color: #FFD100;
}
.page-contact .contact-section .row-flex .content .title p {
  font-size: 21px;
  color: #cecece;
}
@media (max-width: 767px) {
  .page-contact .contact-section .row-flex .content .title p {
    font-size: 18px;
  }
}
.page-contact .contact-section .row-flex .image {
  width: 50%;
}
@media (max-width: 1200px) {
  .page-contact .contact-section .row-flex .image {
    width: 100%;
    margin-bottom: 50px;
  }
}
.page-contact .contact-section .row-flex .image img {
  max-width: 100%;
}
.page-contact .lets-talk .msg h6 {
  margin-bottom: 0;
}
.page-contact .lets-talk .msg .btn {
  display: none !important;
}

.contact-form .fluentform form .ff-el-group {
  margin-bottom: 25px;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--label label {
  font-size: 16px;
  color: #cecece;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--label label::after {
  color: #cecece;
  margin-left: 0;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control {
  border: none;
  border-radius: 0;
  padding-left: 20px;
  border-bottom: 1px solid rgba(206, 206, 206, 0.6);
  color: #cecece;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  background-repeat: no-repeat;
  background-position: 0% 50%;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control::-webkit-outer-spin-button, .contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control[type=number] {
  -moz-appearance: textfield;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control#ff_1_names_first_name_ {
  background-image: url(../images/form-icons/name.svg);
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control#ff_1_email {
  background-image: url(../images/form-icons/mail.svg);
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control#ff_1_numeric_field {
  background-image: url(../images/form-icons/phone.svg);
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control#ff_1_names_1_first_name_ {
  background-image: url(../images/form-icons/company.svg);
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control#ff_1_names_1_middle_name_ {
  background-image: url(../images/form-icons/role.svg);
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control#ff_1_message {
  resize: none;
  background-image: url(../images/form-icons/msg.svg);
  background-position: 0% 18%;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control::placeholder {
  color: #cecece;
  font-size: 14px;
  font-weight: 400;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control:focus {
  background-color: transparent;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control:focus::placeholder {
  opacity: 0;
}
.contact-form .fluentform form .ff-el-group .ff-el-input--content .ff-el-form-control:autofill {
  background-color: transparent !important;
}
.contact-form .fluentform form .ff-el-group .ff-btn-submit {
  display: flex;
  align-items: center;
  background-color: #FFD100;
  font-size: 21px;
  color: #101011;
  font-weight: 700;
  border-radius: 100px;
  padding: 5px 10px;
}
.contact-form .fluentform form .ff-el-group .ff-btn-submit::after {
  content: "";
  margin-left: 6px;
  background-color: #101011;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 34px;
  background-image: url(../images/form-icons/icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  transition: 0.3s all ease-in-out;
}
.contact-form .fluentform form .ff-el-group .ff-btn-submit:hover {
  opacity: 1;
}
.contact-form .fluentform form .ff-el-group .ff-btn-submit:hover::after {
  margin-left: 10px;
}
.contact-form .fluentform .ff-message-success {
  background-color: #FFD100;
  border-color: #FFD100 !important;
}

.thank-you {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 1200px) {
  .thank-you {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .thank-you {
    padding: 60px 0;
  }
}
.thank-you h2 {
  color: #fff;
  font-size: 52px;
  text-transform: capitalize;
  line-height: 60px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .thank-you h2 {
    font-size: 28px;
    line-height: 42px;
  }
}
.thank-you h2 span.has-decoration {
  position: relative;
  z-index: -1;
  display: inline-block;
  background: url(../images/text-decore.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px 15px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .thank-you h2 span.has-decoration {
    margin-left: 0;
  }
}
.thank-you p {
  font-size: 32px;
  color: #FFD100;
}
@media (max-width: 767px) {
  .thank-you p {
    font-size: 22px;
  }
}
.thank-you p:last-of-type {
  color: #06ba63;
  font-size: 22px;
}
@media (max-width: 767px) {
  .thank-you p:last-of-type {
    font-size: 18px;
  }
}

.page-blogs .internal-hero {
  height: 50vh;
}
.page-blogs .internal-hero .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1200px) {
  .page-blogs .c-section {
    margin-bottom: 20vh;
  }
}
.page-blogs .news-section {
  padding: 180px 0 40px;
}
.page-blogs .news-section .news-list .item {
  margin: 0 8px 90px;
}

.single-news .hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  padding: 0;
  display: flex;
  align-items: center;
}
.single-news .hero::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 100%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.9);
}
.single-news .hero .contain {
  position: relative;
  z-index: 1;
  width: 55%;
}
.single-news .hero .contain .navigation-bar {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.single-news .hero .contain .navigation-bar li {
  display: inline-flex;
  align-items: center;
}
.single-news .hero .contain .navigation-bar li::after {
  content: "chevron_right";
  font-family: "Material Icons";
  color: #cecece;
  display: inline-block;
  font-size: 26px;
  margin: 0 2px;
}
.single-news .hero .contain .navigation-bar li a {
  color: #cecece;
  font-size: 16px;
  font-weight: 400;
}
.single-news .hero .contain .navigation-bar li a:hover {
  text-decoration: underline;
}
.single-news .hero .contain .navigation-bar li:last-child {
  pointer-events: none;
}
.single-news .hero .contain .navigation-bar li:last-child::after {
  display: none;
}
.single-news .hero .contain .navigation-bar li:last-child a {
  color: #6c6c6c;
}
.single-news .hero .contain .title span {
  display: block;
  color: #FFD100;
  font-size: 14px;
  margin: 20px 0;
}
.single-news .hero .contain .title h2 {
  font-family: "IBM Plex Sans" !important;
  color: #fff;
  font-size: 62px;
  line-height: 80px;
  margin-bottom: 20px;
}
.single-news .hero .contain .title p {
  width: 80%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #e6e6e6;
}
.single-news .blog-content {
  background-color: #fff;
  padding: 120px 0 50px;
  border-bottom: 1px solid #e6e6e6;
}
.single-news .blog-content-container {
  width: 1100px;
  margin: 0 auto;
}
.single-news .blog-content-container h2,
.single-news .blog-content-container h3,
.single-news .blog-content-container h4,
.single-news .blog-content-container h5,
.single-news .blog-content-container h6 {
  font-family: "IBM Plex Sans" !important;
  font-size: 32px;
  color: #000;
  font-weight: 700;
  margin-bottom: 12px;
}
.single-news .blog-content-container p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 35px;
}
.single-news .blog-content-container img {
  display: block;
  width: 100%;
  margin: 35px 0;
}
.single-news .blog-content-container ul {
  padding-left: 20px;
  margin: -25px 0 10px;
}
.single-news .blog-content-container ul li {
  width: 100%;
  display: inline-flex;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 3px;
}
.single-news .blog-content-container ul li:last-child {
  margin-bottom: 0;
}
.single-news .blog-content-container ul li::before {
  content: "";
  position: relative;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 10px;
}

.page-faqs .internal-hero .text h2 {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .page-faqs .internal-hero .text h2 {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .page-faqs .internal-hero .text h2 {
    width: 100%;
  }
}
.page-faqs .faqs-navigation {
  margin-bottom: 50px;
}
.page-faqs .faqs-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-faqs .faqs-navigation ul {
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start;
    margin: 0 -10px;
  }
  .page-faqs .faqs-navigation ul::-webkit-scrollbar {
    display: none;
  }
}
.page-faqs .faqs-navigation ul li {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  color: #e6e6e6;
  margin: 0 12px;
  background-color: rgba(219, 219, 219, 0.1);
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .page-faqs .faqs-navigation ul li {
    font-size: 14px;
  }
}
.page-faqs .faqs-navigation ul li.active {
  color: #FFD100;
  border: 1px solid #FFD100;
  background-color: transparent;
}
@media (max-width: 767px) {
  .page-faqs .faqs-navigation ul li {
    flex: 0 0 max-content;
    margin: 0 3px;
  }
}
.page-faqs .faqs-section-container {
  background-color: transparent;
  padding: 100px 0 0;
}
.page-faqs .faqs-section-container .faqs-list .form-row {
  display: none;
}
.page-faqs .faqs-section-container .faqs-list .form-row.show, .page-faqs .faqs-section-container .faqs-list .form-row.active {
  display: block;
}
.page-faqs .faqs-section-container .faqs-list .form-row .tab:last-child {
  border-bottom: 1px solid rgba(230, 230, 230, 0.1);
}
.page-faqs .faq-msg {
  padding: 120px 0;
  background-color: #2a2c2e;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .page-faqs .faq-msg {
    padding: 60px 0;
    margin-top: 60px;
  }
}
.page-faqs .faq-msg .title {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-faqs .faq-msg .title {
    margin-bottom: 30px;
  }
}
.page-faqs .faq-msg .title .tagline {
  display: block;
  color: #FFD100;
  font-size: 21px;
  margin-bottom: 20px;
  transition: 0.1s all ease-in;
}
.page-faqs .faq-msg .title h5 {
  color: #fff;
  width: 70%;
  margin: 0 auto;
  font-family: IBM Plex Sans !important;
  font-weight: 600;
  font-size: 95px;
}
@media (max-width: 1200px) {
  .page-faqs .faq-msg .title h5 {
    width: 90%;
  }
}
@media (max-width: 999px) {
  .page-faqs .faq-msg .title h5 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .page-faqs .faq-msg .title h5 {
    font-size: 42px;
  }
}
.page-faqs .faq-msg .title h5 span.whitespace {
  display: inline-block;
  width: 20px;
}
.page-faqs .faq-msg .btn {
  width: max-content;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
}
.page-faqs .faq-msg .btn .arrow {
  width: 48px;
  height: 40px;
}
.page-faqs .faq-msg .btn .arrow img {
  width: 50%;
}

.privacy-content {
  background-color: #fff;
  margin: 50px 0 0;
  border-bottom: 1px solid #f2f2f2;
  padding: 100px;
}
.privacy-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.privacy-content p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 50px;
}

.show {
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.5s ease;
}

.node {
  pointer-events: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  width: 30px;
  height: 30px;
  background-color: #FFD100;
  transition: opacity 300ms linear, transform 300ms linear, background-color 300ms ease, height 300ms ease, width 300ms ease;
  -webkit-transition: opacity 300ms linear, transform 300ms linear, background-color 300ms ease, height 300ms ease, width 300ms ease;
  -moz-transition: opacity 300ms linear, transform 300ms linear, background-color 300ms ease, height 300ms ease, width 300ms ease;
  -ms-transition: opacity 300ms linear, transform 300ms linear, background-color 300ms ease, height 300ms ease, width 300ms ease;
  -o-transition: opacity 300ms linear, transform 300ms linear, background-color 300ms ease, height 300ms ease, width 300ms ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  mix-blend-mode: difference;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #000;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .node {
    display: none;
  }
}

html.removePointer,
html.removePointer * {
  cursor: none !important;
}

.pos_text,
.pos_target {
  display: inline-block;
}

.node.view {
  width: 150px;
  height: 150px;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
  -ms-border-radius: 10vw;
  -o-border-radius: 10vw;
  mix-blend-mode: normal;
}

/*# sourceMappingURL=main.css.map */
