*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-color: var(--secondary);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

:root {
    --primary: #0D92D2;
    --primary-dark: #113B6A;
    --secondary: #E3EDFA;
    --light: #FFF;
    --dark: #011532;
    --light-grey: #F5F5F5;
}

#burger, #mobile-nav, .home-header {
    transition: .15s;
}
.nav-active {
    left: 0!important;
}
.burger-active {
    transform: rotate(90deg);
}

.subtitle {
    font-family: 'brush-script-std', sans-serif;
    color: var(--primary);
    font-size: 32px;
}