body {
    background-color: #f8f9fa;
    font-family: Inter, X-LocaleSpecific, sans-serif, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #42414d;
}

:root {
    --backgroundColor: rgba(246, 241, 209);
    --colorShadeA: rgb(15 157 92);
    --colorShadeB: rgb(55 159 111);
    --colorShadeC: rgb(35 214 133);
    --colorShadeD: rgb(124 218 175);
    --colorShadeE: rgb(187 235 213);

}

button.downloadbtn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--colorShadeA);
    font-weight: 700;
    text-transform: uppercase;
    font-family: inherit;
}

button.big-button {
    padding: 1em 2em;
    border: 2px solid var(--colorShadeA);
    border-radius: 1em;
    background: var(--colorShadeE);
    transform-style: preserve-3d;
    transition: all 175ms cubic-bezier(0, 0, 1, 1);
    width: 45%;
    margin: 20px 20px;
}

button.big-button::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--colorShadeC);
    border-radius: inherit;
    box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
    transform: translate3d(0, 0.75em, -1em);
    transition: all 175ms cubic-bezier(0, 0, 1, 1);
}

button.big-button:hover {
    background: var(--colorShadeD);
    transform: translate(0, 0.375em);
}

button.big-button:hover::before {
    transform: translate3d(0, 0.75em, -1em);
}

button.big-button:active {
    transform: translate(0em, 0.75em);
}

button.big-button:active::before {
    transform: translate3d(0, 0, -1em);
    box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.25em 0 0 var(--colorShadeB);
}

.hero {
    /*background: linear-gradient(108deg, rgba(0, 158, 226, .9) -57.13%, #8b2fff 11.08%, rgba(245, 5, 79, .9) 102.57%);
    background-image: linear-gradient( 95.2deg, rgba(173,252,234,1) 26.8%, rgba(192,229,246,1) 64% );*/
    background-image: linear-gradient(135deg, #c8ec17 10%, #3CD500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0px 10px 40px;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}

.navbar-brand {
    /*margin-left: 5%;*/
}

.navbar-nav {
    margin-right: 25%;
}

.pr-10 {
    padding-right: 10px;
}

.ig-menu {
    background: hsla(0, 0%, 100%, .31);
    width: max-content;
    margin: 0 auto;
    border-radius: 18px;
}

.ig_list {
    color: #fff;
    padding: 10px 20px;
    border-right: 2px solid hsla(0, 0%, 100%, .51);
}

.ig_list:hover {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.text-hidden {
    display: inline;
}

.fm-box {
    width: auto;
    margin: 0 auto;
}

.fm-box>.src-input {
    padding: 30px 20px;
    width: 400px;
    border-radius: 30px;
}

.pastebtn {
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border-radius: 0px 30px 30px 0px;
}

.downloadbtn-box {
    margin: 0 auto;
    width: 100%;
}

.cs-img {
    width: 100%;
    padding: 15px;
}

.cs-text {
    padding: 1px 30px;
}

ul.list-unstyled li {
    margin-top: 15px;
}

ul.list-mt-40 li {
    margin-top: 40px;
}        

ul.list-unstyled li h3 {
    font-size: 20px;
}

.section-resource {
    background: linear-gradient(135deg, #caef0e 10%, #4aca18 100%);
    padding: 20px 1px;
    margin-top: 100px;
}

.ig-step {
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, #a2bf13 10%, #286f0d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-footer-pd {
    padding: 20px 0px;
}

a.footer-link {
    color: #fff;
    font-weight: 600;
}

.card-img-top {
    width: 100%;
    height: 100%; /* Set a fixed height for the images */
    object-fit: cover; /* Maintain aspect ratio and cover the area */
}
.card {
    margin-bottom: 20px; /* Space between cards */
}

.media-box {
    margin: 10px 80px;
}

.response-zm {
    min-height: 200px;
}

.cs_size_img {
    width: 350px;
    margin: 0 auto;
    padding: 10px 10px 0px;
}

@media (max-width: 576px) {
    .text-hidden {
        display: none;
    }

    button.big-button {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 90%;
    }

    .fm-box>.src-input {
        width: 70%;
    }

    .media-box {
        margin: 20px 20px;
    }

    .dropdown-menu {
        width: max-content;
    }
}