@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');

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background: #021526;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding-top: 60px;
}

.service-conatiner {
    max-width: 100vw;
    height: 100%;
    padding: 1% 10%;
}

.serviceh {
    color: #fff;
    padding: 1% 10%;
}

.services {
    margin: auto;
    padding: 5vh 10%;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.services .service-part {
    margin-top: 2%;
    width: 30%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    padding: 24px 24px;
    border-radius: 24px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, #1b252e 20%, #384d5e 40%, #384d5e 60%, #1b252e 80%, rgba(255, 255, 255, 0) 90%);
    box-shadow: inset 2px 2px 0px #2c4557, inset -2px -2px 0px #b0ffff;
}

.services .service-part h2,
.services .service-part p {
    padding: 0 0 10px 0;
}

.services .service-part ul li {
    font-size: 14px;
    padding: 5px;
}

#pricingbtn {
    width: 12vw;
    height: 5vh;
    margin: 5% 2%;
    cursor: pointer;
    transition: 0.2s all ease;
}
 
.pricingbtn {
    backdrop-filter: blur(20px);
    box-shadow: inset 2px 2px 0px #2c4557, inset -2px -2px 0px #be0085;
    cursor: pointer;
    border-radius: 24px;
    margin: auto;
    width: 100%;
    height: 100%;
    color: #be0085;
}

#pricingbtn:hover {
    transform: scale(1.1);
}

.popup {
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    /* position: fixed; */
    position: absolute;
    top: 0;
    display: none;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.popup-container {
    height: 400px;
    width: 500px;
    padding: 24px 24px;
    position: relative;
    border-radius: 24px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, #1b252e 20%, #384d5e 40%, #384d5e 60%, #1b252e 80%, rgba(255, 255, 255, 0) 90%);
    box-shadow: inset 2px 2px 0px #2c4557, inset -2px -2px 0px #b0ffff;
}
form{
    display: flex;
    flex-direction: column;
}
form label{
    color: #fff;
}
.submitbtn{
    width: 12vw;
    height: 5vh;
    backdrop-filter: blur(20px);
    box-shadow: inset 2px 2px 0px #2c4557, inset -2px -2px 0px #be0085;
    cursor: pointer;
    border-radius: 24px;
}
span{
    color: #ff0000;
}
.close{
    color: white;
    border: 1px solid white;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #be0085;
    cursor: pointer;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .service-container{
        padding: 1% 5%;
    }
    .serviceh{
        padding: 0;
    }
    .services{
        padding: 0;
    }
    #pricingbtn {
        width: 80px;
        height:40px;
        font-size: 10px;
    }
    .popup{
        position: absolute;
        margin: 0;
        width:90%;
        padding: 0;
    }
    .popup-container{
        width: 80%;
    }
    .services .service-part h2{
        font-size: 20px;
    }
    .services .service-part p{
        font-size: 12px;
    }
    .services .service-part ul li {
        font-size: 12px;
        padding: 3px;
    }
    .submitbtn{
        width: 15vw;
        height: 6vh;
    }
}

@media (max-width: 599px) {
    .service-container{
        padding: 1% 5%;
    }
    .service-container h1{
        font-size: 24px;
    }
    .serviceh{
        padding: 0;
    }
    .services{
        padding: 0;
    }
    .services .service-part{
        width: 50%;
        height: 400px;
        padding: 2%;
    }
    .services .service-part h2{
        font-size: 20px;
    }
    .services .service-part p{
        font-size: 12px;
    }
    .services .service-part ul li {
        font-size: 12px;
        padding: 3px;
    }
    #pricingbtn {
        width: 20vw;
        height: 5vh;
        margin: 5% 2%;
        font-size: 10px;
    }
    .popup{
        position: absolute;
        margin: 0;
        width:90%;
        padding: 0;
    }
    .popup-container{
        width: 80%;
    }
    .submitbtn{
        width: 18vw;
        height: 6vh;
    }
}