/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

:root {
  --main-color: #2f55d4;
  --text-color-primary: #161c2d;
  --text-color-secondary: #5b657c;
  --text-color-grey: #f8f9fc;
  --warning--100: #fffad2;
  --warning--700: #b7950f;
  --neutral--300: #e0e0e0;
  --success--100: #e0fdd7;
  --success--700: #1c9b44;
  --line-color: #ccd2e3;
  --text-color-footer: #adb5bd;
  --text-color-white: white;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Nunito", sans-serif;
}

.wrapper-nav a {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}

figure {
  margin: 0;
}

.lh-0 {
  line-height: inherit;
}

.about-section {
  overflow-x: hidden;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.main-color {
  color: var(--main-color);
}

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

.text-color-white {
  color: var(--text-color-white);
}

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

.text-color-grey {
  color: var(--text-color-grey);
}

.warning--100 {
  color: var(--warning--100);
}

.warning--700 {
  color: var(--warning--700);
}

.neutral--300 {
  color: var(--neutral--300);
}

.line-color {
  color: var(--line-color);
}

.fw-extra-bold {
  font-weight: 800;
}

.fw-bold {
  font-weight: bold;
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-normal {
  font-weight: normal;
}

.text-small-1 {
  font-size: 13px;
  line-height: 18px;
}

.text-body-1 {
  font-size: 18px;
  line-height: 26px;
}

.text-body-2 {
  font-size: 16px;
  line-height: 30px;
}

.text-color-footer {
  color: var(--text-color-footer);
}

.text-h1 {
  font-size: 39px;
  line-height: 53px;
}

.text-h3 {
  font-size: 25px;
  line-height: 34px;
}

.text-h4 {
  font-size: 20px;
  line-height: 27px;
}

.text-header {
  font-size: 88px;
  line-height: 100px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-60 {
  margin-top: 60px;
}
.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.button-main-small {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  padding: 10px 28px;
  background-color: var(--main-color);
  outline: none;
  border: none;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.arrow-modal-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  padding: 0 260px;
  z-index: 999;
}

.arrow-modal-image div {
  background-color: white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999999px;
  cursor: pointer;
  transition: 0.3s all;
}

.arrow-modal-image div svg path {
  fill: var(--main-color);
}

.arrow-modal-image div:hover {
  background-color: var(--main-color);
}

.arrow-modal-image div:hover svg path {
  fill: white;
}

.button-main-small:hover {
  -webkit-box-shadow: 0px 10px 28px rgba(47, 85, 212, 0.22);
  box-shadow: 0px 10px 28px rgba(47, 85, 212, 0.22);
}

.button-secondary-small {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 6px;
  outline: none;
  background-color: white;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.button--floating {
  position: fixed;
  bottom: 5px;
  background-color: #2f55d4;
  width: 60px;
  height: 60px;
  z-index: 99;
  right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}

.button--floating.active {
  opacity: 1;
}

.main-modal {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgba(23, 29, 46, 0.8);
  z-index: 999999999;
  padding-left: 245px;
  padding-right: 245px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.main-modal.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.main-modal iframe {
  width: 700px;
  height: 400px;
  position: relative;
}

#image-modal button {
  position: absolute !important;
  left: unset !important;
  right: 30px !important;
  top: 30px !important;
}

.carousel-gallery .owl-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-gallery img {
  max-height: 100vh;
  padding: 40px 0;
}

.main-modal button {
  outline: none;
  border: none;
  padding: 17px;
  border-radius: 100%;
  position: relative;
  left: 20px;
  background: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(4.29231px);
  backdrop-filter: blur(4.29231px);
}

.main-modal button img {
  width: 30px;
}

.button-secondary-small:hover {
  background-color: var(--main-color);
  color: white;
}

.wrapper-nav {
  position: sticky;
  top: 0;
  z-index: 999999;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.main-nav__bar {
  display: none;
}

.nav-items {
  background-color: #f6f7f8;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 0;
  top: 55px;
  -o-transition: height 0.5s;
  -webkit-transition: height 0.5s;
  -webkit-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-items .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-items .container > p {
  padding: 12px 0;
  text-align: center;
}

.nav-items .container > .main-dropdown {
  position: relative;
  left: 12px;
  padding: 12px 0;
}

.nav-items .container > button {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 20px;
}

.main-nav__item {
  position: relative;
  top: 0.75rem;
}

.main-nav__item p {
  padding-left: 35px;
  padding-right: 35px;
}

.main-nav__item p a {
  cursor: pointer;
}

.main-nav__item .main-dropdown {
  margin-left: 35px;
  margin-right: 35px;
}

.main-nav__item .main-dropdown p {
  padding-left: 0;
  padding-right: 0;
}

.main-dropdown img {
  position: relative;
  bottom: 2px;
  padding-left: 6px;
}

.main-dropdown {
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.main-dropdown__content {
  display: none;
  position: absolute;
  left: 0;
  z-index: 2;
  top: 40px;
  background-color: white;
  min-width: 180px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 3px rgb(60 72 88 / 15%);
  box-shadow: 0 0 3px rgb(60 72 88 / 15%);
}

@media (min-width: 992px) {
  .main-dropdown__content {
    top: 30px;
  }
}
.main-dropdown__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 7px solid #495057;
  border-color: transparent transparent #ffffff #ffffff;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-box-shadow: -2px 2px 2px -1px rgb(60 72 88 / 15%);
  box-shadow: -2px 2px 2px -1px rgb(60 72 88 / 15%);
}

@media (min-width: 1024px) {
  .main-dropdown:hover .main-dropdown__content {
    display: inline-block;
  }
}

.main-dropdown__content__text {
  padding: 10px 20px;
  cursor: pointer;
  line-height: 100%;
  font-size: 14px;
}

.main-dropdown__content__text:hover {
  color: var(--main-color);
}

.bg-header {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80vh;
  top: 0;
  z-index: -2;
}

.header {
  margin-top: 60px;
}

.header__content--main-text img {
  width: 31px;
  height: 38px;
}

.header__video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__video img {
  cursor: pointer;
}

.header__video__wrapper {
  position: relative;
  background-color: #020202;
  border-radius: 16px;
  -webkit-transform: skew(0deg, -5deg);
  -ms-transform: skew(0deg, -5deg);
  transform: skew(0deg, -5deg);
  -webkit-box-shadow: 20px 16px #ebe2ff, 20px 16px 0 2px #2f55d4,
    20px 16px 50px 2px rgb(141 168 255 / 18%);
  box-shadow: 20px 16px #ebe2ff, 20px 16px 0 2px #2f55d4,
    20px 16px 50px 2px rgb(141 168 255 / 18%);
  width: 100%;
  height: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__video__wrapper::before {
  mix-blend-mode: overlay;
  position: absolute;
  z-index: -1;
  content: "";
  width: 90%;
  height: 50%;
  top: 0;
  background: rgba(47, 85, 212, 0.14);
  -webkit-transform: skewX(0) skewY(14deg) translateX(16px);
  -ms-transform: skewX(0) skewY(14deg) translateX(16px);
  transform: skewX(0) skewY(14deg) translateX(16px);
  border-radius: 16px;
}

.header__video__wrapper video {
  -webkit-transform: skew(0, 5deg);
  -ms-transform: skew(0, 5deg);
  transform: skew(0, 5deg);
  width: 100%;
}

.header__video__wrapper .icon--play {
  position: absolute;
  left: 50%;
  z-index: 99;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: skew(0, 5deg);
  -ms-transform: skew(0, 5deg);
  transform: skew(0, 5deg);
  border-radius: 100000px;
}

.header__video__wrapper .icon--stamp {
  position: absolute;
  top: -16%;
  right: -10%;
  z-index: 99;
  -webkit-transform: skew(0, 5deg);
  -ms-transform: skew(0, 5deg);
  transform: skew(0, 5deg);
  border-radius: 10000px;
}

.about-section {
  margin-top: 80px;
}

.about--end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-carousel {
  margin-top: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-carousel {
  position: relative;
  /* -webkit-transform: skew(-5deg, 0deg);
  -ms-transform: skew(-5deg, 0deg);
  transform: skew(-5deg, 0deg); */
  -webkit-box-shadow: 20px 16px #fff, 20px 16px 0 2px #2f55d4;
  box-shadow: 20px 16px #fff, 20px 16px 0 2px #2f55d4;
  width: 80% !important;
  height: auto;
  border-radius: 16px;
  margin: 3rem auto;
}

@media (max-width: 992px) {
  .main-carousel {
    width: 75%;
  }
}

.main-carousel .owl-dots {
  position: absolute;
  left: 43%;
  bottom: -20%;
}

@media (max-width: 992px) {
  .main-carousel .owl-dots {
    left: 5%;
    bottom: -25%;
  }
}

.owl-dot span {
  background-color: var(--neutral--300);
  width: 8px !important;
  height: 8px !important;
}

.owl-dot.active span {
  background-color: var(--main-color) !important;
  width: 24px !important;
  height: 8px !important;
}

.wrapper-carousel {
  position: relative;
}
.main-carousel__item img {
  margin: 1rem;
  width: 95% !important;

  /* margin-top: 40px;
  margin-bottom: 40px; */
}

/* .main-carousel__item img {
  -webkit-transform: skew(-5deg, 0deg);
  -ms-transform: skew(-5deg, 0deg);
  transform: skew(-5deg, 0deg);
  -webkit-box-shadow: 20px 16px #fff, 20px 16px 0 2px #2f55d4;
  box-shadow: 20px 16px #fff, 20px 16px 0 2px #2f55d4;
  width: 80% !important;
  height: auto;
  border-radius: 16px;
  margin: 3rem;
} */

.btn--carousel {
  width: 40px;
  height: 40px;
  position: absolute;
  background-color: white;
  -webkit-box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
  box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
  border-radius: 1000px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 2;
}

.btn--carousel:hover {
  background-color: var(--main-color);
}

.btn--carousel:hover.btn--carousel svg path {
  fill: white;
}

.btn--carousel svg path {
  fill: var(--main-color);
}

.prev-carousel--btn {
  left: 5%;
}

.prev-carousel--btn svg {
  margin-left: -3px;
}

.next-carousel--btn {
  right: 1%;
}

.tools-prev-carousel--btn {
  display: none;
  left: 0%;
  top: 40%;
}

.tools-next-carousel--btn {
  display: none;
  right: 0%;
  top: 40%;
}

.btn--carousel-only-mobile {
  display: none;
}

.main-card {
  background-color: var(--text-color-grey);
  border-radius: 16px;
  padding: 40px 30px;
}

/* .main-card {
  background-color: var(--text-color-grey); 
  padding: 60px 50px;
  border-radius: 16px;
} */

.site_img {
  width: 100%;
}

@media (min-width: 772px) and (max-width: 992px) {
  .site_img {
    width: 70%;
  }
}

@media (max-width: 772px) {
  .site_img {
    width: 90%;
  }
}

.main-card__text {
  margin-left: 30px;
}

.main-card__text button {
  margin-top: 30px;
}

.botza-came-down {
  position: relative;
  left: 25%;
  top: 20px;
  z-index: -1;
}

.lsElement {
  position: absolute;
  right: 0;
  margin-top: -40px;
}

.our-internal {
  margin-top: 140px;
  text-align: center;
}

.warning--label {
  color: var(--warning--700);
  background-color: var(--warning--100);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
}

.success--label {
  color: var(--success--700);
  background-color: var(--success--100);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
}

.feature {
  margin-top: 50px;
}

.feature__item {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--neutral--300);
}

.feature__item__text h3 {
  padding-top: 24px;
  padding-bottom: 10px;
}

.feature__item__picture div {
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  padding: 12px;
}

.feature__item__picture div:hover {
  box-shadow: 0px 8px 28px 0px rgba(41, 41, 62, 0.08);
  background-color: white;
}

.feature__item__picture img {
  width: 80px;
  height: 80px;
}

.feature__item__picture img {
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
}

.feature__item:last-child {
  border-bottom: none;
}

.tools__text img {
  width: 100%;
  margin-top: 40px;
}

.tools__card img {
  width: 120px;
  height: 120px;
}

.fun-things {
  position: relative;
}

.fun-things--image {
  cursor: pointer;
  width: 100%;
}

.fun-things svg {
  position: absolute;
  right: 0;
  top: 0;
}

.work-culture {
  margin-top: 140px;
}

.images-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 12.5% 30px 12.5% 30px auto 30px 12.5% 30px 12.5%;
  grid-template-columns: 20% 20% 20% 20%;
  -ms-grid-rows: 164px 30px 164px 30px 164px;
  grid-template-rows: 164px 164px 164px;
  grid-gap: 30px;
  margin-top: 80px;
  justify-content: end;
  margin-bottom: 40px;
}

.images-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.images-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.images-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.images-grid > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.images-grid > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}

.images-grid > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.images-grid > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.images-grid > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.images-grid > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}

.images-grid > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}

.images-grid > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.images-grid > *:nth-child(12) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}

.images-grid > *:nth-child(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}

.images-grid > *:nth-child(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}

.images-grid > *:nth-child(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 9;
}

.images-grid__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
}

.images-grid__item:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
}

.images-grid__item:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.images-grid__item:nth-child(3) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.images-grid__item:nth-child(4) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.images-grid__item:nth-child(5) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / span 2;
}

/* .images-grid__item:nth-child(6) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.images-grid__item:nth-child(7) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.images-grid__item:nth-child(8) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.images-grid__item:nth-child(9) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
} */

.founding {
  position: relative;
  margin-top: -30px;
}

.founding__card-group {
  margin-top: 80px;
}

.founding--card {
  -webkit-transform: skew(0deg, -5deg);
  -ms-transform: skew(0deg, -5deg);
  transform: skew(0deg, -5deg);
  padding: 10px;
  -webkit-box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.08);
  box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.08);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  background-color: white;
  height: 485px;
}

.founding--card img {
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
}

.founding--card:hover {
  -webkit-box-shadow: 20px 16px white, 20px 16px 0 2px #2f55d4,
    20px 16px 50px 2px rgb(141 168 255 / 18%);
  box-shadow: 20px 16px white, 20px 16px 0 2px #2f55d4,
    20px 16px 50px 2px rgb(141 168 255 / 18%);
  background-color: var(--main-color);
}

.founding--card:hover .founding--card__details {
  background-color: white;
  margin-top: -100px;
  padding-bottom: 80px;
}

.founding--card:hover .founding--card__details h3 {
  color: var(--main-color);
}

.founding--card:hover .founding--card__details span {
  color: var(--text-color-primary);
}

.founding--card:hover .founding--card__details h4 {
  color: var(--text-color-secondary);
}

.founding--card__details {
  padding: 15px 30px;
  background: #2f55d4;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 15.0923px;
  color: white;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 100%;
  position: relative;
  margin-top: -20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.founding--card__details__icon {
  position: absolute;
  bottom: -100px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.founding--card__details__icon img {
  margin-right: 18px;
}

.founding--card:hover .founding--card__details__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 30px;
}

.founding--details__card {
  padding: 50px;
  background-color: var(--text-color-grey);
  border-radius: 16px;
  width: 100%;
}

.founding--details__card p {
  margin-top: 10px;
}

.main-table {
  padding: 40px;
  -webkit-box-shadow: 0px 18px 48px rgba(41, 41, 62, 0.15);
  box-shadow: 0px 18px 48px rgba(41, 41, 62, 0.15);
  border-radius: 16px;
  margin-bottom: 10px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.main-table__filter {
  gap: 30px;
}

.main-table__data {
  margin-top: 30px;
}

.main-table__data__header {
  padding: 30px 0;
  border-top: 1px solid var(--neutral--300);
  border-bottom: 1px solid var(--neutral--300);
}

.main-table__data__item {
  padding: 30px 0;
  border-bottom: 1px solid var(--neutral--300);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.main-table__data__item:hover {
  background-color: #f8f9fc;
}

.main-table__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
}

.main-table__footer__filter-page p {
  white-space: nowrap;
  margin-right: 10px;
  line-height: 28px;
}

.button--table {
  padding: 7px 7px 7px 10px;
  border: 1px solid var(--neutral--300);
  border-radius: 6px;
  outline: none;
  background: none;
  font-size: 14px;
  color: var(--text-color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button--table svg path {
  fill: var(--text-color-secondary);
}

.button--table:hover {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.button--table:hover svg path {
  fill: var(--main-color);
}

.button--table--disabled {
  opacity: 0.5;
}

.button--table--disabled:hover {
  border: 1px solid var(--neutral--300);
  color: var(--text-color-secondary);
}

.button--table--disabled:hover svg path {
  fill: var(--text-color-secondary);
}

.prev--button-table {
  margin-right: 12px;
  margin-left: 30px;
}

.chip {
  padding: 7px 10px;
  border: 1px solid var(--neutral--300);
  border-radius: 6px;
  margin-right: 10px;
}

.our-team {
  margin-top: -10px;
}

.our-team__devza {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.wrapper-map {
  margin-top: 40px;
  position: relative;
}

.wrapper-map__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 40px;
  right: 40px;
  background: white;
  z-index: 9999;
  padding: 6px;
  -webkit-box-shadow: 0px 18px 48px rgba(41, 41, 62, 0.04);
  box-shadow: 0px 18px 48px rgba(41, 41, 62, 0.04);
  border-radius: 6px;
}

.wrapper-map input {
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.wrapper-map input:checked + label {
  background: var(--main-color);
  color: white;
  font-weight: bold;
}

.wrapper-map label {
  color: var(--text-color-secondary);
  font-size: 18px;
  padding: 6px 18px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.1s all;
  -o-transition: 0.1s all;
  transition: 0.1s all;
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 12px;
}

.marker {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  background-color: white;
}

.marker__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px;
  /* padding: 5px 10px; */

  position: relative;
  overflow: hidden;
}

/* .marker:hover {
  padding: 10px 35px 10px 15px;
} */

/* .marker:hover .marker__arrow {
  display: none;
} */

/* .marker:hover .marker__text {
  display: block;
} */
.users-count-wrapper {
  z-index: 0;
}
/* .marker:hover .users-count-wrapper {
  display: none;
} */

/* .marker:hover .marker__data {
  display: flex;
}*/
.marker:hover .marker__data__wrapper {
  transform: scaleX(1);
}

.marker img {
  width: 30px;
  height: 30px;
  border: 2px solid #2f55d4;
  background: #2f55d4;
  border-radius: 20px;
}

.marker__body > img {
  width: 15px;
  height: 15px;
}

.marker__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;
}

.marker__arrow svg:nth-child(1) path {
  -webkit-animation: arrow_first_animation 1s ease-in-out infinite;
  animation: arrow_first_animation 1s ease-in-out infinite;
}

.marker__arrow svg:nth-child(2) path {
  -webkit-animation: arrow_second_animation 1s ease-in-out infinite;
  animation: arrow_second_animation 1s ease-in-out infinite;
}

.marker__text {
  margin-left: 10px;
}

.marker__text h3 {
  font-size: 13px;
  line-height: 18px;
  color: var(--text-color-primary);

  margin: 0;
}

.marker__data {
  display: flex;
  gap: 2px;
}

.marker__data__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: scaleX(0);
  position: absolute;
  bottom: 0;
  background-color: white;
  width: 200px;
  padding: 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  left: 0px;
  transform-origin: left;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

a.mapboxgl-ctrl-logo {
  display: none !important;
}

.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  display: none !important;
}

.mapboxgl-ctrl-bottom-right {
  bottom: 20px !important;
  right: 20px !important;
}

.mapboxgl-ctrl-group {
  background: none;
}

.mapboxgl-ctrl-group:not(:empty) {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

.mapboxgl-ctrl-group button {
  width: 50px;
  height: 50px;
  background: white;
  margin: 5px 0;
  -webkit-box-shadow: 0px 18px 48px rgba(41, 41, 62, 0.04);
  box-shadow: 0px 18px 48px rgba(41, 41, 62, 0.04);
  border-radius: 6px !important;
  outline: none;
  border: none;
}

.mapboxgl-ctrl-group button:hover {
  background: white !important;
  border-radius: 6px !important;
}

.mapboxgl-ctrl-group button:nth-child(1) span {
  background-image: url(./assets/images/Add_ring.svg) !important;
}

.mapboxgl-ctrl-group button:nth-child(2) span {
  background-image: url(./assets/images/Remove.svg) !important;
}

.our-team__nationality {
  margin-top: 60px;
}

.our-team__nationality__flag h3 {
  margin-left: 10px;
}

.our-team__nationality__flag {
  margin-bottom: 10px;
}

.our-team__nationality .accordion-button {
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.our-team__nationality .accordion-button:not(.collapsed) {
  color: var(--text-color-secondary) !important;
}

.our-team__nationality .accordion-button::after {
  background-image: url("./assets/images/maps-location/Expand_down.svg");
}

@media (max-width: 992px) {
  .accordion-header .accordion-button::after {
    display: none;
  }
  .accordion-header .accordian_button_special::after {
    display: block;
  }
}

.our-team__nationality .accordion-item {
  border: none !important;
}
#collapseFive {
  overflow-y: hidden;

  /* -ms-overflow-style: 100px; 
  scrollbar-width: thin; 
  scrollbar-color: #6384f1 #aaa; */
}

/* 
#collapseFive::-webkit-scrollbar {
  width: 2px;
  height: 8px;
  background-color: #aaa;
  border-radius: 10px;
}

#collapseFive::-webkit-scrollbar-thumb {
  background-color: #6384f1;
  border-radius: 10px;
} */

.our-team__nationality .accordion-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border: 2px solid #2f55d4;
  border-radius: 999999999px;
}

.our-team__nationality .accordion {
  margin-top: 30px;
}

.blog__post {
  margin-top: 60px;
}

.blog__post__item h2 {
  margin-top: 24px;
  margin-bottom: 20px;
  cursor: pointer;
}

.blog__post__item img {
  cursor: pointer;
}
.blog__post__item .d-flex img {
  width: 40px;
  height: 40px;

  margin-right: 12px;
  border: 2px solid #2f55d4;
  border-radius: 999999999px;
}

.blog__post__item .d-flex h3 {
  margin-bottom: 0px;
}

.blog__post .owl-dots {
  margin-top: 60px !important;
}

.footer {
  background-color: #202942;
  margin-top: 140px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer__logo img {
  margin-bottom: 30px;
}

.footer__logo .d-flex {
  margin-top: 30px;
  gap: 10px;
}

.footer h1 {
  margin-bottom: 30px;
}

.text-list {
  margin-bottom: 12px;
}

.text-list::before {
  content: "";
  display: inline-block;
  background-image: url("./assets/images/Expand_right_white.svg");
  height: 20px;
  width: 20px;
  position: relative;
  top: 5px;
  margin-right: 8px;
}

.footer__input {
  margin-top: 40px;
}

.footer__input__form {
  background-color: #27314f;
  border-radius: 6px;
  padding: 13px 20px;
}

.footer__input__form input {
  background-color: transparent;
  color: white;
  outline: none;
  border: none;
  margin-left: 14px;
  font-size: 14px;
}

.footer__input__form input::-webkit-input-placeholder {
  color: #adb5bd;
  font-size: 14px;
}

.footer__input__form input::-moz-placeholder {
  color: #adb5bd;
  font-size: 14px;
}

.footer__input__form input:-ms-input-placeholder {
  color: #adb5bd;
  font-size: 14px;
}

.footer__input__form input::-ms-input-placeholder {
  color: #adb5bd;
  font-size: 14px;
}

.footer__input__form input::placeholder {
  color: #adb5bd;
  font-size: 14px;
}

.footer small {
  display: block;
  position: relative;
  margin-top: -52px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (max-width: 992px) {
  .main-nav__bar {
    display: block;
  }

  .footer small {
    display: block;
    margin-top: unset;
  }

  .main-nav__button {
    display: none;
  }

  .main-nav__item {
    display: none !important;
  }

  .active-nav-mobile .nav-items {
    height: 270px;
    min-height: 40px;
    max-height: 400px;
  }

  .feature__item__text {
    margin-top: 0;
  }

  .text--item-subtitle {
    margin-right: 86px;
  }

  .images-grid {
    grid-gap: 15px;
  }

  .images-grid__img {
    width: 100%;
  }

  .what-is-link {
    margin-top: 35px;
  }

  .header__content--main-text {
    position: relative;
    left: 10px;
  }
}

.wrapper-nav.scrolled {
  background-color: white;
  -webkit-box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
  box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
}

.responsive--arrow svg:nth-child(2) {
  display: none;
}

.d-none-mobile {
  display: block;
}

.d-show-mobile {
  display: none;
}

.our-story .responsive--arrow svg:nth-child(1) {
  width: 100%;
}

.who-are-we .responsive--arrow svg:nth-child(1) {
  width: 100%;
}

.our-experience .responsive--arrow svg:nth-child(1) {
  width: 100%;
}

.main-table__filter input:focus,
.main-table__filter select:focus {
  border: 1px solid #2f55d4;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

.main-table__data__item .text--item-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #161c2d;
}

.main-table__data__item .text--item-subtitle {
  font-size: 18px;
  line-height: 20px;
  color: #5b657c;
  font-weight: normal;
}

.dot--images {
  position: absolute;
  width: 600px;
  height: 600px;
  z-index: -1;
}

.our-story {
  position: relative;
}

.our-story .dot--images {
  right: -30%;
  top: 60px;
}

.building-botza {
  position: relative;
}

@media (max-width: 992px) {
  .dot--image_1 {
    display: none;
  }
  .building-botza {
    flex-direction: column-reverse;
  }

  .feature__item__picture div:hover {
    box-shadow: none;
    background-color: white;
  }
}

.building-botza .dot--images {
  left: -30%;
  top: 120px;
}

.how-botza {
  position: relative;
}

.how-botza .dot--images {
  right: -30%;
  top: 150px;
}

.tools {
  position: relative;
}

.tools .dot--images {
  right: -30%;
  top: -80%;
}

.fun-things .dot--images:nth-child(1) {
  left: -30%;
  top: -80%;
}

.fun-things .dot--images:nth-child(2) {
  right: -30%;
}

.founding .dot--images {
  left: -30%;
  top: -250px;
}

.our-experience .dot--images {
  left: -30%;
  top: 20px;
}

.current-openings .dot--images {
  right: -30%;
  left: unset;
  top: 100px;
}

.our-team .dot--images {
  left: -30%;
  top: -500px;
}

.our-team__nationality .dot--images {
  left: unset;
  right: -30%;
  top: -200px;
}

@media (max-width: 1439px) {
  .main-modal {
    padding-left: 100px;
    padding-right: 100px;
  }
  .arrow-modal-image {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (max-width: 992px) {
  .main-modal button {
    padding: 8px;
    left: 5px;
  }

  .main-modal button img {
    width: 16px;
  }

  .main-modal {
    padding-left: 40px;
    padding-right: 40px;
  }

  .arrow-modal-image {
    padding-left: 60px;
    padding-right: 60px;
  }

  .wrapper-nav {
    background-color: white;
    -webkit-box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
    box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
  }

  .header .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .header__content--main-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__video {
    margin-top: 21px;
  }

  .our-story {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .responsive--arrow svg:nth-child(1) {
    display: none;
  }

  .responsive--arrow svg:nth-child(2) {
    display: block;
  }

  .mobileUiArrows {
    margin-left: auto;
  }

  .mirrored--arrow {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }

  .justify-end-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: end !important;
  }

  .row-carousel {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .main-card__text {
    width: 100%;
  }

  .main-card__text button {
    width: 100%;
  }

  .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 0 !important;
  }

  .prev-carousel--btn,
  .next-carousel--btn {
    display: none;
  }

  .btn--carousel-only-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    position: absolute;
    right: 25px;
    bottom: -6.5%;
  }

  .btn--carousel-only-mobile div {
    width: 40px;
    height: 40px;
    background-color: white;
    -webkit-box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
    box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.12);
    border-radius: 1000px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 2;
  }

  .btn--carousel-only-mobile div:hover {
    background-color: var(--main-color);
  }

  .btn--carousel-only-mobile div:hover svg path {
    fill: white;
  }

  .how-botza {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .our-internal {
    margin-top: 30px;
  }

  .feature__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--neutral--300);
    width: 400px;
    height: 450px;
    margin: auto;
    z-index: 3;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0px 4px 14px 0px rgb(41 41 62 / 8%);
    text-align: center;
  }

  .feature__item__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .feature__item__picture img {
    width: 40px;
    height: 40px;
  }

  .tools__text__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fun-things svg {
    position: unset;
  }

  /* .fun-things img {
    width: 100%;
  } */

  .work-culture {
    margin-top: 10px;
  }

  .d-none-mobile {
    display: none !important;
  }

  .images-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    /* -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    -ms-grid-rows: unset;
    grid-template-rows: unset; */
  }

  /* .images-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .images-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  } */

  .images-grid__item {
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .images-grid__img {
    width: 160px;
  }

  /* .images-grid__item:nth-child(3) {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 2 !important;
    grid-column: 1/3 !important;
  }

  .images-grid__item:nth-child(8) {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 2 !important;
    grid-column: 1/3 !important;
  }

  .images-grid__item:nth-child(9) {
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 2 !important;
    grid-column: 1/3 !important;
  } */

  .founding {
    margin-top: 30px;
  }

  .founding--details {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 60px;
  }

  .founding__card-group-reverse {
    flex-direction: column-reverse;
  }

  .current-openings {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .main-table__filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-table__filter select {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .main-table__filter input {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .main-table__filter button {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .d-show-mobile {
    display: unset;
  }

  .main-table__data__item button {
    margin-top: -44px;
  }

  .main-table__footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .our-team__nationality__flag:not(first-child) {
    margin-top: 30px;
  }

  .owl-stage {
    padding-left: 0 !important;
  }

  .blog {
    position: relative;
  }

  .button--view-all-mobile {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .footer h1 {
    margin-top: 20px;
  }

  .our-team__devza img {
    width: 100%;
  }

  .prev--button-table {
    margin-left: 0;
  }

  .chip {
    text-align: center;
    font-size: 12px;
  }

  .tools__text__img img {
    width: 80%;
  }

  .main-card {
    padding: 30px 20px;
    width: fit-content;
    margin: auto;
  }

  .main-carousel__item img {
    margin: 1rem;
    width: 95% !important;
    /* margin-top: 31px;
    margin-bottom: 30px; */
  }

  .button-main-small {
    font-size: 14px;
  }

  .about-section {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .feature__item {
    width: 300px;
    height: 370px;
  }
  .images-grid__item {
    width: 100%;
  }

  .images-grid {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    -ms-grid-rows: unset;
    display: grid;
    grid-template-rows: unset;
  }

  .images-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .images-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .images-grid__item {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .images-grid__item:nth-child(3) {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .images-grid__item:nth-child(8) {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .images-grid__item:nth-child(9) {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .images-grid__img {
    width: 100%;
  }
  .header__video__wrapper .icon--stamp {
    right: 0;
  }

  .text-header {
    font-size: 44px;
    line-height: 120%;
  }

  .text-h1 {
    font-size: 20px;
    line-height: 150%;
  }

  .text-body-1 {
    font-size: 14px;
    line-height: 150%;
  }

  .text-body-2 {
    font-size: 12px;
    line-height: 150%;
  }

  .text-h3 {
    font-size: 16px;
    line-height: 150%;
  }

  .text-h4 {
    font-size: 20px;
    line-height: 150%;
  }

  .header__content--main-text img {
    width: 18.64px;
    height: 21.2px;
  }
}

[data-aos="dash"] {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

[data-aos="dash"].aos-animate {
  stroke-dashoffset: 0;
}

[data-aos="dash-long"] {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

[data-aos="dash-long"].aos-animate {
  stroke-dashoffset: 0;
}

@-webkit-keyframes arrow_first_animation {
  0% {
    fill: var(--line-color);
  }

  50% {
    fill: var(--text-color-secondary);
  }

  100% {
    fill: var(--line-color);
  }
}

@keyframes arrow_first_animation {
  0% {
    fill: var(--line-color);
  }

  50% {
    fill: var(--text-color-secondary);
  }

  100% {
    fill: var(--line-color);
  }
}

@-webkit-keyframes arrow_second_animation {
  0% {
    fill: var(--text-color-secondary);
  }

  50% {
    fill: var(--line-color);
  }

  100% {
    fill: var(--text-color-secondary);
  }
}

@keyframes arrow_second_animation {
  0% {
    fill: var(--text-color-secondary);
  }

  50% {
    fill: var(--line-color);
  }

  100% {
    fill: var(--text-color-secondary);
  }
}

.exploreButton {
  cursor: pointer;
  z-index: 2;
}

.exploreButton:hover {
  color: white;
}

.about-text {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 30px;
}

.about-text-section {
  margin-top: 60px;
}

.blockquote {
  border-left: 3px solid #dee2e6;
  border-radius: 6px;
  padding-left: 15px;
  margin-bottom: 30px;
  font-weight: bold;
}

.about-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-header-about {
  height: 18vh;
}

@media (max-width: 1700px) {
  .about-image {
    width: 40em;
  }
}

@media (max-width: 1400px) {
  .about-image {
    width: 30em;
  }
}

@media (max-width: 1000px) {
  .about-image {
    width: 40em;
  }
  .about-image-container {
    margin-bottom: 50px;
  }
}

.footer-links:hover {
  color: #a1c6eb;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
}

.terms-body,
.privacy-body {
  margin-top: 100px;
}

.terms-wrapper {
  margin-bottom: 50px;
}

.privacy-text-wrapper p {
  margin-bottom: 20px;
}

.marker-users-count {
  background-color: white;
  font-size: 10px;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
}

.users-count-wrapper {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;

  border-bottom-right-radius: 50%;

  background: #2f55d4;
  border: 2px solid #2f55d4;
}

.collapse-arrow {
  display: flex;
  flex-direction: column;
}

.collapse-arrow > svg {
  cursor: pointer;
}

/* .insta_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  z-index: 2;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.insta_modal_body {
  display: flex;
}

.insta_modal_image {
  width: 40em;
}

.modal_post_image {
  width: 100%;
}

.insta_modal_desc {
  background-color: white;
  font-family: "Josefin Sans", sans-serif;
}

.modal_desc_header {
  display: flex;
  padding: 26px 22px 20px 22px;
  justify-content: space-between;
}

.post_user_info {
  display: flex;
  gap: 10px;
}

.post_user_img {
  width: 36px;
  height: 36px;
  font-size: 20px;
  align-items: center;
  background-color: #d8d8d8;
  border-radius: 50%;
  color: #979797;
  display: flex;
  font-family: HelveticaNeueW01-65Medi, Arial, "sans-serif";
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0;
  text-align: center;
}

.post_info {
  font-size: 14px;
}

.insta_redirect {
  cursor: pointer;
}

.modal_desc_body,
.modal_desc_footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 26px 22px;
  font-size: 14px;
}

.modal_desc_body {
  height: 70%;
} */

.vacation_playButton,
.workCulture_playButton {
  position: absolute;
  width: 50px;
  cursor: pointer;
  height: 50px;
  transition: transform 0.5s;
  background-color: white;
  border-radius: 100px;
}

@media (max-width: 592px) {
  .vacation_playButton,
  .workCulture_playButton {
    width: 40px;

    height: 40px;
  }
}

/* .vacation_playButton {
  display: none;
} */

.vacation_playButton:hover,
.workCulture_playButton:hover {
  transform: scale(1.5);
}

.vacation_images_wrapper {
  display: flex;
}

.workCulture_thumbnail {
  width: 100%;
}

.vacation_thumbnail {
  cursor: pointer;
}

.vacation_thumbnail,
.vacation_text {
  width: 540px;
}

.vacation_thumbnail_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .vacation_thumbnail,
  .vacation_text {
    width: 340px;
  }
}

@media (max-width: 770px) {
  .vacation_thumbnail,
  .vacation_text {
    width: 240px;
  }

  .main-modal iframe {
    width: 80vw;
    height: 30vh;
    position: relative;
  }
}

/* @media (max-width: 422px) {


  .vacation_thumbnail {
    width: 220px;
  }

  .vacation_text {
    width: 170px;
    margin-left: -17px;
    z-index: 2;
  }
} */

.follow_header_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.insta_info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.insta_dp {
  height: 95px;
  width: 95px;
}

.insta_body {
  font-family: "Nunito", sans-serif;
  margin-top: 80px;
}

.insta_username {
  font-weight: 700;

  font-size: 31px;
  color: #161c2d;
}

.profile_details_wrapper {
  display: flex;
  gap: 50px;
  margin-top: 34px;
}

.profile_data_box {
  display: flex;
  flex-direction: column;

  color: #161c2d;
  align-items: center;
}

.profile_data_box > p:nth-child(1) {
  font-weight: 700;
  font-size: 20px;
}

.profile_data_box > p:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  color: #9e9e9e;
}

.profile_info {
  margin-top: 48px;
}

.profile_name {
  font-weight: 700;
  color: #161c2d;
  font-size: 18px;
  margin-bottom: 5px;
}

.profile_other_info {
  font-weight: 600;
  color: #5b657c;
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 992px) {
  .space_element {
    display: none;
  }
  .insta_username {
    font-weight: 700;
    font-size: 25px;
    color: #161c2d;
  }

  .profile_data_box > p:nth-child(1) {
    font-weight: 700;
    font-size: 18px;
  }

  .profile_data_box > p:nth-child(2) {
    font-weight: 400;
    font-size: 12px;
    color: #9e9e9e;
  }

  .profile_other_info {
    font-size: 12px;
    line-height: 20px;
  }

  .profile_info {
    margin-top: 10px;
  }

  .profile_name {
    display: none;
  }

  .insta_body {
    margin-top: 40px;
  }
}

.internalTools_screen {
  display: block;
}
.internalTools_mobile {
  display: none;
  position: relative;
}

.tools-carousel {
  display: flex;
  flex-direction: column;
}

.tools-carousel .owl-dots {
  justify-content: center;
}

.tools-carousel-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  #mapWrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .internalTools_screen {
    display: none;
  }

  .internalTools_mobile {
    display: flex;
  }
  .tools-next-carousel--btn {
    display: flex;
  }
  .tools-prev-carousel--btn {
    display: flex;
  }
}

.tools-carousel__item {
  margin: 1em 0;
  margin-left: 0.9em;
  margin-right: 1em;
}

.devza_logo {
  width: 60px;
}

.owl-item {
  z-index: 3;
}

.fun-things_arrow {
  width: 295px;
  height: 145px;
}

.employeeInfoElement {
  display: block;
}

.dropdownSix,
.dropdownSeven {
  display: none;
}

.mobileImg {
  display: none !important;
}

.webImg {
  display: block !important;
}

@media (max-width: 992px) {
  .fun-things_arrow {
    width: 150px;
    height: 90px;
  }
  .profile_details_wrapper {
    grid-gap: 30px;
  }
  .images-grid {
    margin-top: 20px;
  }
  .main-table {
    margin-top: 40px;
  }

  .employeeInfoElement {
    display: none;
  }

  .dropdownSix,
  .dropdownSeven {
    display: block;
  }

  .mobileImg {
    display: block !important;
  }

  .webImg {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .insta_logo {
    width: 30px;
    height: 30px;
  }

  .insta_name {
    width: 120px;
    height: 40px;
  }

  .insta_dp {
    width: 70px;
    height: 70px;
  }

  .vacation_thumbnail {
    width: 220px;
  }

  .vacation_text {
    width: 170px;
    margin-left: -17px;
    z-index: 2;
  }
}

.country_flag {
  border: none !important;
  border-radius: 1px !important;
  width: 30px !important;
  height: 30px !important;
}

.ls_Logo {
  width: 32px;
  height: 32px;
}

.siteNameElement,
.siteTextElement {
  width: 140px;
}

@media (max-width: 572px) {
  .siteNameElement,
  .siteTextElement {
    width: 100px;
  }
}

.mobileViewMapWrapper {
  display: flex;
}

.mobileViewMapWrapper img {
  width: 30px;
  height: 30px;
  margin-left: -10px;
}
.accordion-element {
  display: flex;
  gap: 20px;
}
.teamWrapper_mobile {
  display: none;
  width: 100%;

  justify-content: space-between;
}

.moreTeamElement {
  position: relative;
}

.moreTeamElement > p {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  top: 7px;
  right: 9px;
}

@media (max-width: 992px) {
  .teamWrapper_mobile {
    display: flex;
  }
}

.openingsWrapper {
  display: flex;

  justify-content: space-between;

  width: 100%;
}

.openingCategoryBox {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 8px 28px rgba(41, 41, 62, 0.08);
  justify-content: space-between;
  align-items: center;
  width: 300px;
  height: 300px;
  overflow: hidden;
  z-index: 3;
  transition: box-shadow 1s;
}

.openingCategoryBox:hover {
  box-shadow: 0px 20px 28px rgba(41, 41, 62, 0.2);
}

.openingCategoryIcon1 {
  width: 100px;
}

.openingCategoryIcon2 {
  width: 160px;
}

.openingCategoryIcon3 {
  width: 120px;
}
.openingCategoryBoxDesc {
  background: #2f55d4;
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categoryType {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  font-family: "Nunito";
}

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

.openingsSection {
  position: relative;
  padding-top: 50px;
}

.boxCover {
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 5;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.form_select {
  width: 400px;
  cursor: pointer;
  border: 1px solid #9e9e9e;
  border-radius: 6px;
  position: relative;
  padding: 10px 20px;
}

.select_form {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

#searchedJob {
  width: 100%;
}

.select_dropdown {
  display: flex;
  cursor: default;
  gap: 10px;
  height: 100%;
  flex-direction: column;
  position: absolute;
  background-color: white;
  width: 100%;
  left: 0;
  top: 50px;
  padding: 20px 15px;
  height: fit-content;
  border-radius: 0px 0px 20px 20px;
  box-shadow: 0px 18px 48px 0px rgb(41 41 62 / 4%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  transform-origin: top;
}
.select_drodpdown_active {
  opacity: 1;
  visibility: visible;
}

.select_dropdown_item,
.selectedOption {
  font-size: 18px;
  color: rgba(22, 28, 45, 1);
  font-weight: 400;
  cursor: pointer;
  text-transform: capitalize;
}

.select_dropdown_item:hover {
  color: #2f55d4;
}
.dropdownArrowWrapper {
  height: 100%;
  position: absolute;
  width: fit-content;
  right: 15px;
  top: 0;
  display: flex;
  align-items: center;
}

.dropdownArrow {
  transition: transform 0.5s;
}

@media (max-width: 992px) {
  .openingsWrapper {
    flex-wrap: wrap;
    justify-content: start;
    gap: 40px;
  }
  .form_select {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .openingCategoryBox {
    width: 230px;
    height: 230px;
  }

  .openingCategoryIcon1 {
    width: 70px;
  }

  .openingCategoryIcon2 {
    width: 130px;
  }

  .openingCategoryIcon3 {
    width: 90px;
  }
}

@media (max-width: 575px) {
  .openingCategoryBox {
    width: 200px;
    height: 200px;
  }

  .openingCategoryIcon1 {
    width: 50px;
  }

  .openingCategoryIcon2 {
    width: 100px;
  }

  .openingCategoryIcon3 {
    width: 60px;
  }
}

@media (max-width: 466px) {
  .openingsWrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 11px;
  }
  .openingCategoryBox {
    width: 100%;
    height: 170px;
  }

  .openingCategoryIcon1 {
    width: 50px;
  }

  .openingCategoryIcon2 {
    width: 80px;
  }

  .openingCategoryIcon3 {
    width: 50px;
  }
  .categoryType {
    font-size: 14px;
  }
}

.subscribeButton {
  background-color: rgba(47, 85, 212, 0.2);
  border: 1px solid rgba(47, 85, 212, 0.2);
  color: white;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 3px 5px 0 rgb(47 85 212 / 30%);
  cursor: pointer;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  outline: none;
  border: none;
  margin-top: 30px;
  margin-bottom: 20px;
  transition: background-color 0.5s, color 0.5s;
}

.subscribeButton:hover {
  background-color: #2f55d4;
  color: white;
}

.siteLogo {
  width: 100px;
  height: 100px;
}

.siteImg_2 {
  border: none !important;
  border-radius: 0px !important;
  width: 100px !important;
}
