@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dongle&display=swap');

:root {
    --rubik: "Rubik", sans-serif;
    --dongle: "Dongle", sans-serif;
    --serif: sans-serif;
    --nav-bg: #202830;
    --bd: 1px solid red;
}

html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::selection {
    background: #09f;
    color: #fff;
}
body {
    background: #f1f5f8;
    background: linear-gradient(0, #edbaff, #9effef);
    background: linear-gradient(30deg, #f6dcff, #c8fff6);
    
}
#wlm {
    display: block;
    margin: auto;
    width: 90%;
    height: 250px;
    margin-top: 5px;
}
#nav {
    position: sticky;
    top: 0;
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    padding: 0 15px;
    z-index: 10000;
}
#nav #logo {
    display: flex;
    align-items: center;
}
#nav #logo a {
    display: block;
    color: #6F6F6F;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: var(--rubik);
}
#nav #logo img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}
#nav #nav-links {
    display: flex;
}
#nav #nav-links li {
    list-style: none;
    margin-right: 15px;
}
#nav #nav-links li a {
    color: #b2bac2;
    text-decoration: none;
    font-size: 14px;
    transition: 0.5s;
    font-family: var(--rubik);
}
#nav #nav-links li a:hover {
    color: #fff;
}
#nav #nav-links li a .icon {
    display: none;
}
#nav #hamburger {
    display: none;
}

@media(max-width:467px) {
    * {
        cursor: none;
    }
    #nav #nav-links li a .icon {
        display: inline-block;
        margin-right: 10px;
    }
    #nav #hamburger {
        display: grid;
        place-items: center;
        width: 20px;
        height: 15px;
    }
    #nav #hamburger #menu-line {
        position: relative;
        width: 100%;
        height: 1px;
        background: #fff;
        transition: .5s;
        border-radius: 4px;
    }
    #nav #hamburger #menu-line::before,
    #nav #hamburger #menu-line::after
    {
        border-radius: 4px;
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background: #fff;
        transition: .5s;
    }
    #nav #hamburger #menu-line::before {
        top: -7px;
    }
    #nav #hamburger #menu-line::after {
        bottom: -7px;
    }
    #nav #hamburger.active #menu-line {
        transform: translateX(-45px);
        background: transparent;
    }
    #nav #hamburger.active #menu-line::before {
        top: 0;
        transform: translateX(45px) rotate(-45deg);
    }
    #nav #hamburger.active #menu-line::after {
        bottom: 0;
        transform: translateX(45px) rotate(45deg);
    }

    #nav #nav-links {
        position: absolute;
        display: block;
        top: 0;
        left: -100%;
        width: 230px;
        height: 100vh;
        background: #212429;
        transition: .5s;
    }
    #nav #nav-links.show {
        left: 0;
    }
    #nav #nav-links li {
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
    }
    #nav #nav-links li a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding-left: 20px;
        font-family: var(--rubik);
        color: #b2bac2;
    }

    #nav #nav-links li a:hover {
        color: #f2f2f2;
        background: #349AEF;
        border-top: 1px dotted #ACD5F6;
        border-bottom: 1px dotted #ACD5F6;
    }
}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    position: relative;
    width: 80%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(73,83,137,0.1);
    margin: 20px auto;
    min-height: 200px;
    padding: 20px;
    overflow: hidden;
}

/*.card:before {
    content: "";
    position: absolute;
    top: -185%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    border: 1px dashed #daf0ff;
}*/

.card-icon {
    display: block;
    width: 100px;
    height: 100px;
    margin: 10px auto;
}

.card-heading {
    position: relative;
    font-family: var(--dongle);
    text-align: center;
    color: #495369;
    font-size: 48px;
    line-height: 30px;
}

.card-content {
    text-align: center;
    font-family: var(--rubik);
    margin: 15px 0;
    color: #495379;
}

.card-button {
    position: relative;
    width: 140px;
    height: 40px;
    margin: auto;
}

.card-button a {
    position: relative;
    display: grid;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #008bff, #ff0077);
    background: #00ccff;
    width: 140px;
    height: 40px;
    border-radius: 25px;
    place-items: center;
    font-family: var(--rubik);
    margin: 10px auto;
    transition: .3s;
    cursor: pointer;
}

.card-button:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: #00b9e7;
}

.card-button a:hover {
    /*background: linear-gradient(90deg, #0070cd, #da0066);*/
    transform: translateY(4px);
    
}


.about-heading {
    /*transform: skew(-10deg);*/
    text-align: center;
    font-family: var(--dongle);
    font-size: 48px;
    color: #333e4a;
}

.about-content {
    margin: 20px auto;
    width: 80%;
    font-family: var(--rubik);
    color: #495385;
}

.about-image {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    padding: 5px;
    border: 1.5px dashed #0cf;
}

#contact-us-link {
    display: block;
    margin: 10px 0 0 0;
    color: #495385;
}
#about {
    position: relative;
}

#wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 200px;
    margin: 0;
    pointer-events: none;
    
}

#wave-container {
    position: relative;
    width: 100vw;
    height: 130px;
}
