html {
  scroll-behavior: smooth;
}

.flex_row {
  display: flex;
  flex-direction: row;
}

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

.width100 {
  width: 100%;
}

.margins_center {
  margin-left: auto;
  margin-right: auto;
}

.justify_start {
  justify-content: flex-start;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

/* ============= HEADER ============ */
.logged-in .nr-site-header {
  top: 32px;
}

.nr-site-header {
  position: absolute;
  top: 0;
  z-index: 9;
}
@media (min-width: 1100px) {
  .nr-site-header {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    padding: 20px 0px;
    flex-direction: row;
  }
}
@media (min-width: 1100px) and (max-width: 1700px) {
  .nr-site-header {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    padding: 15px 0px;
    flex-direction: row;
  }
}
@media (max-width: 700px) {
  .nr-site-header {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .nr-site-header {
    width: 100%;
  }
}
.nr-site-header .logo {
  display: flex;
  min-width: 220px;
}

.site-branding {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .site-branding {
    flex-direction: row;
    padding: 0.3em 1em;
    align-items: center;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .site-branding {
    flex-direction: row;
    padding: 0.3em 1em;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .site-branding .menu-wrap {
    display: none;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .site-branding .menu-wrap {
    display: none;
  }
}
.site-branding .menu {
  z-index: 9l;
}
@media (max-width: 700px) {
  .site-branding .contact {
    display: none;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .site-branding .contact {
    display: none;
  }
}

.fixed-header-wrap {
  position: fixed;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  top: 0;
  height: 100px;
  background-color: white;
  z-index: 9;
  transform: translateY(-150px);
  transition: 1s;
  box-shadow: 0 6px 23px 0 rgba(0, 0, 0, 0.16);
}
@media (min-width: 1100px) and (max-width: 1700px) {
  .fixed-header-wrap {
    height: 80px;
  }
}
@media (max-width: 700px) {
  .fixed-header-wrap {
    height: 80px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .fixed-header-wrap {
    height: 80px;
  }
}

.showHeader {
  transform: translateY(0) !important;
}

.color_heading h2, .color_heading h3 {
  color: #91ffd7 !important;
}

.site-branding-fixed {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 0px 30px 0px 0px;
}
@media (max-width: 700px) {
  .site-branding-fixed {
    justify-content: flex-start;
    padding: 0px 0px 0px 0px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .site-branding-fixed {
    justify-content: flex-start;
    padding: 0px 0px 0px 0px;
  }
}
.site-branding-fixed .menu-wrap {
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
}
.site-branding-fixed .logoDiv {
  border-right: 1px solid rgba(178, 132, 208, 0.2941176471);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px;
}
@media (max-width: 700px) {
  .site-branding-fixed .logoDiv {
    width: 25%;
  }
  .site-branding-fixed .logoDiv img {
    transform: scale(0.85);
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .site-branding-fixed .logoDiv {
    width: 15%;
  }
}
@media (max-width: 700px) {
  .site-branding-fixed .menu {
    width: 75%;
  }
  .site-branding-fixed .menu .contact {
    width: 100%;
    justify-content: space-between;
    padding: 0px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .site-branding-fixed .menu {
    width: 85%;
  }
  .site-branding-fixed .menu .contact {
    width: 100%;
    justify-content: space-between;
    padding: 0px 15px;
  }
}

.menu {
  display: flex;
  flex-direction: row;
}

.contact {
  display: flex;
  flex-direction: row;
}

body {
  font-family: "Assistant";
}

.hamburger {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}
.hamburger span {
  height: 4px;
  background-color: #b184d0;
  width: 100%;
  display: block;
}

@media (min-width: 1100px) and (max-width: 1700px) {
  .mobile_burger {
    display: none;
  }
}
@media (min-width: 1100px) {
  .mobile_burger {
    display: none;
  }
}

.customMenu {
  width: 100vw;
  height: 100vh;
  border: 0px solid black;
  position: fixed;
  background: white;
  top: 0;
  z-index: 99999;
  transition: 0.5s;
  padding: 15px;
}

@media screen and (max-width: 991px) {
  .nav-icon {
    width: 40px;
    float: right;
  }
  .nav-icon:after,
  .nav-icon:before,
  .nav-icon div {
    background-color: #000;
    border-radius: 3px;
    content: "";
    display: block;
    height: 5px;
    margin: 7px 0;
    transition: all 0.2s ease-in-out;
  }
  .nav-icon:after {
    background-color: #b184d0;
  }
  #btnClose .nav-icon:before {
    transform: translateY(12px) rotate(135deg);
  }
  #btnClose .nav-icon:after {
    transform: translateY(-12px) rotate(-135deg);
  }
  #btnClose .nav-icon div {
    transform: scale(0);
  }
  .mb_main-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding: 100px 30px 30px;
    animation: fadeOut 0.5s both;
    text-align: center;
    background: #fff;
  }
  .mb_main-nav ul li {
    font-size: 30px;
    font-weight: 500;
    display: list-item;
    margin: 0 0 10px;
    text-align: center;
    color: #fff !important;
  }
  .mb_main-nav ul li.green-mark {
    font-size: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
  span.glyphicon {
    font-size: 16px;
    transform: translate(30px, 0px);
  }
  .mb_main-nav ul .sub-menu {
    position: static;
    background: transparent;
    text-align: center;
    display: none;
  }
  .mb_main-nav li .sub-menu li {
    text-align: center;
  }
  #btnClose {
    font-size: 22px;
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
  }
  #btnClose svg {
    width: 20px;
    height: 20px;
  }
}
.menuShow {
  transform: translateY(0);
  opacity: 1;
}

.menuHide {
  transform: translateY(-100vh);
  opacity: 0;
}

/* ============ SHARED ============ */
.parent-width {
  width: 100%;
}

.inner-width {
  width: 1300px;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@keyframes wiggle {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.wiggle:hover {
  animation-name: wiggle;
  animation-duration: 1s;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-us a {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid black;
  margin-right: 15px;
  font-weight: 700;
  font-size: 1.5em;
  color: black !important;
  padding-right: 15px;
}
@media (max-width: 700px) {
  .call-us a {
    display: none;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .call-us a {
    display: none;
  }
}

@keyframes changeColorAhref {
  0% {
    color: black;
  }
  100% {
    color: #b184d0;
  }
}
.mobile_menu {
  min-height: 50vh;
}
.mobile_menu .menu-wrap {
  display: flex;
}
.mobile_menu .menu {
  flex-direction: column;
}
.mobile_menu ul {
  list-style: none;
  padding-right: 0;
}
.mobile_menu ul li {
  text-align: center;
  margin: 0.5em 0 !important;
}

.menu-wrap {
  display: flex;
  align-items: center;
  justify-content: left;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 35vw;
  margin-inline-start: 40px;
}
@media (max-width: 700px) {
  .menu-wrap {
    display: none;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .menu-wrap {
    display: none;
  }
}
.menu-wrap ul {
  list-style: none;
  padding-left: 0px;
}
.menu-wrap ul li {
  list-style: none;
  margin: 0px 15px;
  font-size: 1.5em;
}
.menu-wrap ul li a {
  color: black;
}
.menu-wrap ul li a:hover {
  animation-name: changeColorAhref;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

.mobile_small_burder {
  width: 1.5em;
  height: 19px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 1em;
  direction: rtl;
}
@media (min-width: 1100px) and (max-width: 1700px) {
  .mobile_small_burder {
    display: none;
  }
}
@media (min-width: 1100px) {
  .mobile_small_burder {
    display: none;
  }
}
.mobile_small_burder span {
  width: 100%;
  height: 2px;
  background-color: black;
  display: inline-block;
}
.mobile_small_burder span:nth-of-type(1) {
  width: 50%;
}
.mobile_small_burder span:nth-of-type(2) {
  background-color: #b184d0;
}
.mobile_small_burder span:nth-of-type(3) {
  width: 75%;
}

.contact-btn.full_width {
  width: 100%;
}

.myInnerWrap {
  display: flex;
  flex-direction: row;
}
@media (max-width: 700px) {
  .myInnerWrap {
    flex-direction: column;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .myInnerWrap {
    flex-direction: column;
  }
}

.contact-btn {
  width: 150px;
  height: 50px;
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
}
.contact-btn .text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  color: white;
  font-weight: 700;
}
@media (max-width: 700px) {
  .contact-btn .text {
    font-size: 1em;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .contact-btn .text {
    font-size: 1em;
  }
}
.contact-btn .greenBg {
  background: linear-gradient(180deg, #b184d0 0%, #a264cc 100%);
}

.greenBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: 0.3s;
  pointer-events: none;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .greenBg {
    border-radius: 10px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .greenBg {
    border-radius: 10px;
  }
}

.whiteBg {
  width: 100%;
  height: 100%;
  border: 1px solid #b184d0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: 0.3s;
  transform: scaleX(1.1) scaleY(1.5);
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .whiteBg {
    border-radius: 10px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .whiteBg {
    border-radius: 10px;
  }
}

.grad_bg {
  background: linear-gradient(180deg, #b184d0 0%, #a264cc 100%);
}

.contact-btn:hover .greenBg {
  transform: scale(0);
  opacity: 0;
}
.contact-btn:hover .whiteBg {
  transform: scaleX(1) scaleY(1);
  opacity: 1;
}
.contact-btn:hover .text {
  color: #b184d0;
}

.client-card {
  position: relative;
}
.client-card .text {
  position: relative;
  z-index: 9;
  color: #b184d0;
}
.client-card .title {
  position: relative;
}
.client-card .title .greenBg {
  background: transparent;
}
.client-card .title .whiteBg {
  background: linear-gradient(180deg, #b184d0 0%, #a264cc 100%);
}

.client-card:hover .greenBg {
  transform: scale(0);
  opacity: 0;
}
.client-card:hover .whiteBg {
  transform: scaleX(1) scaleY(1);
  opacity: 1;
}
.client-card:hover .text {
  color: white;
}

/* =========== HOME ============ */
#first_scroll_a_tag {
  position: absolute;
  top: 90vh;
}

#moveMe {
  position: absolute;
  top: -100px;
}

.home-page-text-wrap {
  height: 100vh;
}
.home-page-text-wrap .anim_text_wrap {
  height: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 700px) {
  .home-page-text-wrap .anim_text_wrap {
    flex-direction: column;
    transform: translateY(-2vh);
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .home-page-text-wrap .anim_text_wrap {
    flex-direction: column;
    transform: translateY(-50px);
  }
}
.home-page-text-wrap .anim_text_wrap .partial {
  width: 45%;
}
@media (max-width: 700px) {
  .home-page-text-wrap .anim_text_wrap .partial {
    width: 80%;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .home-page-text-wrap .anim_text_wrap .partial {
    width: 80%;
  }
}
.home-page-text-wrap .anim_text_wrap h2 {
  font-size: 5em;
  font-weight: 900;
  line-height: 1em;
}
@media (max-width: 700px) {
  .home-page-text-wrap .anim_text_wrap h2 {
    font-size: 2.5em;
    line-height: 1em;
    margin-bottom: 0;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .home-page-text-wrap .anim_text_wrap h2 {
    font-size: 4.5em;
    line-height: 1em;
    margin-bottom: 0;
  }
}
.home-page-text-wrap .anim_text_wrap h2 .dot {
  color: #b184d0;
  font-size: 0.9em;
  margin: 0px 5px;
}
.home-page-text-wrap .anim_text_wrap .text {
  font-size: 2em;
}
@media (max-width: 700px) {
  .home-page-text-wrap .anim_text_wrap .text {
    font-size: 1.2em;
    margin-top: 1em;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .home-page-text-wrap .anim_text_wrap .text {
    font-size: 2em;
    margin-top: 1em;
  }
}
.home-page-text-wrap .down_chev {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
.home-page-text-wrap .down_chev img {
  cursor: pointer;
}

@keyframes showTitles {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes changeColor {
  0% {
    color: auto;
  }
  25% {
    color: auto;
  }
  50% {
    color: #b184d0;
  }
  75% {
    color: auto;
  }
  100% {
    color: auto;
  }
}
.first_transform {
  animation-name: changeColor;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
}

.second_transform {
  animation-name: changeColor;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-delay: 3.5s;
  animation-timing-function: ease-in-out;
}

.third_transform {
  animation-name: changeColor;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-delay: 5s;
  animation-timing-function: ease-in-out;
}

.tranformY1 {
  opacity: 0;
  animation-name: showTitles;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

.tranformY2 {
  opacity: 0;
  animation-name: showTitles;
  animation-duration: 1.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.tranformY3 {
  opacity: 0;
  animation-name: showTitles;
  animation-duration: 1.5s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

.tranformY4 {
  opacity: 0;
  animation-name: showTitles;
  animation-duration: 1.5s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

.wrap_clients {
  width: 100%;
}
.wrap_clients h2 {
  text-align: center;
  padding-bottom: 2em;
}
@media (max-width: 700px) {
  .wrap_clients h2 {
    padding-bottom: 1em;
    padding-top: 1em;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .wrap_clients h2 {
    padding-bottom: 1em;
    padding-top: 1em;
  }
}

.clients_loop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 1em;
}
@media (max-width: 700px) {
  .clients_loop {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .clients_loop {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
}

.single_client_start_mode {
  transform: scale(1.2);
  opacity: 0;
}

.single-client {
  transition: 0.8s;
  border: 1px solid #b184d0;
}
.single-client .card .inner-img {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 50%;
}
.single-client .title {
  text-align: center;
  font-weight: 600;
  border-top: 1px solid #b184d0;
  padding: 5px 0px;
}

#ajax-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  transition: 1s;
}

/* =================== FOOTER ================== */
.footer_ex {
  background-color: #000219;
  color: white;
}
.footer_ex h3 {
  color: #91ffd7;
  font-weight: 700;
}

.footer_flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Footer Hover Animation */
.hidden {
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
}

.link {
  outline: none;
  text-decoration: none;
  position: relative;
  font-size: 4em;
  line-height: 4;
  color: white;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 700px) {
  .link {
    font-size: 2em;
    color: #b184d0;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .link {
    font-size: 2em;
    color: #b184d0;
  }
}

.container {
  width: 100%;
  padding: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link--kukuri {
  text-transform: uppercase;
  font-weight: 900;
  overflow: hidden;
  line-height: 1;
  color: white;
}
@media (max-width: 700px) {
  .link--kukuri {
    color: #b184d0;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .link--kukuri {
    color: #b184d0;
  }
}
.link--kukuri:hover {
  color: white;
}
.link--kukuri::after {
  content: "";
  position: absolute;
  height: 16px;
  width: 100%;
  top: 50%;
  margin-top: -8px;
  right: 0;
  background: #f9f9f9;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.link--kukuri:hover::after {
  transform: translate3d(100%, 0, 0);
}
.link--kukuri::before {
  content: attr(data-letters);
  position: absolute;
  z-index: 2;
  overflow: hidden;
  color: #b184d0;
  white-space: nowrap;
  width: 0%;
  transition: width 0.4s 0.3s;
}
.link--kukuri:hover::before {
  width: 100%;
}

.single-post .customStyle h2, .single-post .customStyle h3, .single-post .customStyle h4, .single-post .customStyle h5, .single-post .customStyle h6 {
  margin-top: 2em;
}

.custom_toc {
  height: 100%;
  width: 100%;
}
.custom_toc h2, .custom_toc h3, .custom_toc h4, .custom_toc h5, .custom_toc h6 {
  margin-top: 0em;
}

/* Create a custom scrollbar for the '.custom-scroll' class */
.custom-scroll {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #b184d0 transparent; /* Firefox */
}

.custom-scroll::-webkit-scrollbar {
  width: 16px; /* Width of the scrollbar for vertical scroll */
  height: 16px; /* Height of the scrollbar for horizontal scroll */
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #b184d0; /* Color of the scrollbar thumb */
  border-radius: 8px; /* Rounded corners for the scrollbar thumb */
}

.my_toc {
  max-height: 500px;
  overflow: auto;
  border: 1px solid #b184d0;
  border-radius: 3px;
  width: 23vw;
  max-width: 430px;
  position: fixed;
  top: 120px;
  transition: 1s;
}
@media (min-width: 700px) and (max-width: 1100px) {
  .my_toc {
    width: 90vw;
    max-width: 90vw;
    top: 90px;
    background-color: #f5f5f5;
    z-index: 999;
    transform: translateY(-300%);
  }
  .my_toc .elementor-toc__header {
    border-bottom: none;
  }
}
@media (max-width: 700px) {
  .my_toc {
    width: 90vw;
    max-width: 90vw;
    top: 90px;
    background-color: #f5f5f5;
    z-index: 999;
    transform: translateY(-300%);
  }
  .my_toc .elementor-toc__header {
    border-bottom: none;
  }
}

.setHeight section {
  height: 100%;
}
.setHeight section div:not(.my_toc) {
  height: 100%;
}

.elementor-menu-anchor {
  position: relative;
  top: -150px; /* Adjust this value to change how much higher the position should be */
  visibility: hidden;
}

.color-heading {
  background: linear-gradient(145deg, #af85cc, #9236D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2em;
  font-weight: bold; /* optional for more impact */
}/*# sourceMappingURL=custom.css.map */