html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
} * {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
} *:before, *:after {
    box-sizing: inherit;
} body {
    overflow-x: hidden;
} .desktop {
    display: block;
} .mobile {
    display: none;
} 
/*#myDiv {display: none;}*/
#scrollbar {
    height: 100vh;
    width: 100%;
    overflow: auto;
} .wholescreen--nav {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    background-color: #000;
    left: 100%;
    transition: all 0.6s ease-out;
} .wholescreen--nav.active {
    left: 0;
    transition: all 0.6s;
} #hamburger--close {
    width: 3rem;
    margin-left: 96%;
    margin-top: 1vh;
    cursor: pointer;
} .wholescreen--nav__menu-div {
    margin-left: 20%;
    width: 60%;
    margin-top: 6vh;
} .wholescreen--nav__menu-h1-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    margin-top: 36px;
    cursor: pointer;
} .wholescreen--nav__menu-h1-div h1 {
    color: #fff;
    font-size: 2.7rem;
    font-family: 'Montserrat', sans-serif;
} .wholescreen--nav__menu-h1-div img {
    width: 60px;
    height: auto;
    transform: rotate(0);
    transition: all 0.6s;
} .wholescreen--nav__menu-h1-div img.active {
    transform: rotate(180deg);
    transition: all 0.6s;
} .wholescreen--nav__menu-option-div {
    padding: 0 24px;
    overflow: hidden;
    height: 0;
    transition: all 0.6s;
} .wholescreen--nav__menu-option-div.active {
    height: 18vh;
    transition: all 0.6s;
} .wholescreen--nav__menu-option-div a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    z-index: 1;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    margin: 2px 12px;
    border-bottom: 1px solid #000;
    transition: all 0.6s;
} .wholescreen--nav__menu-option-div a i {
    margin-right: 9px;
} .wholescreen--nav__menu-option-div a:hover {
    border-bottom: 1px solid #fff;
    transition: all 0.6s;
} nav {
    /* position: absolute;
    top: 0; */
    background-color: rgba(255, 255, 255, 1);
    height: 8vh;
    max-height: 120px;
    min-height: 48px;
} .nav-logo {
    width: 90px;
} .landing--video {
    height: auto;
    width: 100%;
    position: relative;
} .download--video__a {
    position: absolute;
    right: 0;
    height: 120px;
    width: 120px;
} .download--video__img {
    width: 100%;
} .btn-sec {
    background-color: #ebebeb;
    color: #666;
    transition: all 0.6s;
    text-decoration: none;
    padding: 6px 15px;
    font-weight: 600;
} .btn-sec:hover {
    color: #666;
    transition: all 0.6s;
    text-decoration: none;
} .btn-pri {
    background-color: #000;
    padding: 6px 15px;
    color: #fff;
    transition: all 0.6s;
    font-weight: 600;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.706592px 0.706592px -0.625px, rgba(0, 0, 0, 0.145) 0px 1.80656px 1.80656px -1.25px, rgba(0, 0, 0, 0.137) 0px 3.62176px 3.62176px -1.875px, rgba(0, 0, 0, 0.125) 0px 6.8656px 6.8656px -2.5px, rgba(0, 0, 0, 0.106) 0px 13.6468px 13.6468px -3.125px, rgba(0, 0, 0, 0.05) 0px 30px 30px -3.75px;
} .btn-pri:hover {
    text-decoration: none;
    color: #fff;
    transition: all 0.6s;
} .btn--with__content_left {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 24px auto;
} .btn--with__content_right {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 24px auto;
} .btn--with__content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px auto;
} .btn--with__content-p {
    text-decoration: none;
    color: #1177aa;
    transition: all 0.6s;
    font-weight: 600;
} .btn--with__content-p:hover {
    color: #000;
    transition: all 0.6s;
} .nav--btn__div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    --ease-out-transition: 0.25s ease-out;
    --ease-in-transition: 0.75s 0.1s cubic-bezier(0.25, 1, 0.75, 1);
    max-width: 450px;
} nav a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
} nav button {
    position: relative;
    padding: 0;
    font-size: 1rem;
    color: #000;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
} nav button > a {
    opacity: 1;
    transition: var(--ease-in-transition);
} nav button::after {
    position: absolute;
    content: attr(data-text);
    top: 0;
    left: 0;
    transform: translateY(35%);
    opacity: 0;
    transition: var(--ease-out-transition);
} nav button:hover {
    border-bottom: solid 1px #222;    
} nav button:hover > a {
    opacity: 0;
    transform: translateY(35%);
    transition: var(--ease-out-transition);
} nav button:hover::after {
    opacity: 1;
    transform: translateY(0);
    transition: var(--ease-in-transition);
} .about {
    margin: 60px auto;
    padding: 30px;
} .header--h2 {
    color: #1177aa;
    font-weight: 600;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 24px;
} .header--p {
    font-size: 1.2rem;
    text-align: center;
} .header--h2__left {
    color: #1177aa;
    font-weight: 600;
    font-size: 2.4rem;
    text-align: justify;
    margin-bottom: 24px;
} .header--p__left {
    font-size: 1.2rem;
    text-align: justify;
} .header--h2__right {
    color: #1177aa;
    font-weight: 600;
    font-size: 2.4rem;
    text-align: justify;
    margin-bottom: 24px;
} .header--p__right {
    font-size: 1.2rem;
    text-align: justify;
} .black {
    color: #000;
} .colored {
    color: #1177aa;
} .center {
    text-align: center;
} .margin-left {
    margin-left: 12px;
} .margin-top-lg {
    margin-top: 60px;
} .margin-bottom-lg {
    margin-bottom: 60px;
} .margin-bottom {
    margin-bottom: 30px;
} .margin-none {
    margin: 0 auto;
} .search, .pricing {
    margin: 60px auto;
    padding: 30px;
} .search label {
    text-align: center;
} .search form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} .search form input {
    width: 80%;
    padding: 9px 15px;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    outline: none;
} .search form input:active {
    outline: none;
} .search--btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
} .brand--swiper {
    margin-top: 30px;
} .pricing--swiper {
    width: 90%;
} .pricing-slide {
    width: 30%;
} .services {
    margin: 60px auto;
    padding: 30px;
} .cfo--swiper {
    width: 84%;
} .swiper-slide img {
    width: 100%;
} .card--container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 72%;
    margin: auto;
} .card {
    width: 90%;
    height: 420px;
    margin: 12px 30px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    border: none;
    border-radius: 0;
    padding: 18px;
} .card li {
    font-size: .8rem;
} .card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
} .card h2 {
    font-weight: 900;
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    color: #000;
} .card p {
    font-size: 0.6rem;
    margin-top: 0;
    padding-top: 0;
    color: #000;
} .card--absolute {
    position: absolute;
    bottom: 24px;
    right: 12px;
} .card--small {
    width: 72%;
    margin: 24px auto;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
} .card--small img {
    width: 90px;
} .card--small__div {
    margin-left: 12px;
} .card--small__div h2 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 2.4rem;
    margin-bottom: 0;
} .card--small__div p {
    font-size: 0.9rem;
    color: #666;
} .footer {
    margin-top: 150px;
    width: 100%;
} .above--footer {
    background-color: #f6f6f6;
    width: 30%;
    height: 90px;
    position: absolute;
    margin-top: -45px;
    left: 35%;
    text-align: center;
    padding: 12px;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
} .above--footer p {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
} .above--footer h4 span {
    font-size: 2rem;
    font-weight: 600;
    color: #666;
} .main--footer {
    background-color: #000;
    margin-top: 120px;
    padding-top: 180px;
    padding-bottom: 60px
} .main--footer .row h3 {
    color: #fff;
    border-bottom: 1px solid #ebebeb;
} .main--footer .row li a {
    list-style: none;
    color: #ebebeb;
    font-size: 0.8rem;
    border-bottom: 1px solid #000;
    text-align: end;
    text-decoration: none;
    margin-bottom: 0.6rem;
    cursor: pointer;
    transition: all 0.6s;
} .main--footer .row li a:hover {
    border-bottom: 1px solid #fff;
    transition: all 0.6s;
} .below--footer {
    border-top: 1px solid #ebebeb;
    text-align: center;
    margin-top: 60px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
} .below--footer img {
    width: 150px;
    height: auto;
} .below--footer h4 {
    font-size: 0.9rem;
    font-weight: 300;
    color: #ebebeb;
} .below--footer p {
    font-size: 0.6rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0;
} .below--header {
    border-top: none;
    padding: 0;
} .social .fa-brands {
    font-size: 1.5rem;
}
.button.dark {
    --background: #000;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, .32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, .5);
}
.button.white {
    --background: #ebebeb;
    --text: #666;
    --shadow: none;
    --shadow-hover: none;
}
.button {
    --background: #000;
    --text: #fff;
    --font-size: 1rem;
    --duration: 0.44s;
    --move-hover: -4px;
    --shadow:  rgba(0, 0, 0, 0.15) 0px 0.706592px 0.706592px -0.625px, rgba(0, 0, 0, 0.145) 0px 1.80656px 1.80656px -1.25px, rgba(0, 0, 0, 0.137) 0px 3.62176px 3.62176px -1.875px, rgba(0, 0, 0, 0.125) 0px 6.8656px 6.8656px -2.5px, rgba(0, 0, 0, 0.106) 0px 13.6468px 13.6468px -3.125px, rgba(0, 0, 0, 0.05) 0px 30px 30px -3.75px;
    --shadow-hover: 0 4px 20px -2px rgba(46, 46, 46, 0.5);
    --font-shadow: var(--font-size);
    padding: 12px;
    font-weight: 600;
    line-height: var(--font-size);
    border-radius: 0;
    display: block;
    outline: none;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}
.button div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}
.button div span {
    display: block;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}
.button div span:nth-child(1) {
    transition-delay: 0.05s;
}
.button div span:nth-child(2) {
    transition-delay: 0.1s;
}
.button div span:nth-child(3) {
    transition-delay: 0.15s;
}
.button div span:nth-child(4) {
    transition-delay: 0.2s;
}
.button div span:nth-child(5) {
    transition-delay: 0.25s;
}
.button div span:nth-child(6) {
    transition-delay: 0.3s;
}
.button div span:nth-child(7) {
    transition-delay: 0.35s;
}
.button div span:nth-child(8) {
    transition-delay: 0.4s;
}
.button div span:nth-child(9) {
    transition-delay: 0.45s;
}
.button div span:nth-child(10) {
    transition-delay: 0.5s;
}
.button div span:nth-child(11) {
    transition-delay: 0.55s;
}
.button:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
    color: #fff;
} .button.white:hover {
    color: #666;
}
.button:hover span {
    --m: calc(var(--font-size) * -1);
}
.button.reverse {
    --font-shadow: calc(var(--font-size) * -1);
}
.button.reverse:hover span {
    --m: calc(var(--font-size));
}
@keyframes scroll {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(calc(-250px * 7));
   }
}
.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 90%;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}
.slider .slide {
    height: 100px;
    width: 250px;
}
:root {
    --color-primary: #000;
    --color-text-dark: #0d0925;
    --color-text-medium: #4e4a67;
    --color-text-light: #7b7992;
    --color-light: #fff;
    --color-bg-medium: #4e4a67;
    --spacing-base: 4px;
    --gradient-bg: linear-gradient(45deg, #4527a0, #6a1b9a);
    --shadow-base: 0px 14px 80px rgba(34, 35, 58, 0.2);
    --shadow-colored: rgba(82, 82, 82, 0.2) 0px 0px 5px 0px, rgba(80, 80, 80, 0.4) 0px 3px 20px 0px, rgba(88, 88, 88, 0.3) 0px 10px 28px 0px;
}
.c-card-testimonial .c-card-testimonial__profile {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    border-radius: 0;
    transform: translateX(-80px);
    overflow: hidden;
}
















@charset "utf-8";
.clear {
  clear: both;
}
.game-section img {
  max-width: 100%;
  border: 0px;
}
.game-section ul,.game-section ol {
  list-style: none;
}
.game-section a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.game-section a:focus,
.game-section a:active,
.game-section a:visited,
.game-section a:hover {
  text-decoration: none;
  outline: none;
}
.game-section a:hover {
  color: #e73700;
}
.game-section h2 {
  margin-bottom: 48px;
  padding-bottom: 16px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
}
.game-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 36px;
}
.game-section button {
  outline: none !important;
}
.line-title {
  position: relative;
  width: 400px;
}
.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.line-title::after {
  width: 32px;
  background: #1177aa;
}
.game-section {
  padding: 60px 50px;
}
.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}
.game-section .item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.game-section .item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
.game-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.game-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.game-section .owl-theme.custom-carousel .owl-dots {
  margin: 0 auto;
  width: 120px;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  z-index: 5;
}
.game-section .owl-theme.custom-carousel .owl-dots button {
    background-color: #a2a2a2;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    transition: all 1s;
} .game-section .owl-theme.custom-carousel .owl-dots button.active {
    background-color: #1177aa;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    transition: all 1s;
} .owl-nav {
    display: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 32px;
  }
  .game-section {
    padding: 50px 30px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .game-section h2 {
    margin-bottom: 32px;
  }
  .game-section h3 {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 32px;
  }
  .line-title {
    width: 330px;
  }
  .game-section {
    padding: 50px 30px 40px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }
  .game-section .item.active {
    width: 360px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  .game-section h2 {
    margin-bottom: 20px;
  }
  .game-section h3 {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 24px;
  }
  .line-title {
    width: 250px;
  }
  .game-section {
    padding: 30px 15px 20px;
  }
  .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }
  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}
























@media screen and (max-width: 768px) {
    .c-card-testimonial .c-card-testimonial__profile {
        transform: translateY(-50%);
        width: 90%;
   }
}
@media screen and (max-width: 576px) {
    .c-card-testimonial .c-card-testimonial__profile {
        width: 95%;
   }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
    .c-card-testimonial .c-card-testimonial__profile {
        height: 270px;
   }
}
.c-card-testimonial .c-card-testimonial__profile .c-card-testimonial__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: 0;
    transition: all 0.3s;
}
.c-card-testimonial .c-card-testimonial__description {
    padding-right: 24px;
}
@media screen and (max-width: 768px) {
    .c-card-testimonial .c-card-testimonial__description {
        margin-top: -80px;
        text-align: center;
        padding: 0 30px;
   }
}
@media screen and (max-width: 576px) {
    .c-card-testimonial .c-card-testimonial__description {
        padding: 0;
   }
}
.c-card-testimonial .c-card-testimonial__description > * {
    opacity: 0;
    transform: translateY(24px);
    transition: all 400ms;
}
.c-card-testimonial .c-card-testimonial__description .c-card-testimonial__job {
    color: var(--color-text-light);
}
.c-card-testimonial .c-card-testimonial__description .c-card-testimonial__author {
    margin: var(--spacing-base) 0 calc(var(--spacing-base) * 5);
    color: var(--color-text-dark);
    font-size: 24px;
    font-weight: 700;
}
.c-card-testimonial .c-card-testimonial__description .c-card-testimonial__excerpt {
    margin-bottom: 30px;
    color: var(--color-text-medium);
    line-height: 1.5em;
}
.c-card-testimonial .c-card-testimonial__description .c-card-testimonial__link {
    display: inline-flex;
    justify-content: center;
    padding: calc(var(--spacing-base) * 4) calc(var(--spacing-base) * 8);
    color: var(--color-light);
    background-color: var(--color-primary);
    border-radius: 0;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: var(--shadow-colored);
    text-transform: uppercase;
}
@media screen and (max-width: 576px) {
    .c-card-testimonial .c-card-testimonial__description .c-card-testimonial__link {
        width: 100%;
   }
}
.c-testimonials {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    box-shadow: var(--shadow-base);
    padding: calc(var(--spacing-base) * 8);
    border-radius: 0;
    overflow: hidden;
    display: none;
    height: 400px;
    background-color: var(--color-light);
    transition: all 300ms;
}
@media screen and (max-width: 992px) {
    .c-testimonials {
        max-width: 680px;
        height: 400px;
   }
}
@media screen and (max-width: 768px) {
    .c-testimonials {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
   }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
    .c-testimonials {
        height: 350px;
   }
}
.c-testimonials .c-testimonials__item {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .c-testimonials .c-testimonials__item {
        flex-direction: column;
   }
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__profile .c-card-testimonial__image {
    opacity: 1;
    transition-delay: 300ms;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > * {
    opacity: 1;
    transform: none;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(1) {
    transition-delay: 0.3s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(2) {
    transition-delay: 0.4s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(3) {
    transition-delay: 0.5s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(4) {
    transition-delay: 0.6s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(5) {
    transition-delay: 0.7s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(6) {
    transition-delay: 0.8s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(7) {
    transition-delay: 0.9s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(8) {
    transition-delay: 1s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(9) {
    transition-delay: 1.1s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(10) {
    transition-delay: 1.2s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(11) {
    transition-delay: 1.3s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(12) {
    transition-delay: 1.4s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(13) {
    transition-delay: 1.5s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(14) {
    transition-delay: 1.6s;
}
.c-testimonials .c-testimonials__item.swiper-slide-active .c-card-testimonial__description > *:nth-child(15) {
    transition-delay: 1.7s;
}
.c-testimonials .c-testimonials__pagination {
    position: absolute;
    top: 50%;
    right: calc(var(--spacing-base) * 5);
    bottom: auto !important;
    left: auto !important;
    width: 11px !important;
    text-align: center;
    z-index: 21;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .c-testimonials .c-testimonials__pagination {
        top: 205px;
        left: 50% !important;
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-50%);
   }
}
.c-testimonials .c-testimonials__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}
@media screen and (max-width: 768px) {
    .c-testimonials .c-testimonials__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
   }
}
.c-testimonials .c-testimonials__arrows {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: calc(var(--spacing-base) * 3);
    display: flex;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .c-testimonials .c-testimonials__arrows {
        justify-content: flex-end;
   }
}
.c-testimonials .c-testimonials__arrows .c-testimonials__arrow-next, .c-testimonials .c-testimonials__arrows .c-testimonials__arrow-prev {
    position: relative;
    margin-left: calc(var(--spacing-base) * 2);
    cursor: pointer;
    outline: 0;
    border: 0;
    color: var(--color-light);
    background-color: transparent;
    font-size: 16px;
    transition: color 300ms ease;
}
.c-testimonials .c-testimonials__arrows .c-testimonials__arrow-next::before, .c-testimonials .c-testimonials__arrows .c-testimonials__arrow-prev::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    right: 50%;
    height: 1px;
    background-color: var(--color-light);
    transition: all 250ms ease;
}
.c-testimonials .c-testimonials__arrows .c-testimonials__arrow-next:hover::before, .c-testimonials .c-testimonials__arrows .c-testimonials__arrow-prev:hover::before {
    left: 0;
    right: 0;
}
.c-testimonials .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-container-horizontal .swiper-pagination-custom, .swiper-container-horizontal .swiper-pagination-fraction {
    bottom: calc(var(--spacing-base) * 3);
    left: 0;
    width: 100%;
}
.c-testimonials .swiper-pagination-bullet {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 11px;
    background: var(--color-bg-medium);
    transition: all 0.3s;
}
.c-testimonials .swiper-pagination-bullet-active {
    height: calc(11px * 3);
    background: var(--color-primary);
}
@media screen and (max-width: 768px) {
    .c-testimonials .swiper-pagination-bullet-active {
        height: 11px;
        width: calc(11px * 3);
   }
}
@media only screen and (max-width: 768px) {
    .nav--btn__div button {
        display: none;
    } .nav--btn__div .button {
        display: none;
    } .header--h2, .header--h2__left, .header--h2__right {
        font-size: 1.5rem;
    } .header--p, .header--p__left, .header--p__right {
        font-size: 0.9rem;
    } .search--btns {
        overflow: scroll;
        justify-content: start;
    } .about--img {
        display: block;
        width: 90%;
        margin: 0 auto;
    } .above--footer {
        width: 96%;
        left: 2%;
    } .below--footer {
        display: block;
    } .below--footer img {
        margin-bottom: 12px;
    } .card--container {
        width: auto;
        justify-content: start;
        overflow: scroll;
    } .card {
        width: max-content;
    } .card h4 {
        width: 300px;
    } .card h2 {
        width: 300px;
    } .card--container {
        display: none;
    } #hamburger--close {
        margin-left: 90%;
        width: 2rem;
    } .wholescreen--nav__menu-div {
        width: 90%;
        margin-left: 5%;
        margin-top: 3vh;
    } .wholescreen--nav__menu-h1-div {
        margin-top: 12px;
    } .wholescreen--nav__menu-h1-div img {
        width: 30px;
    } .wholescreen--nav__menu-h1-div h1 {
        font-size: 1.5rem;
    } .wholescreen--nav__menu-option-div {
        padding: 0;
    } .wholescreen--nav__menu-option-div a {
        font-size: 0.9rem;
        margin: 3px 6px;
    } .wholescreen--nav__menu-option-div.active {
        height: 20vh;
    } .below--header {
        margin-top: 20vh;
    } .mobile {
        display: block;
    } .desktop {
        display: none;
    } .about, .search, .pricing, .services {
        padding: 30px 6px;
    } .button {
        font-size: .9rem;
    } .download--video__a {
        top: 8vh;
        height: 60px;
        width: 60px;
    }
  }
  @media only screen and (max-width: 1400px) {
    .header--h2, .header--h2__left, .header--h2__right {
        font-size: 1.8rem;
        padding: 6px 12px;
        text-align: justify;
    } .header--p, .header--p__left, .header--p__right {
        font-size: 1rem;
        padding: 6px 12px;
        text-align: justify;
    } .header--h2, .header--p {
        text-align: center;
    } .card--container {
        width: 96%;
    } #hamburger--close {
        margin-left: 94%;
    }
  }