@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: Poppins, serif !important;
    margin: 0;
    background-color: #010101;
    color: #FFF;
}

svg {
    width: 25px;
}

.core_value_item {
    background-color: var(--sub-bg);
}

.whiteColor {
    color: #fff !important;
}

.item .overlay-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000de;
    border-radius: 10px
}
.item.active .overlay-bg {
    background-color: #00000029;
}

/*header {*/
/*    margin: auto;*/
/*    position: fixed;*/
/*    z-index: 1000;*/
/*    width: 100%;*/
/*    top: 0;*/
/*}*/
.textHead {
    font-size: 25px !important;
}

.top_highlight {
    color: #e1c66a;
    font-weight: bold;
}

.slider {
    height: 100vh;
    margin-top: -50px;
    position: relative;
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 38%;
    top: 0;
    background-image: url('./assets/images/icons/logoCut1.png');
    background-size: 15%;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(var(--rotation, 0deg));
    transition: transform 1.2s ease-in-out;
    z-index: 10;
}

.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
            to top, #000 0%, transparent
    );
}

.slider .list .item .content {
    position: absolute;
    left: 10%;
    top: 20%;
    /*width: 500px;*/
    width: 800px;
    max-width: 80%;
    z-index: 1;
    color: #FFF;
}

.slider .list .item .content p:nth-child(1) {
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider .list .item .content h2 {
    font-size: 100px;
    margin: 40px auto;
    color: #FFF;
}

.slider .list .item.active {
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
    animation-duration: 1.3s;
}

.arrows {
    position: absolute;
    bottom: 10%;
    right: 200px;
    z-index: 100;
}

.service-home-desc {
    font-size: 25px;
    line-height: 1.8;
}

.service-home-head {
    font-size: 40px;
}

.arrows button {
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
    border-radius: 25px;
}

.arrows button:hover {
    background-color: #eee;
    color: black;
}

.thumbnail {
    position: absolute;
    bottom: 0;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

.thumbnail::-webkit-scrollbar {
    width: 0;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    /*filter: brightness(0.4);*/
    transition: .5s;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .item.active {
    /*filter: brightness(1);*/
}

.testi-info h4 {
    color: #000000 !important;
}

.brightness {
    /*filter: brightness(1);*/
}

.thumbnail .item.active .content {
    color: #e1c66a;
    text-shadow: #000 3px 0 10px;
}

.thumbnail .item .content {
    position: absolute;
    top: 50% !important;
    inset: auto 10px 10px 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    z-index: 111111;
    text-align: center;
    text-shadow: var(--primary-color) 3px 0 10px;
    /*padding: 0 10px;*/
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .thumbnail {
        height: 150px; /* Adjusted for medium screens */
    }

    .thumbnail .item {
        width: 100px; /* Adjusted for medium screens */
        height: 130px; /* Adjusted for medium screens */
    }

    .thumbnail .item .content {
        font-size: 15px; /* Adjusted for medium screens */
    }

    .arrows {
        right: 20px;
    }

    .arrows button,
    .arrows button img
    {
        width: 30px; /* Adjusted for medium screens */
        height: 30px; /* Adjusted for medium screens */
    }

    .slider .list .item .content h2 {
        font-size: 60px; /* Adjusted for medium screens */
        margin: 20px auto;
    }

    .service-home-desc {
        font-size: 20px; /* Adjusted for medium screens */
    }

    .slider .list .item .content {
        width: 100%; /* Adjusted for medium screens */
        top: 25%;
    }

    .top_highlight {
        font-size: 13px; /* Adjusted for medium screens */
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .thumbnail {
        height: 150px; /* Adjusted for medium screens */
    }

    .thumbnail .item {
        width: 100px; /* Adjusted for medium screens */
        height: 130px; /* Adjusted for medium screens */
    }

    .thumbnail .item .content {
        font-size: 15px; /* Adjusted for medium screens */
    }

    .arrows {
        right: 20px;
    }

    .arrows button,
    .arrows button img {
        width: 30px; /* Adjusted for medium screens */
        height: 25px; /* Adjusted for medium screens */
    }

    .slider .list .item .content h2 {
        font-size: 60px; /* Adjusted for medium screens */
        margin: 20px auto;
    }

    .service-home-desc {
        font-size: 20px; /* Adjusted for medium screens */
    }

    .slider .list .item .content {
        width: 100%; /* Adjusted for medium screens */
        top: 30%;
    }

    .top_highlight {
        font-size: 13px; /* Adjusted for medium screens */
    }
}

/* Custom styles for medium screens (e.g., tablets) */
@media (min-width: 768px) {
    .thumbnail {
        height: 250px;
    }

    .thumbnail .item {
        width: 130px;
        height: 180px;
    }

    .thumbnail .item .content {
        font-size: 20px;
    }

    .arrows {
        right: 30px;
    }

    .arrows button,
    .arrows button img {
        width: 40px; /* Adjusted for medium screens */
        height: 40px; /* Adjusted for medium screens */
    }

    .slider .list .item .content h2 {
        font-size: 50px; /* Adjusted for medium screens */
        margin: 20px auto;
    }

    .service-home-desc {
        font-size: 20px; /* Adjusted for medium screens */
    }

    .slider .list .item .content {
        width: 60%; /* Adjusted for medium screens */
        top: 25%;
    }

    .top_highlight {
        font-size: 15px; /* Adjusted for medium screens */
    }
}

/* Custom styles for small screens (e.g., mobile devices) */
@media (min-width: 1024px) {
    .thumbnail {
        height: 250px;
    }

    .thumbnail .item {
        width: 130px;
        height: 180px;
    }

    .thumbnail .item .content {
        font-size: 20px;
    }

    .arrows {
        right: 100px;
    }

    .arrows button,
    .arrows button img {
        width: 35px;
        height: 35px;
    }

    .slider .list .item .content h2 {
        font-size: 50px;
        margin: 40px auto;
    }

    .service-home-desc {
        font-size: 20px;
    }

    .slider .list .item .content {
        width: 60%;
        top: 20%;
        margin-top: 53px;
    }

    .top_highlight {
        font-size: 15px;
    }
}

@media (min-width: 1296px) {
    .thumbnail {
        height: 250px;
    }

    .thumbnail .item {
        width: 140px;
        height: 200px;
    }

    .thumbnail .item .content {
        font-size: 20px;
    }

    .arrows {
        right: 150px;
    }

    .arrows button,
    .arrows button img {
        width: 35px;
        height: 35px;
    }

    .slider .list .item .content h2 {
        font-size: 70px;
        margin: 40px auto;
    }

    .service-home-desc {
        font-size: 20px;
    }

    .slider .list .item .content {
        width: 60%;
        margin-top: 53px;
        top: 20%;
    }

    .top_highlight {
        font-size: 15px;
    }
}

@media (width >= 1536px){
    .thumbnail {
        height: 250px;
    }

    .thumbnail .item {
        width: 150px;
        height: 220px;
    }

    .thumbnail .item .content {
        font-size: 20px;
    }

    .arrows {
        right: 150px;
    }

    .arrows button,
    .arrows button img {
        width: 40px;
        height: 40px;
    }

    .slider .list .item .content h2 {
        font-size: 90px;
        margin: 40px auto;
    }

    .service-home-desc {
        font-size: 25px;
    }

    .slider .list .item .content {
        width: 60%;
        margin-top: 53px;
        top: 20%;
    }

    .top_highlight {
        font-size: 15px;
    }
}

@media (width >= 1920px){
    .thumbnail {
        height: 250px;
    }

    .thumbnail .item {
        width: 150px;
        height: 220px;
    }

    .thumbnail .item .content {
        font-size: 20px;
    }

    .arrows {
        right: 150px;
    }

    .arrows button,
    .arrows button img {
        width: 40px;
        height: 40px;
    }

    .slider .list .item .content h2 {
        font-size: 90px;
        margin: 40px auto;
    }

    .service-home-desc {
        font-size: 25px;
    }

    .slider .list .item .content {
        width: 60%;
        margin-top: 53px;
        top: 20%;
    }

    .top_highlight {
        font-size: 15px;
    }
}

@media (width >= 2560px) {
    .thumbnail {
        height: 350px;
    }

    .thumbnail .item {
        width: 250px;
        height: 320px;
    }

    .thumbnail .item .content {
        font-size: 30px;
    }

    .arrows {
        right: 70px;
    }

    .arrows button,
    .arrows button img {
        width: 50px;
        height: 50px;
    }

    .slider .list .item .content h2 {
        font-size: 150px;
        margin: 70px auto;
    }

    .service-home-desc {
        font-size: 40px;
    }

    .slider .list .item .content {
        width: 60%;
        top: 20%;
    }

    .top_highlight {
        font-size: 20px;
    }
}