/* ----------------------------------------------------                   Browser CSS Reset                   ---------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* ---------------------------------------------------      HTML5 display-role reset for older browsers      ---------------------------------------------------- */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ----------------------------------------------------                   Full Page Content                   ---------------------------------------------------- */

:root {
    --primary: #7ad8da;
}
body {
    width: 100%;
    margin: 0px;
    background-color: white !important; /*#060e14*/
    font-family: "Poppins" !important;
    color: var(--text);
    overflow-x: hidden;
}
:focus {
    outline: 2px solid var(--primary);
}
.skip-link {
    position: fixed;
    top: -40px;
    left: 0;
    background-color: #000;
    color: #fff;
    padding: 10px;
    z-index: 9999;
}
  
.skip-link:focus {
    top: 0;
}  
* {
    padding: 0px;
    margin: 0px;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
div#wpadminbar.nojq {
    display: none;
}

/* -------------------------------------------------------                    Header                     ------------------------------------------------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000000000000;
    border-bottom: 1px solid transparent;
}
.header-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-main {
    z-index: 950;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header.menuscrolled {
    background: white;
    box-shadow: 0 2px 10px 0 rgba(36,50,66,.075);
    transition: all 0.25s ease;
}
header.active {
    background: white;
    box-shadow: 0 2px 10px 0 rgba(36,50,66,.075);
    transition: all 0.25s ease;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links li a {
    position: relative;
    padding: 0 0 8px 0;
    font-size: 20px;
    display: inline-block;
    color: white;
    font-weight: 700;
    transition: 0.15s ease-in-out, color 0s ease;
}
header.menuscrolled .nav-links li a {
    color: black;
}
header.active .nav-links li a {
    color: black;
}
.nav-links li a::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: -10px;
    opacity: 0;
    background-color: white;
    transition: 0.25s ease-in-out;
}
header.menuscrolled .nav-links li a::before {
    background-color: var(--primary);
}
header.active .nav-links li a::before {
    background-color: var(--primary);
}
.nav-links li a:hover::before {
    bottom: 0;
    opacity: 1;
} 
.nav-links li.current-menu-item a::before {
    bottom: 0;
    opacity: 1;
}
.nav-linkedin {
    padding-bottom: 8px;
    width: fit-content;
    font-size: 22px;
    color: white;
}
header.menuscrolled .nav-linkedin {
    color: black;
}
header.active .nav-linkedin {
    color: black;
}
.nav-linkedin:hover {
    color: var(--primary);
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}
header.menuscrolled .nav-linkedin:hover {
    color: var(--primary);
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}
header.active .nav-linkedin:hover {
    color: var(--primary);
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}
.nav-logo {
    padding-bottom: 4px;
    padding-top: 40px;
    transition: all 0.25s ease;
}
.header-svg {
    position: relative;
    width: 100%;
    max-width: 72px;
    height: auto;
    transition: 0.25s ease-in-out;    
}
header.menuscrolled .header-svg {
    max-width: 55px;
}
header.active .header-svg {
    max-width: 55px;
}
.st0, .st1, .st2, .st3 {
    transition: 0.2s ease, color 0s ease;
    fill: #fff;
}
header.menuscrolled .st0, 
header.menuscrolled .st1, 
header.menuscrolled .st2, 
header.menuscrolled .st3 {
    fill: #000;
}
header.active .st0, 
header.active .st1, 
header.active .st2, 
header.active .st3 {
    fill: #000;
}
.header-svg:hover .st0 {
    transform: translateX(0px) scale(0.8,0.5);
}
.header-svg:hover .st1 {
    transform: translate(-100px,50%) scale(1.6,0.5);
}
.header-svg:hover .st2 {
    transform: translateY(16px);
}
.header-svg:hover .st3 {
    transform: translateY(-16px);
}
.nav-logo.menuscrolled {
    padding-top: 10px;
}
.nav-logo.active {
    padding-top: 10px;
}
.nav-links {
    justify-content: right;
    gap: 40px;
    padding: 50px 0 20px 0;
    display: inline-flex;
    transition: all 0.25s ease;
}
.nav-links.menuscrolled {
    padding-top: 25px;
}
.nav-links.active {
    padding-top: 25px;
}

/* ----------------------------------------------------                    Footer Content                     ---------------------------------------------------- */

footer {
    width: 100%;
    background-color: white;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}
footer i {
    margin: 0 10px;
    padding-bottom: 8px;
    width: fit-content;
    font-size: 22px;
    color: black;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}
footer i:hover {
    color: var(--primary);
}
.footer-links {
    display: flex;
    align-items: center;
}
.footer-links li a {
    position: relative;
    padding: 0 0 8px 0;
    margin: 0 20px;
    font-size: 20px;
    display: inline-block;
    color: black;
    font-weight: 700;
    transition: 0.15s ease-in-out, color 0s ease;
}
.footer-links li a::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: -10px;
    opacity: 0;
    background-color: var(--primary);
    transition: 0.25s ease-in-out;
}
.footer-links li a:hover::before {
    bottom: 0;
    opacity: 1;
} 
.footer-links li.current-menu-item a::before {
    bottom: 0;
    opacity: 1;
}
.footer-tag {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 20px;
}

/* ----------------------------------------------------                    Media Queries                     ---------------------------------------------------- */

@media only screen and (max-width: 1000px) {
    .nav-logo {
        padding-top: 30px;
    }
    .header-svg {
        max-width: 60px;
    }
    header.menuscrolled .nav-logo {
        padding-top: 10px;
    }
    header.active .nav-logo {
        padding-top: 10px;
    }
}
@media only screen and (max-width: 340px) {
    .sc-menu-item {
        font-size: 22px;
        width: 38px;
    }
    .sc-bottom-bar {
        padding: 16px 24px;
    }
}
@media only screen and (max-width: 302px) {
    .footer-links li {
        margin: 0 auto 20px auto;
    }
    .footer-tag {
        margin-top: 0;
    }
}