*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #FFFFF0;
}

body{
    background: #FFFFF0;
    min-height: 100vh;
}

header{
    width: 100%;
    height: 80px;
    background: #1c2331;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.logo{
    font-size: 28px;
    font-weight: bold;
}

.hamburger{
    display: none;
}

.nav-bar ul{
    display: flex;
}

.nav-bar ul li a{
    display: block;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
    margin: 0 5px;
}

.nav-bar ul li a:hover{
    color:#000;
    background: #22df52;
}

.nav-bar ul li a.active{
    color:#000;
    background: #22df52;
}

@media only screen and (max-width: 1320px){
    header{
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px){
    header{
        padding: 0 30px;
        height: 61px;
    }
}

@media only screen and (max-width: 900px){
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger .line{
        width: 30px;
        height: 3px;
        background: #FFFFF0;
        margin: 6px 0;
    }
    .nav-bar{
        height: 0;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #1c2331;
        transition: 0.5s;
        overflow: hidden;
    }
    .nav-bar.active{
        height: 100vh;
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar.active ul{
        opacity: 1;
    }
    .nav-bar ul li a{
        margin-bottom: 12px;
    }
}


.box{
    margin: 60px auto;
    max-width: 550px;
    padding: 40px;
    background: #191919;
    text-align: center;
    border-radius: 40px;
    color: #bbb;
}

.box h1{
    margin-bottom: 40px;
    font-weight: 500;
}

input[type="checkbox"] {   
    width: 15px;
    height: 15px;
    accent-color: #22df52;
}

.border{
    border: 2px solid #214252;
    padding: 20px;
    border-radius: 10px;
    margin: 40px -10px 0 -10px;
}

.more{
    color: #FFFFF0;
    font-size: 23px;
    background-color: #191919;
    margin-top: -33px;
    margin-bottom: 20px;
}

table{
    margin: auto;
    text-align: left;
}

table td{
    color: #bbb;
    padding: 0 3px 3px 0;

}

.price{
    color: #22df52;
    padding-left: 15px;
    text-align: right;
}

.section{
    color: #FFFFF0;
    font-size: 23px;
    margin: 20px;
}

.choice{
    background: #191919;
    display: block;
    margin: 10px auto;
    text-align: center;
    border: 2px solid #22df52;
    padding: 15px 10px;
    width: 200px;
    color: #bbb;
    border-radius: 24px;
    outline: none;
    cursor: pointer;
    appearance: none;
}



.box input[type="number"], .box input[type="text"], .box input[type="email"], .box input[type="tel"], textarea{
    background: none;
    display: block;
    margin: 10px auto;
    text-align: center;
    border: 2px solid #214252;
    padding: 15px 10px;
    width: 200px;
    color: #bbb;
    border-radius: 24px;
    outline: none;
}


::-webkit-calendar-picker-indicator{
    background-color: #22df52;
    border-radius: 24px;
    padding: 10px 20px;
    cursor: pointer;
}

.box input[type="number"]:focus, .box input[type="text"]:focus, .box input[type="email"]:focus, .box input[type="tel"]:focus, textarea:focus {
    transition: 0.3s;
    width: 280px;
    border-color: #22df52;
}


#invoice:checked ~ .com-info{
    display: block;
}

.com-info{
    display: none;
}

.box input[type="submit"] {
    background: none;
    display: block;
    margin: 30px auto;
    text-align: center;
    border: 2px solid #22df52;
    padding: 14px 40px;
    width: 200px;
    outline: none;
    border-radius: 24px;
    cursor: pointer;
}

.descrip{
    margin: 30px 0;
    font-size: smaller;
    color: #bbb;
}

.descrip a{
    color: #70ed8f;
}

.box input[type="submit"]:hover {
    background: #22df52;
    color: #000;
    transition: 0.3s;
}

ul{
    list-style: none;
}

.footer{
    width: 100%;
    background: #1c2331;
    padding: 60px 0;
}

.container-footer{
    max-width: 1170px;
    margin: auto;
}

.row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.footer-col hr{
    border: none;
    background-color: greenyellow;
    height: 2px;
    width: 50px;
    margin-bottom: 25px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li{
    font-size: 16px;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
}

.footer-col ul li a{
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: greenyellow;
    padding-left: 8px;
}

.copy{
    width: 100%;
    padding: 5px;
    background: #151a25;
    text-align: center;
    color: #bbbbbb;
}

@media(max-width:767px){
    .footer{
        padding: 30px 0px;
    }
    .footer-col{
        padding: 0 15px;
        margin-bottom: 30px;
    }
}

@media(max-width:574px){
    .footer{
        padding: 20px 0px;
    }
    .footer-col{
        width: 100%;
        padding: 0 15px;
    }

    table td{
        padding: 0;
        padding-bottom: 5px;
    }

    .price{
        padding-left: 0;
    }
}