/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
}


header {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 20px;
    font-family: Gill Sans, sans-serif;
}


header nav ul {
    list-style-type: none;
    text-align: center;
    justify-content: space-around;
    /* white-space: nowrap; */
    /* display: flex; */
}

header nav ul li {
    display: inline-block;
    margin-right: 20px;
    /* display: flex */
}

header nav ul li:last-child {
    margin-right: 0;
    /* Remove margin from last item */
}

header nav ul li a {
    color: #f7f7f7bb;
    text-decoration: none;
    /* font-weight: bold; */
    padding: 10px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffa3cb;
    /* color: #5090ff; */

}

@media (max-width: 800px) {
    header nav ul li a {
        font-size: 1rem;
        /* Even smaller font size for smaller screens */
    }
}

@media (max-width: 600px) {
    header nav ul li a {
        font-size: 0.85rem;
        /* Smallest font size for very small screens */
    }
}

@media (max-width: 400px) {
    header nav ul li a {
        font-size: 0.7rem;
        /* Smallest font size for very small screens */
    }
}

@media (max-width: 360px) {
    header nav ul li a {
        font-size: 0.65rem;
        /* Smallest font size for very small screens */
    }
}

.hero-container {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 1080px;
    /* padding: 10px 20px; */
    padding: 40px 20px;
    /* Add padding to the top and bottom */

    margin: auto;
    font-family: Verdana, sans-serif;

    display: flex;
    /* Use Flexbox */
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center all items horizontally */
}


.hero-container h2 {
    font-size: 6vw;
    font-weight: bold;
}


@media (max-width: 768px) {
    .hero-container h2 {
        font-size: 6vw;
        text-align: center;
        /* Center the heading */
        /* Increase size for smaller screens */
    }
}

@media (max-width: 600px) {
    .hero-container h2 {
        font-size: 6.5vw;
        text-align: center;
        /* Center the heading */
        /* Increase size for smaller screens */
    }
}


.hero-container img {
    /* position: absolute; */
    width: 20%;
    /* border-radius: 50%; */
    /* right: -20px; */
    /* top: 32px; */
    /* z-index: 10; */
    margin-bottom: 30px;
}



@media (max-width: 600px) {
    .hero-container img {
        width: 50%;
    }
}

@media (min-width: 600px) {
    .hero-container img {
        width: 30%;
    }
}



.para p {
    /* margin-top: 10%;
    margin-bottom: 10%; */
    padding: 20px;
    text-align: left;
    font-size: 1.5vw;
    font-family: Trebuchet MS, sans-serif;
    /* font-family: Helvetica, sans-serif; */
    line-height: 1.8;
    color: #e9e9e9ac;
    margin-top: 5%;
    /* Add line-height for better readability */
}

/* @media (max-width: 600px) {
    .para p {
        font-size: 2.5vw;
    }
} */
/* @media (min-width: 600px) {
    .para p {
        font-size: 2.7vw;
    }
} */

@media (max-width: 500px) {
    .para p {
        font-size: 2.7vw;
    }
}

@media (min-width: 300px) {
    .para p {
        font-size: 4vw;
    }
}

/* @media (max-width: 300px) {
    .para p {
        font-size: 3.8vw;
    }
} */

/* @media (min-width: 500px) {
    .para p {
        font-size: 2.7vw;
    }
} */


@media (min-width: 750px) {
    .para p {
        font-size: 3vw;
    }
}

@media (min-width: 900px) {
    .para p {
        font-size: 2.3vw;
    }
}

@media (min-width: 1100px) {
    .para p {
        font-size: 1.7vw;
    }
}

/*
    typing
*/

.typing-container {
    /* width: 246px; */
    width: 100%;
    overflow: hidden;

}

.typing-container .text {
    position: relative;
    color: #4070F4;
    /* font-size: 30px; */
    font-size: 3.5vw;

    font-weight: 600;
}

.typing-container .text.first-text {
    color: #FFF;
}

.text.sec-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #010718;
    border-left: 2px solid #4070F4;
    animation: animate 4s steps(12) infinite;
}

@keyframes animate {

    40%,
    60% {
        left: calc(100% + 4px);
    }

    100% {
        left: 0%;
    }
}

@media (max-width: 768px) {
    .typing-container .text.sec-text {
        font-size: 5vw;
    }
}


@media (max-width: 600px) {
    .typing-container .text.sec-text {
        font-size: 5.5vw;
        text-align: center;
    }
}

@media (max-width: 300px) {
    .typing-container .text.sec-text {
        font-size: 6vw;
        text-align: center;
    }
}

/* Push home icon to the left */
/* 
header nav .home-icon {
    margin-right: auto;
} */


.hero {
    /* height: 600px; */
    height: auto;
    /* background-image: url('hero.jpg'); */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    /* margin-bottom: 10%; */
    /* margin-bottom: 10px; */
}

/* .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
} */


.btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #ff7f50;
    color: #fff;
}


/**
*
* Experience
*
*/
.experience {
    /* padding-top: 5%; */
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.exp-container {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

.exp-container h2 {
    font-size: large;
}

@keyframes movedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.exp-container:nth-child(2) {
    animation-delay: 2s;
}

.exp-container:nth-child(3) {
    animation-delay: 3s;
}

.exp-container:nth-child(4) {
    animation-delay: 4s;
}

.exp-container:nth-child(5) {
    animation-delay: 5s;
}

.exp-container:nth-child(6) {
    animation-delay: 6s;
}


.textbox {
    padding: 20px 30px;
    /* background-color: #4070f48f; */
    background-color: #4a53b75a;

    position: relative;
    border-radius: 6px;
    font-size: 17px;
    font-family: Verdana, sans-serif;
    font-family: Gill Sans, sans-serif;
    color: #cfcdcdf3;

}

.textbox h2 {
    font-weight: 600;
    font-size: 21px;

}

.textbox small {
    display: inline-block;
    margin-bottom: 15px;
}

.left-container {
    left: 0;
}

.right-container {
    left: 50%;
}

.exp-container img {
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
}

.right-container img {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #e5e5e5d4;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;

}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}



.left-container-arrow {
    height: 2px;
    width: 15px;
    background-color: #fff;
    position: absolute;
    top: 28px;
    right: -15px;
    z-index: 1;
}

.right-container-arrow {
    /* height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px; */
}

/* Responsive */
@media screen and (max-width:600px) {

    .timeline {
        margin: 50px auto;
    }

    .timeline::after {
        left: 31px;
    }

    .exp-container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    /* .textbox {
        font-size: 17px;
    } */

    .textbox small {
        margin-bottom: 10px;
    }

    .right-container {
        left: 0;
    }

    .left-container img,
    .right-container img {
        left: 10px;
    }

    .left-container-arrow,
    .right-container-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;

    }
}

/**/
@media (max-width: 768px) {
    .hero {
        margin-bottom: 30px;
        /* Smaller margin for smaller screens */
    }

    .experience {
        padding-top: 30px;
        /* Smaller padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .hero {
        margin-bottom: 20px;
        /* Even smaller for very small screens */
    }

    .experience {
        padding-top: 20px;
        /* Even smaller for very small screens */
    }
}


/***
*
* story
*
**/
.story-hint {
    /* position: absolute; */
    /* left: 0%; */
    /* background: rgba(0, 0, 0, 0.7); */
    /* Dark background for text */
    /* text-align: left; */
    color: #ccccccba;
    font-family: Verdana, sans-serif;
    font-size: 0.8rem;
    padding: 10px;
    /* border-radius: 5px; */
    text-align: center;
}

.story-container {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    /* height: 30%; */
    /* margin-bottom: 20px; */
    /**
    body
    */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100%;
    margin-top: 20px;
    /* background-color: #f0f0f0; */
    font-family: Arial, sans-serif;
}

.card-container {
    position: relative;
    width: 50%;
    height: 80%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    /* overflow: hidden; */
    overflow: visible;
    margin-bottom: 20px;
}

.card img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    /* Position the image within the card */
    object-fit: cover;
}

.card {
    cursor: pointer;

    position: absolute;
    width: 50%;
    height: 100%;
    /* width: 8rem;
    height: 10rem; */
    /* padding-bottom: 100%; */
    /* background-color: white; */
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 2s ease, opacity 2s ease;
    /* opacity: 1; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    /* box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px; */
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); */

    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 10%;
    opacity: 0.15;
    overflow: visible;
    /* overflow: hidden; */
    /* Hide overflow to maintain square shape */
}

.card img {
    width: 100%;
    height: auto;
    transition: filter 0.3s;
    /* Smooth transition for darkening */
}

.card .story-desc {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ccc;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
    width: 200%;
    max-width: none;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.card.active img {
    filter: brightness(50%);
}

.card.active .story-desc {
    display: block;
}

/* .story-desc p {
    font-size: 1.5vw;
} */

/* .card .story-desc {
    position: relative;
    color: #ccc;
    font-family: Verdana, sans-serif;
    font-size: 2vw;
} */


.current {
    transform: translateX(5%) rotateY(0deg) translateY(3%) translateZ(-10px);
    z-index: 1;
    opacity: 1;
}

.next {
    transform: translateX(150%) rotateY(40deg) translateZ(-50px) scale(0.9);
    z-index: 0;
    opacity: 0.3;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 30px, rgba(0, 0, 0, 0.5) 0px 15px 15px;
}

.prev {
    transform: translateX(-150%) rotateY(-40deg) translateZ(-50px) scale(0.9);
    z-index: 0;
    opacity: 0.3;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 30px, rgba(0, 0, 0, 0.5) 0px 15px 15px;
}

.story-navigation {
    display: flex;
    margin-top: auto;
}

.navigation-btn {
    padding: 5px 10px;
    background-color: #202020a9;
    color: rgba(201, 201, 201, 0.59);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    margin: 0 20px;
}

/*
*
bottom
*/
.grid-container {
    display: grid;
    padding: 10px;
    gap: 10px;
    column-width: 240;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 1080px;
    padding: 40px 20px;
    margin: auto;
    flex-direction: column;
    align-items: center;
    display: flex;

    /* display: grid;
    padding: 40px 20px;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1080px;
    margin: auto; */

}


.grid-container h2 {
    font-size: 5.5vw;
    /* font-weight: bold; */
    font-family: Verdana, sans-serif;
    color: #b6b6b6
}

@media (max-width: 768px) {
    .grid-container h2 {
        font-size: 7vw;
        text-align: center;
        /* Center the heading */
        /* Increase size for smaller screens */
    }

    .grid-container p {
        font-size: 3vw;
        /* Larger text on smaller screens */
    }
}

.grid-container p {
    /* margin-top: 10%;
    margin-bottom: 10%; */
    padding: 20px;
    text-align: left;
    font-size: 10px;
    font-family: Trebuchet MS, sans-serif;
    /* font-family: Helvetica, sans-serif; */
    line-height: 1.8;
    color: #ccc;
    /* Add line-height for better readability */
}

.grid-container img {
    /* position: absolute; */
    /* width: 25%; */
    /* border-radius: 50%; */
    /* right: -20px; */
    /* top: 32px; */
    /* z-index: 10; */
    margin-bottom: 30px;
}

/* .grid-container {
    display: grid;
    padding: 10px;
    gap: 10;
    column-width: 240;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
} */

.project {
    padding: 80px 0;
    text-align: center;
    gap: 20px;
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 50px 20px;
    padding: 5px;
    overflow: hidden;
    position: relative;
    max-height: 100%; */
}

.project h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* gap: 20px; */
    gap: 40px;

    width: 90%;
    max-width: 1080px;
    justify-content: center;
    margin: 0 auto;
}

.project-item {
    /* background-color: #ffffff18; */
    background-color: #5252525b;

    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 100%;
    height: auto;

    /* height: 300px; */
    transition: transform 0.2s ease;
    overflow: hidden;
    justify-self: center;

    /* position: relative; */
    transform: translateY(0px);
    z-index: 10;
    cursor: pointer;
    display: flex;

    flex-direction: column;
    /* Stack elements vertically */
    justify-content: space-between;
    /* height: 500px; */
    /* max-width: 20rem; */
    /* display: flex; */
    /*  */
    /* width: 500px;
    height: 500px; */
    overflow: hidden;
    /* position: relative; */
}

.project-item:hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: rgba(188, 188, 255, 0.615) 0px 50px 100px -20px, rgba(113, 113, 113, 0.3) 0px 30px 60px -30px;

    /* box-shadow: rgba(179, 179, 242, 0.25) 0px 50px 100px -20px, rgba(113, 113, 113, 0.3) 0px 30px 60px -30px; */
}

.project-item img {
    width: 100%;
    height: 100%;
    /* height: auto; */
    /* width: 18vw;
    height: 15vw; */


    /* max-width: 100%; */
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: center;
    /*  */

    /* width: 50%;
    height: 50%;
    object-fit: cover;
    object-position: center; */
}

.project-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-item p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* #item1 {
height: 400px;
}

#item2 {
    height: 300px;
}

*/
.project-item .details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


.project-item .details.active {
    display: block;
    transform: scale(1);
    /* Scale up : active */
}

/* @media (min-width: 768px) {
    .project {
        display: flex;
        justify-content: space-around;
flex-wrap: wrap;
}

.project-item {
    flex: 1 0 300px;
    margin: 0 10px 20px;
}

*/

.custom-popup {
    font-family: Arial, sans-serif;
    /* margin: 0px 20px 0px 20px; */
    margin: 50px;
}


/* .custom-popup img, */
.custom-popup-content video {
    width: 80%;
    max-width: 100%;

    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;

}

.custom-popup p {
    margin: 0;
    padding: 10px 0;
    font-family: Trebuchet MS, sans-serif;
}

.custom-popup-content {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
}

/* .custom-popup-content p {
    margin-bottom: 20px;
    font-size: 18px;
} */

.custom-popup-content .description,
.custom-popup-content h3,
.custom-popup-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    /* text-align: justify; */
    word-spacing: 0.1em;
    text-align: left;
}

.custom-popup h3 {
    font-family: Verdana, sans-serif;
}


@media (max-width: 768px) {
    .custom-popup-content h3 {
        font-size: 1.1rem;
        /* Smaller font size for tablets */
    }

    .custom-popup-content p,
    .custom-popup-content .description {
        font-size: 1.0rem;
        /* Adjust paragraph size */
    }
}

/* For mobile devices */
@media (max-width: 580px) {
    .custom-popup-content h3 {
        font-size: 0.9rem;
        /* Even smaller for mobile */
    }

    .custom-popup-content p,
    .custom-popup-content .description {
        font-size: 0.8rem;
        /* Adjust paragraph size for mobile */
    }
}

.custom-popup-content img {
    width: 100%;
    max-width: 70%;
    height: auto;
    /* display: block; */
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

/* For smaller screens, like mobile devices */
/* For smaller screens, like mobile devices */
@media (max-width: 768px) {
    .custom-popup-content img {
        width: 100%;
        /* Set width to 100% */
        max-width: none;
        /* Remove max-width to allow full width */
    }
}

@media (max-width: 480px) {
    .custom-popup-content img {
        width: 100%;
        /* Set width to 100% for very small devices */
        max-width: 100%;
        ;
        /* Ensure no maximum width restrictions */
    }
}

/*
**
*/
.story {
    padding: 80px 0;
    text-align: center;
}

.story h2 {
    font-size: 4rem;
    margin-bottom: 40px;
}

.story h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}



/**

*/
.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.contact {
    padding: 80px 0;
    text-align: center;
    font-family: Gill Sans, sans-serif;

}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form label {
    display: block;
    margin-bottom: 10px;
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form textarea {
    resize: vertical;
}

.contact form button {
    display: inline-block;
    /* background-color: #333; */
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact form button:hover {
    /* background-color: #ff7f50; */
    background-color: #58c08f;

}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff90;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: Gill Sans, sans-serif;
}


.content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background-image.jpg');

    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-out;
}

.details {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 80%;
    overflow-y: auto;
    /*scroll*/
}

.details p {
    margin-bottom: 10px;
}

.details img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

/* * {
    box-sizing: border-box;
}

img {
    display: block;
    width: 100%;
} */


/* 
web3 */

.invalid-feedback,
.empty-feedback {
    display: none;
}

.was-validated :placeholder-shown:invalid~.empty-feedback {
    display: block;
}

.was-validated :not(:placeholder-shown):invalid~.invalid-feedback {
    display: block;
}

.is-invalid,
.was-validated :invalid {
    border-color: #dc3545;
}



/* swiper
 */



.swiper {
    width: 50vw;
    height: 40vh;
    border-radius: 10px;

    background-color: #eee;
    color: #000000;

    overflow: hidden;

    transform: translate(130px, -300px);
}


.swiper-slide {
    /* display: none; */
    width: 100%;
    background-color: #d6e1e5;
    overflow-y: auto;

    ::-webkit-scrollbar {
        width: 0px;
    }

    /* For Firefox */
    scrollbar-width: none;
}


.swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    width: 80px;
}

.swiper-button-prev,
.swiper-button-next {
    color: rgba(208, 151, 151, 0.415);
    width: 10%;
    height: 10%;

    width: 20px;
    height: 20px;
    background-size: 10%;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px
}

.navigation {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
}

.navigation.active {
    display: block;
}




/***

three

*/