@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Belanosima&family=Rubik+Vinyl&display=swap');

.popup {
    position: fixed;
    top: 100%;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.popup.active {
    top: 0;
    background-color: rgba(3, 3, 3, 0.98);
    transition: background-color .6s, opacity .6s;
}

.popup .main-btn-rect {
    padding: 10px 100px;
}

.popup .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64%;
    color: #070000;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transition: margin .6s;
    -webkit-transition: margin .6s;
    -moz-transition: margin .6s;
    -o-transition: margin .6s;
}

/* NEW design */
.popup .popup-content {
    max-width: 1120px;
    max-height: 600px;
    height: 76%;
}

.popup-content h6 {
    display: table;
    font-size: 16px;
    text-align: center;
    margin: 10px auto;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
}

#contact {
    background-color: #6a9ac4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.contact-form-wrapper-pricing {
    /* display: block; */
    background-color: #FFF;
    animation-fill-mode: backwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 100%;
}

.pricing-form {
    width: 100%;
    padding: 0px 30px;
}

.pricing-img {
    width: 40%;
    height: 100%;
}



.contact-box {
    width: clamp(100px, 90%, 1000px);
    margin: 80px 50px;
    display: flex;
    flex-wrap: wrap;
}

.fade-out {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 15px;
}

label,
input,
textarea {
    font-family: 'Poppins', sans-serif;
}

label {
    position: absolute;
    top: 10px;
    left: 2%;
    color: #999;
    font-size: clamp(14px, 1.5vw, 18px);
    pointer-events: none;
    user-select: none;
}

input,
textarea {
    width: 100%;
    outline: 0;
    border-bottom: #5C5C5C 1px solid;
    /* border-radius: 4px; */
    margin-bottom: 20px;
    padding: 10px;
    font-size: clamp(15px, 1.5vw, 18px);
}

input:focus+label,
input:valid+label,
textarea:focus+label,
textarea:valid+label {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #777;
    top: -20px;
    transition: all .225s ease;
}

.submit-btn {
    background-color: #317AB0;
    filter: drop-shadow(2px 2px 3px #0003);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(16px, 1.6vw, 18px);
    display: block;
    padding: 12px 20px;
    margin: 2px auto;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
}

.submit-btn:hover {
    transform: scale(1.1, 1.1);
}

.submit-btn:active {
    transform: scale(1.1, 1.1);
    filter: sepia(0.5);
}


.darksoul-toggle-container {
    width: 300px;
    height: 130px;
    margin: auto;
    display: flex;
    border-radius: 70px;
    padding: 2px;
    /* box-shadow: 10px 10px 10px rgba(16, 16, 16, 0.667), 0px -8px 10px rgba(32, 32, 32, 0.453), -5px -5px 15px rgb(17, 17, 17) inset, 15px 15px 50px rgb(26, 26, 26) inset; */
    transition: background-color 0.5s, box-shadow 0.5s;
}

.darksoul-toggle-border {
    width: 200px;
    height: 74px;
    background-color: rgb(23, 23, 23);
    box-shadow: 5px 5px 10px rgb(23, 23, 23) inset, -4px -10px 10px rgb(25, 25, 25) inset;
    border-radius: 70px;
    border: 2px solid;
    margin: auto;
    display: flex;
    transition: background-color 0.5s, box-shadow 0.5s;
}

.darksoul-toggle {
    margin: auto;
    margin-left: 10px;
    width: 56px;
    height: 56px;
    background-color: rgb(23, 23, 23);
    border: 1px solid rgba(28, 28, 28, 0);
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.312), -10px -10px 10px rgba(30, 30, 30, 0.696), 40px -5px 1px rgb(255, 255, 255) inset, -2px 5px 10px rgba(23, 23, 23, 0.986) inset;
    border-radius: 50%;
    transition: box-shadow 1s;
}

.darksoul-toggle:hover {
    cursor: pointer;

}

@keyframes roll {
    100% {
        transform: translateX(170px) rotate(360deg);
    }
}

@keyframes rollback {
    0% {
        transform: translateX(170px) rotate(360deg);
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

.disclaimer {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin-left: auto;
    right: 0;
    margin-right: auto;
    width: fit-content;
    color: #6a6a6a;

    text-align: center;
}

.disclaimer a {
    text-decoration: none;
    color: white;
}

.disclaimer a:hover {
    font-weight: bolder;
}

.element style {
    animation: 1.5s ease 0s 0.4 normal forwards running roll;
}

.vsnapcontact {
    display: none;
}

@media (max-width: 576px) {
    .popup .popup-content {
        width: 100%;
        padding: 10px;
    }

    .welpop {
        text-align: center;
    }

    .welmess {
        text-align: center;
    }

    .vsnapcontact {
        display: flex;
        justify-content: center;
    }
}

@media (max-width:768px) {
    .specialOffer-top-container {
        flex-direction: column;
        padding: 20px 8px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .seperator-mobile {
        background: #FFFFFF;
        width: 100%;
        height: 0.8px;
        opacity: 60%;
    }

    .contact-form-wrapper-pricing {
        width: 100%;
    }

    .pricing-form {
        padding: 0px 10px;
    }

    .pricing-img {
        display: none;
    }

    .specialOffer-top-container-one {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
    }

    .specialOffer-top-container-two {
        gap: 4px;
        align-items: start;
        width: 100%;
    }

    .pricingoffer-title {
        text-align: center;

        font-size: 34px;
        margin-bottom: 10px;
    }

    .pricingoffer-subtitle {
        font-size: 20px;
        text-align: center;
    }

    .pricing-startfrom {
        font-size: 24px;
    }

    .pricing-pricefrom {
        font-size: 34px;
    }

    .pricing-priceduration {
        font-size: 20px;
    }

    .princing-p {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
    }

    .pricing-button {
        font-size: 18px;
        letter-spacing: -0.16px;
        color: #FFFFFF;
        border-radius: 28px;
        padding: 7px 0px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .specialOffer-bottom-container {
        padding: 10px 10px;
        gap: 17px 0px;
        grid-template-columns: 1fr;
    }

    .specialOffer-bottom-txt {
        font-size: 14px;
    }

    .pricing-tickimg {
        margin-top: 2px;
    }


}

@media (min-width:1163px) and (max-width:1279px) {
    .specialOffer-bottom-container {
        gap: 20px 19px;
        padding: 20px 17px;
    }

    .specialOffer-bottom-txt {
        text-wrap-mode: wrap;
    }
}