@import url("https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap");
/* Defaults
-------------------------------------------------------------- */
/* ===== Scrollbar CSS ===== */
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #B3D454;
  border-radius: 10px;
}

html {
  font-size: 19px;
}

body {
  color: #010101;
  font-size: 1rem;
  direction: ltr;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  line-height: 1.1em;
}

h1, .top-title {
  font-size: 3.158rem; /* 60/19 */
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
h1::after, .top-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  border-radius: 5px;
}
h1.center::after, .top-title.center::after {
  right: 0;
  margin: 0 auto;
}

h2 {
  font-size: 3.158rem; /* 60/19 */
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  border-radius: 5px;
}
h2.center::after {
  right: 0;
  margin: 0 auto;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Raleway", sans-serif;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  transition: all 400ms ease;
}

a {
  text-decoration: none;
  color: #B3D454;
}

a:hover,
a:focus {
  color: #B3D454;
  text-decoration: underline;
}

img {
  max-width: 100%;
}

img.grayscale {
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  border-radius: 50%;
}

.bold {
  font-weight: 700;
}

.center {
  text-align: center;
}

.white-color {
  color: #fff;
}

.primary-color, .has-primary-color {
  color: #B3D454;
}

.blue-color, .has-blue-color {
  color: #835AA4;
}

.small-text {
  font-size: 0.85rem;
}

.medium-text {
  font-size: 1.316rem; /* 25/19 */
}

.big-text {
  font-size: 1.684em; /* 32/19 */
}

.content ol,
.content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1em;
  margin-bottom: 8px;
}

.content ul {
  line-height: 1.4;
  margin-bottom: 1.5em;
  list-style: none;
  margin-left: 5px;
  padding-left: 0;
}
.content ul li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 25px;
}
.content ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #B3D454;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 1em;
  margin-bottom: 0.6em;
}

.button {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s;
  margin: 20px 40px 20px 0;
}
.button span {
  position: relative;
  z-index: 2;
}
.button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #835AA4;
  border-radius: 10px;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.button::after {
  content: ">";
  position: absolute;
  opacity: 0;
  transition: 0.5s 0s;
  color: #fff;
  right: 5px;
}
.button:hover, .button:focus {
  color: #fff;
  text-decoration: none;
}
.button:hover::before, .button:focus::before {
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
}
.button:hover::after, .button:focus::after {
  content: ">";
  opacity: 1;
  transition: 0.5s 0.4s;
}
.button.white-button {
  color: #010101;
}
.button.white-button::before {
  background-color: #fff;
}
.button.white-button::after {
  color: #010101;
}
.button.green-button::before {
  background-color: #B3D454;
}
.button.dark-button::before {
  background-color: #010101;
}
.button.long-button:hover::before, .button.long-button:focus::before {
  transform: perspective(760px) rotateY(-33deg) scale(1.4, 1);
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}
.container.big-container {
  max-width: 1450px;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 5555555;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}
header .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
header .logo img {
  max-height: 80px;
  height: auto;
  width: auto;
}
header .right {
  display: flex;
  align-items: center;
}
header .social {
  display: flex;
}
header .social a {
  display: block;
  margin: 0 5px;
}
header .social a:hover svg path {
  fill: #010101;
  stroke: #010101;
}
header .social svg {
  width: 20px;
  height: 20px;
}
header .social svg path {
  transition: 0.4s;
  fill: #B3D454;
  stroke: #B3D454;
}

footer {
  background-color: #010101;
  color: #fff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  padding: 50px 15px;
}
footer .container::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 10px);
  background-color: #835AA4;
  height: 10px;
  width: 500%;
  left: -200%;
}
footer .container::before {
  content: "";
  position: absolute;
  bottom: 100%;
  background-image: linear-gradient(0deg, #fff 70%, rgba(255, 255, 255, 0));
  height: 50px;
  width: 500%;
  left: -200%;
}
footer .contact-details {
  font-size: 0.9rem;
}
footer .contact-details a {
  color: #fff;
}
footer .social {
  display: flex;
}
footer .social a {
  display: block;
  margin: 0 5px;
}
footer .social a:hover svg path {
  fill: #fff;
  stroke: #fff;
}
footer .social svg {
  width: 17px;
  height: 17px;
}
footer .social svg path {
  transition: 0.4s;
  fill: #B3D454;
  stroke: #B3D454;
}
footer .rights-credit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  list-style: none;
  margin: 0 10px;
  padding: 0;
}
ul#main-menu > li {
  position: relative;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #010101;
  padding: 5px 20px;
}
ul#main-menu > li > a:focus, > ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #010101;
}
ul#main-menu > li.current-menu-item > a {
  color: #010101;
}
ul#main-menu > li.button {
  margin: 0 20px;
  padding: 0;
}
ul#main-menu > li.button a {
  color: #fff;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  width: 250px;
  display: none;
  padding-left: 0;
  padding: 10px 0;
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 10px 0;
  margin: 0 20px;
  color: #010101;
  font-size: 0.8em;
  border-bottom: 1px solid #B3D454;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #B3D454;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #B3D454;
}

/** Sub-sub-menu **/
ul#main-menu ul.sub-menu ul.sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 250px;
  display: none; /* Initially hidden */
  padding-left: 0;
  padding: 10px 0;
  background: #fff;
}

ul#main-menu ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

/** Add ▼ indicator for submenu items with sub-sub-menus **/
ul#main-menu ul.sub-menu li.menu-item-has-children > a::after {
  content: " ►";
  font-size: 0.7em;
  color: #010101;
  margin-left: 5px;
}

/** Add ► indicator for sub-sub-menu items **/
ul#main-menu ul.sub-menu ul.sub-menu li.menu-item-has-children > a::after {
  content: " ►";
}

.page-template-vu-drive_he .home-partners-section .partners-wrapper .partner .logo-wrapper {
  width: 160px;
  height: 120px;
}
.page-template-vu-drive_he h1::after, .page-template-vu-drive_he .top-title::after {
  left: auto;
  right: 0;
}
.page-template-vu-drive_he .codriver-main-section .content-wrapper {
  padding: 15px !important;
}
.page-template-vu-drive_he .codriver-main-section .button {
  margin: 20px 0 20px 40px;
}
.page-template-vu-drive_he .contact-section h2::after {
  left: auto;
  right: 0;
}
.page-template-vu-drive_he .vudrive-features-section h2::after, .page-template-vu-drive_he .vudrive-capabilities-section h2::after, .page-template-vu-drive_he .vudrive-examples h2::after {
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

/****** General ******/
.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.fixed-button {
  position: fixed;
  transition: 0.5s;
  z-index: 555;
  right: 0;
  top: 200px;
  color: #fff;
  padding: 46px 40px;
  display: flex;
}
.fixed-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 46px);
  background-color: #010101;
  border-radius: 10px;
  left: 0;
  top: 23px;
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
  box-shadow: 0px 0px 15px 5px rgba(98, 98, 98, 0.5);
}
.fixed-button .main-text {
  position: relative;
  padding-right: 25px;
}
.fixed-button .main-text .medium-text {
  line-height: 1;
  margin-bottom: 5px;
}
.fixed-button .main-text .small-text {
  max-width: 150px;
  font-size: 0.7rem;
}
.fixed-button .hidden {
  width: 90px;
  position: relative;
  margin-right: -130px;
  transition: 0.5s;
}
.fixed-button:hover {
  text-decoration: none;
  right: -5px;
}
.fixed-button:hover::before {
  transform: perspective(0) rotateY(0) scale(1, 1);
}
.fixed-button:hover .hidden {
  margin-right: 0;
}

.home-main-section {
  overflow: hidden;
  background-color: #000;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-position: center;
  background-size: auto 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 0;
}
.home-main-section .bg-element-wrapper {
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 11%;
  left: -65vh;
  height: 37.5%;
}
.home-main-section .bg-element {
  position: relative;
  transform: scale(0);
  border: 2px solid #B3D454;
}
.home-main-section .bg-element svg {
  height: 100%;
  width: auto;
  opacity: 0;
  transform: scaleY(0.1) scaleX(0.3) rotate(25deg) skewX(10deg);
  transform-origin: bottom;
}
.home-main-section.active .bg-element {
  transition: 0.8s 1s;
  transform: scale(1);
}
.home-main-section.active .bg-element svg {
  animation-name: dots;
  animation-duration: 1.5s;
  animation-delay: 3s;
  opacity: 0.5;
  transform: scaleY(1) scaleX(1) rotate(0deg);
  transition: 0.5s opacity 2s, 1s transform 2s;
}
.home-main-section.active .container {
  opacity: 1;
  transform: translateY(0);
  transition: 1s 5s;
}
.home-main-section.active .scroll {
  opacity: 1;
  transform: rotate(-90deg) translateX(0);
  transition: 0.7s transform 6s, 0.7s opacity 6s;
}
@keyframes dots {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.5;
  }
}
.home-main-section .container {
  opacity: 0;
  transform: translateY(100%);
}
.home-main-section .container > * {
  width: 45%;
}
.home-main-section h1 {
  position: relative;
  padding-top: 15px;
}
.home-main-section h1::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  bottom: 100%;
  left: 0;
  border-radius: 5px;
}
.home-main-section .video-link {
  position: relative;
}
.home-main-section .video-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0 0.4em 0.5em;
  border-color: transparent transparent transparent #B3D454;
  top: 0.25em;
  left: 105%;
}
.home-main-section .scroll {
  position: absolute;
  left: 15px;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: top left;
  opacity: 0;
}
.home-main-section .scroll::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #B3D454;
  border-left: 2px solid #B3D454;
  left: -20px;
  transform: rotate(45deg);
  top: 3px;
  animation-name: scroll;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.home-main-section .scroll.hide-scroll {
  display: none;
}

@keyframes scroll {
  0% {
    left: -20px;
  }
  10% {
    left: -30px;
  }
  20% {
    left: -20px;
  }
  30% {
    left: -30px;
  }
  40% {
    left: -20px;
  }
  100% {
    left: -20px;
  }
}
.co-driver-section {
  padding: 70px 0;
}
.co-driver-section .content {
  max-width: 700px;
  margin: 0 auto;
}
.co-driver-section .button {
  margin-right: 0;
}
.co-driver-section .bullets {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}
.co-driver-section .bullets .single-bullet {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.co-driver-section .bullets .single-bullet .svg-wrapper {
  position: relative;
  margin-bottom: 30px;
  padding: 15px 50px;
}
.co-driver-section .bullets .single-bullet .svg-wrapper::before, .co-driver-section .bullets .single-bullet .svg-wrapper::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 0;
  border: 2px solid #010101;
  top: 50%;
  opacity: 0;
  transition: 0.5s height, 0.2s opacity, 0.5s top;
}
.co-driver-section .bullets .single-bullet .svg-wrapper::before {
  left: 0;
  border-right: 0;
}
.co-driver-section .bullets .single-bullet .svg-wrapper::after {
  right: 0;
  border-left: 0;
}
.co-driver-section .bullets .single-bullet .svg-wrapper svg {
  width: 77px;
  height: 77px;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s 0.5s;
}
.co-driver-section .bullets .single-bullet .texts {
  opacity: 0;
  transition: 0.5s 1s;
}
.co-driver-section .bullets .single-bullet h3 {
  font-size: 2rem; /* 38/19 */
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.co-driver-section .bullets .single-bullet h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
}
.co-driver-section .bullets.viewed .svg-wrapper::before, .co-driver-section .bullets.viewed .svg-wrapper::after {
  height: 100%;
  top: 0;
  opacity: 1;
}
.co-driver-section .bullets.viewed .svg-wrapper svg {
  opacity: 1;
  transform: scale(1);
}
.co-driver-section .bullets.viewed .texts {
  opacity: 1;
}

.technology-section {
  padding: 200px 0;
  background-image: linear-gradient(0deg, #010E2D, #010101 500px);
}
.technology-section .medium-text {
  margin-bottom: 15px;
}
.technology-section .flex {
  display: flex;
}
.technology-section .image-wrapper {
  position: relative;
}
.technology-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.technology-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.technology-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.technology-section .image-wrapper.viewed::after {
  transform: scale(1);
}

.two-fields-section {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.two-fields-section .one-field {
  width: calc(50% - 10px);
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px;
  overflow: hidden;
}
.two-fields-section .one-field::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: 100% 500%;
  background-position: bottom;
  transition: 1s;
  background-image: linear-gradient(0deg, #000, rgba(160, 158, 205, 0.27));
}
.two-fields-section .one-field.viewed::before {
  background-size: 100% 100%;
}
.two-fields-section .one-field::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
}
.two-fields-section .one-field h2 {
  padding-bottom: 100%;
  transition: 0.7s;
}
.two-fields-section .one-field .hidden {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.7s;
}
.two-fields-section .one-field .button {
  margin-right: 0;
}
.two-fields-section .one-field:hover h2 {
  padding-bottom: 20px;
}
.two-fields-section .one-field:hover .hidden {
  margin-bottom: 0;
  opacity: 1;
}

.about-section {
  padding: 100px 0;
}
.about-section .content {
  max-width: 500px;
}
.about-section .medium-text {
  margin-bottom: 20px;
}
.about-section .big-text {
  border: 2px solid #B3D454;
  padding: 70px;
  position: relative;
  max-width: none;
  margin-top: 70px;
}
.about-section .big-text::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  bottom: calc(100% - 50px);
  left: 70px;
  border-radius: 5px;
}
.about-section .flex {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}
.about-section .image-wrapper {
  position: relative;
}
.about-section .image-wrapper .img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 1s;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}
.about-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.about-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.about-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.about-section .image-wrapper.viewed::after {
  transform: scale(1);
}

.news-section {
  padding: 100px 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.03), #fff 300px);
}
.news-section .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.news-section .news-slider {
  position: relative;
  margin-top: 70px;
  padding-bottom: 70px;
  width: 100%;
}
.news-section .news-slider .slick-list {
  width: 100%;
}
.news-section .news-slider .slick-track {
  min-width: 100%;
}
.news-section .news-slider .slick-slide {
  min-height: 350px;
}
.news-section .news-slider .slick-slide > div {
  min-height: 350px;
}
.news-section .news-slider .slick-arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 100%;
  font-size: 0;
  background-color: transparent;
  border: 0;
}
.news-section .news-slider .slick-arrow::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0;
  top: 0;
}
.news-section .news-slider .slick-arrow.slick-next {
  right: calc(50% - 180px);
}
.news-section .news-slider .slick-arrow.slick-next::after {
  border-right: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(-45deg);
  transform-origin: bottom center;
}
.news-section .news-slider .slick-arrow.slick-prev {
  left: calc(50% - 180px);
}
.news-section .news-slider .slick-arrow.slick-prev::after {
  border-left: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.news-section .news-slider .slick-dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 100%;
  height: 15px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  display: flex;
  width: 100%;
  max-width: 300px;
  left: 0;
  right: 0;
}
.news-section .news-slider .slick-dots li button {
  background-color: #eee;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
}
.news-section .news-slider .slick-dots li.slick-active button {
  background-color: #B3D454;
}
.news-section .single-news {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  height: 100%;
  min-height: 350px;
}
.news-section .single-news .logo {
  height: 100px;
  width: auto;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  display: flex;
  align-items: flex-end;
}
.news-section .single-news .logo img {
  max-width: 200px;
  max-height: 70px;
}
.news-section .single-news a {
  display: inline-block;
  margin-top: 15px;
  color: #835AA4;
  text-decoration: underline;
}
.news-section .single-news .bottom {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-section {
  padding: 90px 0;
}
.contact-section .container {
  padding: 50px 30px;
  border: 2px solid #B3D454;
}
.contact-section select {
  width: 100%;
  border: 0;
  border-bottom: 3px solid;
  padding: 10px 0 10px 2px;
}
.contact-section select:focus, .contact-section select:hover {
  border: 0;
  border-bottom: 3px solid;
}
.contact-section form {
  margin-top: 30px;
}
.contact-section form label {
  margin-top: 10px;
  width: 100%;
}
.contact-section form input:not([type=submit]), .contact-section form textarea {
  border: 0;
  border-bottom: 3px solid #010101;
  transition: 0.3s;
  width: 100%;
}
.contact-section form input:not([type=submit]):hover, .contact-section form textarea:hover {
  background-color: #fafafa;
}
.contact-section form input:not([type=submit]):focus, .contact-section form textarea:focus {
  background-color: #f1f1f1;
  outline: 0;
}
.contact-section form textarea {
  height: 130px;
}
.contact-section form .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-section form .wpcf7-list-item {
  margin-left: 1.5em;
}
.contact-section form .wpcf7-list-item label {
  margin: 0;
  padding-right: 25px;
}
.contact-section form input[type=checkbox] {
  width: auto;
  margin-left: -1.5em;
  margin-right: 0.3em;
}
.contact-section form .button-wrapper {
  position: relative;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
.contact-section form .button-wrapper p {
  margin: 0;
}
.contact-section form .button-wrapper input[type=submit] {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  background-color: transparent;
  border: 0;
}
.contact-section form .button-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #B3D454;
  border-radius: 10px;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.contact-section form .button-wrapper::after {
  content: ">";
  position: absolute;
  opacity: 0;
  transition: 0.5s 0s;
  color: #fff;
  right: 5px;
  top: 10px;
}
.contact-section form .button-wrapper:hover, .contact-section form .button-wrapper:focus {
  color: #fff;
  text-decoration: none;
}
.contact-section form .button-wrapper:hover::before, .contact-section form .button-wrapper:focus::before {
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
}
.contact-section form .button-wrapper:hover::after, .contact-section form .button-wrapper:focus::after {
  content: ">";
  opacity: 1;
  transition: 0.5s 0.4s;
}
.contact-section form .button-wrapper .ajax-loader, .contact-section form .button-wrapper .wpcf7-spinner {
  position: absolute;
}
.contact-section a {
  color: #010101;
}
.contact-section .content {
  margin-top: 50px;
  max-width: 350px;
  margin-bottom: 30px;
}

.newsletter-bg {
  padding: 50px 15px;
  background-image: linear-gradient(90deg, rgba(131, 90, 164, 0.9) 50%, #430973);
  align-items: flex-end;
}
.newsletter-bg h2 {
  font-size: 2rem;
}
.newsletter-bg form {
  margin-top: 50px;
}
.newsletter-bg #mc_embed_signup_scroll {
  display: flex;
  align-items: flex-end;
}
.newsletter-bg .mc-field-group {
  display: flex;
  flex-direction: column;
}
.newsletter-bg label {
  margin-bottom: 0;
  margin-right: 15px;
  line-height: 1;
}
.newsletter-bg input[type=email] {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  color: #B3D454;
}
.newsletter-bg input[type=email]:focus {
  outline: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.newsletter-bg .button-wrapper {
  position: relative;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  margin-left: 20px;
}
.newsletter-bg .button-wrapper input[type=submit] {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 10px 30px;
  background-color: transparent;
  border: 0;
  margin: 0;
}
.newsletter-bg .button-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #B3D454;
  border-radius: 10px;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.newsletter-bg .button-wrapper::after {
  content: ">";
  position: absolute;
  opacity: 0;
  transition: 0.5s 0s;
  color: #fff;
  right: 5px;
  top: 10px;
}
.newsletter-bg .button-wrapper:hover, .newsletter-bg .button-wrapper:focus {
  color: #fff;
  text-decoration: none;
}
.newsletter-bg .button-wrapper:hover::before, .newsletter-bg .button-wrapper:focus::before {
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
  background-color: #010101;
}
.newsletter-bg .button-wrapper:hover::after, .newsletter-bg .button-wrapper:focus::after {
  content: ">";
  opacity: 1;
  transition: 0.5s 0.4s;
}

.general-main-section {
  padding-top: 20px;
}

.investors-main-section {
  position: relative;
  background-size: cover;
  display: flex;
  align-items: center;
}
.investors-main-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.investors-main-section .scroll {
  position: absolute;
  left: 15px;
  transform-origin: top left;
  opacity: 1;
  transform: rotate(-90deg) translateX(0);
  bottom: 40px;
}
.investors-main-section .scroll::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #B3D454;
  border-left: 2px solid #B3D454;
  left: -20px;
  transform: rotate(45deg);
  top: 3px;
  animation-name: scroll;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.investors-main-section .scroll.hide-scroll {
  display: none;
}
.investors-main-section .page-map {
  position: fixed;
  counter-reset: anchor;
  left: 15px;
}
.investors-main-section .single-anchor {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 20px;
  min-height: 20px;
  max-width: 70px;
  font-size: 0.1em;
  color: transparent;
  transition: 0.4s;
}
.investors-main-section .single-anchor::before {
  counter-increment: anchor;
  content: "0" counter(anchor);
  display: block;
  color: #835AA4;
  font-weight: 700;
  font-size: 0.1em;
  opacity: 0;
  transition: 0.4s;
}
.investors-main-section .single-anchor span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #B3D454;
  left: 0;
  top: 5px;
}
.investors-main-section .single-anchor.active {
  font-size: 0.85em;
  color: #B3D454;
}
.investors-main-section .single-anchor.active::before {
  font-size: 1rem;
  opacity: 1;
}
.investors-main-section .single-anchor.active span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  background-color: #B3D454;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.investors-main-section h1 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.investors-main-section h1::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  border-radius: 5px;
}
.investors-main-section .buttons {
  position: relative;
  max-width: 400px;
}
.investors-main-section .buttons::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  border: 2px solid #B3D454;
  border-right: 0;
  top: 0;
  left: 0;
}
.investors-main-section .buttons::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  border: 2px solid #B3D454;
  border-left: 0;
  top: 0;
  right: 0;
}
.investors-main-section .buttons .button {
  margin: 50px 50px;
}

.investors-docs-section {
  margin: 80px 0;
}
.investors-docs-section h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.investors-docs-section h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  border-radius: 5px;
  right: 0;
  margin: 0 auto;
}
.investors-docs-section .texts {
  padding: 0 15px;
}
.investors-docs-section .center {
  margin-bottom: 50px;
}
.investors-docs-section .image {
  padding-top: 90%;
  position: relative;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}
.investors-docs-section .image .button-wrapper {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 30px;
}
.investors-docs-section .image .button {
  margin: 0;
  max-width: calc(100% - 50px);
}
.investors-docs-section .image::before {
  content: "";
  position: absolute;
  background-color: rgba(1, 1, 1, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.investors-docs-section .image::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.3s;
  transform: scale(0);
}
.investors-docs-section .image.viewed::after {
  transform: scale(1);
}

.investors-about-section {
  margin: 150px 0;
}
.investors-about-section .content > :last-child {
  margin-bottom: 0;
}
.investors-about-section .image-wrapper {
  position: relative;
  display: inline-block;
}
.investors-about-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.investors-about-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.investors-about-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.investors-about-section .image-wrapper.viewed::after {
  transform: scale(1);
}
.investors-about-section .green-box {
  border: 2px solid #B3D454;
  padding: 70px;
  position: relative;
  max-width: none;
  margin-top: 70px;
}
.investors-about-section .green-box::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  bottom: calc(100% - 50px);
  left: 70px;
  border-radius: 5px;
}

.newsletter-section {
  margin: 80px 0;
}

.investors-contact-section {
  background-color: #010101;
  margin-bottom: 50px;
  padding: 80px 0;
}
.investors-contact-section a {
  color: #fff;
}
.investors-contact-section .green-box {
  border: 2px solid #B3D454;
  padding: 50px;
  position: relative;
  max-width: none;
  margin-top: 30px;
}
.investors-contact-section .green-box svg {
  margin-bottom: 15px;
}

.announcements-section .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.announcements-section .single-announcement {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  margin-top: 40px;
  max-width: 280px;
}
.announcements-section .single-announcement a {
  display: inline-block;
  margin-top: 25px;
  color: #835AA4;
  text-decoration: underline;
}
.announcements-section .single-announcement .bottom {
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.a11y-toolbar {
  top: 170px;
}

.career-top-section {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.career-top-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 1s;
  background-image: linear-gradient(90deg, rgba(44, 50, 63, 0.95), rgba(44, 50, 63, 0.4));
}
.career-top-section .content {
  max-width: 1000px;
}

.career-filter-wrapper {
  padding-bottom: 100px;
}
.career-filter-wrapper ul {
  padding: 0;
}
.career-filter-wrapper form > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
}
.career-filter-wrapper form > ul > li > ul > li {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 0;
  transition: 0.3s;
  margin: 10px 20px 20px 0;
}
.career-filter-wrapper form > ul > li > ul > li label {
  position: relative;
  z-index: 2;
  color: #835AA4;
  padding: 0;
  padding: 10px 20px !important;
  cursor: pointer;
}
.career-filter-wrapper form > ul > li > ul > li input {
  display: none;
}
.career-filter-wrapper form > ul > li > ul > li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #835AA4;
  border-radius: 10px;
  left: 0;
  top: 0;
  transition: 0.5s;
  box-shadow: -2px 1px 10px rgba(0, 0, 0, 0.1);
}
.career-filter-wrapper form > ul > li > ul > li::after {
  content: ">";
  position: absolute;
  opacity: 0;
  transition: 0.5s 0s;
  color: #835AA4;
  padding: 10px 0;
  right: 5px;
}
.career-filter-wrapper form > ul > li > ul > li:hover, .career-filter-wrapper form > ul > li > ul > li:focus {
  color: #fff;
  text-decoration: none;
}
.career-filter-wrapper form > ul > li > ul > li:hover::before, .career-filter-wrapper form > ul > li > ul > li:focus::before {
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
}
.career-filter-wrapper form > ul > li > ul > li:hover::after, .career-filter-wrapper form > ul > li > ul > li:focus::after {
  content: ">";
  opacity: 1;
  transition: 0.5s 0.4s;
}
.career-filter-wrapper form > ul > li > ul > li.sf-option-active::before {
  border-color: #B3D454;
  background-color: #B3D454;
}
.career-filter-wrapper form > ul > li > ul > li.sf-option-active::after {
  color: #fff;
}
.career-filter-wrapper form > ul > li > ul > li.sf-option-active label {
  color: #fff;
}

.available-careers-section .single-career-wrapper {
  box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px 30px;
}
.available-careers-section .single-career-wrapper .visible-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.available-careers-section .single-career-wrapper .visible-part h3 {
  margin-top: 10px;
  position: relative;
  padding-top: 10px;
  flex: 1;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.available-careers-section .single-career-wrapper .visible-part h3::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  bottom: 100%;
  left: 0;
  border-radius: 5px;
}
.available-careers-section .single-career-wrapper .visible-part .buttons {
  display: flex;
  align-items: center;
  padding: 0;
}
.available-careers-section .single-career-wrapper .visible-part .buttons .button {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 55px;
}
.available-careers-section .single-career-wrapper .visible-part .plus {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}
.available-careers-section .single-career-wrapper .visible-part .plus::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #835AA4;
  border-radius: 5px;
  bottom: 50%;
  transform: translate(0, 50%);
  left: 0;
  transition: 0.4s;
}
.available-careers-section .single-career-wrapper .visible-part .plus::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #835AA4;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 0.4s;
}
.available-careers-section .single-career-wrapper .hidden-part {
  display: none;
}
.available-careers-section .single-career-wrapper .hidden-row {
  padding-top: 50px;
}
.available-careers-section .single-career-wrapper .form-side {
  box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  margin-bottom: 50px;
}
.available-careers-section .single-career-wrapper form {
  margin-top: 30px;
}
.available-careers-section .single-career-wrapper form label {
  margin-top: 10px;
  width: 100%;
}
.available-careers-section .single-career-wrapper form input:not([type=submit]), .available-careers-section .single-career-wrapper form textarea {
  border: 0;
  border-bottom: 3px solid #010101;
  transition: 0.3s;
  width: 100%;
}
.available-careers-section .single-career-wrapper form input:not([type=submit]):hover, .available-careers-section .single-career-wrapper form textarea:hover {
  background-color: #fafafa;
}
.available-careers-section .single-career-wrapper form input:not([type=submit]):focus, .available-careers-section .single-career-wrapper form textarea:focus {
  background-color: #f1f1f1;
  outline: 0;
}
.available-careers-section .single-career-wrapper form input[type=file] {
  margin-top: 10px;
  font-size: 0.85rem;
}
.available-careers-section .single-career-wrapper form input.hidden {
  display: none;
}
.available-careers-section .single-career-wrapper form textarea {
  height: 130px;
}
.available-careers-section .single-career-wrapper form .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.available-careers-section .single-career-wrapper form .wpcf7-list-item {
  margin-left: 1.5em;
}
.available-careers-section .single-career-wrapper form .wpcf7-list-item label {
  margin: 0;
  padding-right: 25px;
}
.available-careers-section .single-career-wrapper form input[type=checkbox] {
  width: auto;
  margin-left: -1.5em;
  margin-right: 0.3em;
}
.available-careers-section .single-career-wrapper form .button-wrapper {
  position: relative;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
.available-careers-section .single-career-wrapper form .button-wrapper input[type=submit] {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  background-color: transparent;
  border: 0;
}
.available-careers-section .single-career-wrapper form .button-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #B3D454;
  border-radius: 10px;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.available-careers-section .single-career-wrapper form .button-wrapper::after {
  content: ">";
  position: absolute;
  opacity: 0;
  transition: 0.5s 0s;
  color: #fff;
  right: 5px;
  top: 10px;
}
.available-careers-section .single-career-wrapper form .button-wrapper:hover, .available-careers-section .single-career-wrapper form .button-wrapper:focus {
  color: #fff;
  text-decoration: none;
}
.available-careers-section .single-career-wrapper form .button-wrapper:hover::before, .available-careers-section .single-career-wrapper form .button-wrapper:focus::before {
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
}
.available-careers-section .single-career-wrapper form .button-wrapper:hover::after, .available-careers-section .single-career-wrapper form .button-wrapper:focus::after {
  content: ">";
  opacity: 1;
  transition: 0.5s 0.4s;
}
.available-careers-section .single-career-wrapper form .button-wrapper .ajax-loader {
  position: absolute;
}
.available-careers-section .single-career-wrapper form .button-wrapper .wpcf7-spinner {
  position: absolute;
}
.available-careers-section .single-career-wrapper.opened .visible-part .button {
  display: none;
}
.available-careers-section .single-career-wrapper.opened .visible-part .plus::after {
  height: 0;
}

.career-contact-section {
  margin-top: 100px;
}
.career-contact-section .contact-wrapper {
  padding: 50px 25px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.career-contact-section .contact-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, rgba(16, 29, 65, 0.8), rgba(160, 158, 205, 0.3));
}
.career-contact-section .contact-wrapper .content, .career-contact-section .contact-wrapper .contact-methods {
  position: relative;
}
.career-contact-section .contact-wrapper .contact-methods {
  margin-top: 50px;
  padding: 30px 15px;
  display: flex;
  border: 1px solid #B3D454;
}
.career-contact-section .contact-wrapper .contact-methods .contact-method {
  margin: 0 15px;
  color: #fff;
}
.career-contact-section .contact-wrapper .contact-methods .contact-method .icon {
  height: 50px;
  width: 50px;
  margin: 0 auto 15px;
}
.career-contact-section .contact-wrapper .contact-methods .contact-method .icon svg {
  width: 100%;
  height: 100%;
}
.career-contact-section .contact-wrapper .contact-methods .contact-method .icon svg * {
  transition: 0.4s;
}
.career-contact-section .contact-wrapper .contact-methods .contact-method strong {
  margin-right: 10px;
}
.career-contact-section .contact-wrapper .contact-methods .contact-method:hover .icon svg * {
  fill: #fff;
}

.career-recommendations-section {
  margin-top: 150px;
}

.career-recommendations {
  margin-top: 80px;
  margin-bottom: 50px;
}
.career-recommendations .image-wrapper {
  position: relative;
  width: 385px;
  max-width: 90%;
  margin: 0 auto 30px;
}
.career-recommendations .image-wrapper .image {
  width: 100%;
  padding-top: 83%;
  background-size: cover;
  background-position: center;
}
.career-recommendations .image-wrapper .image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, rgba(16, 29, 65, 0.4), rgba(160, 158, 205, 0.1));
}
.career-recommendations .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.career-recommendations .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
  z-index: 5;
}
.career-recommendations .image-wrapper.viewed::before {
  transform: scale(0);
}
.career-recommendations .image-wrapper.viewed::after {
  transform: scale(1);
}
.career-recommendations .texts {
  position: relative;
  padding: 30px;
}
.career-recommendations .texts > * {
  max-width: 750px;
  margin: 0 auto;
}
.career-recommendations .texts::before {
  content: "";
  top: 0;
  position: absolute;
  width: 20%;
  height: 100%;
  left: 0;
  border: 2px solid #010101;
  border-right: 0;
}
.career-recommendations .texts::after {
  content: "";
  top: 0;
  position: absolute;
  width: 20%;
  height: 100%;
  right: 0;
  border: 2px solid #010101;
  border-left: 0;
}
.career-recommendations .slick-arrow {
  position: absolute;
  width: 35px;
  height: 60px;
  top: 150px;
  font-size: 0;
  background-color: transparent;
  border: 0;
  z-index: 2;
}
.career-recommendations .slick-arrow::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  right: 0;
  top: 0;
}
.career-recommendations .slick-arrow.slick-next {
  right: calc(50% - 300px);
}
.career-recommendations .slick-arrow.slick-next::after {
  border-right: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(-45deg);
  transform-origin: bottom center;
}
.career-recommendations .slick-arrow.slick-prev {
  left: calc(50% - 300px);
}
.career-recommendations .slick-arrow.slick-prev::after {
  border-left: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.career-recommendations .slick-dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 100%;
  height: 15px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  display: flex;
  width: 100%;
  max-width: 300px;
  left: 0;
  right: 0;
}
.career-recommendations .slick-dots li button {
  background-color: #eee;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
}
.career-recommendations .slick-dots li.slick-active button {
  background-color: #B3D454;
}

.why-us-section {
  position: relative;
  margin-top: 200px;
}
.why-us-section::before {
  content: "";
  z-index: 5;
  position: absolute;
  width: 20px;
  height: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -70px;
  background-color: #B3D454;
}
.why-us-section .image-part {
  padding: 300px 0 50px;
  position: relative;
}
.why-us-section .image-part::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, rgba(1, 1, 1, 0.7), rgba(1, 1, 1, 0.1));
}

.career-texts {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 100px;
  margin-bottom: 200px;
}
.career-texts .single-text {
  position: relative;
  width: 33%;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.career-texts .single-text h3 {
  transform: rotate(-90deg) translate(100%, 0);
  transform-origin: right bottom;
  position: absolute;
  right: calc(100% - 100px);
  bottom: 0;
  text-align: center;
  margin-bottom: 0;
}
.career-texts .single-text .content {
  position: relative;
  padding: 50px 20px;
  padding-left: 30px;
  border-left: 20px solid #B3D454;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-texts .single-text .content *:last-child {
  margin-bottom: 0;
}
.career-texts .single-text .content::after {
  content: "";
  top: 0;
  position: absolute;
  width: 20%;
  height: 100%;
  right: 0;
  border: 2px solid #010101;
  border-left: 0;
}

.career-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -10px 50px;
}
.career-gallery .gallery-image-wrapepr {
  flex-grow: 1;
  min-width: 33.33%;
  height: 15vw;
  padding: 0 10px;
  margin-bottom: 20px;
  position: relative;
}
.career-gallery .gallery-image-wrapepr:nth-child(4) {
  min-width: 66.66%;
}
.career-gallery .gallery-image {
  background-size: cover;
  background-position: center;
  position: absolute;
  width: calc(100% - 20px);
  height: 100%;
  top: 0;
  left: 10px;
}

.about-top-section {
  padding: 50px 0 100px;
  margin-bottom: 30px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.about-top-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 1s;
  background-image: linear-gradient(90deg, rgba(44, 50, 63, 0.95), rgba(44, 50, 63, 0.6));
}
.about-top-section .content {
  margin-top: 90px;
  position: relative;
  padding: 30px;
  max-width: 900px;
}
.about-top-section .content::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid #B3D454;
  border-right: 0;
}

.story-section {
  margin: 150px 0;
}
.story-section .content > :last-child {
  margin-bottom: 0;
}
.story-section .image-wrapper {
  position: relative;
  display: inline-block;
}
.story-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.story-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.story-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.story-section .image-wrapper.viewed::after {
  transform: scale(1);
}
.story-section .second-row {
  margin-top: 150px;
  position: relative;
}
.story-section .second-row::before {
  content: "";
  position: absolute;
  width: 30vw;
  height: 100%;
  left: calc((100vw - 1200px) / -2);
  top: 0;
  background-size: cover;
  background-position: center;
}
.story-section .second-row .image-wrapper {
  margin: 50px 0;
}
.story-section .second-row .image-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-section .second-row .text-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-section .second-row .text-side::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  right: -30px;
  top: 0;
  border: 2px solid #B3D454;
  border-left: 0;
}
.story-section .second-row .text-side .content {
  padding: 30px;
}

.team-section {
  position: relative;
  margin-top: 200px;
}
.team-section::before {
  content: "";
  z-index: 5;
  position: absolute;
  width: 20px;
  height: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -70px;
  background-color: #B3D454;
}
.team-section .image-part {
  height: 34vw;
  position: relative;
  background-position: center;
  background-size: cover;
  margin-bottom: 150px;
}
.team-section .image-part::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, rgba(1, 1, 1, 0.7), rgba(1, 1, 1, 0.1));
}
.team-section .image-part::after {
  content: "";
  z-index: 5;
  position: absolute;
  width: 20px;
  height: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -40px;
  background-color: #B3D454;
}
.team-section .linkedin-link {
  position: absolute;
  background-color: #B3D454;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  padding: 10px;
  z-index: 10;
  border-radius: 10px;
  display: flex;
}
.team-section .linkedin-link svg {
  width: 100%;
  height: 100%;
}
.team-section .linkedin-link svg path {
  fill: #fff;
}
.team-section .row {
  justify-content: center;
  margin-bottom: 100px;
  margin-top: 70px;
}
.team-section .single-member {
  margin-bottom: 70px;
}
.team-section .single-member .title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.team-section .single-member .title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
}
.team-section .image-wrapper {
  position: relative;
  width: 385px;
  max-width: 90%;
  margin: 0 auto 30px;
}
.team-section .image-wrapper .image {
  width: 100%;
  padding-top: 83%;
  background-size: cover;
  background-position: center;
}
.team-section .image-wrapper .image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, rgba(16, 29, 65, 0.4), rgba(160, 158, 205, 0.1));
}
.team-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.team-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
  z-index: 5;
}
.team-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.team-section .image-wrapper.viewed::after {
  transform: scale(1);
}

.top-section-height .scroll {
  position: absolute;
  left: 15px;
  transform-origin: top left;
  opacity: 1;
  transform: rotate(-90deg) translateX(0);
  bottom: 40px;
}
.top-section-height .scroll::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #B3D454;
  border-left: 2px solid #B3D454;
  left: -20px;
  transform: rotate(45deg);
  top: 3px;
  animation-name: scroll;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.top-section-height .scroll.hide-scroll {
  display: none;
}

.page-wrap.co-driver, .page-wrap.vu-drive {
  font-size: 1.3rem;
}
.page-wrap.co-driver .small-text, .page-wrap.vu-drive .small-text {
  font-size: 0.85em;
}
.page-wrap.co-driver .medium-text, .page-wrap.vu-drive .medium-text {
  font-size: 1.316em; /* 25/19 */
}
.page-wrap.co-driver .big-text, .page-wrap.vu-drive .big-text {
  font-size: 1.684em; /* 32/19 */
}
.page-wrap.co-driver h1, .page-wrap.vu-drive h1 {
  margin-top: 20px;
  font-size: 3.5rem;
}

.codriver-main-section {
  background-color: rgb(0, 0, 0);
  min-height: 100vh;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 0px;
}
.codriver-main-section .text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.codriver-main-section .text-side .content-wrapper {
  border-left: 10px solid #B3D454;
  padding-left: 15px;
}
.codriver-main-section .logo-circle {
  background-color: #fff;
  margin-top: 30px;
  border-radius: 50%;
  padding: 50px;
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.codriver-main-section .logo-circle .button {
  margin: 60px 0 30px 0;
}

.codriver-dms-section {
  margin: 100px 0 130px;
}
.codriver-dms-section .content {
  max-width: 900px;
}
.codriver-dms-section .images {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.codriver-dms-section .car-illus {
  margin-left: -70px;
  margin-right: -100px;
}
.codriver-dms-section .image-wrapper {
  position: relative;
}
.codriver-dms-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.codriver-dms-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.codriver-dms-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.codriver-dms-section .image-wrapper.viewed::after {
  transform: scale(1);
}
.codriver-dms-section .bullets {
  margin: 100px 0 130px;
}
.codriver-dms-section .bullets .content {
  position: relative;
  margin-top: 50px;
  padding-top: 15px;
}
.codriver-dms-section .bullets .content::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #B3D454;
  bottom: calc(100% - 50px);
  left: 0;
  top: 0;
  border-radius: 5px;
}

.codriver-oms-section {
  margin: 100px 0 130px;
}
.codriver-oms-section .content {
  max-width: 900px;
}
.codriver-oms-section .bullets {
  margin-top: 50px;
}
.codriver-oms-section .single-bullet {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.codriver-oms-section .single-bullet .svg-wrapper {
  margin-right: 15px;
}

.codriver-sdk-section {
  margin: 100px 0 130px;
}
.codriver-sdk-section .content {
  max-width: 900px;
}
.codriver-sdk-section .bullets {
  margin-top: 50px;
}
.codriver-sdk-section .single-bullet {
  margin-bottom: 50px;
}
.codriver-sdk-section .single-bullet .svg-wrapper {
  position: relative;
  margin-bottom: 50px;
}
.codriver-sdk-section .single-bullet .svg-wrapper::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #B3D454;
  left: 0;
  right: 0;
  bottom: -35px;
  border-radius: 5px;
  margin: 0 auto;
}

.vudrive-about-section {
  padding: 100px 0;
}
.vudrive-about-section .content {
  max-width: 500px;
}
.vudrive-about-section img.logo {
  margin-top: 40px;
  width: 250px;
  margin-bottom: 70px;
}
.vudrive-about-section .image-wrapper {
  position: relative;
}
.vudrive-about-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.vudrive-about-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.vudrive-about-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.vudrive-about-section .image-wrapper.viewed::after {
  transform: scale(1);
}

.vudrive-features-section {
  position: relative;
  margin: 100px 0;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}
.vudrive-features-section::before {
  content: "";
  position: absolute;
  background: #6C7490;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.vudrive-features-section h2 {
  margin-bottom: 70px;
}
.vudrive-features-section .bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.vudrive-features-section .single-bullet {
  width: 20%;
  margin-bottom: 50px;
}
.vudrive-features-section .single-bullet .content {
  margin: 0 auto;
  width: 200px;
  max-width: 100%;
}
.vudrive-features-section .single-bullet .medium-text {
  position: relative;
  margin-top: 30px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.vudrive-features-section .single-bullet .medium-text::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #B3D454;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  margin: 0 auto;
}

.vudrive-capabilities-section .capabilities {
  margin-top: 50px;
}
.vudrive-capabilities-section .single-capability {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}
.vudrive-capabilities-section .single-capability .medium-text {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.vudrive-capabilities-section .single-capability .medium-text::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 4px;
  background: #B3D454;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  margin: 0 auto;
}
.vudrive-capabilities-section .single-capability .bullet {
  min-height: 4em;
  border-bottom: 2px solid #eee;
  border-radius: 5px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  max-width: 100%;
  width: 300px;
  padding: 10px 0;
  margin: 0 auto;
}
.vudrive-capabilities-section .image-wrapper {
  position: relative;
  margin-bottom: 50px;
}
.vudrive-capabilities-section .image-wrapper::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.vudrive-capabilities-section .image-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.vudrive-capabilities-section .image-wrapper.viewed::before {
  transform: scale(0);
}
.vudrive-capabilities-section .image-wrapper.viewed::after {
  transform: scale(1);
}

.vudrive-examples {
  margin-top: 100px;
}
.vudrive-examples .single-example-wrapper {
  margin-top: 30px;
  margin-bottom: 50px;
}
.vudrive-examples .single-example {
  color: #010101;
}
.vudrive-examples .single-example .video-thumbnail {
  position: relative;
  padding-top: 40%;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}
.vudrive-examples .single-example .video-thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #B3D454;
  left: 0;
  top: 0;
  opacity: 0.05;
  transition: 0.5s;
}
.vudrive-examples .single-example .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(1, 1, 1, 0.8);
  transform: translate(-50%, -50%);
}
.vudrive-examples .single-example .video-thumbnail .play-button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #B3D454;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vudrive-examples .single-example:hover {
  text-decoration: none;
}
.vudrive-examples .single-example:hover .video-thumbnail::before {
  opacity: 0.3;
}

.vudrive-distribute {
  background-image: linear-gradient(90deg, #835aa4, #400671);
  padding: 70px 0;
}
.vudrive-distribute h3 {
  margin-top: 50px;
}
.vudrive-distribute .continent {
  background-color: #fff;
  padding: 30px 30px;
  margin: 30px 0 30px;
}
.vudrive-distribute .continent .top-part {
  display: flex;
  max-width: 1060px;
  cursor: pointer;
}
.vudrive-distribute .continent .continent-name {
  flex: 1;
  margin-right: 20px;
  position: relative;
  padding-top: 10px;
}
.vudrive-distribute .continent .continent-name::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #B3D454;
  bottom: 100%;
  left: 0;
  border-radius: 5px;
}
.vudrive-distribute .continent .plus {
  position: relative;
  align-self: center;
  display: block;
  width: 30px;
  height: 30px;
}
.vudrive-distribute .continent .plus::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #835AA4;
  border-radius: 5px;
  bottom: 50%;
  transform: translate(0, 50%);
  left: 0;
  transition: 0.4s;
}
.vudrive-distribute .continent .plus::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #835AA4;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 0.4s;
}
.vudrive-distribute .continent .hidden-part {
  display: none;
}
.vudrive-distribute .continent.opened .plus::after {
  height: 0;
}
.vudrive-distribute .continent .country-name {
  position: relative;
  margin-bottom: 15px;
  margin-top: 30px;
}
.vudrive-distribute .continent .country-name::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: rgba(1, 1, 1, 0.2);
  top: 100%;
  left: 0;
  border-radius: 5px;
}
.vudrive-distribute .continent .distributor {
  margin-bottom: 30px;
}
.vudrive-distribute .continent .detail {
  font-size: 0.8em;
}
.vudrive-distribute .continent .more-details {
  margin-top: 10px;
}

.page-wrap.news .news-types .button {
  margin: 10px 20px 20px 0;
}
.page-wrap.news .news-types .button::before {
  box-shadow: -2px 1px 10px rgba(0, 0, 0, 0.1);
}
.page-wrap.news .news-types .button:not(.active) {
  color: #835AA4;
  cursor: pointer;
}
.page-wrap.news .news-types .button:not(.active)::before {
  background-color: #fff;
  border: 1px solid #835AA4;
}
.page-wrap.news .news-types .button:not(.active)::after {
  color: #835AA4;
}
.page-wrap.news .news-types .button.active::before {
  background-color: #B3D454;
}
.page-wrap.news .news-section {
  background: transparent;
}
.page-wrap.news .news-row {
  position: relative;
}
.page-wrap.news .news-row::before {
  content: "";
  position: absolute;
  width: 100px;
  height: calc(100% + 100px);
  border: 4px solid #B3D454;
  border-right: 0;
  right: 100%;
  top: -30px;
}
.page-wrap.news .single-news-wrapper {
  margin-bottom: 30px;
}
.page-wrap.news .single-news {
  box-shadow: -2px 1px 10px rgba(0, 0, 0, 0.1);
}
.page-wrap.news .single-news .bottom {
  border-bottom: 0;
}
.page-wrap.news .pagination {
  position: absolute;
  width: 100%;
  top: 100%;
  justify-content: center;
  align-items: center;
}
.page-wrap.news .pagination .page-numbers {
  cursor: pointer;
}
.page-wrap.news .pagination .page-numbers:focus {
  outline: 0 !important;
}
.page-wrap.news .pagination .page-numbers.next, .page-wrap.news .pagination .page-numbers.prev {
  font-size: 1.2rem;
  margin: 0 15px;
}
.page-wrap.news .pagination .page-numbers:not(.next):not(.prev) {
  background-color: #eee;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
  font-size: 0;
}
.page-wrap.news .pagination .page-numbers:not(.next):not(.prev).current {
  background-color: #B3D454;
}

.awards-section {
  margin: 100px 0;
}
.awards-section .row {
  margin-top: 50px;
}
.awards-section .image-wrapper {
  padding: 50px;
}
.awards-section img {
  filter: grayscale(1);
}

.page-wrap.blog .post-filter form > ul {
  padding: 0;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}
.page-wrap.blog .post-filter form > ul > li {
  margin-right: 15px;
}
.page-wrap.blog .post-filter form > ul .sf-input-text {
  width: 250px;
  border: 0;
  border-bottom: 1px solid #010101;
}
.page-wrap.blog .post-filter form > ul .sf-field-submit {
  position: relative;
  display: inline-block;
  transition: 0.3s;
  padding: 0;
}
.page-wrap.blog .post-filter form > ul .sf-field-submit input[type=submit] {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  background-color: transparent;
  border: 0;
}
.page-wrap.blog .post-filter form > ul .sf-field-submit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #B3D454;
  border-radius: 10px;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.page-wrap.blog .post-filter form > ul .sf-field-submit::after {
  content: ">";
  position: absolute;
  opacity: 0;
  transition: 0.5s 0s;
  color: #fff;
  right: 5px;
  top: 10px;
}
.page-wrap.blog .post-filter form > ul .sf-field-submit:hover, .page-wrap.blog .post-filter form > ul .sf-field-submit:focus {
  color: #fff;
  text-decoration: none;
}
.page-wrap.blog .post-filter form > ul .sf-field-submit:hover::before, .page-wrap.blog .post-filter form > ul .sf-field-submit:focus::before {
  transform: perspective(600px) rotateY(-45deg) scale(1.4, 1.1);
}
.page-wrap.blog .post-filter form > ul .sf-field-submit:hover::after, .page-wrap.blog .post-filter form > ul .sf-field-submit:focus::after {
  content: ">";
  opacity: 1;
  transition: 0.5s 0.4s;
}
.page-wrap.blog .posts-section {
  padding-top: 100px;
  background: transparent;
}
.page-wrap.blog .posts-wrapper {
  position: relative;
}
.page-wrap.blog .posts-wrapper::before {
  content: "";
  position: absolute;
  width: 100px;
  height: calc(100% + 100px);
  border: 4px solid #B3D454;
  border-right: 0;
  right: calc(100% + 15px);
  top: -30px;
}
.page-wrap.blog .single-post-wrapper {
  margin-bottom: 30px;
}
.page-wrap.blog .single-post-wrapper .thumbnail {
  box-shadow: -2px 1px 10px rgba(0, 0, 0, 0.1);
  padding-top: 100%;
  position: relative;
}
.page-wrap.blog .single-post-wrapper .thumbnail::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.page-wrap.blog .single-post-wrapper .thumbnail::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.page-wrap.blog .single-post-wrapper .thumbnail.viewed::before {
  transform: scale(0);
}
.page-wrap.blog .single-post-wrapper .thumbnail.viewed::after {
  transform: scale(1);
}
.page-wrap.blog .single-post-wrapper .texts {
  height: 100%;
  box-shadow: -2px 1px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.page-wrap.blog .single-post-wrapper .texts h3 {
  color: #010101;
}
.page-wrap.blog .single-post-wrapper .texts h3:hover {
  text-decoration: none;
}
.page-wrap.blog .single-post-wrapper .texts .date {
  margin-bottom: 10px;
}
.page-wrap.blog .single-post-wrapper .texts a:hover {
  text-decoration: none;
}
.page-wrap.blog .pagination {
  padding-top: 30px;
  position: absolute;
  width: 100%;
  top: 100%;
  justify-content: center;
  align-items: center;
}
.page-wrap.blog .pagination .page-numbers {
  cursor: pointer;
}
.page-wrap.blog .pagination .page-numbers:focus {
  outline: 0 !important;
}
.page-wrap.blog .pagination .page-numbers.next, .page-wrap.blog .pagination .page-numbers.prev {
  font-size: 1.2rem;
  margin: 0 15px;
}
.page-wrap.blog .pagination .page-numbers:not(.next):not(.prev) {
  background-color: #eee;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
  font-size: 0;
}
.page-wrap.blog .pagination .page-numbers:not(.next):not(.prev).current {
  background-color: #B3D454;
}

.post-page .post-content-section {
  margin-top: 100px;
}
.post-page .post-content-section h1 {
  max-width: 800px;
}
.post-page .post-content-section h2 {
  color: #835AA4;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1em;
  margin-top: 2em;
}
.post-page .post-content-section h2::after {
  content: none;
}
.post-page .post-content-section h3 {
  color: #835AA4;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1em;
  margin-top: 2em;
}
.post-page .post-content-section .content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  max-width: 1000px;
}
.post-page .post-content-section .content::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #B3D454;
  top: 100%;
  left: 0;
  border-radius: 5px;
}
.post-page .post-content-section .content ol ::marker {
  font-weight: 700;
}
.post-page .post-content-section .content p {
  margin-bottom: 1em;
}
.post-page .post-content-section .content .wp-block-image {
  margin: 50px 0;
}
.post-page .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post-page .buttons .button {
  margin: 20px 30px 20px 0;
}
.post-page .buttons .share-options {
  display: none;
  z-index: 5555555;
}
.post-page .buttons .share-options .addtoany_shortcode .a2a_kit {
  display: flex;
}
.post-page .buttons .share-options .addtoany_shortcode a {
  display: flex;
  padding: 0 10px;
}
.post-page .buttons .share-options .addtoany_shortcode img {
  width: 24px;
  height: 24px;
}

.technology-top-section {
  background-size: cover;
  background-position: right center;
  padding: 50px 0;
}
.technology-top-section .content {
  max-width: 600px;
}

.revoution-section {
  margin: 100px 0;
}
.revoution-section .row {
  margin-top: 50px;
  margin-bottom: 80px;
}
.revoution-section .paragraph-wrapper {
  margin-bottom: 50px;
  display: flex;
}
.revoution-section .paragraph-wrapper .content {
  height: 100%;
  border-left: 15px solid #B3D454;
  padding: 10px 15px 10px 15px;
  max-width: 400px;
}

.tech-background-section {
  padding: 100px 0;
  margin: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tech-background-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05));
}
.tech-background-section .content {
  border-right: 15px solid #B3D454;
  padding: 30px;
  font-size: 2rem;
  text-align: right;
}

.video-section a {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 45%;
}
.video-section a::before {
  content: "";
  position: absolute;
  background-color: rgba(179, 212, 84, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.7s;
  mix-blend-mode: screen;
}
.video-section a::after {
  content: "";
  position: absolute;
  border: 2px solid #B3D454;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  transition: 0.7s 0.7s;
  transform: scale(0);
}
.video-section a.viewed::before {
  transform: scale(0);
}
.video-section a.viewed::after {
  transform: scale(1);
}
.video-section a .button {
  position: absolute;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.codriver-tech-section {
  margin: 100px 0;
}
.codriver-tech-section img {
  margin-top: 10px;
  margin-bottom: 10px;
}
.codriver-tech-section .content {
  padding: 10px 0 10px 30px;
  border-left: 15px solid #B3D454;
  max-width: 750px;
  font-size: 20px;
  font-weight: normal;
}
.codriver-tech-section .button {
  margin-bottom: 0;
}

.tech-solution-section {
  position: relative;
  background-position: center;
  background-size: cover;
  margin: 100px 0;
  padding: 80px 0;
}
.tech-solution-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(131, 90, 164, 0.6));
}
.tech-solution-section h2 {
  font-size: 2em;
  margin-bottom: 80px;
}
.tech-solution-section .content {
  -moz-columns: 2;
       columns: 2;
}
.tech-solution-section .content li {
  margin-bottom: 20px;
}

.home-partners-section .partners-wrapper {
  background-color: #fff;
  color: #010101;
  padding: 20px 0 50px;
  margin-top: 30px;
}
.home-partners-section .partners-wrapper .container {
  padding: 50px 0 30px;
  border-top: 3px solid #835AA4;
  border-bottom: 3px solid #835AA4;
}
.home-partners-section .partners-wrapper .partners {
  position: relative;
  width: 100%;
}
.home-partners-section .partners-wrapper .partners .slick-list {
  width: 100%;
}
.home-partners-section .partners-wrapper .partners .slick-track {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-partners-section .partners-wrapper .partner {
  padding: 0 15px;
}
.home-partners-section .partners-wrapper .partner .logo-wrapper {
  width: 200px;
  height: 150px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 auto;
  transition: 0.3s;
}
.home-partners-section .partners-wrapper .partner .logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
}
.home-partners-section .partners-nav-wrapper {
  position: relative;
}
.home-partners-section .partners-nav-wrapper .slider-nav {
  margin-bottom: 10px;
  margin-top: 20px;
  height: 30px;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 0;
  font-size: 0;
  background-color: transparent;
  border: 0;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0;
  top: 0;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow.slick-next {
  right: calc(50% - 180px);
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow.slick-next::after {
  border-right: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(-45deg);
  transform-origin: bottom center;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow.slick-prev {
  left: calc(50% - 180px);
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow.slick-prev::after {
  border-left: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  bottom: 0;
  height: 15px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  display: flex;
  width: 100%;
  max-width: 300px;
  left: 0;
  right: 0;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-dots li button {
  background-color: #eee;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
}
.home-partners-section .partners-nav-wrapper .slider-nav .slick-dots li.slick-active button {
  background-color: #B3D454;
}

.home-certs-section .certs-wrapper {
  background-color: #fff;
  color: #010101;
  padding: 20px 0 50px;
  margin-top: 30px;
}
.home-certs-section .certs-wrapper .container {
  padding: 50px 0 30px;
  border-top: 3px solid #835AA4;
  border-bottom: 3px solid #835AA4;
}
.home-certs-section .certs-wrapper .certs {
  position: relative;
  width: 100%;
}
.home-certs-section .certs-wrapper .certs .slick-list {
  width: 100%;
}
.home-certs-section .certs-wrapper .certs .slick-track {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-certs-section .certs-wrapper .cert {
  padding: 0 15px;
}
.home-certs-section .certs-wrapper .cert .logo-wrapper {
  width: 200px;
  height: 150px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 auto;
  transition: 0.3s;
}
.home-certs-section .certs-wrapper .cert .logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
}
.home-certs-section .certs-nav-wrapper {
  position: relative;
}
.home-certs-section .certs-nav-wrapper .slider-nav {
  margin-bottom: 10px;
  margin-top: 20px;
  height: 30px;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 0;
  font-size: 0;
  background-color: transparent;
  border: 0;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-arrow::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0;
  top: 0;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-arrow.slick-next {
  right: calc(50% - 180px);
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-arrow.slick-next::after {
  border-right: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(-45deg);
  transform-origin: bottom center;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-arrow.slick-prev {
  left: calc(50% - 180px);
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-arrow.slick-prev::after {
  border-left: 2px solid #B3D454;
  border-bottom: 2px solid #B3D454;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  bottom: 0;
  height: 15px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  display: flex;
  width: 100%;
  max-width: 300px;
  left: 0;
  right: 0;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-dots li button {
  background-color: #eee;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
}
.home-certs-section .certs-nav-wrapper .slider-nav .slick-dots li.slick-active button {
  background-color: #B3D454;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 30px;
  height: 22px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #B3D454;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 9px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 18px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #835AA4;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  opacity: 0;
}

.off-canvas.is-open {
  z-index: 9999;
  background: #835AA4;
  transform: translate(0);
  opacity: 1;
}

.position-left {
  transform: translateY(-100%);
  left: 0;
}

.position-right {
  transform: translateY(100%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}
.mobile_menu_holder .social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.mobile_menu_holder .social a {
  display: block;
  margin: 0 5px;
}
.mobile_menu_holder .social a:hover svg path {
  fill: #010101;
  stroke: #010101;
}
.mobile_menu_holder .social svg {
  width: 20px;
  height: 20px;
}
.mobile_menu_holder .social svg path {
  transition: 0.4s;
  fill: #B3D454;
  stroke: #B3D454;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

ul#mobile-menu li {
  position: relative;
  display: block;
  text-align: center;
}

ul#mobile-menu > li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10px;
  height: 4px;
  border-radius: 5px;
  background-color: #b5b5b5;
}
ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 15px 15px;
  color: #fff;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin-left: 15px;
  margin: 0;
  padding: 0;
}

ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 0.9rem;
}

ul#mobile-menu ul.sub-menu li a:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0px;
  content: ">>";
  font-size: 0.7rem;
  content: none;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #B3D454;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1550px) {
  .home-main-section .container {
    width: calc(100% - 110px);
  }
} /* end of (max-width: 1440px) */
@media only screen and (max-width: 1440px) {
  .fixed-button {
    padding: 35px 25px;
  }
  .fixed-button .main-text {
    font-size: 1rem;
  }
  .fixed-button .hidden {
    margin-top: 3px;
    font-size: 0.85rem;
    width: 80px;
    margin-right: -120px;
  }
  .home-main-section .container > * {
    width: 40%;
  }
  .home-main-section h1 {
    font-size: 2rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  }
  .co-driver-section .bullets .single-bullet h3 {
    font-size: 1.5rem;
  }
  .technology-section {
    padding: 100px 0;
  }
  .technology-section .image-wrapper {
    margin-bottom: 30px;
  }
  .investors-main-section .page-map {
    left: 8px;
  }
  .investors-main-section .page-map .single-anchor {
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .investors-main-section .page-map .single-anchor span {
    width: 15px;
    height: 15px;
  }
  .investors-main-section .page-map .single-anchor.active {
    font-size: 0.65em;
  }
  .investors-main-section .page-map .single-anchor.active span::after {
    left: 1px;
    top: 1px;
    width: 9px;
    height: 9px;
  }
  .investors-main-section .scroll {
    font-size: 0.7em;
  }
  .career-texts .single-text {
    padding: 0px 20px;
  }
  .career-texts .single-text h3 {
    right: calc(100% - 65px);
  }
  .story-section .medium-text {
    font-size: 1.1rem;
  }
  .story-section .second-row .text-side::before {
    right: 15px;
  }
} /* end of (max-width: 1440px) */
@media only screen and (max-width: 1280px) {
  h2 {
    font-size: 2.3rem;
  }
  header .logo img {
    max-height: 50px;
    width: auto;
  }
  .home-main-section .container > * {
    width: 350px;
    max-width: 100%;
  }
  .home-main-section h1 {
    font-size: 1.5rem;
  }
  .investors-main-section .page-map, .investors-main-section .scroll, .codriver-main-section .page-map, .codriver-main-section .scroll {
    display: none;
  }
  .team-section {
    margin-top: 100px;
  }
  .team-section::before {
    width: 10px;
    height: 100px;
    top: -70px;
  }
  .team-section .image-part {
    margin-bottom: 100px;
  }
  .team-section .image-part::after {
    width: 10px;
    height: 50px;
    bottom: -40px;
  }
  .codriver-main-section .medium-text {
    font-size: 1.2rem;
  }
  .codriver-main-section h1 {
    margin-top: 10px;
    font-size: 1.5rem;
  }
} /* end of (max-width: 1280px) */
@media only screen and (max-width: 1200px) {
  .content.big-text {
    font-size: 1.3rem;
  }
  .co-driver-section .bullets .single-bullet {
    width: 33%;
    margin-bottom: 50px;
  }
  .about-section .big-text {
    padding: 50px;
  }
  .about-section .big-text::before {
    bottom: calc(100% - 40px);
    left: 50px;
  }
  .contact-section .container {
    max-width: calc(100% - 30px);
  }
  ul#main-menu > li > a {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
  .codriver-main-section .logo-circle {
    width: 300px;
    height: 300px;
    padding: 30px;
  }
  .codriver-main-section .logo-circle svg {
    max-width: 100%;
    height: auto;
  }
  .vudrive-features-section .single-bullet {
    width: 300px;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  .two-fields-section {
    flex-wrap: wrap;
  }
  .two-fields-section .one-field {
    min-height: 0;
    width: 100%;
    margin-bottom: 20px;
    padding: 50px 30px;
  }
  .two-fields-section .one-field h2 {
    padding-bottom: 20px;
  }
  .two-fields-section .one-field .hidden {
    margin-bottom: 0;
    opacity: 1;
  }
  .career-texts {
    flex-direction: column;
  }
  .career-texts .single-text {
    width: 100%;
    margin-bottom: 30px;
  }
  .career-texts .single-text .content {
    flex: 1;
  }
  .career-texts .single-text .content::after {
    width: 35%;
  }
  .story-section .second-row::before {
    content: none;
  }
  .story-section .content {
    padding-bottom: 30px;
  }
  .page-template-vu-drive_he .page-wrap.vu-drive h1 {
    font-size: 2.2rem;
  }
  .page-template-vu-drive_he .page-wrap.vu-drive .medium-text {
    font-size: 1.11em;
  }
  .page-template-vu-drive_he .codriver-main-section .button {
    font-size: 19px;
  }
  .page-template-vu-drive_he .vudrive-about-section h2 {
    text-align: right;
  }
  .page-template-vu-drive_he .vudrive-about-section h2::after {
    left: auto;
    right: 0;
  }
} /* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .medium-text {
    font-size: 1.2rem;
  }
  .button {
    margin: 20px 20px 20px 0;
  }
  header .social {
    display: none;
  }
  footer {
    position: relative;
    z-index: 5555555;
  }
  footer .container {
    flex-direction: column;
  }
  .fixed-button {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #010101;
    border-radius: 15px 15px 0 0;
    justify-content: center;
    z-index: 9999;
  }
  .fixed-button::before {
    content: none;
  }
  .fixed-button .main-text {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    margin-right: 1em;
    width: 80%;
  }
  .fixed-button .main-text .medium-text {
    display: flex;
  }
  .fixed-button .main-text .medium-text strong {
    margin-left: 0.4em;
  }
  .fixed-button .main-text .small-text {
    max-width: none;
  }
  .fixed-button .hidden {
    width: auto;
    display: flex;
    margin-right: 0;
    width: 20%;
  }
  .fixed-button .hidden * {
    margin-left: 0.4em;
  }
  .home-main-section {
    background-position: center top;
    background-size: 200% auto;
    min-height: 0 !important;
    padding-top: 300px;
    width: 100vw;
  }
  .home-main-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, transparent 200px, #000 350px);
  }
  .home-main-section .bg-element-wrapper {
    left: -59.6vw !important;
    top: 8.1vw;
    height: 30vw;
  }
  .home-main-section .container > * {
    width: 350px;
  }
  .home-main-section.active .bg-element {
    transition: 0.5s 0.5s;
  }
  .home-main-section.active .bg-element svg {
    transition: 0.3s opacity 1s, 0.5s transform 1s;
  }
  .home-main-section.active .container {
    transition: 1s 1s;
  }
  .home-main-section.active .scroll {
    transition: 0.5s transform 1s, 0.5s opacity 1s;
  }
  .co-driver-section .bullets .single-bullet {
    width: 50%;
  }
  .technology-section {
    padding: 50px 0 100px;
  }
  .about-section .flex {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .about-section .big-text {
    padding: 30px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .about-section .big-text::before {
    bottom: auto;
    left: 30px;
    top: calc(100% - 30px);
  }
  .contact-section form {
    margin-bottom: 50px;
  }
  .investors-about-section .content {
    margin-top: 50px;
    font-size: 1em;
  }
  .investors-about-section .green-box {
    padding: 70px 30px 50px;
  }
  .investors-about-section .green-box::before {
    left: 30px;
  }
  .available-careers-section .single-career-wrapper .visible-part h3 {
    font-size: 1.6rem;
  }
  .available-careers-section .single-career-wrapper .visible-part .buttons .button {
    display: none;
  }
  .available-careers-section .single-career-wrapper .visible-part .buttons .plus {
    width: 25px;
    height: 25px;
  }
  .career-contact-section .contact-wrapper .contact-methods {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .career-contact-section .contact-wrapper .contact-methods .contact-method {
    margin-bottom: 50px;
  }
  .career-contact-section .contact-wrapper .contact-methods .contact-method:last-child {
    margin-bottom: 0;
  }
  .career-recommendations .big-text {
    font-size: 1.2rem;
  }
  .career-gallery .gallery-image-wrapepr {
    min-width: 50%;
    height: 23vw;
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .career-gallery .gallery-image-wrapepr .gallery-image {
    width: calc(100% - 10px);
  }
  .story-section .second-row {
    margin-top: 50px;
  }
  .story-section .second-row .image-wrapper {
    display: none;
  }
  .revoution-section {
    margin: 70px 0;
  }
  .revoution-section .paragraph-wrapper {
    margin-bottom: 30px;
  }
  .tech-background-section {
    padding: 70px 0;
  }
  .tech-background-section .content {
    margin: 0;
    border: 0;
    text-align: inherit;
    border-left: 15px solid #B3D454;
    padding-left: 20px;
  }
  .codriver-tech-section img {
    width: 200px;
    display: block;
  }
  .tech-solution-section .content {
    -moz-columns: 1;
         columns: 1;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
@media only screen and (max-width: 640px) {
  .two-fields-section .one-field .content {
    font-size: 1.1rem;
  }
} /* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  footer .container {
    padding: 20px 15px;
  }
  .fixed-button {
    padding: 15px 10px;
  }
  .fixed-button .main-text .small-text {
    font-size: 0.6rem;
  }
  .fixed-button .hidden {
    display: flex;
    flex-direction: column;
  }
  .fixed-button .hidden * {
    margin: 0;
  }
  .fixed-button .hidden .small-text {
    font-size: 0.6rem;
  }
  .fixed-button .medium-text {
    font-size: 1.1rem;
  }
  .page-template-accessibility .main-container {
    padding: 40px 15px;
  }
  .page-template-accessibility h2 {
    font-size: 1.2rem;
  }
  .co-driver-section .bullets .single-bullet .svg-wrapper {
    padding: 10px 40px;
  }
  .co-driver-section .bullets .single-bullet .svg-wrapper svg {
    width: 55px;
    height: 55px;
  }
  .news-section .flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-section .news-slider {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .news-section .news-slider .slick-slide {
    min-height: 0;
  }
  .news-section .news-slider .slick-slide > div {
    min-height: 0;
  }
  .news-section .news-slider .single-news {
    min-height: 0;
  }
  .news-section .news-slider .logo {
    height: 100px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .news-section .news-slider .slick-dots {
    max-width: calc(100% - 50px);
  }
  .news-section .news-slider .slick-arrow.slick-prev {
    left: 0;
  }
  .news-section .news-slider .slick-arrow.slick-next {
    right: 0;
  }
  .contact-section form .flex {
    flex-direction: column;
  }
  .contact-section form .button-wrapper {
    margin-top: 20px;
  }
  .newsletter-bg #mc_embed_signup_scroll {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-bg #mc_embed_signup_scroll > * {
    margin-top: 15px;
  }
  .home-partners-section .partners-wrapper {
    padding: 0px 0 50px;
    margin-top: 11px;
  }
  .home-partners-section .partners-wrapper .partner .logo-wrapper {
    width: 150px;
    height: 100px;
  }
  .home-partners-section .partners-wrapper .container {
    padding: 20px 0 30px;
  }
  .home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow.slick-prev {
    left: 15px;
  }
  .home-partners-section .partners-nav-wrapper .slider-nav .slick-arrow.slick-next {
    right: 15px;
  }
} /* end of (max-width: 480px) */
/****************************************************************************************************************/
@media only screen and (max-width: 400px) {
  .home-main-section .buttons {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
} /* end of (max-width: 400px) */
/****************************************************************************************************************/
/* end of (max-width: 320px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */