/*
Theme Name: Elitevehicles
Description: 
Author:
Author URI:
Version: 1.0
*/
/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    /* ensure all elements use border-box */
    margin: 0;
    padding: 0;
}

html{
    overflow-x: hidden;
}

html,
body {
    height: 100%;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    /* make images responsive */
    display: block;
}

.hidden{
    display: none!important;
}


/* ----------------------------------------------
       Base Styles and Variables
    ---------------------------------------------- */
:root {
    --container-xl: 1320px;
    --container-lg: 1200px;
    --container-md: 960px;
    --container-sm: 720px;
    --container-xs: 540px;

    --header-height: 100px;
    --bg-color: #151515;
    --text-color: #fff;
    --hover-color: #EC7E1F;
    --transition-speed: 0.3s;

    --row-gap: 30px;
}

body {
    margin: 0;
    font-family: "Exo", helvetica, sans-serif, arial, serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.329;
}
input, textarea{
    font-family: "Exo", helvetica, sans-serif, arial, serif;
    font-size: 16px;
    font-weight: 500;
}

.home {
    --bg-color: #000;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.1s;
}

a:hover {
    color: var(--hover-color);
}

.btn,
.btn-outline,
.wpcf7-submit {
    line-height: 53px;
    height: 60px;
    background: var(--hover-color);
    border: 3px solid var(--hover-color);
    color: #fff;
    border-radius: 500em;
    text-transform: uppercase;
    padding: 0 67px;
    transition: background-color .2s;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    max-width: 100%;
    cursor: pointer;
}

.btn:hover,
.wpcf7-submit:hover,
.btn-outline {
    background-color: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: var(--hover-color);
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* container widths at breakpoints (just like bootstrap) */

@media (min-width: 1280px) {
    .container {
        max-width: var(--container-lg);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-xl);
    }
}


@media (max-width: 1280px) and (min-width: 992px) {
    .container {
        max-width: var(--container-md);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: var(--container-sm);
    }

    :root {
        --header-height: 60px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: var(--container-xs);
    }

    :root {
        --header-height: 60px;
    }
}

/* ----------------------------------------------
       Simple Grid System (reusable)
    ---------------------------------------------- */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--row-gap) / 2);
    margin-right: calc(-1 * var(--row-gap) / 2);
    row-gap: var(--row-gap);
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--row-gap) / 2);
    margin-right: calc(-1 * var(--row-gap) / 2);
    row-gap: var(--row-gap);
}

.nowrap {
    flex-wrap: nowrap;
}

.col,
.col-sm {
    flex: 1;
}

.col,
.col-sm,
.col-sm-6,
.col-6,
.col-4 {
    padding: 0 calc(var(--row-gap) / 2);
}

.row-flex .col,
.row-flex .col-sm {
    flex: unset;
}

.col-4,
.col-sm-4 {
    width: calc(100% / 3);
    max-width: calc(100% / 3);
}

.col-6,
.col-sm-6 {
    width: 50%;
}

@media (max-width: 991px) {

    .col:not(.nowrap .col),
    .col-6,
    .col-4,
    .col-4 {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 767px) {

    .col-sm:not(.nowrap .col),
    .col-sm-6,
    .col-sm-4,
    .col-sm-4 {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

@media (min-width: 767px) {
    .flex-md-1 {
        flex: 1 !important;
    }

    .flex-md-auto {
        flex: 0 0 auto !important;
    }

    .nowrap-sm {
        flex-wrap: nowrap;
    }
}

@media (min-width: 991px) {
    .pl-md-100{
        padding-left: 100px;
    }
    .nowrap-md {
        flex-wrap: nowrap;
    }
}


@media (min-width: 1280px) {
    .nowrap-lg {
        flex-wrap: nowrap;
    }
}

.align-items-center {
    display: flex;
    align-items: center;
}

.justify-content-space {
    display: flex;
    justify-content: space-between;
}

.align-self-start{
    align-self: flex-start;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

/* ----------------------------------------------
       Header
    ---------------------------------------------- */
header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    transition: background-color 0.3s;
}
.immediatedly header{
    transition: none ;
}


body{
    padding-top: var(--header-height);
}

header .container{
    overflow: visible;
}

@media (min-width: 767px) {
    body.admin-bar header{
        top: 32px;
    }
    body.admin-bar{
        padding-top: calc(32px + var(--header-height));
    }
}


.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding-top: 30px;
    transition: padding 0.2s;
}

.immediatedly .header__wrapper{
    transition: none ;
}

.scrolled .header__wrapper{
    padding-top: 0;
}

.scrolled header{
    background: #040404;
}

.main__logo {
    position: relative;
    z-index: 2;
}

.main__logo img {
    width: 130px;
    height: 69.22px;
    position: absolute;
    max-width: none;
    top: 0;
    transform: translate(0, -50%);
    border-radius: 8px;

}
@media (min-width: 1200px) {
    .main__logo img {

        width: 163px;
        height: 87px;
    }
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 15px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
@media (max-width: 1200px) {
    .nav li {
        margin: 0 10px;
    }
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    transition: color var(--transition-speed);
}

.nav a:hover {
    color: var(--hover-color);
}

/* Hamburger button */
.hamburger {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
    margin-bottom: 6px;
}

.hamburger .bar:last-child {
    margin-bottom: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 991px) {

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    header .nav ul {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        background: #000000;
        flex-direction: column;
        transform: translateY(-100%);
        transition: transform var(--transition-speed) ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        top: 0;
        padding: calc(var(--header-height) + 30px) 0 25px 0;
        z-index: 1;
    }

    header .nav ul:not(.initiated) {
        opacity: 0;
    }

    header .nav ul.show {
        opacity: 1;
        transform: translateY(0);
    }

    header .nav li {
        margin: 10px 0;
        text-align: center;
    }
}

/* ----------------------------------------------
       Main Content Sections
    ---------------------------------------------- */
section {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.partners {
    overflow-x: hidden;
}
section.portfolio {
    overflow-x: hidden;
}
section.testimonials{
    overflow-x: hidden;
}
footer{
    overflow-x: hidden;
}

section h2,
section .h2 {
    font-size: 40px;
    font-weight: 550;
    text-transform: uppercase;
    margin-bottom: 10px;
}

section p {
    font-weight: 300;
    font-size: 18px;
}

.bg-solid {
    background: #151515;
}

.bg-gradient {
    background: linear-gradient(180deg, #202020 0%, #151515 100%);
}

/* ----------------------------------------------
       Modal Styles with pleasant animation
    ---------------------------------------------- */
.modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: -9999;
    opacity: 0;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
    pointer-events: none;
    padding: 30px 0;
}

.modal-overlay.active {
    display: flex;
    z-index: 9999;
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #2B2B2B;
    max-width: 630px;
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transform: scale(0.8);
    transition: transform var(--transition-speed) ease;
    outline: 0;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.modal__content{
    overflow-y: auto;
    overflow-x: hidden;
}

.modal__content {
    /* For Firefox (uses scrollbar-width & scrollbar-color) */
    scrollbar-width: thin; /* "thin" or "auto" */
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent; /* thumb, track */
  }
  
  /* For WebKit-based browsers (Chrome, Safari, Edge) */
  .modal__content::-webkit-scrollbar {
    width: 8px; /* thickness of scrollbar */
  }
  
  .modal__content::-webkit-scrollbar-track {
    background: transparent; /* track color */
  }
  
  .modal__content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2); /* thumb color */
    border-radius: 4px; /* Apple-like round corners */
  }
  
  .modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3); /* slightly darker on hover */
  }

.modal.modal-location {
    max-width: 970px;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal h2 {
    margin-top: 0;
    font-size: 32px;
    font-weight: 550;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-close {
    position: absolute;
    top: 35.5px;
    right: 30px;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8.5L8 24.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 8.5L24 24.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.hero {
    margin: calc(-1 * var(--header-height)) auto 0 auto;
    position: relative;
    background: url('images/home.png') center center no-repeat;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    max-width: 100vw;
}

.hero__content {
    display: flex;
    position: absolute;
    top: 0;
    text-align: center;
    min-height: 100%;
    align-content: center;
    align-items: center;
    padding-bottom: 14.5%;
}

.hero h1 {
    font-size: 60px;
    font-weight: 550;
    margin-bottom: 11px;
}

@media (max-width: 1280px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero__content {
        
        _padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 35px;
    }
    .hero__content {   
        _padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    .hero__content {
       padding-bottom: 0;
    }
    .hero__img{
        /* margin: 0 -280px; */
        padding-top: 288px;
        margin: 0;
    }
}

/* ----------------------------------------------
       Footer
    ---------------------------------------------- */

footer{
    position: relative;
    z-index: 2;
}

section.contact {
    background: #202020;
    padding: 50px 0;
}

section.contacts {
    background: #2B2B2B;
    padding: 105px 0 100px 0;
}

section.contacts h2,
section.contacts .h2 {
    font-size: 32px;
    line-height: 42.53px;
}
.contact .btn{
    min-width: 280px;
}

.contacts p {
    color: #D8D9E1;
}

.social{
    display: flex;
    align-items: flex-start;
    gap: 3px;
}
.social a {
    margin-left: 6px;
}
.social a.linkedin:hover{
    border-color:  var(--hover-color)!important;
}
.social a rect {
    transition: all 0.1s;
}

.social a:hover rect {
    stroke: var(--hover-color);
}

.social a:hover path {
    fill: var(--hover-color);
    ;
}

.contact__items .row-flex {
    --row-gap: 20px;
}

.contact__items p {
    color: #fff;
    font-weight: 550;
}

.contacts__header,
.contact__items:not(:last-child),
.contact__items+.h2,
.contact__items+h2 {
    margin-bottom: 30px;
}

.contact__items a.active {
    border-radius: 20px;
    background: #383B43;
}

.footer__menu {
    padding: 50px 0;
    color: rgba(216, 217, 225, 0.5);
    min-height: 176px;
}

.footer__menu .nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

i.pin {
    background-image: url("data:image/svg+xml, %3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 13.333C28 22.6663 16 30.6663 16 30.6663C16 30.6663 4 22.6663 4 13.333C4 10.1504 5.26428 7.09816 7.51472 4.84773C9.76516 2.59729 12.8174 1.33301 16 1.33301C19.1826 1.33301 22.2348 2.59729 24.4853 4.84773C26.7357 7.09816 28 10.1504 28 13.333Z' stroke='%23EC7E1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 17.333C18.2091 17.333 20 15.5421 20 13.333C20 11.1239 18.2091 9.33301 16 9.33301C13.7909 9.33301 12 11.1239 12 13.333C12 15.5421 13.7909 17.333 16 17.333Z' stroke='%23EC7E1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
}

.modal-location {
    --row-gap: 40px
}

.modal-location a {
    padding: 10px 5px;
}

.modal-location .contact__items a.row-flex {
    margin: 0;
}
.modal-location > div > .row-flex{
    padding: 20px 0 10px 0;
}

.modal-location iframe {
    min-width: 100%;
    border-radius: 20px;
    height: 266px;
    width: 540px;
}

.portfolio__header {
    text-align: center;
    padding-top: 50px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.portfolio__header h1 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 550;
    line-height: 53.16px;
}

.portfolio__header h2 {
    text-transform: uppercase;
    background: #4242424D;
    backdrop-filter: blur(30px);
    font-size: 16px;
    line-height: 21.26px;
    padding: 20px;
    font-weight: 350;
    border-radius: 10px;
    width: 900px;
    margin-bottom: 20px;
}

.wpcf7 label {
    font-size: 12px;
    font-weight: 450;
    line-height: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 35px;
    display: block;
    color: #8e8f96;
}
.wpcf7 label br{
    display: none;
}

.wpcf7 label .wpcf7-form-control-wrap{
    display: block;
    margin-top: 5px;
}
.wpcf7-form-control:not(.wpcf7-submit){
    background: #383B43;
    border-radius: 4px;
    border: none;
    width: 100%;
    min-height: 50px;
    color: white;
    padding: 11px;
    outline: none;
}
textarea.wpcf7-form-control{
    height: 200px;
}

.wpcf7 p:has(a) {
    position: absolute;
    bottom: 27px;
    right: 30px;
    opacity: 0.3;
}

form.wpcf7-form.sent {
    display: flex;
    flex-direction: column;
}

.wpcf7-response-output {
    order: -1;
    margin: 5px 0 30px 0 !important;
    border-radius: 6px;
}

/* ----------------------------------------------
       content
    ---------------------------------------------- */

section.pitch {
    padding: 130px 0 0 0;
    background: linear-gradient(180deg, #202020 0%, #151515 100%);
    position: relative;
}

.pitch h2 {
    font-size: 32px;
    line-height: 42.53px;
    text-transform: none;
    margin-bottom: 30px;
    font-weight: 450;
}

.pitch h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 23.92px;
    font-size: 18px;
    font-weight: 550;
}

.pitch img {
    margin-bottom: 20px;
}

.pitch .cta {
    margin-top: 100px;
}

.pitch__info {
    max-width: 430px;
}
@media (min-width: 1400px) {
    .pitch__info {
        max-width: 76%;
    }
}

.cara:before {
    display: block;
    content: "";
    height: 771px;
    background: url('images/cara.svg') center center no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transform: translate(0, 172px);
}

.cara>* {
    z-index: 2;
    position: relative;
}

.cta h2 {
    font-size: 42px;
    line-height: 53.16px;
}


.cta,
.filter__box {
    position: relative;
    padding: 100px;
    backdrop-filter: blur(35px);
    border-radius: 50px;
    overflow: hidden;
    background: #29292980;
    --row-gap: 50px;
}

.cta h2{
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .cta{
        padding: 50px;
        --row-gap: 25px;
    }
}
@media (max-width: 767px) {
    .cta h2 {
        font-size: 32px;
        line-height: 42.53px;
    }
}

.cta>*,
.filter__box>* {
    position: relative;
    z-index: 2;
}

.cta::before,
.filter__box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #A26F59 0%, #3C2921 100%) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

section.testimonials {
    background: #151515;
    padding: 150px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .glider{
        overflow: hidden;
    }
}


.testimonials__slider {
    position: relative;
    margin-left: -30px;
}

.testimonials__slider .glider-slide {
    padding-left: 30px;
}

.testimonials__slide {
    border: 1px solid #585858;
    padding: 30px;
    height: 100%;
    border-radius: 20px;
}


.testimonials__logo {
    margin-bottom: 30px;
}

.modal__icon {
    margin-bottom: 15px;
}

.testimonials__logo img, .modal__icon img{
    max-height: 60px;
    width: auto;
}

.testimonials__slide p {
    margin-bottom: 30px;
}

.testimonials__slide p:last-child {
    margin-bottom: 0;
}

.testimonials__slide .name {
    text-transform: uppercase;
    margin-bottom: 10px;
}
.show-more{
    font-weight: 450;
}
.show-more:after {
    display: inline-block;
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.22501L7 7.22501L13 1.22501' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    transform: rotate(-90deg) translate(2px, 12px);
    vertical-align: middle;
}


.show-more:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.22501L7 7.22501L13 1.22501' stroke='%23EC7E1F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.glider-next,
.glider-prev {
    top: 0;
    bottom: 0;
    width: 87px;
    background-color: #151515;
    font-size: 0;
    color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='-0.5' width='59' height='59' rx='29.5' transform='matrix(1 1.74846e-07 1.74846e-07 -1 8.74228e-08 59)' stroke='%23BFC0C9'/%3E%3Cpath d='M32.5 25L27.5 30L32.5 35' stroke='%23BFC0C9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-repeat: no-repeat;
}
.glider-next.nobg-color, .glider-prev.nobg-color{
    background-color: transparent;
}
.glider-prev {
    left: -57px;
    background-position: left center;
}

.glider-next {
    right: -87px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='-0.5' y='0.5' width='59' height='59' rx='29.5' transform='matrix(-1 -8.74228e-08 -8.74228e-08 1 59 -4.37114e-08)' stroke='%23BFC0C9'/%3E%3Cpath d='M27.5 35L32.5 30L27.5 25' stroke='%23BFC0C9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: right center;
}

.glider-next.disabled,
.glider-prev.disabled {
    opacity: 0.3;
}

@media (max-width: 767px) {
    .testimonials__slider, .portfolio__slider, .logos__slider{
        margin-left: 0!important;
    }
    .testimonials__slider .glider-slide, .portfolio__slider .glider-slide , .logos__slider .glider-slide {
        padding-left: 0!important;
    }
    .slider {
        padding: 0 20px;
    }
    .glider{
        background: #151515;
        z-index: 2;
    }
    .glider-next, .glider-prev {
        z-index: 0;
    }
    .glider-next {
        right: -23px !important;
        zoom: 0.5;
    }
    .glider-prev, .portfolio__slider .glider-prev, .logos__slider .glider-prev {
        left: -27px!important;
        zoom: 0.5;
    }
}

.cta__section {
    background: #151515;
}

section.grid {
    padding: 150px 0 100px 0;
    --row-gap: 10px;
}

section.grid .row {
    row-gap: 20px;
}

.card {
    text-align: center;
}

.card img {
    border-radius: 20px;
}

.card__info {
    background: #1515154D;
    backdrop-filter: blur(15px);
    padding: 20px 20px 40px 20px;
    margin-top: -40px;
    border-radius: 30px;
    overflow: hidden;
}
a + .card__info{
    pointer-events: none;
}

.card__info h3,
.card__info p {
    color: #fff;
    font-size: 18px;
    line-height: 23.92px;
    font-weight: 450;
}

.card__info h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio {
    padding: 100px 0;
}

.portfolio__slider {
    position: relative;
    margin-left: -10px;
}

.portfolio__slider .glider-slide {
    padding-left: 10px;
}

.portfolio__slider .glider-next,
.portfolio__slider .glider-prev {
    background-color: transparent;
}

.portfolio__slider .glider-prev {
    left: -77px;
}

.portfolio__slider a {
    color: var(--hover-color);
}

.portfolio__slider a:hover {
    color: var(--text-color);
}

.portfolio__slider .glider-track {
    align-items: flex-start;
}

.partners {
    color: #31343B;
    background: #fff;
    padding: 100px 0;
}

.logos {
    display: flex;
    row-gap: 10px;
    margin: 0 -10px;
    flex-wrap: wrap;
}

.logos__slider {
    position: relative;
    margin-left: -5px;
}

.logos__slider .glider-slide {
    padding-left: 5px;
}

.logos__slider .glider-next {
    right: -86px;
}
.logos__slider .glider-prev {
    left: -80px;
}

@media (max-width: 767px) {
    .logos__slider .glider {
        background: transparent;
    }
    .logos__slider .glider-next {
        right: -13px !important;
        zoom: 0.5;
    }
}

.logo {
    padding: 0 5px;
    width: calc(100%/6);
}

@media (max-width: 991px) {
    .logo {
        padding: 0 5px;
        width: calc(100%/4);
    }    
}

@media (max-width: 767px) {
    .logo {
        padding: 0 5px;
        width: calc(100%/2);
    }   
}

.logo__card {
    height: 120px;
    padding: 20px 30px 20px 30px;
    border-radius: 10px;
    background: #F1F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio__row {
    --row-gap: 30px;
}

.portfolio__filter {
    max-width: 300px;
}

@media (max-width: 991px) {
    .portfolio__filter {
        order: 2;   
    }
}

.filters__title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 550;
    line-height: 53.16px;
    margin-bottom: 10px;
}

.filter__box {
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    overflow: visible;
}

.filter__box:before {

    border-radius: 20px;
}

.box__title {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 31.9px;
    font-weight: 550;
    margin-bottom: 30px;
}

.filter__box label {
    font-size: 12px;
    line-height: 18px;
    color: #D0D2DD;
    font-weight: 450;
    margin-bottom: 10px;
    display: block;
    line-height: 9px;
    color: #d0d2dd99;

}

.filter__box select+label {
    margin-top: 20px;
}

.portfolio__list>.row, .portfolio__gallery .row {
    --row-gap: 10px;
    row-gap: 30px;
}

.portfolio__list .card__info, .portfolio__gallery .card__info {
    min-height: 108px;
    display: flex;
    padding: 10px 10px 25px 10px;
    align-items: center;
    justify-content: center;
}
.portfolio__gallery .card__info {
    min-height: 84px;
    padding: 20px 10px 40px 10px;
}

#filters {
    position: relative;
}

button#clear-all-filters {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='41' viewBox='0 0 40 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.725006' width='40' height='40' rx='20' fill='%23EC7E1F'/%3E%3Cpath d='M12.5 15.725H14.1667H27.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M25.8334 15.725V27.3917C25.8334 27.8337 25.6578 28.2576 25.3453 28.5702C25.0327 28.8827 24.6088 29.0583 24.1667 29.0583H15.8334C15.3914 29.0583 14.9675 28.8827 14.6549 28.5702C14.3423 28.2576 14.1667 27.8337 14.1667 27.3917V15.725M16.6667 15.725V14.0583C16.6667 13.6163 16.8423 13.1924 17.1549 12.8798C17.4675 12.5673 17.8914 12.3917 18.3334 12.3917H21.6667C22.1088 12.3917 22.5327 12.5673 22.8453 12.8798C23.1578 13.1924 23.3334 13.6163 23.3334 14.0583V15.725' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3333 19.8917V24.8917' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.6667 19.8917V24.8917' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    width: 40px;
    height: 41px;
    border: none;
    font-size: 0;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 3px;
    cursor: pointer;
}

.custom-select-wrapper.single-mode {
    position: relative;
    display: inline-block;
    width: 100%;
}
.custom-select-option{
    font-family: sans-serif;
}

.custom-select-wrapper.single-mode .custom-select-display,
.custom-multi-toggle {
    width: 100%;
    height: 40px;
    border: none;
    padding: 8px 20px 8px 20px;
    border-radius: 4px;
    background: #383B4399;
    color: #D0D2DD;
    color: #d0d2dd99;
    font-size: 16px;
    font-weight: 350;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.custom-select-wrapper.single-mode .custom-select-display:after,
.custom-multi-toggle:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.22501L5 5.22501L9 1.22501' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    top: 16px;
    right: 22px;
    position: absolute;
    display: block;
    width: 10px;
    height: 6px;

}

.custom-select-wrapper:has(.open) .custom-select-display,
.custom-select-wrapper:has(.open) .custom-multi-toggle {
    border-radius: 4px 4px 0 0;
}

.custom-select-options {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: #383A41;
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 9999;
    padding: 10px;
}

.custom-select-options-wrapper {
    max-height: 230px;
    overflow: auto;
}

.custom-select-options.open {
    display: block;
}

.custom-select-option {
    padding: 9.5px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 450;
}

.custom-select-option.active {
    background: #5457615c;
}

.custom-select-option:hover{
    background: #545761!important;
}

/* Multi-select styling */
.custom-select-wrapper.multi-mode {
    position: relative;
}

.custom-multi-display {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px
}

.custom-multi-tag {
    background: #383B43;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 14px;
    font-weight: 350;
    line-height: 21px;
    margin-top: 10px;


}

.custom-multi-tag-remove {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4.72501L4 12.725' stroke='%23BFC0C9' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M4 4.72501L12 12.725' stroke='%23BFC0C9' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 16px;
    border: none;
    background-color: transparent;
    font-size: 0;
    cursor: pointer;
}

.custom-select-options-wrapper  {
    /* Webkit (Chrome, Safari, newer Edge) */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #8E8F9B transparent; /* thumb and track color for Firefox */
}


/* Custom checkboxes styling */
.checkbox-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    flex-direction: column;

}

.cb-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 350;
    line-height: 21px;
}

.cb-label input[type="checkbox"] {
    display: none;
    /* visually hidden */
}

.cb-label span {
    position: relative;
    padding-left: 35px;
    user-select: none;
}

.cb-label span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--hover-color);
    border-radius: 4px;
    background: transparent;
}

.cb-label input[type="checkbox"]:checked+span::before {
    background-color: var(--hover-color);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.1L3.66693 6.5L9 0.5' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-repeat: no-repeat;
}

.group__hug {
    background: #383B43;
    border-radius: 0 0 10px 10px;
    padding: 16px 10px;
    margin: 60px 20px 0 20px;
}

#load-more {
    display: none;
}

.group__scroll {
    max-height: 226px;
    overflow: auto;
}

/* Firefox-specific code */
@-moz-document url-prefix() {
    .group__scroll {
        scrollbar-color: #BFC0C9 #31343B;
        /* (thumb color, track color) */
        scrollbar-width: thin;
    }
}

.group__scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #31343B;
}

.group__scroll::-webkit-scrollbar {
    width: 3px;
    background-color: #31343B;
}

.group__scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    background-color: #BFC0C9;
}

.portfolio__main {
    padding-bottom: 150px;
    position: relative;
}

.portfolio__main.cara:before {
    top: 208px;
    bottom: unset;
}

.reveal-container {
    overflow: hidden;
}

.reveal-container.initiated {
    transition: max-height 0.5s ease;
}

.reveal-container.collapsed {
    /* We'll read initial max-height from the data attribute in JS. */
}

.reveal-container.expanded {
    overflow: hidden;
    /* Keep overflow hidden while animating */
}

/* Button styling */
.reveal-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 23.92px;
    user-select: none;
    border: none;
    background: none;
    color: #EC7E1F;
    text-transform: uppercase;
    font-weight: 550;
    margin-top: 48px;
}

/* Arrow icon styling */
.reveal-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.22501L7 7.22501L13 1.22501' stroke='%23EC7E1F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-repeat: no-repeat;
    transform: rotate(0);
    transition: transform 0.5s ease;
}

.reveal-arrow.rotated {
    /* Example 108deg rotation */
    transform: rotate(180deg);
}

.portfolio__hero {
    --row-gap: 0;
}
.portfolio__image{
    position: relative;
}
.portfolio__image img{
    display: block;
    border-radius: 20px;
    width: 100%;
}

.video__link{
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
}

.portfolio__hero{
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .portfolio__info{
        margin-top: 80px;
    }
    .video__link{
        right: 50%;
    }
}

.portfolio__info h3 {
    font-weight: 350;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 23.92px;
}

.portfolio__info ul:has(li) + h3 {
    margin-top: 30px;
}

.portfolio__info p:not(:last-child){
    margin-bottom: 1em;
}


.row.features{
    --row-gap: 30px;
    list-style-type: none;
    font-size: 18px;
    line-height: 23.92px;
    font-weight: 550;
}
.features > li{
    display: flex;
    gap: 10.5px;
    align-items: center;
}
.features > li:not(.empty):before{
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='4' viewBox='0 0 16 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.725006' width='16' height='3' fill='%23EC7E1F'/%3E%3C/svg%3E%0A");
    width: 16px;
    min-width: 16px;
    height: 3px;
}

.portfolio__gallery{
    position: relative;
    padding-bottom: 150px;
}

.portfolio__gallery.cara:before {
    top: unset;
    bottom: 657px;
}

.career__header{
    padding-top: 50px;
    margin-bottom: 30px;
}
.career__header h1{
    font-size: 40px;
    font-weight: 550;
    line-height: 53.16px;
    text-align: left;
    text-transform: uppercase;
}

.career__header .btn{
    min-width: 310px;
    max-width: 100%;
}

.career__info{
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.career__salary{
    min-width: 100px;
    color: #EC7E1F;
    font-size: 18px;
    font-weight: 550;
    line-height: 23.92px;

}

.career__location{
    color: #fff;
    font-size: 18px;
    font-weight: 550;
    line-height: 23.92px;
}

.career__location:before{
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_8703_1253)'%3E%3Cpath d='M28 13.5583C28 22.8917 16 30.8917 16 30.8917C16 30.8917 4 22.8917 4 13.5583C4 10.3758 5.26428 7.3235 7.51472 5.07307C9.76516 2.82263 12.8174 1.55835 16 1.55835C19.1826 1.55835 22.2348 2.82263 24.4853 5.07307C26.7357 7.3235 28 10.3758 28 13.5583Z' stroke='%23EC7E1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 17.5583C18.2091 17.5583 20 15.7675 20 13.5583C20 11.3492 18.2091 9.55835 16 9.55835C13.7909 9.55835 12 11.3492 12 13.5583C12 15.7675 13.7909 17.5583 16 17.5583Z' stroke='%23EC7E1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8703_1253'%3E%3Crect width='32' height='32' fill='white' transform='translate(0 0.225098)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    content: '';
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.career__card{
    border: 1px solid #585858;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    min-height: 100%;
}

.career__card>*{
    width: 100%;
}

.career__desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career__desc p{
    flex:1;
}

.careers__row{
    margin-bottom: 150px;
}

.career__card h2{
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 550;
    line-height: 31.9px;
    margin-bottom: 10px;
}

.career__card .career__location{
    padding: 21.33px 0;
}

.career__slider {
    position: relative;
    margin-left: -30px;
    margin-bottom: 200px;
}
.career__slider .glider-slide {
    padding-left: 30px;
}

.career__detail{
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 16px;
    font-weight: 450;
    line-height: 24px;
}

.career__detail ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    list-style: none;
    padding-left: 100px;
}
@media (max-width: 991px) {
    .career__detail ul{
        padding-left: 30px;
    }
}
.career__detail ul li{
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    font-weight: 550;
    line-height: 23.92px;

}
.career__detail ul li:before{
    content: '';
    background: #EC7E1F;
    width: 16px;
    height: 3px;
    position: absolute;
    top: 9px;
    left: 0;
}

.grecaptcha-badge {
    display: none !important;
}