/* GLOBAL */
:focus {
    outline: none;
}

body {
    padding: 0px 25px 85px;
    color: #1d1e22;
    font-family: 'Poppins', sans-serif;
}

p {
    color: #a1a1a1;
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
}

a {
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: #61dbaa;
}

h1 {
    font-size: 68px;
    font-weight: 400;
    margin-bottom: 35px;
}

h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

h3 {
    font-weight: 400;
    font-size: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

hr {
    width: 90%;
    border-top: 1px solid #e1e1e1;
    margin: 0 auto;
    max-width: 1040px;
}
b {
    font-weight: 500;
}
span.green {
    color: #61dbaa;
}

/* UL elements */
ul {
    margin-bottom: 0px;
    padding-left: 0px;
}

li {
    list-style-type: none;
}

/* BUTTONS */
.btn {
    border: 0px solid #e1e1e1;
    margin-top: 15px;
    padding: 12px 35px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    border-radius: 0px;
    background-color: #1d1e22;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.btn:hover {
    color: #fff;
}

.btn svg {
    margin-left: 7px;
    margin-bottom: 3px;
}
.btn-small {
    margin-top: 25px;
    font-weight: 500;
}
.btn-small img {
    width: 20px;
    height: 20px;
    margin-left: 4px;
    margin-bottom: 0 !important;
}
/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 2240px;
    margin-left: auto;
    margin-right: auto;
    z-index: 99;
    padding-left: 25px;
    padding-right: 25px;
    background: #fff;
    transition: height 300ms ease-in-out;
}

nav.shrink {
    height: 55px;
}

.logo {
    width: 220px;
}
.logo img {
    width: 100%;
}

nav ul.menu {
    display: flex;
}

nav ul.menu li {
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #e1e1e1;
}

nav ul.menu li:last-child {
    border-right: 0px solid #e1e1e1;
}

nav ul.menu li a {
    font-weight: 400;
    font-size: 14px;
}
nav ul.menu li img {
    margin-top: -5px;
    width: 18px;
    height: 18px;
}
nav ul.menu li a.active {
    color: #61dbaa;
}

/* FOOTER */
footer {
    background-color: #1d1e22;
    color: #ffffff;
    padding: 85px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 2240px;
}

footer hr {
    width: 40%;
    border-top: 1px solid #4a4b4f;
    margin: 15px auto 15px 0px;
}

footer .footer-content .footer-ul.left hr {
    width: 40%;
    border-top: 1px solid #4a4b4f;
    margin: 15px 0px 15px auto;
}

footer h3 {
    font-weight: 400;
    font-size: 42px;
}

footer .footer-content {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    max-width: 1440px;
    position: relative;
    flex-wrap: wrap;
}

footer .footer-content ul {
    font-size: 16px;
    padding-right: 15px;
    padding-left: 15px;
}

footer .footer-content ul li {
    color: #7b7c7e;
    line-height: 1.8;
    font-weight: 400;
}

footer .footer-content ul.adress li {
    color: #7b7c7e;
}

footer .footer-content ul li.headline {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

footer .footer-content .footer-ul {
    display: flex;
    padding-right: 10px;
    align-items: flex-start;
    padding-left: 45px;
}
footer .footer-content ul li img.social {
    width: 15px;
    height: 15px;
}
footer .footer-content .footer-ul.left {
    justify-content: flex-end;
    text-align: right;
    padding-right: 45px;
    padding-left: 10px;
}

footer .footer-content .footer-ul.left ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

footer .footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    border-left: 1px solid #4a4b4f;
    border-right: 1px solid #4a4b4f;
    padding-bottom: 20px;
    padding-left: 35px;
    padding-right: 35px;
}

footer .footer-contact h3 {
    width: 100%;
    line-height: 1.3;
}

footer .footer-contact a {
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 35px;
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

footer .footer-contact a svg {
    margin-right: 8px;
}

/* HEADER */
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 2240px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
}
.header-image {
    position: absolute;
    bottom: -100px;
    width: 100%;
    z-index: 8;
}
.header-around {
    width: 100%;
    height: 100vh;
    padding-top: 85px;
    padding-bottom: 85px;
    position: relative;
    overflow: hidden;
}

.header .header-content {
    color: #fff;
    padding: 45px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    width: 95%;
    max-width: 970px;
    z-index: 80;
}

.header .header-content p {
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
    max-width: 90%;
}
.header img.logo-img {
    max-width: 500px;
    filter: invert(1);
    position: relative;
    margin-bottom: 25px;
}
header h1 {
    margin-bottom: 45px;
}
.header-around .overlay {
    width: 100%;
    position: absolute;
    bottom: 85px;
    right: 0;
    left: 0;
    top: 85px;
    background-color: #ccc;
    z-index: 10;
}
.header-around .overlay2 {
    width: 100%;
    position: absolute;
    top: 85px;
    bottom: 85px;
    right: 0;
    left: 0;
    background: radial-gradient(circle, #00000095 10%, rgba(0, 0, 0, 0) 100%);
    opacity:1;
    z-index: 9;
}
/* SERVICES */
.services {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 85px;
    padding-top: 85px;
    align-items: center;
}

.services2 {
    padding-top: 0px;
    padding-bottom: 70px;
}

.services-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 90%;
    max-width: 940px;
    text-align: center;
    margin-bottom: 45px;
}

.services-content p {
    font-size: 22px;
    margin-bottom: 0;
}

.services-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1240px;
    text-align: center;
    margin-top: 45px;
}

.services-boxes .services-box {
    padding: 15px 35px;
}

.services-boxes .services-box p {
    margin-bottom: 0px;
}

.services-boxes .services-box.center {
    border-left: 0px solid #e1e1e1;
    border-right: 0px solid #e1e1e1;
}

.services .services-desc {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 135px;
    align-items: center;
}

.services-w-images {
    padding-bottom: 0px;
    padding-top: 85px;
}

.services .services-desc .services-info {
    padding-right: 65px;
    padding-left: 65px;
}

.services .services-desc .services-image {
    padding-right: 0px;
    padding-left: 0px;
    position: relative;
}

.services .services-desc .services-image .services-image-inner {
    position: relative;
    overflow: hidden;
    z-index: 81;
}

.services .services-desc .services-info h3 {
    margin-bottom: 35px;
}

.services .services-desc .services-info p {
    margin-bottom: 25px;
    padding-left: 45px;
    border-left: 1px solid #e1e1e1;
}

.services .services-desc .services-image .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    background-color: #eee;
}


/* REFERENCES */
.references {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 85px;
    padding-top: 85px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

.references-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 90%;
    max-width: 940px;
    text-align: center;
    margin-bottom: 35px;
}

/* WHY */
.why {
    display: flex;
    padding-top: 85px;
    padding-bottom: 85px;
    flex-wrap: wrap;
    color: #fff;
    background-color: #1d1e22;
    align-items: center;
    justify-content: center;
}

.why-inner {
    display: flex;
    width: 90%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.why-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    padding-right: 45px;
    padding-top: 20px;
    padding-bottom: 0px;
}

.why-boxes {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    border-left: 1px solid #4a4b4f;
}

.why-box {
    text-align: left;
    padding: 15px 0px 15px 45px;
}

.why-box p {
    margin-bottom: 0;
}

.why-content p {
    font-size: 18px;
    margin-bottom: 0;
}

.why hr {
    border-color: #4a4b4f;
}

/* SLIDER */
.filter-option {
    margin-bottom: 45px;
    text-align: center;
}

.filter-option li {
    display: inline-block;
    list-style: none;
}

.filter-option li + li {
    margin-left: -5px;
}

.filter-option li a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    color: #7b7c7e;
    position: relative;
    padding: 5px 25px;
}

.filter-option li a.active {
    color: #000;
}

.filter-option li a.active:after {
    content: "";
    position: absolute !important;
    width: 80%;
    bottom: -5px;
    background-color: #61dbaa;
    height: 1px;
    left: 10%;
    right: 10%;
}

.filter-option li:last-of-type a {
    border-right: none;
}

.item-slider li {
    margin: 0 15px;
    height: 600px;
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: #e8e8e8;
}

.item-slider li img {
    width: 100%;
}

.slider-controls {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls span {
    width: 50px;
    height: 50px;
    border: 1px solid #7b7c7e;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls span:hover {
    border-color: #fff;
}

.slider-wrapper {
    width: 100%;
}

svg.right-arrow {
    transform: rotate(180deg);
    margin-bottom: 1px;
}

svg.left-arrow {
    margin-top: 2px;
}

/* FORM */
.form-section {
    padding-top: 15px;
    padding-bottom: 85px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    display: none;
}

form {
    width: 100%;
    max-width: 940px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 90%;
    max-width: 940px;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

form .form-group {
}

form .form-control {
    margin-bottom: 25px;
    border-radius: 0;
    min-height: 54px;
    font-size: 16px;
    padding: 10px;
    background-color: rgba(239, 239, 239, 0.50);
    border: 1px solid #e1e1e1;
}

form label {
    font-weight: 400;
}

.form-control:focus {
    border-color: #1d1e22;
    color: #1d1e22;
    box-shadow: none;
}

/* SCROLL DOWN BUTTON */
#scroll-down {
    position: absolute;
    bottom: 70px;
}

#scroll-down::before {
    -webkit-animation: elasticus 1.8s cubic-bezier(1, 0, 0, 1) infinite;
    -moz-animation: elasticus 1.8s cubic-bezier(1, 0, 0, 1) infinite;
    -o-animation: elasticus 1.8s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 1.8s cubic-bezier(1, 0, 0, 1) infinite;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -1px;
    width: 1px;
    height: 65px;
    content: ' ';
    background: #fff;
}

@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb {
    background: #61dbaa;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #61dbaa;
}

::-webkit-scrollbar-track {
    background: #1d1e22;
    border-radius: 15px;
    box-shadow: inset 7px 10px 12px #f0f0f0;
}

/* AOS animation */
[data-aos="my-animation"] {
    transition-property: transform;
    transition-delay: 0.3s;
    transform: translateX(0%);
}

[data-aos="my-animation"].aos-animate {
    transform: translateX(100%);
}

/* SELECTION */
::-moz-selection {
    background-color: rgba(97, 219, 170, 0.75);
}

::selection {
    background-color: rgba(97, 219, 170, 0.75);
}

/* BACKUP BUTTON */
#backup {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 25px;
    bottom: 25px;
    background-color: #eee;
    display: none;
    transform: rotate(-90deg);
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}

#backup a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MODAL */
.modal {
    display: flex;
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 55px;
    border: 1px solid #888;
    width: 95%;
    position: relative;
    max-width: 760px;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-height: 85%;
    overflow: auto;
    cursor: default;
    z-index: 20;
}

.modal.open .modal-content {
    opacity: 1;
    transition: opacity 0.3s ease 0.2s;
}

.modal-content .portfolio {
    width: 1px;
}
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal p b {
    font-weight: 500;
    color: #000;
}
.modal ul {
    margin-bottom: 25px;
}
.modal ul li {
    line-height: 1.8;
    color:#a1a1a1;
    position: relative;
    padding-left: 20px;
}
.modal ul li b {
    color:#000;
}
.modal li::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid lightgray; /* Color of the triangle */
}
.modal h3 {
    margin-bottom: 25px;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close img {
    width: 30px;
    height: 30px;
}

/* MOBILE */
@media only screen and (max-width: 768px) {
    .services .services-desc .services-info {
        padding-right: 0px;
        padding-left: 0px;
    }
    h1,h2,h3,h4,h5 {
        line-height: 1.2;
    }
    .header-image {
        width: auto;
        height: 120%;
        bottom: 0;
        top: auto;
    }
    .header h1 {
        margin-bottom: 15px;
    }
    #scroll-down {
        bottom:40px;
    }
    .header {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .header-around {
        height: auto;
        padding-bottom: 0;
    }
    .header .header-content {
        padding: 10px 5px;
    }
    .services .services-desc .services-image {
        margin-bottom: 45px;
    }
    .why-box {
        padding: 0;        
        margin-bottom: 45px;
    }
    .why-boxes {
        margin-bottom: 45px;
        border: none;
    }
    .why-content {
        margin-bottom: 45px;
    }
    .why {
        padding-bottom: 0px;
    }
    .filter-option li a {
        font-size: 14px;
        padding: 5px 5px;
    }
    ul.menu {
        display: none !important;
    }
    .header-around .overlay {
        display: none !important;
    }
    .header-around .overlay2 {
    }
    h1 {
        font-size: 42px;
    }
    .header .header-content p {
        font-size: 16px;
    }
    .services .services-desc .services-image .overlay {
        display: none;
    }
    .services .services-desc {
        margin-bottom: 45px;
    }
    .services-desc.reverse {
        flex-direction: column-reverse;
    }
    .item-slider li {
        height: auto;
    }
    footer .footer-content .footer-ul {
        justify-content: center !important;
        text-align: center !important;
        padding: 0 !important;
    }
    footer .footer-content .footer-ul ul {
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 45px;
    }
    footer .footer-content .footer-ul.left hr {
        margin: 20px auto;
    }
    footer .footer-contact {
        padding: 0 !important;
        margin-bottom: 45px;
        border: none !important;
    }
    footer .footer-contact h3 {
        font-size: 30px;
    }
    footer {
        padding: 45px 10px;
    }
    .services .services-desc .services-info p {
        border: none;
        padding: 0;
    }
    .services .services-desc .services-info {
        margin-bottom: 45px;
    }
    .header-around .overlay2 {
        bottom:0;
    }
    h3 {
        font-size: 26px;
    }
    .slick-prev {
    left: 33% !important;
}

.slick-next {
    right: 33% !important;
}

  }

  .slick-prev, .slick-next {
    position: absolute;
    bottom: 0%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #ffffff20;
    border: 1px solid #fff;
    box-shadow: none !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.slick-prev {
    left: 41%;
}

.slick-next {
    right: 41%;
}

.slick-prev:before, .slick-next:before {
    display: none;
}

.slick-prev:after {
    content: '←';
}

.slick-next:after {
    content: '→';
}

/* PARTNERS SECTION */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 85px 20px;
    background-color: #fff;
}

.partners-content {
    width: 100%;
    max-width: 1240px;
    display: flex;
    justify-content: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-logos img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

/* MOBILE */
@media only screen and (max-width: 768px) {
    .partners {
        padding: 45px 10px;
    }

    .partners-logos {
        flex-direction: column;
        gap: 20px;
    }

    .partners-logos img {
        max-width: 150px;
    }
    .services-slider .slick-slide img {
        width: 100% !important;
        height: auto !important;
    }
    .services-slider {
        height: auto !important;
    }
}

.services-slider {
    height: 600px;
}

.services-slider .slick-slide {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.services-slider .slick-slide img {
    width: auto;
    height: 600px;
}