:root{
    --text-color: #282828;
    --theme-color: #15b6b8;
    --error-color: #d93025;
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    border: 0;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border-spacing: 0;
}
body{
    /*background-color: #f6f6f6;*/
    font-family: Raleway;
    -webkit-font-smoothing: antialiased;
}
.header{
    display: flex;
    position: fixed;
    background-color: #fff;
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.04);
    padding: 0px 50px;
    top: 0px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    z-index: 10;
}
.company-logo-wrapper{
    z-index: 1;
}
.company-logo{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}
.menu-toggle-section{
    align-items: center;
    justify-content: center;
    display: none;
}
.menu-toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    height: 28px;
    width: 28px;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
span.menu,
span.menu::after,
span.menu::before{
    position: absolute;
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 20px;
    transition: 500ms cubic-bezier(0.77,0,0.175, 1);
}
span.menu::before{
   margin-top: -8px;
}
span.menu::after{
    margin-top: 8px;
}
.menu-toggle.active > span.menu{
    background-color: transparent;
}
.menu-toggle.active > span.menu::after,
.menu-toggle.active > span.menu::before{
    margin-top: 0px;
}
.menu-toggle.active > span.menu::before{
    transform: rotate(-225deg);
}
.menu-toggle.active > span.menu::after{
    transform: rotate(225deg);
}
.header-nav{
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    flex-grow: 1;
}
.header-nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-nav ul li{
    list-style: none;
    height: 100%;
    margin: 0px 2px;
    position: relative;
}
.header-nav ul li::after{
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 0px;
    background: var(--theme-color);
    display: block;
    border-radius: 1px;
    transition: 0.2s ease-in-out;
}
.header-nav ul li:hover::after, .header-nav ul li.active::after{
    height: 3px;
}
.nav-link{
    text-decoration: none;
    color: var(--text-color);
    padding: 0px 20px;
    font-size: 14px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-wrapper{
    margin-top: 15px;
    margin-bottom: 30px;
}
.footer-section{
    padding: 0px 20px;
}
.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.copyright-text-section{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.copyright-text{
    color: var(--text-color);
}
.developed-powered-by-text{
    padding-top: 10px;
    color: #929292;
    font-size: 14px;
}
.developed-powered-by-text a{
    color: #929292;
    text-decoration: none;
}
.developed-powered-by-text a:hover{
    text-decoration: underline;
}
.social-media-section{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fb-url, .ig-url{
    font-size: 20px;
    color: var(--text-color);
    -webkit-tap-highlight-color: transparent;
    padding: 0px 8px;
}
.ig-url{
    font-size: 22px !important;
}
@media(max-width: 680px) {
    .header{
        height: 50px;
        padding: 0px 20px;
    }
    .company-logo-wrapper{
        width: 100%;
        margin-right: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .company-logo{
        width: 50px;
    }
    .company-logo svg{
        height: 45px;
        width: 45px;
    }
    .menu-toggle-section{
        display: flex;
    }
    .header-nav{
        display: block;
        position: absolute;
        width: 60%;
        height: calc(100vh - 0px);
        background-color: #fff;
        box-shadow: 4px 0px 10px 4px rgba(0, 0, 0, 0.04);
        top: 0px;
        left: -45%;
        transition: 0.5s;
        text-align: left;
        opacity: 0;
        visibility: hidden;
    }
    .header-nav.active{
        transform: translateX(75%);
        opacity: 1;
        visibility: visible;
    }
    .header-nav ul{
        display: block;
        padding-top: 70px;
        margin: 0px 20px;
    }
    .header-nav ul li:hover::after, .header-nav ul li.active::after{
        height: 2px;
    }
    .nav-link{
        display: block;
        padding: 15px;
    }
}