@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;
}

.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 black; */
    height: 70px;
}

#logo {
    width: 15%;
    /* border: 3px solid green; */
}

#logo img {
    /* border: 3px solid red; */
    width: 200px;
    filter: invert(100%);
    margin-top: -15px;
    margin-left: -35px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

label .menu {
    position: absolute;
    right: 0px;
    top: -100px;
    z-index: 100;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #000, 0 0 0 0 #000;
    cursor: pointer;

}

label .hamburger {
    position: absolute;
    top: 135px;
    left: 50px;
    width: 30px;
    height: 4px;
    background: #fff;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

label .hamburger:after,
label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
}

label .hamburger:before {
    top: -10px;
}

label .hamburger:after {
    bottom: -10px;
}

label input {
    display: none;
}

label input:checked+.menu {
    box-shadow: 0 0 0 100vw #000, 0 0 0 100vh #000;
    border-radius: 0;
    opacity: 0.5;
}

label input:checked+.menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}

label input:checked+.menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;

}

label input:checked+.menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;

}

label input:checked+.menu+ul {
    opacity: 1;
}

label ul {
    list-style: none;
    z-index: 200;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
}

label a {
    margin-bottom: 1em;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: 250ms ease;
}

label a:hover {
    color: #b1b1b1;
}

@media only screen and (min-width: 896px){

    .container {
        position: absolute;
        top: 0;
        display: flex;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        z-index: -2;
        /* border: 3px solid white; */
        align-items: center;
        justify-content: 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: 100vh;
        width: 100%;
        z-index: -2;
        opacity: 0.6;
    }
    
    .container .boxes{
        /* border: 2px solid green; */
        width: 100vw;
        height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .boxes .box{
        height: 85%;
        width: 23%;
        border: 2px solid white;
        background-color: rgb(228, 228, 180);
        margin: 0 20px;
        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: 3rem;
    }
    
    .box .head h3{
        font-weight: 300;
        color: white;
        font-size: 1.5rem;
    }
    
    .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: 1rem;
        padding: 7px;
        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: 23%;
        border: 2px solid white;
        background-color: rgb(228, 228, 180);
        margin: 0 20px;
        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: 3rem;
    }
    
    .box3-4 .head h1 strike{
        font-weight: 300;
        font-size: 1.5rem;
    }
    
    .box3-4 .head h3{
        font-weight: 300;
        color: white;
        font-size: 1.5rem;
    }
    
    .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: 1rem;
        padding: 7px;
        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;
    }
}
