/**
* Template Name: Fichte & CO
* Template URL: https://fichtelegal.com/
* Author: Array Tag, LLC
* License: https://arraytag.com/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --white: #fff;
  --black: #000;
  --gray: #f5f5f5;
  --gray-dark: #222;
  --gray-darker: #111;
  --gray-light: #f5f5f5;
  --gray-lighter: #f5f5f5;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  width: 100%;
  /* font-family: 'Maven Pro'; */
  /* color: #444444; */
  color: #343A40;
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

a {
  color: var(--e-global-color-primary);

  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
  color: #111;
}

a.active {
  color: #111;
}

#wpadminbar .quicklinks>ul>li>a {
  color: #f0f0f1 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

.grecaptcha-badge {
  display: none;
  visibility: hidden;
}

.exp {
  margin: 0;
}

.search-btn {
  margin-right: 150px;
}

.container {
  width: 90vw !important;
  max-width: 90vw !important;
}

.clr1 {
  color: var(--e-global-color-primary) !important;
}

.bg1 {
  background-color: var(--e-global-color-primary);
}

.svg-white {
  fill: #ffffff;
  width: 20px;
  height: 30px;
  margin-left: 8px;
  margin-top: -4px
}

/*--------------------------------------------------------------
# Effects Styles
--------------------------------------------------------------*/
.effect-bubba {
  position: relative
}

.effect-bubba::before,
.effect-bubba::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s
}

.effect-bubba::before {
  border-top: 3px solid #8B2332;
  border-bottom: 3px solid #8B2332;
  transform: scale(0, 1)
}

.effect-bubba::after {
  border-right: 3px solid #8B2332;
  border-left: 3px solid #8B2332;
  transform: scale(1, 0)
}

.effect-bubba:hover::before,
.effect-bubba:hover::after {
  opacity: 1;
  transform: scale(1)
}

.effect-apollo {
  background-color: #8B2332;
  position: relative;
  overflow: hidden;
  margin: 0
}

.effect-apollo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.effect-apollo__overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transition: transform 0.6s;
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0)
}

.effect-apollo:hover>img {
  opacity: 0.6;
  transform: scale(1)
}

.effect-apollo:hover .effect-apollo__overlay:before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 110%, 0)
}

.effect-apollo>img {
  width: 100%;
  opacity: 1;
  transform: scale(1.06);
  position: relative;
  transition: opacity 0.35s, transform 0.35s;
  background-color: #eee;
  filter: none
}

.effect-apollo--hide {
  background-color: transparent
}

.effect-apollo--hide .effect-apollo__overlay {
  display: none
}

.effect-apollo--hide>img {
  width: auto;
  transform: none
}

.effect-apollo--hide:hover>img {
  opacity: 1;
  transform: none
}

/*--------------------------------------------------------------
# Navbar Styles
--------------------------------------------------------------*/
#navbar {
  background-color: var(--white);
  /* transition: all 1.5s ease; */
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  padding: 0;
}

#navbar ul li:hover,
#navbar ul li:active {
  background: var(--e-global-color-accent);
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

#navbar ul li:first-child:hover,
#navbar ul li:first-child:active {
  border-left: none;
}

#navbar ul li:last-child:hover,
#navbar ul li:last-child:active {
  border-right: none;
}

.navbar-collapse {
  z-index: 0;
}

#fichteNavBar {
  justify-content: flex-end;
  margin-bottom: -2em;
  z-index: 999;
}

.navbar {
  transition: all 0.1s ease-in;
}

.navbar-nav {
  font-size: 1em;
  font-weight: 500;
  background: var(--e-global-color-primary);
  width: 80vw;
  right: 0;
  align-items: center;
}

#navbar ul li.nav-item:first-child {
  position: relative;
}

.navbar-nav li:first-child:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 34px 30px 30px 0;
  border-color: transparent var(--e-global-color-primary);
  display: block;
  width: 0;
  z-index: 1;
  left: -30px;
  top: 0;
}

.navbar-nav li:first-child:hover:before {
  border-color: transparent var(--e-global-color-accent);
}

.navbar-nav li ul li:first-child:before {
  content: '';
  display: none;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--white) !important;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--e-global-color-primary) !important;
}

.nav-link a:active {
  color: var(--e-global-color-primary) !important;
}

.side-menu {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-menu button,
.side-menu i {
  cursor: pointer;
  font-size: 1em;
  color: #fff;
}

#navbar ul li ul li:after {
  content: '';
  border-bottom: 1px solid #eee;
}

#navbar ul li a {
  font-size: medium;
  background: transparent;
}

#navbar ul li:hover,
#navbar ul li a:hover {
  color: var(--white);
}

#navbar ul li.active.nav-item {
  background-color: var(--e-global-color-accent);
  font-weight: bold;
  color: var(--white);
}

/* Mega Menu Custom Styles */

/* .stm-mega-menu-item {
    display: flex;
    align-items: center;
	justify-content: center;
} */

.stm-mega-menu-image {
  margin-right: 10px;
  width: 100%;
}

.stm_megamenu img {
  margin: 0;
}

.stm-mega-menu-title {
  text-wrap: wrap;
  text-align: center;
  margin: 10px 0;
}

.stm-mega-menu-description {
  margin-top: 10px;
  font-size: 0.9em;
  color: var(--e-global-color-secondary);
  line-height: 2em;
  text-align: justify;
}

.stm-mega-menu-description:before {
  content: '';
  border-top: 1px #eee solid;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
}

html body ul li.stm_megamenu>ul.sub-menu>li,
html body #wrapper #header ul li.stm_megamenu>ul.sub-menu>li,
li.stm_megamenu>ul.sub-menu>li {
  margin: 0 0 10px;
}

#navbar ul li ul > li:hover a,
#navbar ul li .stm-mega-menu-title:hover,
#navbar ul li.nav-item .stm-mega-menu-title:hover a,
#navbar ul li.nav-item.active ul li.nav-item.active .stm-mega-menu-title {
  color: var(--white);
}

#navbar ul li ul > li:hover p,
#navbar ul li.nav-item.active ul li.nav-item.active .stm-mega-menu-description, 
#navbar ul li.nav-item.active ul li:hover .stm-mega-menu-description {
  color: #f8f8f8
}


ul.sub-menu.dropdown-menu > li:after {
  content: '';
  display: block;
  border-bottom: 1px #eee solid;
  border-right: 1px #eee solid;
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

ul.container.sub-menu.dropdown-menu {
  padding: 0 12px !important;
  margin-top: 2.5em;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
#back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--e-global-color-primary);
  width: 45px;
  height: 45px;
  border-radius: 4px;
  transition: all 0.4s;
}

#back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

#back-to-top:hover {
  background: #111111;
  color: var(--white);
}

#back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.get-in-touch {
  background: var(--e-global-color-primary) !important;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  border-radius: 4px;
  transition: all 0.4s;
  height: 45px;
}

.get-in-touch small {
  font-size: 18px;
  color: var(--white);
  line-height: 2;
  text-transform: uppercase;
}

.get-in-touch:hover {
  background: #111111;
  color: var(--white);
}

.get-in-touch.active {
  visibility: visible;
  opacity: 1;
}

#search-addon {
  position: absolute;
  right: 0;
  background: transparent;
  margin-top: 5px;
}


/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.gs-btn {
  background: var(--e-global-color-primary) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: .8rem 1.2rem !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  font-size: 1.25rem !important;
  text-transform: uppercase !important;
  display: inline-block;
  -webkit-appearance: initial !important;
}

.gs-btn2 {
  background: var(--e-global-color-primary) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: .4rem 1.1rem !important;
  white-space: nowrap !important;
  transition: 0.3s !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  -webkit-appearance: initial !important;
}


.gs-btn:hover {
  background: #111111 !important;
  color: var(--white) !important;
}

.gs-btn2:hover {
  background: #111111 !important;
  color: var(--white) !important;
}

.gs-btn3 {
  background: var(--e-global-color-primary);
  color: var(--white);
  border-radius: 4px;
  padding: .4rem 1.1rem;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
}

.gs-btn3:hover {
  background: #111111;
  color: var(--white);
}

.gs-btn4 {
  background: var(--e-global-color-primary);
  color: var(--white);
  border-radius: 4px;
  /* padding: .8rem 4.1rem; */
  width: 80%;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: inline-block;
}

#gt-btn {
  width: 80px;
}

#gs-btn .elementor-align-icon-left {
  border-right: 1px solid var(--white);
  padding-right: 12px;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-grey {
  color: #212529;
  background-color: #eeeff0;
  border-color: #eeeff0;
}

.btn-grey:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/*--------------------------------------------------------------
# Floating Icons
--------------------------------------------------------------*/

ul#floaticons {
  list-style: none;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  padding: 0;
  margin: 0;
}

ul#floaticons>li>span {
  display: block;
  margin-right: 8px;
  height: 45px;
  width: 260px;
  right: -220px;
  border-radius: 25px 0 0 25px;
  border: 2px solid var(--e-global-color-primary);
  background: var(--e-global-color-primary);
  margin-bottom: 1em;
  transition: all .4s ease;
  color: var(--white);
  text-decoration: none;
  line-height: 50px;
  position: relative;
}

ul#floaticons>li:hover>span {
  cursor: pointer;
  right: 0;
  color: var(--white);
}

ul#floaticons>li:hover>span>content {
  right: 0;
}

ul#floaticons>li:hover>span>i {
  right: -14px;
}

ul#floaticons>li>span>content {
  padding: 0 15px 0 30px;
  position: absolute;
  right: -250px;
  transition: left .4s ease;
}

ul#floaticons>li>span>i {
  position: relative;
  top: 30%;
  right: -10px;
  transform: translateY(-50%);
  font-size: 1.6em;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.blog-cat li a:hover,
a:active {
  color: var(--e-global-color-primary);
}

#logo-top {
  max-width: 200px;
  height: auto;
  margin: auto;
}

#logo-nav {
  width: 160px;
  height: auto;
  position: relative;
  display: none;
}

.fixed-top #logo-nav {
  display: inline-block;
  left: 5%;
}

.sidelogos {
  display: flex;
  position: relative;
  margin: 0;
  height: auto;
  justify-content: flex-end;
  align-items: center;
  right: -2rem;
}

.sidelogos span {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-right: 5rem;
}

.legallogo {
  border: 2px solid #d4d4d4;
  color: #d4d4d4;
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 20%;
  margin-left: 5px;
  -webkit-box-shadow: 0 8px 6px -6px #111;
  -moz-box-shadow: 0 8px 6px -6px #111;
  box-shadow: 0 8px 6px -6px #111;
}

.spacing {
  margin-left: 50px;
}

.fl-fl {
  position: fixed;
  background: var(--e-global-color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 3px;
  width: 320px;
  height: 50px;
  right: -275px;
  top: 40%;
  z-index: 1000;
  border-radius: 24px 0px 0px 24px;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.fa {
  font-size: 20px;
  color: var(--white);
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}

.fl-fl .fab {
  font-size: 20px;
  color: var(--white);
  padding: 10px 0;
  width: 30px;
  margin-left: 8px;
}

.fl-fl .fas {
  font-size: 20px;
  color: var(--white);
  padding: 10px 0;
  width: 40px;
  margin-left: 11px;
}

.fl-fl:hover {
  cursor: pointer;
  right: 0;
}

.fl-fl a {
  color: var(--white) !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px !important;
  vertical-align: top !important;
  font-size: 14px;
}

.fl-fl.float-shr {
  margin-top: 0;
}

.fl-fl.float-ml {
  margin-top: 3.5rem;
}

.fl-fl.float-pn {
  margin-top: 7rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  z-index: -999;
  position: relative;
  /* Ensure position is set for absolute positioning of children */
}

#hero:before,
#hero:after {
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  /* Make sure to set a stacking context with position:relative on the parent if needed */
  transform: translateX(-100%);
  /* Start off-screen to the left */
  /* Apply both animations */
  animation: slideInFromLeft 3s ease-out 1s forwards,
    halfOpacity 3s ease-out 1s forwards;
}

#hero:before {
  background: linear-gradient(45deg, var(--e-global-color-primary) 48%, transparent 48%);
}

#hero:after {
  background: linear-gradient(45deg, var(--e-global-color-secondary) 50%, transparent 50%);
  z-index: -2;
  /* Ensure this layer is below the :before layer */
}

#hero h1 {
  position: relative;
  z-index: 999;
  margin-left: 15%;
  font-size: 48px;
  font-weight: bold;
}

#hero h2 {
  color: var(--white);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--white);
  background: var(--e-global-color-primary);
  border: 2px solid var(--e-global-color-primary);
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: var(--white);
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: var(--e-global-color-primary);
}

/* #header .logo img {
  max-height: 40px;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

li,
p {
  font-family: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# Search Overlay  
--------------------------------------------------------------*/
#search-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  /* Ensure it's above other content */
}

.search-box {
  position: relative;
  width: 80%;
  max-width: 600px;
}

#search-input {
  width: 100%;
  padding: 1em;
  font-size: 16px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #eee;
  color: #fff;
  font-style: italic;
}

#close-search {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: none;
  color: white;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.events-archive .events-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.events-archive .events-search-form input,
.events-archive .events-search-form button {
  flex-grow: 1;
  padding: 10px;
}

.event-card {
  display: flex;
  background: #f9f9f9;
  border: 1px solid #ddd;
  overflow: hidden;
}

.event-image {
  height: 100%;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-details {
  padding: 10px;
  flex-grow: 1;
}

.more-info {
  display: inline-block;
  background: var(--e-global-color-primary);
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}

.more-info:hover {
  background: #111;
  color: #fff !important;
}

.events-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.search-input,
.filter-dropdown,
.filter-inputs select,
.filter-inputs input {
  flex: 1;
}

.filter-dropdown select,
.filter-inputs select,
.filter-inputs input,
.search-input input {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-title {
  text-align: left;
  position: relative;
}

.section-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  margin: 10px auto;
  width: 30%;
  height: 6px;
  background: var(--e-global-color-primary);
}

.section-title h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #111;
  position: relative;
}


.section-title p {
  margin-bottom: 0;
}

.section-title2 {
  text-align: left;
  position: relative;

}

.section-title2 h2 {
  font-size: 32px;
  font-weight: 500;
  color: #111;
  position: relative;
}

.section-bg {
  padding: 120px 0;
  color: var(--white);
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background-color: var(--e-global-color-accent);
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  min-height: 300px;
}

.breadcrumbs:before {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -9999;
}

.breadcrumbs h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}

.breadcrumbs .blog-cat {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 60%;
  font-size: 20px;
  font-weight: 500;
}


.breadcrumbs .blog-cat {
  text-transform: uppercase;

}

.breadcrumbs .active>a {
  color: var(--e-global-color-primary);
}

.breadcrumbs .blog-cat li+li::before {
  display: inline-block;
  padding-right: 30px;
  color: #444444;
  content: " ";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients-slider {
  margin-top: 1em;
  margin-bottom: 4em;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 1;
  border: 1px solid #e03a3c;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

.clients .swiper-slide img {
  width: 14vh;
  height: auto;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: var(--e-global-color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--white);
  color: var(--e-global-color-primary);
  border-radius: 50px;
  border: 2px solid var(--white);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--e-global-color-primary);
}

.tabs .nav-link.active {
  background: var(--e-global-color-primary);
  color: var(--white);
  border-color: var(--e-global-color-primary);
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--e-global-color-primary);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
}

.services .icon-box:hover {
  background: #56585A;
}

.services .icon-box i {
  float: left;
  color: var(--e-global-color-primary);
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: var(--white);
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: var(--e-global-color-primary);
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

#images {
  display: flex;
  justify-content: space-around;
}

.container-exp {
  /* remember to set a width */
  margin-right: auto;
  margin-left: auto;
}

.item-exp {
  width: 10em;
}

.image-box {
  position: relative;
  /* margin: auto; */
  /* overflow: hidden; */
  /* margin: 0 !important; */
  margin-left: auto;
  margin-right: auto;
  width: 320px;
}

.image-box img {
  max-width: 100%;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
}

.image-box:hover img {
  transform: scale(1.1);
}


.portfolio-container {

  width: 100%;
  margin: 0 auto;
}

.portfolio .portfolio-item {
  padding-bottom: 30px;
  width: 20%;
  margin: 0 auto;
}

.img-width {
  width: 100%;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--white);
  background: var(--e-global-color-primary);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap,
.portfolio .portfolio-wrap2 {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}

.portfolio .portfolio-wrap .portfolio-info,
.portfolio .portfolio-wrap2 .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: inherit;
  background-attachment: fixed;
  text-align: center;
}

.portfolio .portfolio-wrap .portfolio-info {
  height: 86px;
  padding: 20px 10px;
}

.portfolio .portfolio-wrap2 .portfolio-info {
  padding: 15px;
}

.portfolio .portfolio-wrap::before,
.portfolio .portfolio-wrap2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
}

.portfolio .portfolio-wrap img {
  height: 350px;
}

.portfolio .portfolio-wrap img,
.portfolio .portfolio-wrap2 img {
  transition: all ease-in-out 0.3s;

}

.portfolio .portfolio-wrap .fa-chevron-circle-right {
  position: absolute;
  bottom: 40%;
  left: 40%;
  font-size: 4em;
  color: var(--white);
}

.portfolio .portfolio-wrap .fa-chevron-circle-right:hover {
  color: var(--e-global-color-primary);
}

.portfolio .portfolio-wrap .portfolio-info h5,
.portfolio .portfolio-wrap2 .portfolio-info h5 {
  margin: 0;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-wrap: nowrap; */
}

.portfolio .portfolio-wrap2 .portfolio-info h5 {
  text-align: center;
  text-transform: capitalize;
}

.portfolio-wrap2 h5 .arrow {
  opacity: 0;
}

.portfolio-wrap2:hover h5 .arrow {
  opacity: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--white);
}

.portfolio .portfolio-wrap:hover img,
.portfolio .portfolio-wrap2:hover img {
  transform: scale(1.2);
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 1;
  border: 1px solid var(--e-global-color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--e-global-color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: var(--e-global-color-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--e-global-color-primary);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team-section-area .team-parent-boxarea:hover .teamimages {
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.team-section-area .team-parent-boxarea:hover .teamimages img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.team-section-area .team-parent-boxarea .team-boxarea {
  position: relative;
  overflow-y: hidden;
}

.team-section-area .team-parent-boxarea .team-boxarea .teamimages {
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
  background: #eee;
}

.team-section-area .team-parent-boxarea .team-boxarea .teamimages img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.team-section-area .team-parent-boxarea .team-textarea {
  position: relative;
  width: 90%;
  height: 250px;
  margin: 0 auto;
  top: -5em;
  z-index: 2;
  align-items: center;
  background: #fff;
  padding: 18px 16px;
  border-radius: 5px;
  box-shadow: 0px 2px 48px 0px rgba(0, 0, 0, 0.09);
}

.team-section-area .team-parent-boxarea .team-textarea .team-top {
  display: flex;
  justify-content: space-between;
}


.team-section-area .team-parent-boxarea .team-textarea .shareicon {
  background: #333;
  color: #fff;
  height: 42px;
  width: 42px;
  display: flex;
  justify-content: center;
  line-height: 42px;
  font-size: 20px;
  border-radius: 50%;
  overflow-y: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.team-section-area .team-parent-boxarea .team-textarea .shareicon a,
.team-section-area .team-parent-boxarea .team-textarea .shareicon a svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: #fff;
  font-weight: 600;
}

.team-section-area .team-parent-boxarea .team-textarea .shareicon:hover {
  background: #8B2332;
}

@media (max-width: 767px) {
  .team-section-area .team-parent-boxarea .team-textarea {
    width: 100%;
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-section-area .team-parent-boxarea .team-textarea {
    width: 100%;
    left: 0;
  }
}

.team-section-area .team-parent-boxarea .team-textarea a {
  font-size: 1.35rem;
  font-weight: bold;
  color: #333;
  display: inline-block;
}

.team-section-area .team-parent-boxarea .team-textarea p {
  font-weight: 400;
  font-size: 1rem;
  color: #3A3A3F;
}

.team-section-area .team-parent-boxarea:hover .team-social-links {
  visibility: visible;
  transition: all 0.6s ease-in-out;
  height: 185px;
  opacity: 1;
  z-index: 1;
  bottom: 70px;
}

.team-section-area .team-parent-boxarea .team-boxarea:hover .team-social-links {
  visibility: visible;
  transition: all 0.6s ease-in-out;
  height: 185px;
  opacity: 1;
  z-index: 1;
}

.team-section-area .team-parent-boxarea .team-social-links>ul {
  list-style: none;
}

.team-section-area .team-parent-boxarea .team-social-links {
  position: absolute;
  right: 35px;
  bottom: 92px;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
  height: 0;
  bottom: 0;
  opacity: 0;
  z-index: -9;
}

@media (max-width: 767px) {
  .team-section-area .team-parent-boxarea .team-social-links {
    right: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-section-area .team-parent-boxarea .team-social-links {
    right: 20px;
  }
}

.team-section-area .team-parent-boxarea .team-social-links ul li a {
  background: #fff;
  display: inline-block;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.team-section-area .team-parent-boxarea .team-social-links ul li a:hover {
  background: #8B2332;
  transition: all 0.4s ease-in-out;
  color: #fff;
}

.team-section-area .team-parent-boxarea .team-social-links ul li a svg {
  margin: 0;
  padding: 0;
  fill: #8B2332;
  color: #8B2332;
  width: 22px;
  height: 22px;
}

.team-section-area .team-parent-boxarea .team-social-links ul li:hover a svg {
  margin: 0;
  padding: 0;
  fill: #fff;
  color: #fff;
}

/*** Single Team Member **/
.team-overview-box {
  background: #eee;
}

.team-image-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

.team-image-box img.framed-img {
  border: 3px solid #fff;
  border-radius: 10px;
}

.team-overview-box .team-info {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 310px;
}

.team-overview-box .team-lang {
  display: flex;
  margin-left: 1.5em;
  padding-left: 0;
  list-style: none;
}

.team-overview-box .team-lang .lang-item {
  text-transform: capitalize;
  margin-left: 5px;
}

.team-overview-box ul.team-expertise {
  list-style: none;
  display: flex;
  flex-flow: column wrap;
  height: 15em;
  padding: 0;
  margin: 0;
}

.team-overview-box ul.team-expertise li {
  padding: 0.5em 1em 0.5em 0;
  margin: 2px;
}

.team-overview-box .social-icons a {
  font-size: 15px;
  width: 42px;
  height: 42px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  background-color: #8B2332;
  color: #fff;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  margin-right: 3px;
}

.team-overview-box .social-icons a svg {
  fill: #fff;
  color: #fff;
  margin: 0;
  top: -1px;
  position: relative;
  width: 24px;
  height: 24px;
}

.team-overview-box .social-icons a:hover {
  background-color: #111;
}

.section-break {
  margin: 2.3em 0;
  border: none;
  border-top: 2px solid #ddd;
}

.team-details-tabs {
  margin-left: -15px;
  margin-right: -15px;
}

.team-details-tabs .nav-tabs .nav-link {
  color: #444;
}

.team-details-tabs .tab-content {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 0;
  margin-top: -1px;
}

.team-details-tabs .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.team-details-tabs .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  margin-bottom: -1px;
  background: #8c2332;
}

.team-details-tabs .nav-tabs .nav-link {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 10px;
  color: #fff !important;
}

.team-details-tabs .nav-tabs .nav-item:hover,
.team-details-tabs .nav-tabs .nav-item .active {
  background-color: #8c2332;
}

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/
.wpml-ls-legacy-list-horizontal .wpml-ls-item {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}

.wpml-ls-legacy-list-horizontal a {
  display: flex !important;
  align-items: center !important;
  height: 36px !important;
  width: 36px !important;
  text-align: center !important;
  line-height: 36px !important;
  margin-bottom: 10px !important;
  transition: all 0.4s ease-in-out !important;
}

.wpml-ls-legacy-list-horizontal a:hover {
  background: #8B2332 !important;
  color: #fff !important;
  width: 100% !important;
}

/*--------------------------------------------------------------
# Expertise
--------------------------------------------------------------*/
/* Grid container for expertise archive */
#expertise {
  position: relative;
}

.expertise-slider {
  height: 420px;
  margin-top: 1em;
}

.expertise-slider2 {
  height: 420px;
  margin-bottom: 2em;
}

.expertise-archive-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* Adjust as needed */
  justify-content: center;
}

/* Single expertise item */
.expertise-item {
  position: relative;
  width: calc(33.333% - 20px);
  /* Adjust according to the number of columns */
  height: 300px;
  /* Adjust as necessary */
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  /* Inside frame border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Optional shadow for depth */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: scale(1.05);
  /* Slight hover effect */
}

/* Overlay containing the title */
.expertise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Title wrapper centered within the overlay */
.expertise-title-wrapper {
  width: 80%;
  border: 2px solid #fff;
  /* Inner frame border */
  padding: 10px;
}

.expertise-title {
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Sub Expertise
--------------------------------------------------------------*/
/* Main Content Section */
.lawyer {
  text-align: center;
  padding: 20px;
}

.lawyer-img {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  display: flex;
  background: #eee;
  margin-bottom: 10px;
}

.associated-lawyers .social-icons a {
  font-size: 15px;
  width: 42px;
  height: 42px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  background-color: #8B2332;
  color: #fff;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  margin-right: 3px;
}

.associated-lawyers .social-icons a:hover {
  background-color: #111;
}

.associated-lawyers .social-icons a svg {
  fill: #fff;
  color: #fff;
  margin: 0;
  top: -1px;
  position: relative;
  width: 24px;
  height: 24px;
}

/* Vertical Tabs for Sub-Expertise */
.sub-expertise-section {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.sub-expertise-section .nav-tabs {
  margin: 0;
  border-bottom: none;
}

/* Custom tab styles */
.sub-expertise-section .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  list-style: none;
}

.sub-expertise-section .nav-tabs .nav-link {
  padding: 12px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 0 2px;
  color: #8B2332;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.sub-expertise-section .nav-tabs .nav-link.active {
  background-color: #8B2332;
  color: #ffffff;
  border: 1px solid #8B2332;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.sub-expertise-section .nav-tabs .nav-link:hover {
  background-color: #111;
  color: #fff !important;
}

.sub-expertise-section .tab-content {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: var(--white);
}

.contact .info i {
  font-size: 20px;
  color: #556270;
  float: left;
  width: 44px;
  height: 44px;
  background: #edeff1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #556270;
}

.contact .info p {
  padding: 0 0 0 20px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #556270;
  color: var(--white);
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--white);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type="submit"],
.contact .php-email-form button[type="submit"] {
  background: var(--e-global-color-primary) !important;
  border: 0 !important;
  padding: 10px 32px !important;
  color: var(--white) !important;
  transition: 0.4s !important;
  border-radius: 4px !important;
}

.contact .php-email-form input[type="submit"]:hover,
.contact .php-email-form button[type="submit"]:hover {
  background: #111111 !important;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
#entry-event1 {
  background-image: url(../img/events.jpg);
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* .blog .entry.entry-single .entry-content div, */
.blog .entry.entry-single img,
.blog .entry.entry-single .entry-meta,

.blog .entry.entry-single .entry-content p {
  padding: 0;
}

.blog .entry.entry-single .entry-content blockquote {
  padding: 0;
  margin: 0;
}

.blog .entry.entry-single .entry-footer {
  padding: 15px 0;
}

.blog .entry.entry-single .entry-footer span {
  display: block;
}

.blog .entry {
  padding: 30px;
  height: auto;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.entry-image {
  height: 300px;
  max-height: 300px;
  width: 100%;
}

.blog .entry .entry-img img {
  width: 100%;
}

.blog .entry .entry-image,
.blog .entry .entry-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-img {
  max-height: 540px;
}

.blog .entry .entry-img2 {
  display: grid;
  align-items: center;
  max-height: 360px;
  justify-content: center;
  overflow: hidden;
}

.blog .entry iframe {
  text-align: center;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;

}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  /* padding: 0; */
  color: #111111;
  margin: 0 0 20px 0;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: var(--e-global-color-primary);
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #111111;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}


.blog .entry .entry-meta span {
  margin-right: 10px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #111111;
  font-size: 14px;
  display: inlinexrx;
  line-height: 1;
}

.blog .entry .entry-content div,
.blog .entry .entry-content li,
.blog .entry .entry-content p {
  color: #111111;
  line-height: 24px;
  /* width: 100%; */
  text-align: justify;
}

#blog .entry .entry-content div,
#blog .entry .entry-content li,
#blog .entry .entry-content p,
#blog .entry .entry-content h1,
#blog .entry .entry-content h2,
#blog .entry .entry-content h3,
#blog .entry .entry-content h4,
#blog .entry .entry-content h5,
#blog .entry .entry-content h6 {
  padding: 0 20%;
}

.blog .entry .entry-content ul {
  color: #111111;
  line-height: 24px;
  /* width: 100%; */
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: var(--e-global-color-primary);
  color: var(--white) !important;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #111111;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  color: #111111;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #111111;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 20%;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-content ul li {
  color: inherit;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
}

.blog .entry .entry-footer i {
  color: #111111;
  display: inline;
  margin-right: 8px;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: var(--e-global-color-primary);
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}


.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #111111;
  content: ",";
}

.blog .entry .entry-footer .tags-share {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags-share li {
  display: inline-block;
}

.blog .entry .entry-footer .tags-share li+li::before {
  padding-right: 6px;
  color: #111111;
  content: "";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.reg-form-custom li {
  color: #111;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #111111;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #111111;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: var(--e-global-color-primary);
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #111111;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #ee9293;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #ee9293;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--e-global-color-primary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--white);
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--e-global-color-primary);
  color: var(--white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.in-touch {
  position: relative;
  height: 100%;
  width: 100%;
  color: #111;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #e34c4d;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--e-global-color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--e-global-color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--white);
  border: 1px solid var(--e-global-color-primary);
  background: var(--e-global-color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}



#about p {
  font-family: "Inter", sans-serif;
}

/* Slider */
.slick-slider {
  position: relative;

  display: block;

  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  max-height: 670px;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.items {
  width: 90%;
  margin: 0px auto;
  margin-top: 40px
}

.items2 {
  width: 90%;
  margin: 0px auto;
  margin-top: 5px
}

.slick-slide {
  margin: 10px;
  height: auto !important;
}

.slick-slide:first-child,
.slick-slide:last-child {
  margin-left: 0;
}

.cont {
  position: relative;
  margin: 0 auto;
  padding-left: 1.3em;
  padding-bottom: 1.5em;
  transition: 0.3s;
}

.cont .content {
  position: relative;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  padding: 16px;
}

.cont .content h6 {
  text-align: center;
  margin-left: 3em;
  font-weight: 300;
}

.cont a i {
  /* display:none; */
  opacity: 0;
}

.cont a:hover i {
  /* display: inline-block; */
  opacity: 1;
}

.slick-slide img {
  width: 100%;
}

.cont:hover {
  transform: scale(1.06);

}

@-moz-document url-prefix() {
  .slick-slide img {
    width: 100%;
    height: 33vh;
    margin-bottom: -5.0em;
    max-height: 33vh;
  }
}

.carousel {
  margin-top: 30px;
  margin-bottom: 50px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  background: transparent;
}

.prev-arrow {
  left: -2vw;
  position: relative;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 15px solid var(--white);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.next-arrow {
  left: 88vw;
  position: relative;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 15px solid var(--white);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.owl-carousel.owl-loaded {
  max-height: 470px;
}

section#expertise .owl-nav {
  position: absolute;
  top: 45%;
}

.sign-up-btn {
  z-index: 2;
}

#fixedbutton {
  position: fixed;
  bottom: 15px;
  right: 70px;
  z-index: 4;
}

.btn-signup {
  position: relative;
  display: inline-block;
}

.gs-btn-fixed {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  background: var(--e-global-color-primary);
  color: var(--white);
  border-radius: 4px;
  padding: 0.5rem 0.5rem;
  /* white-space: nowrap; */
  transition: 0.3s;
  font-size: small;
  text-align: justify;
  height: 40px;
  z-index: 996;
  text-transform: uppercase;
  transition: all 0.4s;

  /* display: inline-block; */
}

/* #back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--e-global-color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
} */

.gs-btn-fixed:hover {
  background: #111111;
  color: var(--white);
}

.gs-btn-fixed.active {
  visibility: visible;
  opacity: 1;
}

.gs-btn-fixed:focus {
  outline: none !important;
  box-shadow: none;

}

.gs-btn:focus {
  outline: none !important;
  box-shadow: none;

}

.gs-btn2:focus {
  outline: none !important;
  box-shadow: none;

}

#message-text {
  height: 200px;
}

.band {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
}

.thumb img {
  width: 100%;
  height: 11em;
}

.card-blog {
  background: var(--white);
  text-decoration: none;
  color: #444;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  top: 0;
  transition: all 0.1s ease-in;
}

.card-blog:hover {
  top: -2px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.card-blog article {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-blog h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;

}

.card-blog p {
  flex: 1;
  margin-top: 1em;
  line-height: 1.4;
  word-break: break-word;

}

.card-blog span {
  font-size: 12px;
  font-weight: bold;
  /* color: #999; */
  color: var(--e-global-color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2em 0 0 0;
}

.card .author-image {
  display: flex;
  margin-top: -40px;
  margin-bottom: 10px;
  margin-left: 1em;
}

.card .author-image img {
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}


.btn-style:focus {
  outline: none !important;
  box-shadow: none;
}



.progress {
  position: relative;
  overflow: inherit;
  height: 6px;
  margin: 30px 0px 15px;
  width: 100%;
  display: inline-block;
  border-radius: 10px;
}

.progress .progress-bar {
  height: 6px;
  background: var(--e-global-color-primary);
  border-radius: 10px;
}

.progress .progress-bar-title {
  position: absolute;
  left: 0;
  top: -30px;
  color: #111111;
  font-size: 16px;
}

.progress .progress-bar-number {
  position: absolute;
  right: 0;
  color: #111111;
  top: -30px;
  font-weight: 600;
  font-size: 14px;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-mail:hover {
  color: var(--e-global-color-primary);

}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.text-black {
  color: #111;
}


.font-weight-normal {
  font-weight: 500 !important;
}

.w-25 {
  width: 25% !important;
}

.text-muted {
  color: #111111 !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.625rem !important;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
}

.column {
  -webkit-flex-direction: column;
  flex-direction: column;
  float: left;
}

.flex-item {
  padding: 5px;
  width: 90px;
  height: 100px;
  margin: 5px;
  line-height: 50px;
  color: var(--white);
  font-weight: bold;
  font-size: 2em;
  text-align: center;
}

.flex-item:first-child {
  margin-left: 0;
  padding-left: 0;
}

.flex-fill {
  width: 100%;
  height: 100%;
}

.flex-wrap {
  border: 2px solid #d4d4d4;
  color: #d4d4d4;
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 20%;
  margin-left: 5px;
  -webkit-box-shadow: 0 8px 6px -6px #111;
  -moz-box-shadow: 0 8px 6px -6px #111;
  box-shadow: 0 8px 6px -6px #111;
}

.row {
  -webkit-flex-direction: row;
  flex-direction: row;
}

.careers-text {
  width: 100%;
  padding-left: 6%;
  padding-right: 6%;
}

.ImageWrapper img {
  width: 85%;
  height: 50vh;
}

.email a:hover {
  color: var(--e-global-color-primary);
}

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

.box div {
  width: 100px;
  height: 100px;
}

.wpb_wrapper {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
}

.wpb_wrapper p {
  font-size: 1.2em;
}

.wpb_wrapper ul {
  font-size: 1.1em;
}

.wpb_wrapper a {
  font-weight: 600;
  color: var(--e-global-color-primary);
}


.container-careers {
  /* display: flex;
  flex-wrap: wrap; */
  display: flex;
  flex-wrap: wrap;
  height: auto;
  align-content: space-between;

}

.container-careers .item-1 {
  /* flex: 30%; 
  padding: 1em; */
  width: 400px;
  padding: 1em;
  /* text-align: center; */
}

.container-careers .item-2 {
  /* flex: 70%; 
  padding: 1em; */
  width: 1300px;
  padding: 1em;
  /* text-align: center; */
}

.career-wrapper {
  padding-top: 5%;
  display: flex;
  -webkit-display: flex;
  justify-content: space-around;
}

.card-wrapper {
  margin-top: 2em;
  background: var(--white);
  border-radius: 6px;
  max-height: 100px;
  overflow: hidden;
  padding: 2rem;
  width: 100%;
  transition: max-height 500ms ease-in-out;
  box-shadow: 12px 12px 2px 1px var(--e-global-color-primary);
}

.card-wrapper:hover {
  box-shadow: 0 0 8px #d3d3d3;
  cursor: pointer;
  max-height: 1000px;
}

.card-details,
.reveal-details {
  font-weight: 300;
}

.card-height-animate {
  height: 300px;
}



.dashboard-cards {
  position: relative;
  padding-bottom: 50px;
  margin: 0 !important;
}

.width {
  width: 50%;
}

.dashboard-cards .card {
  background: var(--e-global-color-primary);
  display: inline-block;
  color: var(--white);
  z-index: 20;
  padding: 0 !important;
  margin: 5px 5px 10px 5px;
  position: relative;
  text-align: left;
  transition: all 0.3s 0s ease-in;
  z-index: 1;
  width: calc(33.33333333% - 10px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard-cards .card:hover {
  box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
  transition: all 0.3s ease;
}

.dashboard-cards .card .card-title {
  background: var(--e-global-color-primary);

  padding: 20px 15px;
  position: relative;
  z-index: 0;
}

.dashboard-cards .card .card-title h2 {
  font-size: 24px;
  letter-spacing: -0.05em;
  margin: 0;
  padding: 0;
}

.dashboard-cards .card .card-title h2 small {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: -0.025em;
}

.dashboard-cards .card .card-description {
  position: relative;
  font-size: 17px;
  border-top: 1px solid #ddd;
  padding: 10px 15px 0 15px;
}

.dashboard-cards .card .card-actions {
  box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
  padding: 10px;
  text-align: center;
}

.dashboard-cards .card .card-flap {
  /* background: #d9d9d9; */
  background: var(--e-global-color-primary);

  position: absolute;
  width: 100%;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.dashboard-cards .card .flap1 {
  transition: all 0.3s 0.3s ease-out;
  z-index: -1;
}

.dashboard-cards .card .flap2 {
  transition: all 0.3s 0s ease-out;
  z-index: -2;
}

.dashboard-cards.showing .card {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transform: scale(0.88);
  transform: scale(0.88);
}

.dashboard-cards .no-touch .dashboard-cards.showing .card:hover {
  opacity: 0.94;
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
}

.dashboard-cards .card.d-card-show {
  opacity: 1 !important;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}

.dashboard-cards .card.d-card-show .card-flap {
  background: var(--e-global-color-primary);

  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.dashboard-cards .card.d-card-show .flap1 {
  transition: all 0.3s 0s ease-out;
}

.dashboard-cards .card.d-card-show .flap2 {
  transition: all 0.3s 0.2s ease-out;
}

.front .task-count {
  font-size: 40px;
  line-height: 140px;

}

.dashboard-cards .task-list {
  padding: 0 !important;
}

.dashboard-cards .task-list li {
  padding: 10px 0;
  padding-left: 10px;
  margin: 3px 0;
  list-style-type: none;
  color: var(--white);
  /* border-bottom: 1px solid #e9ebed;
  border-left: 3px solid var(--e-global-color-primary); */
  transition: all .2s ease;
}

.dashboard-cards .task-list li:hover {
  background: #ecf0f1;
  transition: all .2s ease;
  color: var(--e-global-color-primary);

}

.dashboard-cards .task-list li span {
  float: right;
  color: var(--e-global-color-primary);
  margin-right: 5px;
}

/* .dashboard-cards .task-list p {
  font-size:2em;
} */

.dashboard-cards.showing .card.d-card-show .task-count {
  color: var(--white);
  background: var(--e-global-color-primary);
  transition: all .2s ease;
}

.dashboard-cards .card-actions .btn {
  color: #333;
}

.dashboard-cards .card-actions .btn:hover {
  color: var(--e-global-color-primary);
}

.wrapper-careers {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: minmax(200px, 1fr) 200px 200px;
  background-color: var(--white);
  color: #444;
}

.box-careers {
  background-color: #444;
  color: var(--white);
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;

}

.img-careers {
  grid-column: col / span 2;
  grid-row: row;
}

.content-careers {
  grid-column: col 3 / span 2;
  grid-row: row;
}

.pd-left {
  padding-left: 7.6em;
}

.color-black {
  color: #111;
}

.card-t {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 15px;

}

.card-b {
  background-image: url(../../assets/img/career.jpeg);
}

/*-----------------------------------------Shared Buttons------------------------------------------------  */

/* Share buttons CSS code designed by www.jonakyblog.com */
.share-buttons {
  font-size: 0.5rem;
  font-weight: bold;
  line-height: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 30px;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start;
}

.share-buttons li {
  height: auto;
  flex: 0 1 auto;
  width: calc(16.6% - 2px);
  margin-right: 2px;
}

.share-buttons li:last-child {
  width: 16.6%;
  margin-right: 0;
}

.share-buttons svg {
  fill: var(--white);
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.share-buttons a {
  display: block;
  padding: 8px 8px 8px;
  text-align: center;
  text-decoration: none !important;
  color: var(--white) !important;
}

.share-buttons a:hover {
  opacity: 0.8;
}


.share-buttons li:first-child a {
  border-radius: 6px 0 0 6px;
}

.share-buttons li:last-child a {
  border-radius: 0 6px 6px 0;
}

.share-twitter {
  background: #1da1f2;
}

.share-facebook {
  background: #3b5998;
}

.share-whatsapp {
  background-color: #3fbb50;
}

.share-linkedin {
  background-color: #0077b5;
}

.share-email {
  background-color: #888;
}

.share-pinterest {
  background: #b5071a;
}

ul.share-buttons>li>a>span {
  font-size: 1em;
}

/*------------------------------------------------------------------------------------------------------  */

.info-card {
  margin: 1em auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.front,
.back {
  border-radius: 10px;
  transition: -webkit-transform 1s;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  border: 1px solid #111;
  background-color: var(--e-global-color-primary);
  color: var(--white);
  font-size: 15px;
}

hr {
  background: var(--white);
}

.task-list li {
  color: var(--white);
}

.front {
  overflow: hidden;
  width: 70%;
  height: 280px;
  position: absolute;
  z-index: 1;
}

.back {
  padding: 20px;
  padding-top: 1em;
  width: 70%;
  height: 280px;
  overflow-y: scroll;
  -webkit-transform: rotateY(-180deg);
}

.info-card:hover .back {
  -webkit-transform: rotateY(0);
}

.info-card:hover .front {
  -webkit-transform: rotateY(180deg);
}

.back::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #111;
  border-radius: 20px;
}

.card-actions a {
  color: var(--white);
}

.apply-text {
  font-weight: bold;
}

.jobs {
  margin-top: 100px;
}

.job-readmore {
  font-size: 0.5em;
}

.grp-txt {
  font-weight: bold;
  font-size: 17px;
}

.front .card-title h4 {
  line-height: 50px;
}

/* Jobs modal */
/* .jobs-modal{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content:center;
} */


.jobs-top {
  width: 100%;
}

.jobs-top img {
  width: 60%;
}

.card-horizontal {
  display: flex;
  flex: 1 1 auto;
}

/* Careers-image */
.careers-banner {
  width: 100%;
}

/* /Careers-image */

/* Careers-text */
.careers-text {
  font-size: 18px;
  margin-top: 20px;
}

.marg-p {
  margin: 30px 0;
}

/* /Careers-text */


.elementor-toggle-item {
  background: #8b2331;
}

.elementor-toggle-item .elementor-tab-title a {
  color: var(--white) !important;
  margin: 0 8px;
}

.elementor-toggle-item .elementor-tab-title a:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left {
  float: unset !important;
  color: var(--white) !important;
  margin-left: 10px;
}

.elementor-toggle .elementor-tab-content p,
.elementor-toggle .elementor-tab-content ul,
.elementor-toggle .elementor-tab-content h1,
.elementor-toggle .elementor-tab-content h2,
.elementor-toggle .elementor-tab-content h3,
.elementor-toggle .elementor-tab-content h4,
.elementor-toggle .elementor-tab-content h5,
.elementor-toggle .elementor-tab-content h6,
.elementor-toggle .elementor-tab-content {
  padding: 15px !important;
  color: var(--white) !important;
}

.ayg-player,
.ayg-col-3 {
  padding: 30px;
  height: auto;
  margin: 0 1.5%;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}

.ayg-player {
  margin-left: 6px;
}

.ayg-col-3 {
  width: 30% !important;
}

.ayg-player-description-toggle-btn {
  background: var(--e-global-color-primary) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 0.5rem 1.5rem !important;
  white-space: nowrap !important;
  transition: 0.3s !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  border: 0;
  float: right;
}

.ayg-btn {
  background: var(--e-global-color-primary) !important;
  border-radius: 4px;
  transition: all 0.4s;
  padding: 0.8rem 1.5rem !important;
  color: var(--white) !important;
}

/*--------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/
/* width */
::-webkit-scrollbar {
  width: 1em;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #888;
  border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--e-global-color-primary);
  border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--e-global-color-accent);
}

/*--------------------------------------------------------------
# Footer Top
--------------------------------------------------------------*/
#footer-cover {
  background-color: #111;
  padding: 1em 0;
}

.footer-cover-txt h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 0.7em;
}

.footer-cover-btn {
  text-align: right;
}

.footer-cover-btn a {
  background: var(--white) none repeat scroll 0 0;
  color: #111;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 1px;
  padding: 0px 17px 0px 23px;
  text-transform: uppercase;
  border: 1px solid var(--white);
  border-radius: 5px;
  line-height: 42px;
}

.footer-cover-btn a .fa {
  color: #111;
  font-size: 14px;
  border-left: 1px solid #D2D2D2;
  padding-left: 15px;
  margin-left: 20px;
  line-height: 42px;
}

.footer-cover-btn a:hover .fa {
  color: var(--white);
  border-color: #111;
}

.footer-cover-btn a:hover {
  background: var(--e-global-color-primary);
  color: var(--white);
  border-color: var(--e-global-color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: rgb(14, 8, 8);
  font-size: 14px;
  background: #111111;
  text-align: left;
}

#footer .footer-top {

  padding: 60px 0 30px 0;
  background: #f8f9fa;
}

#footer .footer-top .footer-contact {
  margin-bottom: 3em;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact h3 span {
  color: #8b2332;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;

}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h3 {}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #8b2332;
  bottom: 0;
  left: 0;
}

.footer-links {
  width: 100%;
  text-align: center;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  margin: 0 auto;
}

#footer .footer-top .footer-links ul li {
  display: inline-block;
  margin-left: 2.5em;
}

#footer .footer-top .footer-links ul a {
  color: #140d0d;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 1.2em;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #111;
}

#footer .footer-logo img {
  width: 13em;
  margin-top: -8px;
  margin-left: 0;
  margin-right: 0;
}

.ctct-form-embed.form_1 .ctct-form-defaults,
div.ctct-form-embed div.ctct-form-defaults {
  background-color: transparent !important;
  margin-top: -30px;
}

div.ctct-form-embed form.ctct-form-custom div.ctct-form-field {
  padding-top: 8px;
}

div#gdpr_text {
  display: none !important;
}

.ctct-form-embed.form_1 .ctct-form-custom .ctct-form-label,
div.ctct-form-embed form.ctct-form-custom label.ctct-form-label {
  display: none !important;
}

.ctct-form-embed.form_1 .ctct-form-custom .ctct-form-button {
  position: absolute;
  width: 10%;
  right: 7em;
  margin-top: -4.35rem;
  padding: 14px;
  background-color: #111 !important;
  border: none;
}

.ctct-form-embed.form_1 .ctct-form-custom .ctct-form-button:hover {
  background-color: #8b2332 !important;
}


#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #8b2332;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

ul.wp-block-social-links.is-layout-flex.wp-block-social-links-is-layout-flex {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

li.wp-social-link.wp-social-link-linkedin.wp-block-social-link:first-child {
  margin-left: -1em;
}

.wp-block-social-links .wp-social-link.wp-social-link.wp-social-link {
  margin: 0;
  list-style: none;
  list-style-type: none;
}


#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #111;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin: 1.5rem;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #8b2332;
  color: #fff;
  text-decoration: none;
}

.copyright,
.copyright>a {
  color: #fff;
  font-size: 1.1em;
}

.copyright>a {
  font-weight: bold;
}

.copyright>a:hover {
  color: #8b2332;
}

.footer-logo {
  display: none;
}


#footer .footer-text {
  padding-top: 23px;
  text-align: justify;
}

#footer .footer-text p {
  color: #bebebe;
}