/* PRESETS  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

li {
    text-decoration: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/*   KEYFRAMES */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

body {
    font-family: 'Lato', sans-serif;
    /* background-image: url("/public/frontend/images/bg_landing.jpg"); */
    background: rgb(22, 27, 59);
    background: -moz-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 35%, rgba(36, 213, 197, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 35%, rgba(36, 213, 197, 1) 100%);
    background: linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 35%, rgba(36, 213, 197, 1) 100%);
    background-position-y: -120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* HEADER  */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fade-in 0.4s;

}

.logo {
    color: rgba(225, 225, 225, 1);
    font-size: 18px;
    font-weight: 700;

}

.nav {
    padding: 20px 0;

}

.nav-list {
    display: flex;
    column-gap: 10px;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.973);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: rgba(225, 225, 225, 1);
    scale: 1.1;
}

/* MAIN  */

.main {
    color: #fff;
    text-align: center;
    margin-top: 0px;
    animation: fade-in 0.4s 0.1s backwards;

}

.heading {
    font-size: 50px;
    font-weight: 600;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    line-height: 0.9;
}

.text {
    max-width: 630px;
    font-size: 25px;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;

}

.form {
    margin-top: 40px;
}

.input {
    width: 511px;
    height: 64px;
    outline: none;
    border: none;
    border-radius: 3px;
    opacity: 0.8;
    font: inherit;
    padding: 0;
    padding-left: 10px;
    font-size: 17px;
    transition: all 0.3s;

}

.input:focus {
    opacity: 1;
}

.input::placeholder {
    color: #000;
}

.btn {
    height: 64px;
    width: 30%;
    color: #fff;
    border: none;
    border-radius: 3px;
    font: inherit;
    margin-left: 5px;
    text-transform: uppercase;
    /* background-color: goldenrod; */
    letter-spacing: 1;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    cursor: pointer;
    /* background-color: #353535; */
}

/* FOOTER */


.grid-container {
    width: 100%;
    margin: 0 auto;
    vertical-align: middle;
}

.row {
    display: grid;
    /* Changed to 3 columns */
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    /* Added gap between columns */
    margin-bottom: 50px;
}

.roww {
    display: grid;
    grid-template-columns: 5fr 5fr;
    /* Changed to 3 columns */
    gap: 10px;
    /* Added gap between columns */
    margin-bottom: 10px;
}

.features {
    margin-block: 30px;

    li {
        margin-bottom: 15px;
        line-height: 1.5;

        &::marker {
            color: var(--primary-color);
        }
    }
}

.price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.column {
    background: #673ab7;
    margin: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 10px;
    background: rgb(22, 27, 59);
    background: -moz-radial-gradient(circle, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: -webkit-radial-gradient(circle, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: radial-gradient(circle, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    text-align: center;
    box-shadow: 3px 2px 5px 0px #ababab;
    height: 100%;
}

.title {
    text-align: center;
    font-weight: bold;
    font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol";
    font-size: 20px;
    color: #666;
}

.glass-panel {
    color: #fff;
    /* background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    width: 100%;
    border-radius: 15px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.glass-panel p {
    width: 100%;
}

.glass-panel button {
    /* border-radius: 25%; */
    border-radius: 30px;
    padding: 0px 20px 0px 20px;
    padding: 5px;


}

.glass-button {
    display: inline-block;
    padding: 24px 32px;
    border: 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
}

.glass-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Extra styles for demo */



.glass-button {
    margin: 15px;
    margin-top: 40px;
}


p {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 32px;
    color: rgba(255, 255, 255, 0.6);
}

/* MEDIA QUERIES */
@media (max-width : 1185px) {
    .row {
        grid-template-columns: 1fr;
    }

}

@media (max-width : 985px) {
    .roww {
        display: grid;
        grid-template-columns: 1fr;
        /* Changed to 3 columns */
        gap: 10px;
        /* Added gap between columns */
        margin-bottom: 10px;
    }


    body {
        background-size: auto;
        background-position: center;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: darken;
        overflow-x: hidden;

    }

    .header {
        width: 600px;
        font-size: 10px;

    }

    .heading {
        font-size: 55px;
        width: 450px;
    }

    .text {
        font-size: 15px;
        width: 380px;
    }

    .input {
        width: 450px;
        height: 54px;
    }

    .btn {
        width: 100px;
        height: 54px;
    }

}

@media (max-width: 650px) {
    .header {
        flex-direction: column;

    }

    .nav {
        padding: 0;
    }

    .heading {
        font-size: 40px;
        width: 100%;
    }

    .input {
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .btn {
        display: block;
        width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .header {
        width: 350px;
        margin: 0 auto;
    }

}



.faq {
    background-color: transparent;
    border: 1px solid #9fa4a8;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
    padding: 20px;
    position: relative;
    transition: 0.3s ease;
}

.faq.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: black;
}

.faq.active::before {
    color: #3498db;
    left: -30px;
    top: -10px;
    transform: rotateY(180deg);
}

.faq-title {
    margin: 0 35px 0 0;
    font-size: 16px;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
    color: #000;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    align-items: center;
    background: rgb(22, 27, 59);
    background: -moz-radial-gradient(circle, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: -webkit-radial-gradient(circle, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: radial-gradient(circle, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    color: #fafafa;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: 17px;
    height: 30px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 20px;
    width: 30px;
}

.faq-toggle .fa-times,
.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    color: #fafafa;
    display: block;
}

.faq-toggle .fa-chevron-down {
    display: block;
}

.faq.active .faq-toggle {
    background-color: #9fa4a8;
}


/* footer */


.footer {
    background: rgb(22, 27, 59);
    background: -moz-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #fffff200;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #9fa0a0;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background: rgb(22, 27, 59);
    background: -moz-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    background: linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 53%, rgba(36, 213, 197, 1) 100%);
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}

.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: rgba(0, 138, 189, 0.171);
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
    background: rgb(22, 27, 59);
    background: -moz-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 55%, rgba(36, 213, 197, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 55%, rgba(36, 213, 197, 1) 100%);
    background: linear-gradient(90deg, rgba(22, 27, 59, 1) 0%, rgba(22, 27, 59, 1) 55%, rgba(36, 213, 197, 1) 100%);
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 850px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {

    /* smartphones, Android phones, landscape iPhone */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {

    /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}




@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}

@media (min-width: 568px) {
    /* .footer-content-column {
      width: 49.99%;
  } */
}


.btn_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.btn_container .btn {
    position: relative;
    top: 0;
    left: 0;
    width: 250px;
    height: 50px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_container .btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: turquoise;
    box-shadow: 0 15px 15px rgb(12, 12, 12);
    border-bottom: 1px solid rgb(22, 22, 24);
    border-top: 1px solid turquoise;
    border-radius: 30px;
    padding: 10px;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    color: #fff;
    font-weight: 400px;
    z-index: 1;
    transition: 0.5s;
    backdrop-filter: blur(15px);
}

.btn_container .btn:hover a {
    letter-spacing: 3px;
}

.btn_container .btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(45deg) translate(0);
    transition: 0.5s;
    filter: blur(0px);
}

.btn_container .btn:hover a::before {
    transform: skewX(45deg) translate(200px);
}

.btn_container .btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    bottom: -5px;
    width: 30px;
    height: 10px;
    background: #f00;
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0.5;
}

.btn_container .btn:hover::before

/*lightup button*/
    {
    bottom: 0;
    height: 50%;
    width: 80%;
    border-radius: 30px;
}

.btn_container .btn::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    top: -5px;
    width: 30px;
    height: 10px;
    background: #f00;
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0.5;
}

.btn_container .btn:hover::after

/*lightup button*/
    {
    top: 0;
    height: 50%;
    width: 80%;
    border-radius: 30px;
}

.btn_container .btn:nth-child(1)::before,
/* 2*/
.btn_container .btn:nth-child(1)::after {
    background: #2db2ff;
    box-shadow: 0 0 5px #2db2ff, 0 0 15px #022f49, 0 0 30px #2db2ff,
        0 0 60px #2db2ff;
}