﻿body {
    font-family: 'Noto Sans', sans-serif;
}
*{


    padding:0;
    margin:0;
}
.spaceBetween{
    margin-bottom:30px;
}
nav {
    margin: auto;
    background: #004242;
    padding: 5px 20px;
}
ul {
    margin:0;
    padding:0;
    list-style-type: none;
}

a{
    padding:0;
    margin:0;
    color:white;
    text-decoration:none;
}
    a:hover {
        color: #d4f9f9;
    }
.menu li {
    font-size: 16px;
    padding: 10px 5px;
}
.menu li a{
    display:block;
}
.logo a {
    font-size: 22px;
    font-family: 'Times New Roman';
    text-decoration: none;
    color: white;
    width: 285px;
}
.fa-handshake {
    font-size: 18px;
}
.button {
    border-bottom: 1px white solid;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    left: 2%;
    text-align: left;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.text-box h1 {
     font-size: 24px;
 }
.text-box h5 {
    font-size: 16px;
    width:75%;
}

.text-box p {
    font-size: 16px;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #99004d;
    background: #cc0066;
    padding: 7px 12px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}
    .hero-btn:hover {
        text-decoration: none;
        border: 1px solid #99004d;
        background: #99004d;
        color: #fff;
    }

.disclaim-btn {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    border: 1px solid #99004d;
    background: #cc0066;
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

    .disclaim-btn:hover {
        text-decoration: none;
        border: 1px solid #99004d;
        background: #99004d;
        color: white;
    }
.hero-btn a:hover {
    color:white;
}


.modal-header {
    background-color: #cc0066;
    color: black;
}

.modal-content {
    background-color: white;
    color: black;
}
.disclaimerFont {
    font-size:12px;
}




/* Mobile Menu*/
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.toggle{
    order:1;  
    cursor: pointer;
}
.item {
    width: 100%;
    text-align: center;
    order: 3;
    display: none;
    font-weight:600;
}
.item.button {
    order: 2;
 }
.item.active {
    display: block;
}

.bars{
    background:white;
    display:inline-block;
    height:2px;
    position:relative;
    width:18px;
}

.bars::before,.bars::after {
    background: white;
    content:"";
    display: inline-block;
    height: 2px;
    position: absolute;
    width: 18px;
}
.bars::before{
    top:5px;
}
.bars::after {
    top:-5px;
}






/* Tablet Menu */
@media all and (min-width:600px) {
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
    }

    .item.button {
        width: auto;
        order: 1;
        display: block;
    }

    .toggle {
        order: 2;
    }

    .button{
        border: 0;
    }

        .button a {
            margin-right: 20px;
            text-decoration: none;
            padding: 5px 10px;
            background: #004242;
            border: 2px solid #d4f9f9;
            border-radius: 25px;
            color: #d4f9f9;
        }

    .button.secondary a {
        background: transparent;
    }

    .button a:hover {
       
    }

        .button:not(.secondary) a:hover {
            background: #d4f9f9;
            border-color: #d4f9f9;
            color: #004242;
        }

    .button.secondary a:hover {
        color: black;
        background: white;
    }
    .text-box {
        width: 90%;
        color: #fff;
        position: absolute;
        left: 2%;
        text-align: left;
        top: 40%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .text-box h1 {
        font-size: 30px;
    }
    .text-box h5 {
        font-size: 20px;
        width: 60%;
     }

    .text-box p {
        font-size: 18px;
    }

    .hero-btn {
        display: inline-block;
        text-decoration: none;
        color: #fff;
        border: 1px solid #99004d;
        background: #cc0066;
        padding: 7px 12px;
        font-size: 18px;
        position: relative;
        cursor: pointer;
        border-radius: 5px;
        font-weight: 600;
    }
    .disclaim-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        text-decoration: none;
        color: #fff;
        border: 1px solid #99004d;
        background: #cc0066;
        padding: 10px 16px;
        font-size: 14px;
        cursor: pointer;
        border-radius: 5px;
        position: relative;
    }
    .disclaimerFont {
        font-size: 12px;
    }
    .fa-handshake {
        font-size: 22px;
    }
}

/* Desktop Media*/
@media all and (min-width:991px){
    .item{
        display:block;
        width:auto;
    }
    .toggle{
        display:none;
    }
    .logo{
        order:0;
    }
    .item{
        order:1;
    }
    .button{
        order:2;
    }

    .menu li{
        padding:10px 25px;
    }

    .menu li.button{
        padding-right:0;
    }
    .text-box {
        width: 90%;
        color: #fff;
        position: absolute;
        left: 2%;
        text-align: left;
        top: 40%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .text-box h1 {
        font-size: 42px;
    }
    .text-box h5 {
        font-size: 24px;
        width: 90%;
     }

    .text-box p {
        font-size: 24px;
    }

    .hero-btn {
        display: inline-block;
        text-decoration: none;
        color: #fff;
        border: 1px solid #99004d;
        background: #cc0066;
        padding: 7px 14px;
        font-size: 20px;
        position: relative;
        cursor: pointer;
        border-radius: 5px;
        font-weight: 600;
    }
    .disclaim-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        text-decoration: none;
        color: #fff;
        border: 1px solid #99004d;
        background: #cc0066;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        position: relative;
    }
    .disclaimerFont {
        font-size: 14px;
    }
    .fa-handshake{
        font-size: 28px;
    }
}


.header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right, #005c5c 35%, rgb(40, 81, 164,0.2), rgb(0, 0, 0,0.1)), url('../Images/KKI Kids Group Final.png');
    background-size: cover;
    background-position: center;
    position: relative;
}




