/*:root {
    --background-color: #f5f5dc;
    --sidebar-color: #d2b48c;
    --showcase-color: #deb887;
    --bottom-section-color: #f5f5dc;
    --inner-block-color: #a0522d;

    --button-text-color: #a0522d;
    --button-background-color: #f5f5dc;
    --button-hover-background-color: #a0522d;
    --button-hover-text-color: #f5f5dc;
    --button-shadow-color: rgba(0, 0, 0, 0.3);
    --swiper-button-color: #a0522d;
    --swiper-button-background-color: #f5f5dc;
    --swiper-button-hover-background-color: #a0522d;
    --swiper-button-hover-text-color: #f5f5dc;
    --swiper-button-shadow-color: rgba(0, 0, 0, 0.3);
}*/

:root {
    --primary-color: #535a61;
    --accent-color: #a88959;
    --background-color: #dad3ce;
    --text-color: #2c2e32;
    --neutral-color: #83807b;
    --accent-color-alpha-8: rgba(168, 137, 89, 0.8);
    --accent-color-alpha-2: rgba(168, 137, 89, 0.2);
}

@keyframes backGroundDesignOne {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes backGroundDesignTwo {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 100%
    }
}

@keyframes headingGradientAnimationBackground {
    0% {
        background-position: 0;
    }

    to {
        background-position: 100%;
    }
}

/* Use CSS for smooth scrolling */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    list-style: none !important;
    text-decoration: none !important;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.darkBg{
    background-color: var(--primary-color);
}
.liteBg{
    background-color: var(--background-color);
}
.goldenBg{
    background-color: var(--accent-color);
}
.goldenBgAlpha8{
    background-color: var(--accent-color-alpha-8);
}
.goldenBgAlpha2{
    background-color: var(--accent-color-alpha-2);
}
.darkFontColor{
    color: var(--primary-color);
}
.liteFontColor{
    color: var(--background-color);
}
/* inputs  */
/* From Uiverse.io by Satwinder04 */
.input-container {
    position: relative;
    margin: 25px auto;
    /*  width: 200px;*/
}

.input-container input[type="email"],
.input-container input[type="text"] {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
}

.input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container input[type="email"]:focus~.label,
.input-container input[type="email"]:valid~.label,
.input-container input[type="text"]:focus~.label,
.input-container input[type="text"]:valid~.label {
    top: -20px;
    font-size: 16px;
    color: #333;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #333;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container input[type="email"]:focus~.underline,
.input-container input[type="email"]:valid~.underline,
.input-container input[type="text"]:focus~.underline,
.input-container input[type="text"]:valid~.underline {
    transform: scaleX(1);
}


body {
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.homePageHeadingWithBackground {
/*    font-size: 70px;*/
    font-size: clamp(1rem, 5vh, 3rem);
    background-image: url("../images/fixes-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: center;
}

.homePageHeadingWithBackground-smog {
    background-image: url("../images/gifs/smog-heading.gif");
}

/* Main Menu  */
.navbar {
    background-color: var(--text-color) !important;
    color: var(--background-color);
    transition: top 0.3s;
    position: fixed;
    width: 100%;
    top: -80px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, .4) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.navbar li a {
    color: var(--accent-color);
    font-size: 14px;
}

.navbar li a:hover {
    color: var(--background-color);
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 0;
    vertical-align: 0;
    border: none;
    font-size: 11px;
}

.theme-button {
    margin-left: 20px;
    padding: 8px 20px;
    border-radius: 5px;
    color: var(--whiteColor) !important;
    background: var(--greenColor);
    border: 1px solid var(--greenColor);
    font-size: 12px;
}

.theme-button:hover {
    opacity: .8;
}

@media (max-width: 991px) {

    .navbar li,
    .theme-button {
        margin-left: 0;
    }
}

.navbar .nav-item .custom-dropdown {
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    padding: 20px;
    z-index: 1000;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    transition: 0.3s all ease-in-out;
}

.navbar .nav-item .custom-dropdown ul {
    gap: 20px;
}

.navbar .nav-item .custom-dropdown ul.border-left {
    border-left: 1px solid #eee;
    padding-left: 1rem;
}

.navbar .nav-item .custom-dropdown li {
    margin-bottom: 10px;
}

.navbar .nav-item .custom-dropdown .col-md-9 li {
    width: calc(100% / 5);
}

.navbar .nav-item .custom-dropdown li img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 20px;
}

.navbar .nav-item .custom-dropdown li a {
    padding: 10px 0;
}

@media(min-width: 992px) {
    .navbar .nav-item:hover .custom-dropdown {
        display: flex;
    }
}

@media(max-width: 991px) {
    .navbar .nav-item .custom-dropdown {
        position: unset;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #eee
    }

    .navbar .nav-item .custom-dropdown.mobile-show {
        display: grid;
        transition: 0.3s all ease-in-out;
    }
}

@media(max-width: 567px) {
    .navbar .nav-item .custom-dropdown {
        grid-template-columns: repeat(1, 1fr);
    }
}

#mobile-version {
    display: none;
}

#desktop-version {
    display: flex;
}

@media (max-width:991px) {
    #mobile-version {
        display: flex;
    }

    #desktop-version {
        display: none;
    }
}

@media(min-width: 992px) {
    .navbar .nav-item:hover .custom-dropdown {
        display: flex;
    }
}

@media(max-width: 991px) {
    .navbar .nav-item .custom-dropdown {
        position: unset;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #eee
    }

    .navbar .nav-item .custom-dropdown.mobile-show {
        display: grid;
        transition: 0.3s all ease-in-out;
    }
}

@media(max-width: 567px) {
    .navbar .nav-item .custom-dropdown {
        grid-template-columns: repeat(1, 1fr);
    }
}

.left-sidebar {
    /* padding: 20px; */
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.product-showcase {
    position: relative;
    height: 90vh;
    width: 100%;
    padding: 20px 0;
}

.swiper {
    position: relative;
    height: 100%;
}

.product-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.product-image .slider-bottom-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 30%;
    background: #000;
    padding: 20px 20px 0 0;

    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.bottom-left-section {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--bottom-section-color);
    padding: 20px 20px 0 0;
    height: 50%;
    border-radius: 0 80px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 50%;
}

.inner-block {
    width: 100%;
    height: 100%;
    border-radius: 0 60px 0 0;
    background: var(--inner-block-color);
    padding: 20px;
    color: white;
    opacity: 0;
}

.inner-block .product-btn {
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid var(--button-background-color);
    color: var(--button-hover-text-color);
    border-radius: 20px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.inner-block .product-btn:hover {
    background: var(--button-background-color);
    color: var(--button-text-color);
    box-shadow: 0 5px 15px var(--button-shadow-color);
    transform: translateY(-3px);
}

.design-section {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.design-section h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.left-sidebar h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.design-box {
    width: 100%;
    height: 130px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.design-box:last-child {
    margin-bottom: 0;
}

.design-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.design-box:hover {
    transform: scale(1.05);
}

.custom-navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.custom-next,
.custom-prev {
    width: 50px;
    height: 50px;
    background: var(--swiper-button-background-color);
    border: none;
    border-radius: 50%;
    color: var(--swiper-button-color);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.custom-next:hover,
.custom-prev:hover {
    background: var(--swiper-button-hover-background-color);
    transform: scale(1.1);
    color: var(--swiper-button-hover-text-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.custom-next:active,
.custom-prev:active {
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.custom-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    /* padding: 10px; */
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Loader container */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 100px;
    height: 100px;
}

/* Split screen styles */
.split {
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: #1E1E1E;
    z-index: 1;
}

.split.top {
    top: 0;
}

.split.bottom {
    bottom: 0;
}

/* Sidebar and Content Styles */
.left-sidebar,
.right-sidebar {
    position: relative;
    z-index: 2;
}

.right-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 5px;
/*    background: #fff;*/
    background: transparent;
    height: 100vh;
    width: auto;
}

.new-content {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}

#smooth-scroll {
    position: relative;
    width: 100%;
}

/* Vertical Section */
.vertical-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1abc9c;
    color: white;
    padding: 20px;
    text-align: center;
}

.vertical-section:nth-child(3) {
    background: #3498db;
}

/* Horizontal Section */
.horizontal-section-rtl {
    position: relative;
    height: 100vh;
    /*    background: #2c3e50;*/
    overflow: hidden;
}

#firstSectionRightToLeftProductsShowCase {
    /*    background: linear-gradient(45deg,#F17C58, #E94584, #24AADB , #27DBB1,#FFDC18, #FF3706);*/
    /*    background-size: 600% 100%;*/
    /*    animation: backGroundDesignTwo 5s linear infinite;*/
    /*    animation-direction: alternate;*/
/*    background: #f5f5f5;*/
}

.horizontal-container-rtl {
    display: flex;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    gap: 20px;
    padding: 0 100vw;
}

.horizontal-container-rtl img {
    height: calc(50vh - env(safe-area-inset-bottom));
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    transition: transform 0.3s ease-in-out;
}

.horizontal-container-rtl img:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* Horizontal Section LTR */
.horizontal-section-ltr {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.horizontal-container-ltr {
    display: flex;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    gap: 20px;
    padding: 0 100vw;
    /* Padding to ensure smooth edges during scrolling */
}

.horizontal-container-ltr .item {
/*    height: 400px;*/
    height: calc(50vh - env(safe-area-inset-bottom));
    /* object-fit: cover; */
    border-radius: 10px;
}

.horizontal-container-ltr img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    transition: transform 0.3s ease-in-out;
}

.horizontal-container-ltr img:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.stack-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 100px 0;
}

.stack-offset {
    background: transparent;
}

.portfolio-stack {
    position: relative;
    width: 500px;
    /* Fixed width for the stack */
    height: 700px;
    /* Fixed height for the stack */
    margin: 0 auto;
}

.stack-item {
    position: absolute;
    width: 500px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;*/
    overflow: hidden;
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-item .types-box {
    height: 80%;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.stack-item .types-box div {
    padding: 10px;
}

.stack-item .types-box img {
    width: 100%;
    height: 300px;
}

.stack-item .types-box p {
    height: 400px;
    width: 100%;
}


.item {
    cursor: pointer;
    font-size: 0;
}

.detail {
    position: fixed;
    top: 10px;
    left: 50%;
    width: 80%;
    font-size: 0;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    max-height: 100%;
    background: #000;
    background: #fff;
    overflow: auto;
    z-index: 1000;
}

.detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail .content {
    /* background: #232323; */
    /* background-color: #8a8; */
    padding: 2rem 1.5rem;
    font-size: 1rem;
    box-sizing: border-box;
    flex-grow: 1;
    height: 100%;
}

.detail .title {
    font-size: 2rem;
    text-transform: uppercase;
    color: #000;
}

.detail .secondary {
    color: #000;
}

.detail .description {
    color: #000;
    line-height: 1.5;
}

.form-container {
    /* background: #ffffff; */
    /*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
    /* padding: 10px; */
    /*    margin-top: 20px;*/
    width: 100%;
    transition: transform 0.3s ease;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #fff;
}

.form-control {
    border-radius: 0px;
    /* box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: none;
}

.form-control:focus {
    border-color: #1f4037;
    /* box-shadow: 0 0 5px rgba(31, 64, 55, 0.5); */
    box-shadow: none;
}

.btn-primary {
    background: #1f4037;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.btn-primary:hover {
    background: #136a5b;
}

.btn-primary:focus {
    box-shadow: 0 0 5px rgba(19, 106, 91, 0.5);
}



/* Horizontal Section */
.timelineContainer-section-rtl {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.timelineContainer-container-rtl {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    gap: 20px;
    padding: 0 100vw;
    /* Padding to ensure smooth edges during scrolling */
}

/* .timelineContainer-container-rtl .timeline-card { */
/* height: 300px; */
/* object-fit: cover; */
/* border-radius: 10px; */
/* } */

.horizontal-window {
    width: 100vw;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.intro {
    width: 100vw;
    height: 100px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.intro-content {
    text-align: center;
    flex-shrink: 0;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    padding: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
}

.line {
    position: absolute;
    width: calc(100% - 150px);
    height: 2px;
    background-color: #ccc;
    top: 50%;
    z-index: 1;
}

/* .timelineContainer {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
    position: relative;
    height: 400px;
    width: calc(auto +100px);
    gap: 50px;
} */

.timeline-card {
    position: relative;
    height: 400px;
    width: 250px;
    box-sizing: border-box;
    cursor: pointer;
    margin-right: 50px;
}

.timeline-card:hover .upper,
.timeline-card:hover .lower {
    transform: translateY(0);
}

.upper {
    height: 200px;
    width: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
    transform: translateY(100px);
    transition: 0.3s ease-in-out;
}

.year {
    font-size: 35px;
    margin-bottom: 10px;
}

.lower {
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
    box-sizing: border-box;
    transform: translateY(-100px);
    transition: 0.3s ease-in-out;
    color: black;
    z-index: 2;
}

.lower p {
    text-align: center;
}

.card1 {
    background-color: #FF6961;
}

.card2 {
    background-color: #A8E4A0;
}

.card3 {
    background-color: #8bd7f6;
}

.card4 {
    background-color: #9db4c4;
}

.card5 {
    background-color: #98e8cd;
}

.card6 {
    background-color: #f98f93;
}

.card7 {
    background-color: #90eae0;
}

.card8 {
    background-color: #fcdf94;
}

/* Flip Cards Home Page  */
.filpCardsHomePageWrap {
    padding: 50px 0;
    background-color: #000;
}

.homePageFlipcard {
    position: relative;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 1s ease;
    margin-bottom: 20px;
}

.homePageFlipcard:hover {
    transform: rotateY(180deg);
}

.homePageFlipcard .homePageFlipcardSide {
    position: absolute;
    width: 100%;
    height: 300px;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    border-radius: 10px;
}

.homePageFlipcard .homePageFlipcardFront {
    background-color: #3498db;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    padding: 0 10px;
}

.homePageFlipcard .homePageFlipcardBack {
    border: 2px solid rgba(255, 105, 180, 0.8);
    /* Bord rose transparent */
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.8);
    /* Effet néon */
    border: 2px solid rgba(255, 255, 255, 1);
    /* Bord rose transparent */
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    /* Effet néon */
    background: rgba(0, 0, 0, 1);
    color: #fff;
    transform: rotateY(180deg);
    padding: 10px;
    font-size: 20px;
    text-align: center;
}


.homePageFeturesAnimationSection {
    padding: 20px 0;
}

.homePageFeturesAnimationWrap {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Add some spacing between items */
}

.homePageFeturesAnimationWrap .homePageFeturesAnimationItem {
    width: 10%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--background-color);
    transition: all ease-out 0.5s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.homePageFeturesAnimationItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-out 0.5s;
}

.homePageFeturesAnimationItem:hover {
    width: 50%;
}

.homePageFeturesAnimationItemInner {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease-out 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.homePageFeturesAnimationItem:hover>.homePageFeturesAnimationItemInner {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}


/* Footer */
.spectacledcoder-footer {
    background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:rgba(221, 221, 221, 0);display:block;z-index:1;position:relative' width='3000' height='588' preserveAspectRatio='xMidYMid' viewBox='0 0 3000 588'><g transform='translate(1500,294) scale(-1,-1) translate(-1500,-294)'><linearGradient id='lg-0.9997820734103322' x1='0' x2='1' y1='0' y2='0'><stop stop-color='%23ffffff' offset='0'></stop><stop stop-color='%23ffffff' offset='1'></stop></linearGradient><path d='' fill='url(%23lg-0.9997820734103322)' opacity='0.37'><animate attributeName='d' dur='10s' repeatCount='indefinite' keyTimes='0;0.333;0.667;1' calcMode='spline' keySplines='0.5 0 0.5 1;0.5 0 0.5 1;0.5 0 0.5 1' begin='0s' values='M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z;M0 0L 0 531.8219503412562Q 300 581.2367793971861  600 536.6456794845121T 1200 526.1199153747991T 1800 453.6567543549444T 2400 426.5449945053999T 3000 429.5661867072931L 3000 0 Z;M0 0L 0 572.7600127243211Q 300 599.6891402698932  600 560.6693012791557T 1200 514.6895687962055T 1800 485.3535117451038T 2400 447.8902433799051T 3000 454.9458231426154L 3000 0 Z;M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z'></animate></path></g></svg>") no-repeat center center;
    background-size: cover;
}

.spectacledcoder-footer-heading {
    font-size: 2vw;
}

.spectacledcoder-footer-bottom-sec a {
    color: #0a0a0a;
    text-decoration: none;
}

.spectacledcoder-footer-bottom-sec a:hover {
    font-weight: 700;
}

.d-footer-li {
    margin-bottom: 5px;
    transition: all 0.4s;
}

.d-footer-li:hover {
    cursor: pointer;
    transform: translateX(10px);
    font-weight: 700;
}

.socialIconsFooter a {
    color: #000;
    font-size: 17px;
    margin-right: 3px;
}

.footerLogo {
    width: 200px;
    margin-bottom: 10px;
}

/* Footer social icons  */
.footer-social-icon {
    display: flex;
    /*  justify-content: center;*/
    /*  align-items: center;*/
}

.footer-social-icon .icon-content {
    margin: 0 3px;
    position: relative;
}

.footer-social-icon .icon-content .tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-icon .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.footer-social-icon .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 20%;
    color: #4d4d4d;
    background-color: #ffff;
    transition: all 0.3s ease-in-out;
}

.footer-social-icon .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 50%);
}

.footer-social-icon .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
}

.footer-social-icon .icon-content a:hover {
    color: white;
}

.footer-social-icon .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.footer-social-icon .icon-content a:hover .filled {
    height: 100%;
}

.footer-social-icon .icon-content a[data-social="spotify"] .filled,
.footer-social-icon .icon-content a[data-social="spotify"]~.tooltip {
    background-color: #1877F2;
}

.footer-social-icon .icon-content a[data-social="pinterest"] .filled,
.footer-social-icon .icon-content a[data-social="pinterest"]~.tooltip {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social-icon .icon-content a[data-social="dribbble"] .filled,
.footer-social-icon .icon-content a[data-social="dribbble"]~.tooltip {
    background-color: #0077B5;
}

.footer-social-icon .icon-content a[data-social="telegram"] .filled,
.footer-social-icon .icon-content a[data-social="telegram"]~.tooltip {
    background-color: #E60023;
}

/* Sidebar social icons  */
.sidebar-social-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
}

.sidebar-social-icon .icon-content {
    margin: 3px 0;
    position: relative;
}

.sidebar-social-icon .icon-content .tooltip {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-social-icon .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: -100px;
}

.sidebar-social-icon .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 20%;
    color: #4d4d4d;
    background-color: #ffff;
    transition: all 0.3s ease-in-out;
}

.sidebar-social-icon .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 50%);
}

.sidebar-social-icon .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
}

.sidebar-social-icon .icon-content a:hover {
    color: white;
}

.sidebar-social-icon .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.sidebar-social-icon .icon-content a:hover .filled {
    height: 100%;
}

.sidebar-social-icon .icon-content a[data-social="spotify"] .filled,
.sidebar-social-icon .icon-content a[data-social="spotify"]~.tooltip {
    background-color: #1877F2;
}

.sidebar-social-icon .icon-content a[data-social="pinterest"] .filled,
.sidebar-social-icon .icon-content a[data-social="pinterest"]~.tooltip {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.sidebar-social-icon .icon-content a[data-social="dribbble"] .filled,
.sidebar-social-icon .icon-content a[data-social="dribbble"]~.tooltip {
    background-color: #0077B5;
}

.sidebar-social-icon .icon-content a[data-social="telegram"] .filled,
.sidebar-social-icon .icon-content a[data-social="telegram"]~.tooltip {
    background-color: #E60023;
}
.sidebar-social-icon .icon-content a[data-social="Whatsapp"] .filled,
.sidebar-social-icon .icon-content a[data-social="Whatsapp"]~.tooltip {
    background-color: #25D366;
}
.sidebar-social-icon .icon-content a[data-social="Phone"] .filled,
.sidebar-social-icon .icon-content a[data-social="Phone"]~.tooltip {
    background-color: #000;
}
.sidebar-social-icon .icon-content a[data-social="Email"] .filled,
.sidebar-social-icon .icon-content a[data-social="Email"]~.tooltip {
    background-color: #09f;
}
.sidebar-social-icon .icon-content a[data-social="BackToTop"] .filled,
.sidebar-social-icon .icon-content a[data-social="BackToTop"]~.tooltip {
    background-color: #09f;
}






/* Buttons */
/*---- submit button*/
.cta {
    display: flex;
    padding: 11px 33px;
    text-decoration: none;
    font-size: 15px;
    color: white;
    background: #6225e6;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
}

.cta:focus {
    outline: none;
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #fbc638;
}

.cta .second {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover .second {
    transition: 0.5s;
    margin-right: 45px;
}

.span {
    transform: skewX(15deg);
}

.second {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
}

.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover .three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: #fbc638;
    }

    100% {
        fill: white;
    }
}

/*----- close button*/
.btnClose {
    /*  position: relative;*/
    font-size: 1em;
    padding: 0.5em 1em;
    background-color: #BF0426;
    text-decoration: none;
    border: none;
    /*  border-radius: 0.5em;*/
    color: #fff;
    /*  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);*/
    position: absolute;
    top: 10px;
    right: 0;
}

.btnClose::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0; 
    left: 0;
    background: linear-gradient(135deg, #eee 0%, #eee 60%, rgba(150, 4, 31, 1) 60%, rgba(191, 4, 38, 1) 100%);
    border-radius: 0 0 0.5em 0;
    /*  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);*/
    transition: 0.3s;
}

.btnClose:hover::before {
    width: 1.2em;
    height: 1.2em;
}

.btnClose:active {
    /*  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);*/
    transform: translate(0.1em, 0.1em);
}

/* Home Page FAQs  */
.homePageFaqwrapper {
    width: 100%;
    padding: 50px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homePageFaqContainer {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.homePageFaqCard {
    width: 80px;
    border-radius: .75rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.homePageFaqCard[data-faqBg="dark"] {
    background-color: var(--text-color);
    color: var(--background-color);
}
.homePageFaqCard[data-faqBg="dark"] .homePageFaqIcon{
    color: var(--background-color);
}
.homePageFaqCard[data-faqBg="lite"] {
    background-color: var(--background-color);
    color: var(--text-color);
}
.homePageFaqCard[data-faqBg="lite"] .homePageFaqIcon{
    color: var(--text-color);
}
.homePageFaqCard > .homePageFaqRow {
    display: flex;
    flex-wrap: nowrap;
}

.homePageFaqCard > .homePageFaqRow > .homePageFaqIcon {
    width: 50px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-radius: .75rem;
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
}

.homePageFaqCard > .homePageFaqRow > .homePageFaqDescription {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: auto;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.homePageFaqDescription p {
    font-size: 17px;
    padding: 0 5px;
}

.homePageFaqwrapper input {
    display: none;
}

.homePageFaqwrapper input:checked + label {
    width: 600px;
    box-shadow: 0px 10px 30px -5px rgba(168, 137, 89, 0.8);
}

.homePageFaqwrapper input:checked + label .homePageFaqDescription {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/*  Back to top */
/* #Progress
================================================== */

.backToTopProgressWrap {
    position: fixed;
/*    right: 30px;*/
    bottom: 30px;
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.backToTopProgressWrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.backToTopProgressWrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 36px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.backToTopProgressWrap:hover::after {
    opacity: 0;
}
.backToTopProgressWrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 36px;
    font-size: 20px;
    opacity: 0;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.backToTopProgressWrap:hover::before {
    opacity: 1;
}
.backToTopProgressWrap svg path { 
    fill: none; 
}
.backToTopProgressWrap svg.progress-circle path {
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}