@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", sans-serif;
    margin: 0;
    padding: 0;
    color: white;
}

html{
    scroll-behavior: smooth;
}

body {
    background-color: black;
}

@media only screen and (min-width:400px){

    .header::before {
        content: "";
        background-color: black;
        position: absolute;
        width: 100%;
        height: 70px;
        z-index: -1;
        opacity: 0.4;
        /* border: 3px solid green; */
    }
    
    .header {
        /* border: 3px solid white; */
        height: 70px;
        width: 100%;
    }
    
    #logo {
        width: 10%;
        /* border: 3px solid green; */
    }
    
    #logo img {
        /* border: 3px solid red; */
        width: 150px;
        filter: invert(100%); 
        /* margin-top: -15px;
        margin-left: -35px; */
    }
}

@media only screen and (max-width:578px){
    .header::before {
        content: "";
        background-color: black;
        position: absolute;
        width: 100%;
        height: 70px;
        z-index: -1;
        opacity: 0.4;
        /* border: 3px solid green; */
    }
    
    .header {
        /* border: 3px solid white; */
        height: 70px;
        width: 100%;
    }
    
    #logo {
        width: 10%;
        /* border: 3px solid green; */
    }
    
    #logo img {
        /* border: 3px solid red; */
        width: 120px;
        filter: invert(100%); 
        margin-top: -3px;
        margin-left: -25px;
    }
}

@media only screen and (max-width: 436px){
    .header::before {
        content: "";
        background-color: black;
        position: absolute;
        width: 100%;
        height: 60px;
        z-index: -1;
        opacity: 0.4;
        /* border: 3px solid green; */
    }
    
    .header {
        /* border: 3px solid white; */
        height: 60px;
        width: 100%;
    }
    
    #logo {
        width: 10%;
        /* border: 3px solid green; */
    }
    
    #logo img {
        /* border: 3px solid red; */
        width: 100px;
        filter: invert(100%); 
        margin-top: -3px;
        margin-left: -25px;
    }
}

@media only screen and (max-width: 343px){
    .header::before {
        content: "";
        background-color: black;
        position: absolute;
        width: 100%;
        height: 60px;
        z-index: -1;
        opacity: 0.4;
        /* border: 3px solid green; */
    }
    
    .header {
        /* border: 3px solid white; */
        height: 60px;
        width: 100%;
    }
    
    #logo {
        width: 10%;
        /* border: 3px solid green; */
    }
    
    #logo img {
        /* border: 3px solid red; */
        width: 100px;
        filter: invert(100%); 
        margin-top: -3px;
        margin-left: -25px;
    }
}

@media only screen and (max-width: 1497px) and (min-width: 896px){

    .boxes .box{
        height: 85%;
        width: 22%;
        background-color: rgb(228, 228, 180);
        margin: 0 10px;
        border-radius: 13px 13px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: relative;
        border: 2px solid rgb(0, 0, 0);
        transition: 300ms;
    }
    
    .box::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 40%;
        width: 100%;
        border-radius: 10px;
        background-color: rgb(14, 14, 14);
    }
    
    .box:hover{
        box-shadow: 10px 12px 14px rgb(0, 0, 0);
    }
    
    .box .head{
        z-index: 1;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box .head h1{
        font-weight: 400;
        color: white;
        font-size: 2.5rem;
    }
    
    .box .head h3{
        font-weight: 300;
        color: white;
        font-size: 1rem;
    }
    
    .box .features{
        width: 100%;
    }
    
    .box .features ul{
        list-style: none;
    }
    
    .box .features ul li{
        color: black;
        font-size: 0.6rem;
        padding: 10px;
        font-weight: 400;
    }
    
    .features ul li:first-child{
        padding-top: 15px;
    }
    
    .box .btn{
        border: none;
        background: black;
        color: white;
        font-weight: 300;
        font-size: 0.9rem;
        padding: 5px;
        width: 140px;
        height: 50px;
        margin-top: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: 400ms linear;
    }
    
    .box .btn:hover{
        color: black;
        border: 1px solid black;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        font-weight: 400;
    }
    
    .box .btn a{
        text-decoration: none;
    }
    
    .boxes .box3-4{
        height: 85%;
        width: 22%;
        border: 2px solid white;
        background-color: rgb(228, 228, 180);
        margin: 0 10px;
        border-radius: 13px 13px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: relative;
        border: 2px solid rgb(0, 0, 0);
        transition: 300ms;
    }
    
    .box3-4::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 40%;
        width: 100%;
        border-radius: 10px;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
    }
    
    .box3-4:hover{
        box-shadow: 10px 12px 14px rgb(0, 0, 0);
    }
    
    .box3-4 .head{
        z-index: 1;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box3-4 .head h1{
        font-weight: 400;
        color: white;
        font-size: 2.5rem;
    }
    
    .box3-4 .head h1 strike{
        font-weight: 300;
        font-size: 1rem;
    }
    
    .box3-4 .head h3{
        font-weight: 300;
        color: white;
        font-size: 1rem;
    }
    
    .box3-4 .features{
        width: 100%;
    }
    
    .box3-4 .features ul{
        list-style: none;
    }
    
    .box3-4 .features ul li{
        color: black;
        font-size: 0.6rem;
        padding: 10px;
        font-weight: 400;
    }
    
    .features ul li:first-child{
        padding-top: 15px;
    }
    
    .box3-4 .btn{
        border: none;
        background: black;
        color: white;
        font-weight: 300;
        font-size: 0.9rem;
        padding: 5px;
        width: 140px;
        height: 50px;
        margin-top: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: 400ms linear;
    }
    
    .box3-4 .btn:hover{
        color: black;
        border: 1px solid black;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        font-weight: 400;
    }
    
    .box3-4 .btn a{
        text-decoration: none;
    }
}


@media only screen and (max-width: 896px){
    .container {
        position: absolute;
        top: 0;
        width: 100%;
        height: 350vh;
        z-index: -2; 
        display: flex;
        align-items: center;
    }
    
    .container::before {
        content: "";
        position: absolute;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 350vh;
        width: 100%;
        z-index: -2;
        opacity: 0.6;
    }

    .container .boxes{
        /* border: 2px solid green; */
        width: 100vw;
        height: 320vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .boxes .box{
        height: 45%;
        width: 65%;
        background-color: rgb(228, 228, 180);
        margin: 15px 15px;
        border-radius: 13px 13px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: relative;
        /* border: 2px solid rgb(0, 0, 0); */
        transition: 300ms;
        margin-top: 30px;
    }

    .box::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 40%;
        width: 100%;
        border-radius: 10px;
        background-color: rgb(14, 14, 14);
    }
    
    .box:hover{
        box-shadow: 10px 12px 14px rgb(0, 0, 0);
    }

    .box .head{
        z-index: 1;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .box .head h1{
        font-weight: 400;
        color: white;
        font-size: 2rem;
    }

    .box .head h3{
        font-weight: 300;
        color: white;
        font-size: 1rem;
    }

    .box .features{
        width: 100%;
    }
    
    .box .features ul{
        list-style: none;
    }
    
    .box .features ul li{
        color: black;
        font-size: 0.7rem;
        padding: 10px;
        font-weight: 400;
    }
    
    .features ul li:first-child{
        padding-top: 20px;
    }

    .box .btn{
        border: none;
        background: black;
        color: white;
        font-weight: 300;
        font-size: 0.9rem;
        padding: 5px;
        width: 150px;
        height: 50px;
        margin-top: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: 400ms;
    }
    
    .box .btn:hover{
        color: black;
        border: 1px solid black;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        font-weight: 400;
    }
    
    .box .btn a{
        text-decoration: none;
    }

    .boxes .box3-4{
        height: 45%;
        width: 65%;
        background-color: rgb(228, 228, 180);
        margin: 15px 15px;
        border-radius: 13px 13px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: relative;
        /* border: 2px solid rgb(0, 0, 0); */
        transition: 300ms;
        margin-top: 30px;
    }

    .box3-4::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 40%;
        width: 100%;
        border-radius: 10px;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
    }

    .box3-4:hover{
        box-shadow: 10px 12px 14px rgb(0, 0, 0);
    }

    .box3-4 .head{
        z-index: 1;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box3-4 .head h1{
        font-weight: 400;
        color: white;
        font-size: 2rem;
    }
    
    .box3-4 .head h1 strike{
        font-weight: 300;
        font-size: 1rem;
    }
    
    .box3-4 .head h3{
        font-weight: 300;
        color: white;
        font-size: 1rem;
    }
    
    .box3-4 .features{
        width: 100%;
    }
    
    .box3-4 .features ul{
        list-style: none;
    }
    
    .box3-4 .features ul li{
        color: black;
        font-size: 0.7rem;
        padding: 10px;
        font-weight: 400;
    }
    
    .features ul li:first-child{
        padding-top: 20px;
    }
    
    .box3-4 .btn{
        border: none;
        background: black;
        color: white;
        font-weight: 300;
        font-size: 0.9rem;
        padding: 5px;
        width: 150px;
        height: 50px;
        margin-top: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: 400ms;
    }
    
    .box3-4 .btn:hover{
        color: black;
        border: 1px solid black;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        font-weight: 400;
    }
    
    .box3-4 .btn a{
        text-decoration: none;
    }
}

@media only screen and (max-width: 423px){

    .container {
        position: absolute;
        top: 0;
        width: 100%;
        height: 350vh;
        z-index: -2; 
        display: flex;
        align-items: center;
    }
    
    .container::before {
        content: "";
        position: absolute;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 350vh;
        width: 100%;
        z-index: -2;
        opacity: 0.6;
    }

    .container .boxes{
        /* border: 2px solid green; */
        width: 100vw;
        height: 320vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .boxes .box{
        height: 45%;
        width: 80%;
        background-color: rgb(228, 228, 180);
        margin: 15px 15px;
        border-radius: 13px 13px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: relative;
        /* border: 2px solid rgb(0, 0, 0); */
        transition: 300ms;
        margin-top: 30px;
    }

    .box::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 40%;
        width: 100%;
        border-radius: 10px;
        background-color: rgb(14, 14, 14);
    }
    
    .box:hover{
        box-shadow: 10px 12px 14px rgb(0, 0, 0);
    }

    .box .head{
        z-index: 1;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .box .head h1{
        font-weight: 400;
        color: white;
        font-size: 2rem;
    }

    .box .head h3{
        font-weight: 300;
        color: white;
        font-size: 1rem;
    }

    .box .features{
        width: 100%;
    }
    
    .box .features ul{
        list-style: none;
    }
    
    .box .features ul li{
        color: black;
        font-size: 0.7rem;
        padding: 10px;
        font-weight: 400;
    }
    
    .features ul li:first-child{
        padding-top: 20px;
    }

    .box .btn{
        border: none;
        background: black;
        color: white;
        font-weight: 300;
        font-size: 0.9rem;
        padding: 5px;
        width: 150px;
        height: 50px;
        margin-top: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: 400ms;
    }
    
    .box .btn:hover{
        color: black;
        border: 1px solid black;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        font-weight: 400;
    }
    
    .box .btn a{
        text-decoration: none;
    }

    .boxes .box3-4{
        height: 45%;
        width: 80%;
        background-color: rgb(228, 228, 180);
        margin: 15px 15px;
        border-radius: 13px 13px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: relative;
        /* border: 2px solid rgb(0, 0, 0); */
        transition: 300ms;
        margin-top: 30px;
    }

    .box3-4::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 40%;
        width: 100%;
        border-radius: 10px;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
    }

    .box3-4:hover{
        box-shadow: 10px 12px 14px rgb(0, 0, 0);
    }

    .box3-4 .head{
        z-index: 1;
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box3-4 .head h1{
        font-weight: 400;
        color: white;
        font-size: 2rem;
    }
    
    .box3-4 .head h1 strike{
        font-weight: 300;
        font-size: 1rem;
    }
    
    .box3-4 .head h3{
        font-weight: 300;
        color: white;
        font-size: 1rem;
    }
    
    .box3-4 .features{
        width: 100%;
    }
    
    .box3-4 .features ul{
        list-style: none;
    }
    
    .box3-4 .features ul li{
        color: black;
        font-size: 0.7rem;
        padding: 10px;
        font-weight: 400;
    }
    
    .features ul li:first-child{
        padding-top: 20px;
    }
    
    .box3-4 .btn{
        border: none;
        background: black;
        color: white;
        font-weight: 300;
        font-size: 0.9rem;
        padding: 5px;
        width: 150px;
        height: 50px;
        margin-top: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: 400ms;
    }
    
    .box3-4 .btn:hover{
        color: black;
        border: 1px solid black;
        background: linear-gradient(0deg, rgba(255, 63, 148, 1) 5%, rgba(34, 70, 195, 1) 100%);
        font-weight: 400;
    }
    
    .box3-4 .btn a{
        text-decoration: none;
    }
}