@media only screen and (min-width: 1024px) {
  .header .sticky__header {
    background-color: unset;
  }
}
.header .menu {
  font-weight: 700;
  color: #ffffff;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .header .menu {
    display: grid;
  }
}
.header .menu a {
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}
.header .menu a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 100%;
  left: 0;
  background: #FFE600;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.header .menu a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  text-align: right;
  width: 40px;
  height: 32px;
  right: 5%;
  top: 24px;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}
.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 0;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.burger span:nth-child(2) {
  top: 14px;
  transform-origin: left center;
}
.burger span:nth-child(3) {
  top: 28px;
  transform-origin: left center;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
  left: 0;
}
.burger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 0;
}

@media only screen and (min-width: 1024px) {
  .sub_item .sub_item {
    margin-left: 184px;
    margin-top: -40px;
  }
}

.contact-page .wpcf7 {
  background-image: none;
  border: 1px solid #A0A5B1;
  background-color: white;
}
.contact-page .wpcf7 .wpcf7-form {
  padding: 4rem;
  background-color: #635633;
}
.contact-page .wpcf7 .wpcf7-form input, .contact-page .wpcf7 .wpcf7-form textarea {
  border: 1px solid #A0A5B1;
}
.contact-page .wpcf7 .wpcf7-form p:nth-child(6) {
  width: fit-content;
}
.contact-page .wpcf7 .wpcf7-form .wpcf7-submit {
  border: none;
}

.wpcf7 {
  background-image: url("../../assets/images/contact-us.avif");
  background-size: cover;
  position: relative;
  height: 100%;
}
.wpcf7 label {
  font-size: 20px;
  color: white;
}
.wpcf7 .wpcf7-form {
  padding: 6rem;
  position: relative;
  display: grid;
  max-width: 72rem;
  margin: auto;
  z-index: 20;
}
@media only screen and (max-width: 1024px) {
  .wpcf7 .wpcf7-form {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 40px;
  }
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  position: fixed;
  top: 160px;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  grid-column: span 2/span 2;
  text-align: center;
}
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 8px;
  color: black;
}
.wpcf7 .wpcf7-form p:nth-child(2) .wpcf7-form-control {
  width: 100%;
}
.wpcf7 .wpcf7-form p:nth-child(3) {
  margin-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .wpcf7 .wpcf7-form p:nth-child(3) {
    margin-left: 0px;
  }
}
.wpcf7 .wpcf7-form p:nth-child(3) .wpcf7-form-control {
  width: 100%;
}
.wpcf7 .wpcf7-form p:nth-child(4),
.wpcf7 .wpcf7-form p:nth-child(5),
.wpcf7 .wpcf7-form p:nth-child(6) {
  grid-column: span 2/span 2;
}
@media only screen and (max-width: 1024px) {
  .wpcf7 .wpcf7-form p:nth-child(4),
  .wpcf7 .wpcf7-form p:nth-child(5),
  .wpcf7 .wpcf7-form p:nth-child(6) {
    grid-column: unset;
  }
}
.wpcf7 .wpcf7-form p:nth-child(4) .wpcf7-form-control,
.wpcf7 .wpcf7-form p:nth-child(5) .wpcf7-form-control,
.wpcf7 .wpcf7-form p:nth-child(6) .wpcf7-form-control {
  width: 100%;
}
.wpcf7 .wpcf7-form p:nth-child(6) {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding: 5px;
  background-color: #172647;
  justify-self: center;
  border-radius: 5px;
  transition: 0.3ms ease-in;
  margin-top: 24px;
}
.wpcf7 .wpcf7-form p:nth-child(6) .wpcf7-spinner {
  position: absolute;
  background-color: orange;
  bottom: -30px;
  left: 30%;
}
.wpcf7 .wpcf7-form p:nth-child(6) input {
  color: white;
}
.wpcf7 .wpcf7-form p:nth-child(6):hover {
  transform: scale(1.1);
  background-color: #0096c7;
}
.wpcf7 .wpcf7-form .wpcf7-form-control {
  height: 40px;
  color: black;
  padding: 6px;
}
.wpcf7 .wpcf7-form .wpcf7-form-control::placeholder {
  font-size: 15px;
}
.wpcf7 .wpcf7-form .wpcf7-form-control:focus {
  border: 2px solid;
  border-color: #48cae4;
}
.wpcf7 .wpcf7-form .wpcf7-textarea {
  min-height: 100px;
}

.bg-contact-form {
  background: rgb(139, 138, 27);
  background: linear-gradient(90deg, rgb(112, 111, 31) 0%, rgb(59, 59, 23) 35%, rgba(0, 212, 255, 0) 100%);
}

.strategy_planning {
  border-right: 2px solid;
  border-color: #A0A5B1;
  border-bottom: unset;
}
@media screen and (max-width: 1024px) {
  .strategy_planning {
    border-bottom: 2px solid;
    border-right: unset;
    border-color: #A0A5B1;
  }
}

.parallax {
  /* The image used */
  background-image: url("../../assets/images/grooming.jpg");
  background-position: center;
  height: 500px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .parallax {
    background-attachment: scroll;
  }
}

.parallax-projects {
  background-image: url("../../assets/images/archive-image-ademi-elsener.png");
  height: 500px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center -100px;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .parallax-projects {
    background-attachment: scroll;
  }
}

.parallax .parallax-content {
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.clip-pentagon {
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transition: clip-path 0.3s ease;
}

.clip-pentagon:hover {
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: scale(1.05);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* ensure the loader stays on top */
  display: flex;
  background-color: white;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loader.hidden {
  opacity: 0;
}

.emoji-404 {
  position: relative;
  animation: mymove 2.5s infinite;
}

@keyframes mymove {
  33% {
    top: 0px;
  }
  66% {
    top: 20px;
  }
  100% {
    top: 0px;
  }
}
.button-52 {
  width: 100%;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-52:after {
  content: "";
  background-color: #48cae4;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
    width: 100%;
  }
}
/* CSS */
.button-48 {
  appearance: none;
  background-color: #FFFFFF;
  border-width: 2px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1em;
  margin: 16px 0px;
  opacity: 1;
  outline: 0;
  padding: 1.5em 2.2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1), background-color 100ms cubic-bezier(0.694, 0, 0.335, 1), color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}

.button-48:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: #eab308;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.button-48:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-48:after {
  background-color: #FFFFFF;
}

.button-48 span {
  z-index: 1;
  position: relative;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Styles for the modal content */
.modal {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Styles for the close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.pagination .current, .pagination .page-numbers {
  padding: 5px 7px;
  border: 1px solid whitesmoke;
}
.pagination .current:hover, .pagination .page-numbers:hover {
  background-color: #635633;
}
.pagination .current {
  padding: 7px 9px;
  background-color: #635633;
}
@media only screen and (max-width: 1024px) {
  .pagination .pagination-link-prev, .pagination .pagination-link-next {
    display: none;
  }
}

.gt_float_switcher {
  width: max-content;
  padding: 1px 1px;
}
.gt_float_switcher img {
  width: 20px !important;
  height: 20px !important;
}
.gt_float_switcher .gt-lang-code, .gt_float_switcher .gt-open {
  font-size: 16px;
  font-weight: 700;
  color: #172647;
  font-family: "Roboto";
}

.bg-footer {
  background-image: url("/wp-content/themes/ademi-elsener/assets/images/footer-bg.webp");
}

/* CSS for the progress bar */
#progress-bar {
  width: 0;
  height: 100%;
  background-image: linear-gradient(to right, #ff5733, #ffbd33, #33ff6b, #336aff, #ff33de);
  background-size: 200% auto;
  animation: shine 2s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* 
Import modules folder
*/
.module-content_module {
  padding: 24px;
}
.module-content_module h1, .module-content_module h2, .module-content_module h3, .module-content_module h4, .module-content_module h5 {
  margin: 16px 0px 8px 0px;
}
.module-content_module a {
  color: #326CEC;
  font-weight: 600;
}
.module-content_module h1 {
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .module-content_module h1 {
    font-size: 24px;
    font-weight: bold;
  }
}

/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#slider-wrapper h1 {
  font-size: 40px;
}
#slider-wrapper h2 {
  font-size: 36px;
}
#slider-wrapper h3 {
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  #slider-wrapper h1 {
    font-size: 24px;
  }
  #slider-wrapper h2 {
    font-size: 22px;
  }
  #slider-wrapper h3 {
    font-size: 18px;
  }
}
#slider-wrapper .slider-content .button-1 {
  padding: 16px;
  border: solid 1px #8b5a2b;
  position: relative;
  display: inline-block;
  background-color: #525252;
}
#slider-wrapper .slider-content .button-1:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  color: #8b5a2b;
}
#slider-wrapper .slider-content .button-1:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: #737373;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  color: #8b5a2b;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
#slider-wrapper .slider-content .button-1 span {
  z-index: 1;
  position: relative;
}

/* Apply the font to your desired elements */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p, span, ul, li, strong {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Show sub-menu when hovering over menu item */
/* Show sub-menu when hovering over menu item or sub-menu */
li.has-children:hover > .sub_item,
li.has-children.hover > .sub_item {
  display: block;
}

/* Hide sub-menu by default */
.sub_item {
  display: none;
}

.wrapper-carousel {
  position: relative;
  background-size: cover;
  background-color: #3D310B;
  background-image: url("../../assets/images/services-bg-1.png");
}

.carousel-bg {
  position: absolute;
  right: -26px;
  top: 0;
  height: 100%; /* Adjust as needed */
  width: 2%; /* Adjust as needed */
  z-index: 10; /* Ensure it's above other elements */
  box-shadow: -10px 0px 10px -10px rgba(0, 0, 0, 0.75);
}

.carousel {
  position: relative;
  max-width: 1280px;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
@media only screen and (max-width: 1280px) {
  .carousel-wrapper {
    display: grid;
  }
}

.card {
  flex: 0 0 33.33%;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-in-out, z-index 0.3s ease-in-out;
}

.card-middle {
  z-index: 20;
  transform: scale(1.1);
  margin-top: -10px;
}

.carousel-arrow {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s, opacity 0.4s;
}
@media only screen and (max-width: 1440px) {
  .carousel-arrow {
    top: unset;
    bottom: 0px;
  }
}
.carousel-arrow:hover {
  color: white;
  background-color: #48cae4;
}

.carousel-arrow-mobile {
  top: unset;
}

.entry-content p {
  color: #3D310B;
  margin-top: 40px;
  font-size: large;
}

.the-content h1, .the-content h2 {
  margin: 10px 0px 20px 0px;
  font-size: 36px;
  font-weight: 700;
  color: #172647;
}
@media only screen and (max-width: 1280px) {
  .the-content h1, .the-content h2 {
    font-size: 24px;
  }
}
.the-content p {
  margin: 10px 0px;
  font-size: 16px;
  color: #a0a5b1;
  font-weight: 400;
}
.the-content strong {
  color: #172647;
  font-weight: 700;
}
.the-content ol, .the-content ul {
  font-size: 16px;
  color: #a0a5b1;
  font-weight: 400;
}
.the-content img {
  margin: 20px 0px;
  width: 100%;
  object-fit: contain;
}

.rounded-check {
  display: inline-block;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border: 2px solid rgb(2 62 138/var(--tw-bg-opacity));
  border-radius: 50%;
  position: relative;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 11px;
  height: 22px;
  border: 2px solid rgb(220 38 38/var(--tw-bg-opacity));
  border-top: 0;
  border-left: 0;
  visibility: visible;
}

.svg-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.icon-container {
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
  margin-right: 8px;
}

.svg-link:hover .icon-container {
  transform: rotate(45deg);
}

.svg-link:hover .icon-path {
  stroke: #FDE761;
  transition: stroke 0.3s ease-in-out;
  transform: scale(1.1);
}

.product-content ::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fec609;
  transition: all 0.25s ease-out;
}

.footer-social__item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: inherit;
  height: inherit;
  border-radius: 40px;
  border: 1px solid white;
  transition: border-color 200ms;
}

/* Hide default scrollbar */
select::-webkit-scrollbar {
  display: none;
}

/* Style for the custom scrollbar track */
select {
  width: -webkit-fill-available;
  scrollbar-width: thin;
  scrollbar-color: #888888 #f0f0f0;
}

/* Style for the custom scrollbar thumb */
select::-webkit-scrollbar-thumb {
  background-color: #888888;
  border-radius: 5px;
}

/* Style for the custom scrollbar thumb on hover */
select::-webkit-scrollbar-thumb:hover {
  background-color: #555555;
}

/* Style for the custom scrollbar thumb when active/pressed */
select::-webkit-scrollbar-thumb:active {
  background-color: #333333;
}

.title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-card {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fa {
  padding: 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa:hover {
  opacity: 0.7;
}

.fa-linkedin {
  background: #020629;
  color: white;
}

.sub-title:before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  border-width: 5px;
  border-style: solid;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #eab308;
  border-right-color: #eab308;
}

.slider-animation {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.slider-animation.active {
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-answer p {
  padding: 16px;
}

.faq-answer.visible {
  max-height: 1000px; /* Adjust as needed */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Animate the group rotating around center */
.rotating-group {
  transform-origin: 80px 80px;
  animation: spin 10s linear infinite;
}

/*# sourceMappingURL=style.css.map */
