.part1 {
    position: relative;
    height: 350px;
    width: 100%;
    background-color: var(--scrollbar-color);
}

.p1-1 {
    position: absolute;
    width: 100%;
    max-width: 500px;
    margin-left: 150px;
    margin-top: 60px;
}

.p1-1 p:first-child {
    margin: 0;
    width: fit-content;
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 20px rgba(var(--main-color-r), var(--main-color-g), var(--main-color-b), 0.75);
}

.p1-2 {
    position: absolute;
    margin-left: 150px;
    margin-top: 250px;
}

.p1-2 > button {
    cursor: pointer;
    min-width: 180px;
    min-height: 40px;
    font-weight: 400;
    font-size: 16px;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--main2-color) 0%, var(--main-color) 55%, var(--main2-color) 90%);
    border: none;
    border-radius: 4px;
    color: var(--bg-color);
    box-shadow: 0px 0px 20px rgba(var(--main-color-r), var(--main-color-g), var(--main-color-b), 0.5), 0px 5px 5px -1px rgba(var(--main2-color-r), var(--main2-color-g), var(--main2-color-b), 0.25);
}

.p1-2 > button:hover{
    background-position: right top;
}

.p1-3 {
    position: absolute;
    right: 0;
    width: 250px;
    margin-right: 150px;
    margin-top: 60px;
}

.p1-3 svg {
    fill: var(--text-color);  
    transition: all .3s;  
}

.p1-3 svg:hover {
    fill: var(--main-color);
    filter: drop-shadow(0px 0px 8px var(--main-color));
}

.p1-logos {
    display: flex;
    justify-content: space-between;
}

.p1-3-text {
    text-align: center;
}

.p1-dividor svg {
    width: 100%; 
    height: 150px;
}

.part2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p2-1 {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p2-1 > p {
    position: relative;
    max-width: fit-content;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
    text-align: center;
}

.p2-2 {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p2-2 > p {
    position: relative;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.part3 {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p3-1 {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p3-1 > p {
    position: relative;
    max-width: fit-content;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
    text-align: center;
}

.p3-2 {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p3-2 > p {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.part4 {
    margin-top: 48px;
}

.cardholder {
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.p4-card {
    width: 250px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p4-dividor {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.p4-card svg {
    fill: var(--main2-color);
    transition: all .3s;
    width: 160px;
    height: 160px;
}

.p4-card:hover svg {
    transform: scale(1.1);
    fill: var(--main-color);
    filter: drop-shadow(0px 0px 8px var(--main-color));
}

.p4-title p {
    display: flex;
    align-items: center;
    font-size: 28px;
    margin: 0;
    font-weight: 500;
    color: var(--main-color);
    text-shadow: 0px 0px 3px var(--main-color);
    text-align: center;
    vertical-align: middle;
    height: 70px;
    margin-top: 24px;
}

.p4-text p {
    margin-top: 24px;
    text-align: center;
    margin-bottom: 0;
    height: 180px;
}

.part4-phone {
    display: none;
}

.p4-dividor {
    display: flex;
    justify-content: center;

}

.part5 {
    margin-top: 48px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.p5-1 {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p5-1 p {
    text-align: center;
    max-width: fit-content;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
}

.p5-2 {
    width: fit-content;
    position: relative;
}

.p5-2 > button {
    cursor: pointer;
    min-width: 180px;
    min-height: 40px;
    font-weight: 400;
    font-size: 16px;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--main2-color) 0%, var(--main-color) 55%, var(--main2-color) 90%);
    border: none;
    border-radius: 4px;
    color: var(--bg-color);
    box-shadow: 0px 0px 20px rgba(var(--main-color-r), var(--main-color-g), var(--main-color-b), 0.5), 0px 5px 5px -1px rgba(var(--main2-color-r), var(--main2-color-g), var(--main2-color-b), 0.25);
}

.p5-2 > button:hover{
    background-position: right top;
}

.part6 {
    display: flex;
    margin-top: 64px;
    flex-direction: column;
    align-items: center;
}

.p6-1 {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p6-1 p{
    text-align: center;
    width: fit-content;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
    margin: 0;
    padding: 0;
}

.p6-2 {
    position: relative;
    margin: auto;
    height: fit-content;
    margin-top: 48px;
    width: 100%;
}
.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 338px;
}

.p6-img img {
    width: 600px;
    transition: all 1s;
}
  
.p6-img {
    position: absolute;
    width: 600px;
    aspect-ratio: 16/9;
    transition: all 1s;
    border-radius: 12px;
    box-shadow: 0px 0px 12px rgb(0,0,0);
    overflow: hidden;
}

.p6-img:hover {
    cursor: pointer;
    transform: scale(1.2) !important;
    z-index: 4 !important;
}

.p6-img[style*="translate(-80%)"]:hover {
    transform: translate(-80%) scale(1.2) !important;
}

.p6-img[style*="translate(80%)"]:hover {
    transform: translate(80%) scale(1.2) !important;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 28px;
    z-index: 100;
}
  
.prev-btn {
    left: 0;
    margin-left: 12px;
}
  
.next-btn {
    right: 0;
    margin-right: 12px;
}

.sec-dividor {
    fill: var(--scrollbar-color);
    transform: translate(0%, 5px);
}

.grey-bg {
    background-color: var(--scrollbar-color);
}

.part7 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p7-1 {
    position: relative;
    width: fit-content;
}

.p7-1 p{
    text-align: center;
    width: fit-content;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
    margin: 0;
    padding: 0;
}

.p7-2 {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.p7-h {
    height: fit-content;
    width: max-content;
    flex: 1;
}

.p7-h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.p7-h1 img {
    width: 400px;
    filter: drop-shadow(0px 0px 20px var(--main-color));
}


.p7-h2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.p7-h2 p:nth-child(1) {
    width: fit-content;
    margin: 0;
    margin-left: 48px;
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 4px var(--main-color);
}

.p7-h2 p:nth-child(2) {
    max-width: 600px;
    width: 100%;
    margin-left: 48px;
    margin-bottom: 0;
}

.p7-3 {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p7-3-text {
    position: relative;
    width: fit-content;
    margin-left: 15px;
    margin-right: 15px;
}

.p7-3-text p {
    text-align: center;
    max-width: fit-content;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
}

.p7-3 > button {
    cursor: pointer;
    min-width: 180px;
    min-height: 40px;
    font-weight: 400;
    font-size: 16px;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--main2-color) 0%, var(--main-color) 55%, var(--main2-color) 90%);
    border: none;
    border-radius: 4px;
    color: var(--bg-color);
    box-shadow: 0px 0px 20px rgba(var(--main-color-r), var(--main-color-g), var(--main-color-b), 0.5), 0px 5px 5px -1px rgba(var(--main2-color-r), var(--main2-color-g), var(--main2-color-b), 0.25);
}

.p7-3 > button:hover{
    background-position: right top;
}

.part8 {
    margin-top: 64px;
}

.p8-1 {
    position: relative;
    width: fit-content;
    left: 50%;
    transform: translate(-50%);
}

.p8-1 p{
    text-align: center;
    width: fit-content;
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
    margin: 0;
    padding: 0;
}


.p8-2 {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin-left: 15px;
    margin-right: 15px;
}

.p8-dividor {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: fit-content;
    align-items: center;
}

.p8-question {
    max-width: 650px;
    width: 100%;
    text-align: center;
}

.p8-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0px 0px px var(--main2-color);
    color: var(--main2-color);
    height: 50px;
    transition: all .3s;
}

.p8-glow {
    text-shadow: 0px 0px 4px var(--main-color);
    color: var(--main-color);
}

.p8-title:hover {
    cursor: pointer;
}

.p8-a {
    display: none;
}

.answer {
    margin-top: 0px;
}

.part9 {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.p9-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    width: 100%;
    height: 500px;
    background-color: rgba(var(--bg-color-r), var(--bg-color-g), var(--bg-color-b), 1);
    border-radius: 4px;
    border: var(--main2-color) 1px solid;
}

.p9-inputfields {
    margin-top: 32px;
}

.p9-dividor {
    display: flex;
    flex-wrap: wrap; /* Add this to wrap the divs if they exceed the width */
}

.p9-input-outline {
    display: flex;
    flex: 1;
    margin: 10px;
    border-radius: 6px;
    position: relative;
}

.p9-input-outline input {
    flex: 1;
    height: 100%;
    padding: 5px;
    border: none;
    background-color: transparent;
    color: white;
    border-radius: inherit;
    box-sizing: border-box;
    outline: none;
}

.p9-input-outline:before,
.p9-input-outline::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.p9-input-outline:before {
    background: linear-gradient(111deg, var(--main2-color) -100%, var(--main-color) 200%);
    transform: translate3d(0px, 0px, 0) scale(1);
    filter: blur(3px);
    opacity: 1;
    transition: opacity 0.3s;
    z-index: -1;
}

.p9-input-outline::after {
    z-index: -1;
    background: linear-gradient(111deg, var(--main2-color) 0%, var(--main-color) 100%);
}
        

.p9-dividor input {
    flex: 1;
    margin: 2px;
    height: 30px;
    background-color: var(--bg-color);
    border-radius: 4px;
    border: none;
    color: var(--text-color);
}



.website-blur {
    transition: filter .3s;
}

.website-blur.active {
    filter: blur(2px);
    pointer-events: none;
}

.footer {
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
    -webkit-box-shadow: inset 0px 15x 15px -7px var(--scrollbar-color); 
    box-shadow: inset 0px 15px 15px -7px var(--scrollbar-color);
}

.footer a:nth-child(1), .footer a:nth-child(2) {
    margin-right: 12px;
}

.footer a {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    text-shadow: 0px 0px 6px var(--main-color);
    text-decoration: none;
}


@media (max-width: 1598px) {
    .p1-1 {
        margin-left: 25px;
    }

    .p1-2 {
        margin-left: 25px;
    }

    .p1-3 {
        margin-right: 25px;
    }

    .p6-img {
        width: 400px;
    }

    .p6-img img {
        width: 400px;
    }

    .slider {
        height: 225px;
    }
}

@media (max-width: 1344px) {
    .part4 {
        display: none;
    }

    .part4-phone {
        display: revert;
    }

    .cardholder {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .p4-card {
        max-width: 400px;
        width: 100%;
        margin-bottom: 24px;
        min-height: 450px;
        height: fit-content;
    }

    .p4-card:last-child {
        margin-bottom: 0;
    }

    .p4-card p {
        height: 100px;
    }

    .p4-dividor > .p4-card:first-child {
        margin-right: 24px;
    }

    .p4-dividor:last-child > .p4-card {
        margin-right: 0px;
    }

    .p4-dividor {
        margin-left: 15px;
        margin-right: 15px;
    }

    .p4-text p {
        height: fit-content;
    }

    .p7-h1 {
        display: none;
    }

    .p7-2 {
        flex-direction: column;
        display: block;
        width: fit-content;
        margin-left: 15px;
        margin-right: 15px;
    }

    .p7-h2 {
        align-items: center;
        text-align: center;
    }

    .p7-h2 p:nth-child(1) {
        margin-left: 0;
    }
    
    .p7-h2 p:nth-child(2) {
        margin-left: 0;
        max-width: 1200px;

    }

    .p7-h {
        height: revert;
        width: revert;
        flex: revert;
    }
}

@media (max-width: 1100px) {
    .p6-img {
        width: 350px;
    }

    .p6-img img {
        width: 350px;
    }

    .slider {
        height: 197px;
    }
}

@media (max-width: 1000px) {
    .p1-dividor svg {
        width: 1500px;
        overflow: hidden;
    }

    .p8-2 {
        flex-direction: column;
    }

    .p8-question {
        max-width: 100%;
    }
}

@media (max-width: 988px) {
    .slider {
        height: fit-content;
        display: flex;
        flex-direction: column;
        margin: 15px;
    }

    .p6-img {
        position: relative;
        margin: 15px;
        max-width: 600px;
        width: 100%;
    }

    .p6-img img {
        width: 100%;
    }

    .prev-btn, .next-btn {
        display: none;
    }

    .p6-img:hover {
        cursor: revert;
        transform: revert !important;
        z-index: revert !important;
    }
}

@media (max-width: 942px) {

    .part1 {
        height: 450px;
        display: flex;
        justify-content: center;
    }

    .p1-1 {
        display: flex;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .p1-1 p:last-child {
        margin-left: 15px;
        margin-right: 15px;
    }

    .p1-2 {

        margin-left: 0px;
        margin-top: 200px;
    }

    .p1-3 {
        right: revert;
        margin-top: 270px;
        margin-right: 0px;
    }
}

@media (max-width: 656px) {
    .sec-dividor svg{
        width: 656px !important;
    }

    .sec-dividor {
        width: 100%;
        overflow: hidden;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer a {
        width: fit-content;
        margin-top: 0;
    }
    .footer a:nth-child(1), .footer a:nth-child(2) {
        margin-right: 0;
    }

    .footer a:nth-child(1) {
        margin-top: 24px;
    }
}

@media (max-width: 584px) {
    .p4-dividor {
        flex-direction: column;
    }

    .p4-card {
        margin-right: 0px;
    }

    .p4-dividor > .p4-card:first-child {
        margin-right: 0;
    }
    .p4-card:last-child {
        margin-bottom: 24px;
    }

    .p4-dividor:last-child > .p4-card {
        margin-bottom: 0px;
    }
}

@media (max-width: 310px) {
    .p1-2 {
        margin-top: 220px;
    }

    .p1-3 {
        margin-top: 300px;
    }
}