/*
Theme Name: TEWLS (Top End Women's Legal Service)
Author: Five by Five
Version: 4.0
*/

:root {
  color-scheme: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #270510;
  font-size: 16px;
  line-height: 1.75;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: 47px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 35px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 18px;
}

p {
  margin: 0 0 20px;
}

a {
  color: inherit;
  transition: background-color 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

a[role="button"] {
  text-decoration: none;
}


.breadcrumbs {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

select,
button,
textarea,
input {
  font-size: inherit;
  font-family: inherit;
}

.btn,
button,
input[type="submit"],
a {
  cursor: pointer;
}

.wrapper {
  width: 1460px;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.site-container {
  overflow-x: hidden;
}

/* Site Scrollbar */
::-webkit-scrollbar {
  width: 0.7rem;
}
::-webkit-scrollbar-track {
  border: none;
  background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
  /* border: 2px solid #e5e5e5;
    border-radius: 10px; */
  background: #722691;
}
::-webkit-scrollbar-thumb:hover {
  background: #e28842;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-top {
  -webkit-animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1)
    both;
  animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
}
@keyframes fade-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
}
.fade-out-top {
  -webkit-animation: fade-out-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: fade-out-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
.elementor-button {
  background-color: #e28842;
  border: 2px solid #e28842;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16.5px 26px;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  border-radius: 60px;
}

.secondary .btn,
.secondary button,
.secondary input[type="button"],
.secondary input[type="submit"],
.secondary .elementor-button {
  border-color: #722691;
  background: #fff;
  color: #270510;
}

.terrain .btn,
.terrain button,
.terrain input[type="button"],
.terrain input[type="submit"],
.terrain .elementor-button {
  border-color: #fff;
  background: #fff;
  color: #270510;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.elementor-button:hover,
.purple-btn .btn,
.purple-btn button,
.purple-btn input[type="button"],
.purple-btn input[type="submit"],
.purple-btn .elementor-button {
  border-color: #722691;
  background: #722691;
  color: #fff;
}

.purple-btn .btn:hover,
.purple-btn button:hover,
.purple-btn input[type="button"]:hover,
.purple-btn input[type="submit"]:hover,
.purple-btn .elementor-button:hover {
  border-color: #722691;
  background: #fff;
  color: #722691;
}

.gm-style button {
  border-radius: 0;
}

.btn,
.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  min-height: 50px;
}

/* Header */
.elementor-location-header {
  background: #fff;
}
/* .header-stick .site-header, */
/* .header-stick.header-type1 .elementor-location-header, */
.header-stick.header-type2 .elementor-location-header,
.header-stick .elementor-location-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  /*animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
   box-shadow: 0 0 17px 0 rgb(0 0 0 / 5%); */
}
/* .header-unstick .site-header, */
/* .header-unstick.header-type1 .elementor-location-header, */
.header-unstick.header-type2 .elementor-location-header,
.header-unstick .elementor-location-header {
  /*animation: fade-out-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;*/
}

/* .header-type1 .site_header_con,
.header-type1 .elementor-location-header, */
.header-type2 .site_header_con,
.header-type2 .elementor-location-header {
  position: absolute;
  width: 100%;
  z-index: 100;
}

/*.header-type1 .elementor-location-header{
    background: none;
}*/

.header-type2 .elementor-location-header {
  background: none;
  color: #fff;
}

/* .header-type1.header-stick .elementor-location-header, */
.header-type2.header-stick .elementor-location-header {
  /* background: #fff; */
  color: inherit;
}

.header-type2.header-stick .with-alt-logo .site-logo-main,
.header-type2 .with-alt-logo .site-logo-alt {
  display: none;
}
.header-type2.header-stick .with-alt-logo .site-logo-alt {
  display: inline-block;
}

/* Menu */
ul.menu {
  list-style: none;
  padding: 0;
}

div .elementor-nav-menu .sub-arrow i:after {
  content: "\e92d";
  font-family: "icomoon";
  font-style: normal;
  position: relative;
  font-size: 8px;
  color: #e28842;
  margin-top: -1px;
  display: block;
}
.elementor-nav-menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site_header_con .lhal-menu-link a {
  font-weight: 400 !important;
  opacity: 0.5;
}

.site_header_con .post-lhal {
  padding-top: 10px !important;
}

.site_header_con .pre-lhal {
  padding-bottom: 5px !important;
}

.site_header_con .e--pointer-underline .elementor-item:after {
  background-color: #e28842;
}



/* Search */
.ff-search {
  background: #f8f9fa;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: transform 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: transform;
  transform: translate3d(0, -100%, 0);
}
.show_search .ff-search {
  transform: translate3d(0, 0, 0);
}
.ff-search form {
  width: 730px;
  max-width: 100%;
  position: relative;
}
.ff-search .search-input {
  width: 100%;
  background: #fff;
  border: 1px solid #acb5bd;
  height: 60px;
  border-radius: 60px;
  padding: 5px 25px 5px 25px;
}
.ff-search .submit {
  width: 150px;
  position: absolute;
  right: 5px;
  height: 50px;
  top: 5px;
  border-radius: 50px;
}
.ff-search .close {
  position: absolute;
  top: 20px;
  right: -30px;
  font-size: 25px;
  font-weight: 400;
  opacity: 0.6;
  cursor: pointer;
}
.ff-search .close:hover {
  opacity: 1;
}

/* Slide Menu */
.ff-slide-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
  z-index: 100;
  pointer-events: none;
  display: none;
}
.show_slide_menu .ff-slide-menu-mask {
  display: block;
  pointer-events: auto;
  animation: fadeIn 1s;
}
.ff-slide-menu {
  width: 100%;
  max-width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 110;
  transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0.1s;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  padding: 20px;
  overflow: auto;
}

.show_slide_menu .ff-slide-menu {
  transform: translate3d(0, 0, 0);
}

.ff-slide-menu .menu-item > a {
  font-weight: 600;
  text-decoration: none;
}
.ff-slide-menu .menu-item > a:hover {
  text-decoration: underline;
}

.ff-slide-menu .menu-item .lhal-menu-link > a {
  font-weight: 400;
  padding-left: 10px;
}

/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
  overflow: hidden;
}
.ff-slide-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.ff-slide-menu-close {
  cursor: pointer;
  font-size: 30px;
}
.ff-slide-menu-close:hover {
  opacity: 0.8;
}

.ff-slide-menu-trigger {
  background: none;
  border: none;
  padding: 5px;
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  border-radius: 3px;
  background: #722691;
}
.ff-slide-menu-trigger span {
  height: 2px;
  width: 100%;
  background: #fff;
}
/* .ff-slide-menu-trigger:hover {
  background: none;
} */
.ff-slide-menu-trigger .l1 {
  width: 100%;
  transition: width 0.5s ease;
  will-change: width;
}
.ff-slide-menu-trigger:hover .l1 {
  width: 70%;
}

.ff-slide-menu .sub-menu {
  /* overflow: hidden;
    transition: all .5s ease;
    height: 0;
    display: flex; */
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.2;
  padding: 0;
}
/* .ff-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */

.ff-slide-menu .menu-item-has-children > a {
  position: relative;
  display: block;
  padding: 5px 0;
}

.ff-slide-menu .menu-item-has-children > a:after {
  content: "\e90b";
  font-family: "icomoon";
  transition: transform 0.5s ease;
  position: absolute;
  right: 0;
  font-size: 18px;
  top: 5px;
  line-height: 1;
}

.ff-slide-menu .menu-item-has-children >a.toggle_switch:after {
  transform: rotate(180deg);
}

.ff-slide-menu .toggle_height_el_con {
  transition: height 500ms ease;
}

.ff-slide-menu .menu-item-has-children .sub-menu{
  padding-left: 15px;
}
.ff-slide-menu .menu-item-has-children .sub-menu li{
  list-style: none;
}
/* .ff-slide-menu .menu-item-has-children .sub-menu li a{
  line-height: 1.355
} */

.show-interpreter-popup .elementor-button:after {
  content: url(/wp-content/uploads/2024/05/z-icousers.svg);
  margin-left: 17px;
}

.slide-menu-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}

.slide-menu-footer-links .elementor-button {
  min-height: 38px;
  text-decoration: none;
  padding: 9px 15px;
  text-align: left;
}
.show-interpreter-popup {
  position: relative;
  display: inline-block;
}
.show-interpreter-popup .elementor-button {
  display: flex;
  justify-content: space-between;
  gap: 17px;
}

.slide-menu-footer-links > div,
.slide-menu-footer-links > div > a,
.ff-slide-menu .gtranslate_wrapper,
.ff-slide-menu .gtranslate_wrapper select,
.search-mobile {
  display: block;
  width: 100%;
  max-width: 100%;
}

.search-mobile input[type="search"] {
  border: 2px solid #e28842;
  border-radius: 60px;
  font-weight: 600;
  width: 100%;
  padding: 8px 15px;
  height: 38px;
}

.show-interpreter-popup .elementor-button:after {
  content: url("/wp-content/uploads/2024/05/z-icousers.svg");
  margin-left: auto;
  display: inline;
}

/* Swiper / Carousel */
.swiper-slide {
  width: auto;
}
.transition-linear {
  transition-timing-function: linear;
}
.swiper-pagination-bullet {
  font-size: 0;
  line-height: 1;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  border: 1px #495056 solid;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #495056;
}

.swiper-pagination.numeric .swiper-pagination-bullet {
  font-size: 15px;
  font-weight: bold;
  color: #a4a7aa;
  letter-spacing: 1px;
  width: 40px;
  height: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background: transparent;
  border: 0px;
  border-right: 2px #a4a7aa solid;
  margin: 0;
}
.swiper-pagination.numeric .swiper-pagination-bullet:last-of-type {
  border-right: 0px;
}
.swiper-pagination.numeric .swiper-pagination-bullet-active {
  background: transparent;
  color: #495056;
}
/*custom-tab-1*/
.custom-tab-1 .e-n-tabs {
  gap: 0px;
}

.custom-tab-1 .e-n-tab-title {
  color: #270510 !important;
  font-weight: 600;
  background-color: transparent;
  border-bottom: 4px #f3dfcd solid;
  padding: 15px 15px;
}

.custom-tab-1 .e-n-tab-title:hover {
  color: #270510 !important;
  background-color: transparent !important;
  border-bottom: 4px #e28842 solid;
}
.custom-tab-1 .e-n-tabs-content {
  padding: 22px 39px 23px 28px;
  background: #f7f5f0;
  border-radius: 0px 10px 10px 10px;
}

.custom-tab-1 .e-n-tab-title[aria-selected="true"] {
  background-color: transparent !important;
  border-bottom: 4px #e28842 solid;
}
.custom-tab-1 .e-n-tabs-heading {
  background: #f7f5f0;
  border-radius: 10px 10px 0px 0px;
  max-width: 540px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.custom-tab-1 .e-n-tab-title[aria-selected="false"] {
  background-color: #f7f5f0;
}



@media (max-width: 1023px) {
  .custom-tab-1 .e-n-tab-title {
    padding: 15px 15px;
  }
}

@media (max-width: 767px) {
  .custom-tab-1 .e-n-tab-title-text {
    text-align: left;
  }
  .custom-tab-1 .e-n-tab-title {
    justify-content: start;
    line-height: 1.4;
  }
  .custom-tab-1 .e-n-tab-title:after {
    content: "\e90d";
    font-family: "icomoon";
    font-weight: normal;
    font-size: 22px;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 15px;
  }
  .custom-tab-1 .e-n-tab-title[aria-selected="true"]:after {
    content: "\e90b";
  }
  .custom-tab-1 .e-n-tabs-heading {
    max-width: 100%;
    display: contents;
  }

  /* .custom-tab-tewls */

  .custom-tab-tewls .e-n-tab-title {
    border-radius: 5px!important;
    margin-bottom: 10px;
    background: #82C1CF!important;
    color: #fff!important;
    border-color: #82C1CF!important;
  }
  .custom-tab-tewls .e-n-tab-title[aria-selected="true"] {
    background: #16542B!important;
    color: #fff!important;
    border-color: #16542B!important;;
  }

}

/*custom-accordion*/
.custom-accordion .e-n-accordion-item-title {
  /*justify-content: space-between;*/
  font-weight: 600;
  color: #722691;
  border: 0px;
  border-bottom: 2px #dedbcc solid;
  padding: 15px 20px;
}

.custom-accordion .e-n-accordion-item[open] .e-n-accordion-item-title {
  border-color: transparent;
  color: #722691;
}
.custom-accordion .e-n-accordion-item[open] > div {
  border-bottom: 2px #722691 solid;
}

.custom-accordion .e-n-accordion-item-title-text {
  padding-left: 10px;
}

/*selector .e-n-accordion-item-title-icon {
  order: 2;
}*/

.custom-accordion .e-n-accordion-item-title-icon span {
  height: auto;
  width: auto;
}

.custom-accordion .e-n-accordion-item-title-icon i:before {
  font-family: "icomoon";
  font-size: 11px;
  color: #722691;
  transition: color 0.3s ease;
}

.custom-accordion
  .e-n-accordion-item-title:hover
  .e-n-accordion-item-title-icon
  i:before {
  color: #722691;
}

.custom-accordion .e-n-accordion-item-title-icon .e-closed i:before {
  content: "\e92f";
  color: #e28842;
}

.custom-accordion .e-n-accordion-item-title-icon .e-opened i:before {
  content: "\e92d";
}

.custom-accordion .e-n-accordion-item > .elementor-element {
  border: 0px;
  padding: 15px;
}

@media (max-width: 1023px) {
  .custom-accordion .e-n-accordion-item-title {
    padding: 15px 10px;
  }

  .custom-accordion .e-n-accordion-item > .elementor-element {
    padding: 10px 5px;
  }
}

/* Toggle Height */
.toggle_height_el_con {
  height: 0;
  overflow: hidden;
  transition: height 600ms ease;
}

/* Others */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.NOIntersectionObserver .elementor-invisible {
  visibility: visible;
}

body.admin-bar .dialog-lightbox-widget {
  min-height: 100vh;
}

body:not(.elementor-editor-active) .defer-bg-image div,
body:not(.elementor-editor-active) .defer-bg-image section,
body:not(.elementor-editor-active) .defer-bg-image {
  background-image: none !important;
}

.section-with-border-top:before,
.section-with-border-bottom:before {
  content: "";
  position: absolute;
  width: 1400px;
  max-width: 100%;
  left: 50%;
  translate: -50%;
  height: 2px;
  background: #eff0f1;
}
.section-with-border-bottom:before {
  top: initial;
  bottom: 0;
}
.section-with-border-top:before {
  bottom: initial;
  top: 0;
}

.elementor-video-wrapper iframe {
  height: 100%;
}

.flex {
  display: flex;
}
.items-no-shrink .item {
  flex-shrink: 0;
}

.color-white {
  color: #fff;
}

.hide {
  display: none !important;
}

.text-center {
  text-align: center;
}

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

.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.limit-lines-4,
.limit-lines-3,
.limit-lines-2,
.limit-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.limit-lines-2 {
  -webkit-line-clamp: 2;
}
.limit-lines-3 {
  -webkit-line-clamp: 3;
}
.limit-lines-4 {
  -webkit-line-clamp: 4;
}

.fa-twitter:before {
  content: "\e935" !important;
  font-family: "icomoon" !important;
  font-weight: 400 !important;
}

/* helpers */

.orange-text {
  color: #e28842 !important;
}

strong {
  font-weight: 600;
}

/* accessibility */

body #pojo-a11y-toolbar {
  top: unset !important;
  bottom: 50%;
  transform: translateY(50%);
}

/* accessibility - defaults */

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
  border-radius: 100% 0 0 100%;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-right {
  right: -250px;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
  border-radius: 0 0 0 10px;
}

/* accessibility - open */

body #pojo-a11y-toolbar.pojo-a11y-toolbar-right.pojo-a11y-toolbar-open {
  right: 0;
}

/*  One Click Accessibility Override for Greyscale  */
body.pojo-a11y-grayscale .site-main,
body.pojo-a11y-grayscale .elementor-location-popup,
body.pojo-a11y-grayscale .pojo-a11y-toolbar-open,
body.pojo-a11y-grayscale .elementor-location-header, 
body.pojo-a11y-grayscale .elementor-location-footer .elementor-element{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray
}
body.pojo-a11y-grayscale .elementor-location-footer{
  background: #535353;
}
body.pojo-a11y-grayscale .dialog-close-button i {
  color: #7e7e7e!important;
}
body.pojo-a11y-grayscale::-webkit-scrollbar-thumb {
  background: #535353;
}
body.pojo-a11y-grayscale::-webkit-scrollbar-thumb:hover {
  background: #535353;
}

body.pojo-a11y-grayscale,
body.pojo-a11y-grayscale .e-con-inner .elementor-element:has(.elementor-sticky){
  filter: none;
  -webkit-filter: none;
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
}

/* custom-list-1-ul */

.custom-list-1-ul ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list-1-ul ul li {
  position: relative;
  line-height: 1.6;
  border-radius: 5px;
  padding: 6px 15px 6px 35px;
}

.custom-list-1-ul ul li:before {
  content: "\e944";
  font-family: "icomoon";
  font-size: 8px;
  font-weight: normal;
  color: #e28842;
  position: absolute;
  top: 13px;
  left: 15px;
}

/* gtranslate */

.gtranslate_wrapper select {
  border-radius: 60px;
  border: 2px solid #e28842;
  font-weight: 600;
  color: #270510;
  padding: 4px 15px;
  max-width: 148px;
  font-size: 15px;
}

.gtranslate_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("path_to_custom_arrow_image") no-repeat right center;
  padding-right: 20px;
  height: 38px !important;
}

.gtranslate_wrapper select::-ms-expand {
  display: none;
}

.gtranslate_wrapper {
  position: relative;
  width: fit-content;
}

.gtranslate_wrapper:after {
  content: url("/wp-content/uploads/2024/05/language_icon.svg");
  position: absolute;
  right: 15px;
  top: 7px;
  background: #fff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
}

/* Custom-scrollbar */
.custom-scrollbar,
.custom-scrollbar.elementor-widget {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
  backface-visibility: hidden;
  /* transform: translateY(0px); */
}
.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar.elementor-widget::-webkit-scrollbar {
  width: 3px;
}
.custom-scrollbar::-webkit-scrollbar-track,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-track {
  -webkit-border-radius: 1.25em;
  border-radius: 1.25em;
  border: none;
  background-color: #DEDBCC;
  /* box-shadow: inset 0 0 6px rgba(0,0,0,0.2); */
}
.custom-scrollbar::-webkit-scrollbar-thumb,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-thumb {
  -webkit-border-radius: 1.25em;
  border-radius: 1.25em;
  background-color: #722691;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-thumb:hover {
  background-color: #e28842;
}

.custom-scrollbar.style-white::-webkit-scrollbar-track,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-track {
  background-color: #ffffff50;
}
.custom-scrollbar.style-white::-webkit-scrollbar-thumb,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-thumb {
  background-color: #fff;
}
.custom-scrollbar.style-white::-webkit-scrollbar-thumb:hover,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}



@media (max-width: 1599px) and (min-width: 1024px){

  .site_header_con nav > ul > .menu-item:last-child > .sub-menu {
    margin-left: -52px!important;
  }

}

@media (max-width: 1023px) {
  .tablet-ml-auto {
    margin-left: auto;
  }
  .tablet-mr-auto {
    margin-right: auto;
  }
  .tablet-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .tablet-text-center {
    text-align: center;
  }

  .tablet-cols-fullwidth.e-con > .e-con-inner {
    flex-wrap: wrap;
  }
  .tablet-cols-fullwidth.e-con > .e-con-inner > .e-con {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mobile-ml-auto {
    margin-left: auto;
  }
  .mobile-mr-auto {
    margin-right: auto;
  }
  .mobile-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-text-center {
    text-align: center;
  }
}

/* @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    
} */
