html {
    overflow-x: hidden;
}

.slot {
    height: 500px;
}

.flip-card {
    position: absolute;
    width: 400px;
    height: 500px;
    top: 0;
    left: 0;
    perspective: 1200px;
    pointer-events: none;
    /* prevents it capturing mouse events */
}

/* the 3d container */
.flip-card-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    /* start value — JS will overwrite inline during scroll */
    transform: rotateY(0deg);
    will-change: transform;
}

/* both faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Safari */
    border-radius: 12px;
    overflow: hidden;
}

/* ensure the images themselves don't show their backface */
.flip-card-front img,
.flip-card-back img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.text-block {
    font-size: 18px;
    color: #404040;
}

/* Container */
.carousel-container {
    width: 100%;
    max-width: 1000px;
    height: 100vh;
    /* not full screen */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    background: #000;
}

.C-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    /* curved edges */
}

.C-track {
    transition: transform 0.6s ease;
    will-change: transform;
}

.C-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

/* Text overlay */
.C-slide-content {
    max-width: 700px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
}

.C-slide-content h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
}

.C-slide-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Background images */
.C-slide:nth-child(1) {
    background-image: url('https://picsum.photos/800/600?image=11');
}

.C-slide:nth-child(2) {
    background-image: url('https://picsum.photos/800/600?image=21');
}

.C-slide:nth-child(3) {
    background-image: url('https://picsum.photos/800/600?image=31');
}

.C-slide:nth-child(4) {
    background-image: url('https://picsum.photos/800/600?image=41');
}

.C-slide:nth-child(5) {
    background-image: url('https://picsum.photos/800/600?image=51');
}

.btn-2 {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #000000;
    color: rgb(0, 0, 0);
    border: 1px solid black;
}

.btn-2 span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.btn-2:hover span {
    color: rgb(255, 255, 255);
}

.btn-2::before,
.btn-2::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.btn-2::before {
    content: "";
    background: #ffffff;
    width: 120%;
    color: rgb(1, 1, 1);
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn-2:hover::before {
    transform: translate3d(100%, 0, 0);
}

h2.heading-contact {
    font-weight: 400;
    font-size: 60px;
    font-family: fantasy, sanrit;
}

input.input-field,
select.input-field,
textarea.input-field {
    font-size: 16px;
    border-radius: 90px;
    color: #404040;
    background-color: rgb(244 244 244 / 39%);

}

textarea.input-field {
    padding: 12px 20px 12px 20px;
}

.input-field.form-control:focus {
    font-size: 16px;
    border-radius: 90px;
    color: #404040;
    background-color: rgb(244 244 244 / 39%);
    border-color: rgb(94, 103, 230);
    box-shadow: none;
}

.text-field {
    color: rgb(94, 103, 230);
}

img {
    width: 100%;
}

.image-default {
    border-radius: 20px;
    width: 340px;
}

.testimonial_card {
    position: relative;
    overflow: hidden;
}

.testimonial_card img {
    width: 100%;
    height: auto;
    display: block;
}

/* dark overlay */
.testimonial_card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* centered content container */
.testimonial-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    /* keeps text readable */
    max-width: 1000px;
    /* prevents stretching too wide */
}

/* typography */
.testimonial-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: white;
}


.testimonial_card {
    padding: 0px !important;
}

section.testimonials_wrap {
    border-radius: 0px;
}

.testimonials_contain.container {
    padding: 30px 0px 0px 0px;
}

.para-header p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: #000000;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 35px;
    margin-top: 30px;
}

.row_padding_bottom {
    padding-bottom: 3vw;
}

section.careers-sec .container {
    padding: 0px;
}

section.careers-sec {
    background-color: white;
}

p.para-abcds {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000000;
}

.abcd-ass {
    margin-bottom: 20px;
}

section.contact-us {
    background: white;
}

h2.roadmap-head {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    color: white;
}

section.contact-us .row {
    justify-content: space-evenly;
    align-items: center;
}

section.contact-us img {
    border-radius: 40px;
    height: 550px;
    display: block;
    width: 100%;
    object-position: center center;
    object-fit: cover;
}

form.form-new-contact label {
    color: black;
    margin-bottom: 10px;
    font-weight: 400;
}

form.form-new-contact .form-control {
    padding: 12px 20px 12px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 16px;
}

section.contact-us h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

section.contact-us p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.7;
}


section.contact-us button {
    border-radius: 10px;
    border: none;
    background: #000000;
    font-weight: 400;
    margin-top: 20px;
    font-size: 18px;
    line-height: 40px;
    margin: 0;
    overflow: hidden;
    width: auto;
    padding: 5px 40px 5px 40px;
    color: currentColor;
    -webkit-transition: padding .3s ease-out;
    transition: padding .3s ease-out;
}

.footer {
    padding: 40px 0;
    background-color: #0d1117;
    color: white;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 20px;
}

.footer li {
    display: inline-block;
    /* Change to inline-block for horizontal layout */
    padding: 0 10px;
    color: white;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer .social>a:hover {
    opacity: 0.9;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

.footer .footer-break {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: white
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    pointer-events: none;
}

.sec-title {
    position: relative;
    margin-bottom: 60px;
}

.sec-title .sub-title .icon-img {
    min-width: 14px;
}

@media (max-width: 767.98px) {
    .sec-title h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 575.98px) {
    .sec-title h2 {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 575.98px) {
    .sec-title .text {
        font-size: 14px;
    }
}

.about-section .anim-icons {
    pointer-events: none;
}

.about-section .anim-icons .image-1 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: inherit;
    z-index: -1;
}

.about-section .anim-icons {
    pointer-events: none;
}

.about-section .anim-icons .image-1 {
    position: absolute;
    left: 0;
    bottom: -150px;
    z-index: -1;
}

@media (max-width: 1599.98px) {
    .about-section .anim-icons .image-1 {
        display: none;
    }
}

.about-section .image-column .inner-colmun {
    margin-left: 30px;
    margin-right: 80px;
}

@media (max-width: 991.98px) {
    .about-section .image-column .inner-colmun {
        margin: 0;
        margin-bottom: 40px;
    }
}

.about-section .image-column .inner-colmun img {
    width: 100%;
}

.about-section .content-column .inner-column {
    margin-left: -20px;
}

@media (max-width: 1439.98px) {
    .about-section .content-column .inner-column {
        margin: 0;
    }
}

.about-section .content-column .inner-column .sec-title .title {
    margin-bottom: 25px;
}

@media (max-width: 1199.98px) {
    .about-section .content-column .inner-column .sec-title .title {
        font-size: 40px;
    }
}

.about-section .content-column .inner-column .sec-title .text {
    color: white;
    font-size: 18px;
    padding-top: 40px;
    line-height: 1.8;
}

.button-wrap.left.scroll-down {
    display: flex;
    gap: 15px;
}

section.about-section .row {
    align-items: center;
}

.sec-title {
    font-size: 34px;
}

button.read-more-button {
    color: black;
    margin-top: 40px;
    border-radius: 10px;
    text-transform: uppercase;
    border: none;
    background: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    padding: 8px 40px 8px 40px;
    -webkit-transition: padding .3s ease-out;
    transition: padding .3s ease-out;
}

.theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--title-font);
}

.theme-btn .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-style-four {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: var(--body-line-height);
    border-radius: 60px;
    padding: 7px 7px 7px 31px;
    color: var(--text-color-theme-color1);
    background-color: #d9f45f;
    border: 1px solid transparent;
    font-family: var(--text-font);
    text-transform: capitalize;
    overflow: hidden;
    z-index: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-style-four .dot-box {
    background-color: #222222;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-left: 12px;
    text-align: center;
    position: relative;
    width: 40px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-style-four .dot-box .dot-item {
    background-color: #ffffff;
    border-radius: 50%;
    height: 5px;
    width: 5px;
    display: inline-block;
    position: absolute;
    left: calc(50% + 3px);
    top: calc(50% - 2.5px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-style-four .dot-box .dot-item:before {
    background-color: #ffffff;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -7px;
    top: -7px;
    height: 5px;
    width: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-style-four .dot-box .dot-item:after {
    background-color: #ffffff;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -7px;
    bottom: -7px;
    height: 5px;
    width: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-style-four:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 100%;
    content: "";
    border-radius: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    background-color: var(--theme-color-dark);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.btn-style-four:hover {
    color: #ffffff;
    border-color: rgba(248, 248, 248, 0.2);
}

.btn-style-four:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.btn-style-four:hover .dot-box {
    background-color: #d9f45f;
    color: #ffffff;
}

.btn-style-four:hover .dot-box .dot-item {
    left: calc(50% - 7px);
    top: calc(50% - 2.5px);
    background-color: #222222;
}

.btn-style-four:hover .dot-box .dot-item:before {
    left: 7px;
    top: 7px;
    background-color: #222222;
}

.btn-style-four:hover .dot-box .dot-item:after {
    left: 7px;
    bottom: 7px;
    background-color: #222222;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    pointer-events: none;
}

.animation__rotateY {
    -webkit-animation: rotateY 30s linear infinite;
    animation: rotateY 30s linear infinite;
}

.circleZoom {
    -webkit-animation: circlezoomrotate 15s infinite linear;
    animation: circlezoomrotate 15s infinite linear;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.title-stroke-text {
    color: #d9f45f;
    font-size: 200px;
    font-weight: 700;
    line-height: 200px;
    pointer-events: none;
    text-transform: uppercase;
    font-size: clamp(55px, 9.5vw, 200px);
    line-height: 1.2;
}

.title-stroke-text span {
    position: relative;
    font-size: 200px;
    font-weight: 700;
    line-height: 200px;
    pointer-events: none;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #ffffff;
    opacity: 0.25;
    white-space: nowrap;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow: hidden;
    font-size: clamp(55px, 9.5vw, 200px);
    line-height: 1.2;
}

.project-button-circle {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 30px;
}

.project-button-circle .inner {
    width: 148px;
    height: 148px;
    line-height: 150px;
    text-align: center;
}

.project-button-circle .inner .shape-circle1 {
    position: absolute;
    top: 0;
    left: 0;
}

.project-button-circle .inner .icon {
    font-size: 22px;
    text-align: center;
    color: #d9f45f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.project-button-circle .inner .text-circle-box {
    position: relative;
}

.project-button-circle .inner .text-circle-box svg {
    fill: #fff;
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 12px;
    text-transform: uppercase;
}

.projects-section-five {
    position: relative;
    padding: 70px 0px;
}

.projects-section-five .anim-icons .image-1 {
    position: absolute;
    right: -106px;
    top: 50px;
}

@media (max-width: 991.98px) {
    .projects-section-five .anim-icons .image-1 {
        display: none;
    }
}

.project-block-five {
    margin-bottom: 50px;
}

@media (max-width: 1199.98px) {
    .project-block-five {
        margin-bottom: 0px;
    }
}

.project-block-five:nth-child(even) {
    margin-right: 0px;
}

.project-block-five:nth-child(even) .content-box {
    padding: 0px 60px 0px 30px;
}

@media (max-width: 1439.98px) {
    .project-block-five:nth-child(even) .content-box {
        padding: 0px;
    }
}

.project-block-five:nth-child(even) .image-box .image {
    margin: 0 auto;
    margin-left: 0px;
}

@media (max-width: 1439.98px) {
    .project-block-five:nth-child(even) {
        margin-right: 0;
    }
}

.project-block-five:nth-child(odd) {
    margin-left: 0px;
}

.project-block-five:nth-child(odd) .content-box {
    padding: 0px 30px 0px 60px;
}

@media (max-width: 1439.98px) {
    .project-block-five:nth-child(odd) .content-box {
        padding: 0px;
    }
}

.project-block-five:nth-child(odd) .image-box .image {
    margin: 0 auto;
    margin-right: 0px;
}

@media (max-width: 1439.98px) {
    .project-block-five:nth-child(odd) {
        margin-left: 0;
    }
}

.project-block-five .inner-box {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border-radius: 80px;
    z-index: 1;
    background-color: #121310;
}

@media (max-width: 767.98px) {
    .project-block-five .inner-box {
        padding: 30px 20px;
        border-radius: 30px;
    }
}

.project-block-five .inner-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    background-color: #d9f45f;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-block-five .inner-box:hover:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.project-block-five .inner-box:hover .image-box .image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-block-five .inner-box:hover .image-box .image img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-block-five .inner-box:hover .content-box .categories {
    color: #222222;
}

.project-block-five .inner-box:hover .content-box .title {
    color: #222222;
}

.project-block-five .inner-box:hover .content-box .text {
    color: #222222;
}

.project-block-five .inner-box:hover .content-box .btn-style-four {
    color: #ffffff;
    background-color: #222222;
}

.project-block-five .inner-box:hover .content-box .btn-style-four .dot-box {
    background-color: #d9f45f;
}

.project-block-five .inner-box:hover .content-box .btn-style-four .dot-box .dot-item {
    background-color: #222222;
}

.project-block-five .inner-box:hover .content-box .btn-style-four .dot-box .dot-item:before,
.project-block-five .inner-box:hover .content-box .btn-style-four .dot-box .dot-item:after {
    background-color: #222222;
}

.project-block-five .image-box {
    position: relative;
}

@media (max-width: 1199.98px) {
    .project-block-five .image-box {
        margin-bottom: 30px;
    }
}

.project-block-five .image-box .image {
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .project-block-five .image-box .image {
        border-radius: 20px;
    }
}

.project-block-five .content-box {
    padding: 55px 65px 60px;
}

.project-block-five .content-box .categories {
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-block-five .content-box .title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .project-block-five .content-box .title {
        font-size: 30px;
    }
}

.project-block-five .content-box .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #cccccc;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*! CSS Used keyframes */
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

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

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes rotateY {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotateY {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes circlezoomrotate {
    from {
        -webkit-transform: rotate(0deg) scale(0.5);
        transform: rotate(0deg) scale(0.5);
    }

    to {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@keyframes circlezoomrotate {
    from {
        -webkit-transform: rotate(0deg) scale(0.5);
        transform: rotate(0deg) scale(0.5);
    }

    to {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}


.text {
    max-height: 150px;
    /* collapsed height */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.text:not(.collapsed) {
    max-height: 2000px;
    /* enough to show full text */
}

.toggle-btn {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.toggle-icon {
    margin-left: 5px;
}