.increase-brightness {
    animation: increase-brightness 0.5s infinite alternate;
}

@keyframes increase-brightness {
    from {
        filter: brightness(100%);
    }

    to {
        filter: brightness(40%);
    }
}

.icons-image {
    width: 300px;
    top: -26%;
    left: 8%;
}
/* .icons-image {
    width: 300px;
    top: -46%;
    left: 8%;
} */
@media (max-width: 576px) {
    .icons-image {
        width: 200px;
        top: -28% !important;
        left: 10% !important;
    }

    .left-door {
        width: 100px !important;
    }

    .right-door {
        width: 100px !important;
    }
}

@media (max-width: 992px) {
    .icons-image {
        width: 220px;
        top: -10%;
        left: 18%;
    }
}

.effect-class-name {
    animation: openCardEffect 0.8s ease-in-out;
}

@keyframes openCardEffect {
    0% {
        transform: translate(100%, -30%);
    }

    50% {
        transform: translate(-80%, 30%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.animate-left-door {
    animation: openLeftDoor 2s infinite alternate;
}

.animate-right-door {
    animation: openRightDoor 2s infinite alternate;
}

@keyframes openLeftDoor {
    0% {
        transform: translate(-200%, -50%);
    }

    25% {
        transform: translate(-100%, -50%);
    }

    50% {
        transform: translate(-100%, -50%);
    }

    75% {
        transform: translate(-100%, -50%);
    }

    100% {
        transform: translate(-200%, -50%);
    }
}

@keyframes openRightDoor {
    0% {
        transform: translate(100%, -50%);
    }

    25% {
        transform: translate(0%, -50%);
    }

    50% {
        transform: translate(-0%, -50%);
    }

    75% {
        transform: translate(0%, -50%);
    }

    100% {
        transform: translate(100%, -50%);
    }
}

.slide {
    display: none;
}

.active-slide {
    display: block;
}

.glow-button {
    padding: 5px 15px;
    font-size: 16px;
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out;
    margin-bottom: 5px;
}

.glow-button::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(192, 148, 74, 0.5);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 5px;
}

/* .glow-button:hover::before {
    opacity: 1;
} */

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(192, 148, 74, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(192, 148, 74, 1);
    }

    100% {
        box-shadow: 0 0 20px rgba(192, 148, 74, 0.5);
    }
}

/* .glow-button {
    animation: glow 2s infinite;
}

.circle {
    width: 200px;
    height: 200px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: width 0.3s, height 0.3s, transform 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotateY(20deg) rotateX(10deg);
    z-index: 1;
}

.circle.shrink {
    width: 300px;
    height: 300px;
    transform: rotateY(0deg) rotateX(0deg);
}

.services-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.services-circle.show {
    display: flex;
}

.service-icon {
    position: absolute;
    color: #c0944a;
    width: 90px;
    height: 90px;
    display: none;
    transition: transform 0.7s;
    filter: drop-shadow(1px 1px 1px #c0944a);
    border: 2px solid #c0944a;
    border-radius: 50%;
    padding: 10px;
    background-color: black;
    animation: glow 2s infinite;
}

.service-icon::before {
    position: absolute;
    content: "••";
    top: 38%;
    left: -40%;
    font-size: 20px;
}

.service-icon:nth-child(1)::before {
    content: "••";
}

.service-icon:nth-child(1) a {
    position: absolute;
    line-height: 1.3;
    top: 36px;
    left: 14px;
    font-size: 12px;
    text-align: center;
    transform: rotate(88deg);
}
.service-name {
    position: absolute;
    top: 142px;
    left: 14px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    transform: rotate(86deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}
.service-icon:hover .service-name{
    opacity: 1;
} */
.service-icon:hover img {
    transform: rotate(86deg);
}

.service-icon:hover .service-name {
    opacity: 1;
}


.service-icon:nth-child(2)::before {
    content: "••";
}
.service-name1 {
    position: absolute;
    top: 142px;
    left: 14px;
    font-size: 12px;
    text-align: center;
    transform: rotate(15deg);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}
.service-icon:hover .service-name1 {
    opacity: 1;
}
.service-icon:nth-child(2) a {
    position: absolute;
    line-height: 1.3;
    left: 4px;
    top: 24px;
    transform: rotate(14deg);
    font-size: 12px;
    text-align: center;
}

.service-icon:nth-child(3)::before {
    content: "••";
}
.service-name3 {
    position: absolute;
    top: 82px;
    left: 62px;
    font-size: 12px;
    text-align: center;
    transform: rotate(-57deg);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}
.service-icon:hover .service-name3 {
    opacity: 1;
}
.service-icon:nth-child(3) a {
    position: absolute;
    line-height: 1.3;
    top: 27px;
    left: 0;
    bottom: 16px;
    right: -16px;
    font-size: 12px;
    transform: rotate(-59deg);
    text-align: center;
}

.service-icon:nth-child(4)::before {
    content: "••";
}
.service-name4 {
    position: absolute;
    top: -55px;
    left: 12px;
    font-size: 12px;
    text-align: center;
    transform: rotate(-129deg);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}
.service-icon:hover .service-name4 {
    opacity: 1;
}
.service-icon:nth-child(4) a {
    position: absolute;
    line-height: 1.3;
    left: 8px;
    top: 36px;
    font-size: 12px;
    right: 6px;
    transform: rotate(231deg);
    text-align: center;
}

.service-icon:nth-child(5)::before {
    content: "••";
}
.service-name5 {
    position: absolute;
    top: -69px;
    left: 12px;
    font-size: 12px;
    text-align: center;
    transform: rotate(-201deg);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}
.service-icon:hover .service-name5 {
    opacity: 1;
}
.service-icon:nth-child(5) a {
    position: absolute;
    top: 0;
    line-height: 1.3;
    left: 16px;
    bottom: 34px;
    font-size: 12px;
    transform: rotate(159deg);
    text-align: center;
}

/*.service-icon:hover {*/
/*    animation: scaling alternate infinite 0.5s;*/
/*}*/

#see-more-button-in-service-circle {
    display: none;
}

.avatar {
    animation: avatartFly 2s alternate infinite ease-in-out;
}

@keyframes avatartFly {
    0% {
        transform: translateY(6px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(6px);
    }
}

@keyframes scaling {
    0% {
        width: 50px;
    }

    50% {
        width: 80px;
    }

    100% {
        width: 50px;
    }
}

/* .service-icon:nth-child(1) {
    transform: rotate(0deg) translateX(250px);
}
.service-icon:nth-child(2) {
    transform: rotate(72deg) translateX(250px);
}
.service-icon:nth-child(3) {
    transform: rotate(144deg) translateX(250px);
}
.service-icon:nth-child(4) {
    transform: rotate(216deg) translateX(250px);
}
.service-icon:nth-child(5) {
    transform: rotate(288deg) translateX(250px);
} */

.swiper {
    width: 90%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    border: 4px solid #c0944a;
}

.gradient-border {
    position: relative;
    display: inline-block;
    /* Adjust as needed */
    padding: 10px;
    /* Adjust as needed */
    background: linear-gradient(45deg, #c0944a, #f1d4a0);
    border-radius: 10px;
    /* Adjust as needed */
}

.gradient-border::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: white;
    border-radius: inherit;
    z-index: -1;
}

#service-float {
    animation: reversingOnFloat alternate infinite 2s;
}

@keyframes reversingOnFloat {
    0% {
        transform: translate(-50%, -45%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

.active-slider-image {
    transition: 0.4s ease-in-out;
}

.active-slider-image:hover {
    transform: scale(1.5);
}

.container-sd {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider-sd {
    perspective: 5000px;
    width: 80%;
    height: 500px;
    position: relative;
}

.carousel-sd {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.slide-sd {
    position: absolute;
    width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
}

.slide-sd:hover {
    cursor: pointer;
    width: 320px;
    height: 420px;
    border-radius: 8px;
}

.scene {
    margin-top: 20px;
    width: 4em;
    justify-content: center;
    align-items: center;
}

.cube {
    color: #ccc;
    cursor: pointer;
    transition: all 0.85s cubic-bezier(0.17, 0.67, 0.14, 0.93);
    transform-style: preserve-3d;
    transform-origin: 100% 50%;
    width: 4em;
    height: 2em;
}

.cube:hover {
    transform: rotateX(-90deg);
}

.side {
    box-sizing: border-box;
    position: absolute;
    display: inline-block;
    height: 4em;
    width: 7em;
    text-align: center;
    text-transform: uppercase;
    padding-top: 1.3em;
    font-weight: bold;
}

.top {
    background: #222229;
    transform: rotateX(90deg) translate3d(0, 0, 2em);
    box-shadow: inset 0 0 0 5px #C0944A;
}

.front {
    background: #222229;
    box-shadow: inset 0 0 0 5px #C0944A;
    transform: translate3d(0, 0, 2em);
}

.service-image {
    transition: .4s ease-in-out;
}

.main-service-image:hover .service-image {
    transform: scale(1.2);
}

.arrow-projects {
    position: absolute;
    top: 50%;
    /*transform: translateY(-50%);*/
    font-size: 6rem;
    color: white;
    z-index: 10;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.arrow-projects a {
    color: inherit;
    text-decoration: none;
    padding: 10px;
    display: block;
}

.arrow-projects a:hover {
    color: #C0944A;
    text-decoration: none;
}


:root {
    --a: 40deg;
    --b: 1000px;
    --transition-duration: 1s;
}

iframe {
    --x: 10px;
    --y: 20px;
    clip-path: polygon(var(--y) var(--y),
            calc(100% - var(--y)) var(--y),
            calc(100% - var(--y)) calc(100% - var(--y)),
            var(--y) calc(100% - var(--y)),
            0 calc(100% - var(--x) - var(--y)),
            0 calc(var(--x) + var(--y)));
    transform: perspective(var(--b)) rotateY(var(--a));
    outline: var(--y) solid rgba(0, 0, 0, 0.4);
    outline-offset: calc(-1 * var(--y));
    padding: var(--y) var(--y) var(--y) 0;
    transition: var(--transition-duration) all;
    max-width: 100%;
    display: block;
    margin: auto;
}

.glide__slide--active iframe {
    --y: 0px;
    transform: perspective(var(--b)) rotateY(0deg);
    border: 2px solid goldenrod;
}

.glide__slide--right iframe {
    --x: 10px;
    --y: 20px;
    clip-path: polygon(var(--y) var(--y),
            calc(100% - var(--y)) var(--y),
            calc(100% - var(--y)) calc(100% - var(--y)),
            var(--y) calc(100% - var(--y)),
            0 calc(100% - var(--x)) calc(100% - var(--y) - var(--x)),
            0 calc(100% - var(--x)) calc(var(--y) + var(--x)));
    transform: perspective(1000px) rotateY(-40deg);
    outline: var(--y) solid rgba(0, 0, 0, 0.4);
    outline-offset: calc(-1 * var(--y));
    padding: var(--y) 0 var(--y) var(--y);
    transition: 1s all;
    max-width: 100%;
    display: block;
    margin: auto;
}

.glide__slide--left iframe {
    transform: perspective(var(--b)) rotateY(var(--a));
}

.glide__slide--next-next iframe {
    transform: perspective(var(--b)) rotateY(calc(-0.5 * var(--a)));
}

.glide__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.glide__arrow {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-size: 2rem;
    transition: background-color 0.3s ease;
}

.glide__arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


.glide__slide iframe {
    width: 100%;
    height: 400px;
}

.fmap {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    border: 0;
    clip-path: none;
    transform: rotateY(0deg);
    outline: 0;
    outline-offset: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

