html {
    font-size: 11pt;
}

body {
    font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
    font-weight: 400;
    position: relative;
    background: #fff;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0;
    padding: 0;
    display: flex;
	flex-flow: column nowrap;
}

.quote {
    font-family: Roboto;
	font-weight: 100;
	font-size: 70pt;
	line-height: 1em;
	color: #007bc2;
}

blockquote {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.1em;
    padding-left: 2.5rem;
	z-index: 2;
	color: #777;
    text-align: right;
	max-width: 30em;
}

blockquote:before,
blockquote:after {
	font-family: serif;
	color: #777;
	z-index: 1;
}

blockquote:before {
	content: "\00ab";
}

blockquote:after {
	content: "\00bb";
}

figure {
	position: relative;
}

figure figcaption {
	color: #005687;
	margin-bottom: 1em;
}

a {
    position: relative;
    color: inherit;
    text-decoration: none;
}

#menu .active {
	color: #007bc1;
}

strong {
    font-weight: 600;
}

a:hover,
a.open {
    color: #d7d7d7;
}

a:after,
[data-menu]:after {
    height: 2px;
    background: #0058c4;
    width: 0%;
    content: "";
    display: inline-block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: width 1s ease-in-out 0s;
}

a:hover:after,
a.open:after,
[data-menu].open:after {
    opacity: 1;
    width: 100%;
    transition: width .3s ease-in-out 0s;
}

a.barelink:after,
a.barelink.open:after {
    display: none;
}

.inline,
#menu .inline {
    display: inline-block;
}

ul.form-fields {
    display: flex;
    flex-flow: column nowrap;
}

.form-fields {
	line-height: 2em;
	margin: 0 0 2em 0;
}

.form-fields .fieldz {
	display: flex;
	flex-flow: row nowrap;
    justify-content: space-between;
}

.form-fields .fieldz.textarea {
	flex-direction: column;
}

.form-fields .field2 {
	width: 100%;
	height: 1px;
	overflow: hidden;
	opacity: 0.01;
}

.form-fields li {
    margin-bottom: .5em;
}

.form-fields label {
	padding-right: 1em;
	white-space: nowrap;
}

.form-fields input,
.form-fields textarea {
	flex: 1 0 auto;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
    color: inherit;
    line-height: inherit;
    font: inherit;
    font-family: Roboto;
    letter-spacing: 0.01em;
    padding: 0 1em;
    transition: background .17s linear 0s, border .17s linear 0s;
}

.form-fields .textarea-wrapper {
    flex: 1 0 auto;
    display: flex;
    line-height: 1.8em;
    background-color: #fff;
    background-image: linear-gradient(to bottom, grey 1px, transparent 1px);
    background-size: 1.8em 1.8em;
}

.form-fields textarea {
    padding: 0 1em;
    color: #282828;
}

.form-fields input:focus {
    outline: 0;
    background: rgba(255, 255, 255, .15);
    border-color: #ffffff;
}

.form-fields button {
    background: transparent;
    border: 0;
    padding: 1em 1.5em;
    color: #fff;
}

.contact-form {
    position: relative;
}

.contact-form button {
    text-align: right;
}

.message-container {
	font-weight: 400;
	padding: 1em 1.5em;
	border: 1px solid #e7e7e7;
    border-radius: 4px;
    margin-bottom: 1em;
}

.message-container.message-error {
    border-color: #f20;
    background: #f1e3e0;
}
.message-container.message-notice {
    border-color: green;
    background: #e3f3e3;
}
.alert {
	margin: 10px 0;
}

.alert-danger {
	color: #f20;
}

.alert-success {
	color: green;
}

.hflex {
	display: flex;
	flex-flow: row wrap;
}

.wordmark-figure {
	display: flex;
	flex-flow: row wrap;
}

.owl-carousel {
    position: relative;
    margin: 0 auto;
}

#owl-photo {
    max-width: 1024px;
}

@media screen and (min-width: 2048px) {
    #owl-photo {
        max-width: 1650px;
    }
}

.owl-nav {
	text-align: center;
	font-size: 6rem;
	font-weight: 300;
	color: #007ac1;
}

body .owl-carousel .owl-nav button.owl-prev,
body .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 33%;
    opacity: .25;
    padding: 30px !important;
}

body .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
body .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

body .owl-carousel .owl-nav button.owl-prev:hover,
body .owl-carousel .owl-nav button.owl-next:hover {
    opacity: .7;
    transition: all .17s linear 0s;
}

body .owl-carousel .owl-nav button.owl-prev:hover {
    left: 10px;
}

body .owl-carousel .owl-nav button.owl-next:hover {
    right: 10px;
}


header {
    position: relative;
    z-index: 6;
    display: flex;
    flex-flow: column nowrap;
    flex: 1 0 20vh;
}

header > .constrained {
	height: 100%;
}

header .logo {
	margin-left: -160px;
	/*margin-top: -28px;
	margin-bottom: -28px;*/
}

header .icons {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
}

.logo a {
    display: inline-block;
}

.logo a:after,
.social-icons a:after {
    display: none;
}

.logo img {
    width: auto;
    height: 18vh;
    min-height: 130px;
}

.inline-svg {
    width: auto;
    line-height: 0.7em;
    display: inline-block;
    max-width: none;
    height: 0.7em;
    margin: 0 .3em;
}

.mobile-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 1.7em;
    margin-left: 6px;
}

.button-burger {
    width: 2em;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    transition: all .5s ease-in-out;
    pointer-events: none;
}

.button-burger::before,
.button-burger::after {
    content: '';
    position: absolute;
    width: 2em;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    transition: all .5s ease-in-out;
}

.button-burger::before {
    transform: translateY(-10px);
}

.button-burger::after {
    transform: translateY(10px);
}

.mobile-toggle {
    display: none;
}

/* ANIMATION */
.mobile-toggle.open .button-burger {
    transform: translateX(0em);
    background: transparent;
    box-shadow: none;
}

.mobile-toggle.open .button-burger::before {
    transform: rotate(45deg) translate(0.05em, 0.05em);
}

.mobile-toggle.open .button-burger::after {
    transform: rotate(-45deg) translate(-0.05em, 0.05em);
}

header.talentid-theme > .constrained:after {
    bottom: 0;
    width: 200%;
    opacity: .66;
    height: 1px;
    content: "";
    display: block;
    left: -110%;
    right: 0;
    background: #fff;
    position: relative;
    /* overflow: hidden; */
}



#athlete-container {
    position: relative;
    height: 60vh;
    display: flex;
    overflow: hidden;
    justify-content: center;
    z-index: 5;
}

#athlete-container>* {
    user-select: none;
    pointer-events: none;
}

#athlete-container {
    height: auto;
}

#athlete-container img {
	opacity: 1;
    max-width: none;
	max-height: 70vh;
	width: auto;
}

#athlete-container .tdlogo {
	position: absolute;
	width: auto;
	height: 80%;
}

.athlete-bg {
    transition: transform .2s linear 0s;
}

.athlete-bg img {
    max-height: 100%;
    width: auto;
}

#logo-container {
    position: absolute;
    top: 0vh;
    left: 0;
    right: 0;
    z-index: 6;
    pointer-events: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

#logo-container img {
    max-width: none;
}

#athlete0 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    max-width: 35vw;
    margin: 0 auto;
    justify-content: center;
}

#athlete-container img {
    opacity: 1;
}

#athlete0 img {
    max-width: 100vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

#athlete1 {
    align-self: center;
    width: 25vw;
    z-index: 2;
}

#athlete2 {
    /* position: absolute; */
    right: 0;
    left: 0;
    top: 0;
    z-index: 4;
    margin-left: -9%;
}

#athlete3 {
    align-self: center;
    width: 25vw;
    z-index: 3;
    margin-left: -6%;
}

#content-container {
    display: flex;
    flex-flow: row nowrap;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .8) 5em);
    z-index: 5;
    position: relative;

}

.content-pad {
    flex: 1 0 146px;
    display: flex;
}

.constrained {
    width: 80vw;
    max-width: 55rem;
    margin: 0 auto;
}

.constrained.wide {
    width: 90vw;
    max-width: 65em;
}

#content {
    position: relative;
    flex: 1 1 80vw;
    font-weight: 400;
    padding: 0 0 .5em 0;
    line-height: 1.5em;
    margin: 0 auto;
    z-index: 2;
}

.constrained.wide #content {
    max-width: none;
}

.constrained.wide #content h1 {
	margin-left: 2em;
	font-weight: 600;
	transform: skew(-6deg);
	font-size: 3.3em;
	text-align: center;
}

#content .biotext {
	margin: .5em 0 1.5em 0;
	font-size: .95rem;
}

#content p {
    color: #777777;
    font-size: 1.2rem;
    line-height: 1.25em;
    margin: 1em 0;
}

.biopics {
	justify-content: center;
    margin-bottom: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: .5em 0 .5em 0;
    line-height: 1em;
    color: #0091d2;
}

h1,
h2 {
    font-family: "Roboto Condensed";
}

h1 {
	font-size: 3rem;
	font-weight: 400;
	font-family: "Roboto";
    color: #007BC2;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25em;
    margin: 1em 0;
	font-family: "Roboto Condensed";
	transform: skew(-6deg);
}

#content h1 {
    margin-top: .5em;
    margin-bottom: .5em;
    padding-right: .5em;
}

h1 .small {
    font-size: .85em;
}

small {
    font-size: .75em;
}

#content .emphasis {
    color: #00976f;
}

.talentid-theme {
    position: relative;
    background: linear-gradient(80deg, #000 0%, #007bc2 90%);
    font-size: .95rem;
    line-height: 1.4em;
    color: #fff;
}

footer {
    display: flex;
    flex-flow: column nowrap;
    flex: 1 0 30vh;
    z-index: 9;
}

footer .social-media {
    margin-top: 1em;
    margin-bottom: 3em;
}

footer .social-media img {
    margin-right: 0.3em;
}

footer .icons {
    margin: 1em 0 1em 0;
}

footer .follow-us {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    letter-spacing: 1.5px;
    font-size: 1.3em;
    color: #0058c4;
}

footer hr {
    border: 0;
    border-top: 2px solid #0058c4;
    flex: 1;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer .row1 {
    display: flex;
    padding: 1em 1em 0 1em;
    font-weight: bold;
    line-height: 2em;
    background: linear-gradient(90deg, #000 0%, #007bc2 100%);
    border-bottom: 1px solid white;
}

footer .row2 {
    padding: 1em;
    flex: 1;
    display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}

footer .contact .address {
    flex: 1;
    line-height: 1.6em;
    padding-left: calc(10rem - 1em);
}

footer .smallheader {
	padding-left: 10rem;
}

footer .logo {
    margin-top: -30px;
	margin-bottom: -30px;
}

header .social-media {
    position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-content: space-between;
    height: 100%;
}

header .languages {
    position: absolute;
    top: 6px;
    right: 0;
    display: flex;
	flex-flow: row nowrap;
    gap: 12px;
}

.social-icons .inline-svg {
    height: 1.7em;
    transition: transform .17s linear 0s, opacity .17s linear 0s;
}

.social-icons .inline-svg:hover {
	transform: scale(1.15);
	opacity: .75;
}

.social-icons img {
    display: inline;
    width: 1.7em;
    height: auto;
    margin: 0 3px;
}

main {
    z-index: 2;
    padding-bottom: 2em;
}

.style-bio #content h1 {
    color: #b3b3b3;
	font-weight: 300;
	font-size: 4.4rem;
	margin: 1em 0 1em 0;
    text-indent: -1em;
}

#page-bg-container {
    position: relative;
    z-index: -1;
}

#page-bg-container img {
	max-height: 100%;
	width: auto;
	max-width: 100%;
	height: auto;
}

#content p.emphasis {
	color: #0091d2;
	font-size: 1.2rem;
}

.feature-list ul {
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
}

.feature-list.row2 ul {
    flex-flow: row nowrap;
    gap: 20px;
}

.feature-list.row2 li {
    flex: 1 0 50%;
}

.feature-list li {
    flex: 1 0 30%;
	position: relative;
    overflow: hidden;
    transition: opacity .17s linear 0s;
}

.feature-list.row4 li {
    flex: 1 0 20%;
}

.feature-list figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgb(11 137 185 / 47%) 0%, rgb(11 137 185 / 47%) 100%);
	color: white;
	padding: 0.2em;
	text-align: center;
	margin: 0;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3em;
	height: 3.1em;
    transition: all .3s linear 0s;
}

.feature-list img {
	display: block;
    width: 100%;
    line-height: 1px;
    transition: all .3s linear 0s;
    transform-origin: 50% 50%;
}

.feature-list li:hover {
    opacity: .8;
}

.feature-list li:hover img {
    transform: scale(1.06);
}

.feature-list li:hover figcaption {
	background: linear-gradient(0deg, rgb(10 54 70 / 66%) 0%, rgb(114 173 196 / 25%) 100%);
	font-size: 1.8rem;
	text-shadow: 0px 0px 4px black;
}

#anthropogradients {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 30em;
    overflow: hidden;
}

#anthropogradients .grad1,
#anthropogradients .grad2,
#anthropogradients .grad3 {
    height: 40vh;
	margin-bottom: 10vh;
}

.grad1 {
    background: linear-gradient(80deg, #000 0%, #007bc2 100%)
}

.grad2 {
    background: linear-gradient(80deg, #000 0%, #07A99C 100%)
}

.paragraphs {
    color: #777777;
}

.paragraph-motto {
	font-size: 1.3em;
    font-weight: 600;
	line-height: 1.5;
    font-style: italic;
	margin: 2em auto 2em auto;
    color: #007AC1;
}

.paragraph-photo {
    display: flex;
    flex-flow: row nowrap;
}

.paragraph-gradient {
    color: #fff;
	padding-top: 3em;
	height: 100%;
	position: relative;
	line-height: 1.5em;
	font-size: 1.2em;
    margin-bottom: 1em;
}

.paragraph-gradient .grad1,
.paragraph-gradient .grad2,
.paragraph-gradient .grad3 {
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    z-index: -1;
}


#tip {
    position: fixed;
	top: 25vh;
	max-width: 45em;
	z-index: 40;
	background: #f7f8f9;
    color: #4d4d4d;
    border: 1px solid #777777;
	left: 0;
	right: 0;
	padding: 1em;
    line-height: 1.5em;
	box-shadow: 0 10px 42px rgb(0 16 64 / 50%);
    font-size: 1.25rem;
	border-radius: 4px;
	margin: 0 auto;
	opacity: 0;
    transform: scale(.3);
    pointer-events: none;
    transition: all .17s linear 0s;
}

#tip .tip-container {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4em;
}

[data-tip] {
    cursor: pointer;
}

#tip.open {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

#tip .close {
	position: absolute;
    right: 3em;
    cursor: pointer;
    padding: 0px 15px 15px 15px;
    z-index: 10;
    transition: transform .17s linear 0s;
}

#tip .close:hover {
    transform: scale(1.25);
}

#tip h2 {
    margin: 0 0 1em 0;
}

#tip ul {
    margin: .5em;
}

#tip p {
    margin-bottom: .5em;
}

ul.list {
    list-style-type: disc;
    list-style-position: inside;
}

ul.style1 {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    padding: 10px 0;
    font-weight: 400;
    color: #fff;
}

ul.style1 li {
    padding: .3em 0 0 0;
}

ul.style1 li a {
	display: block;
	color: inherit;
	line-height: 1.5em;
	padding: .5em 2.5em;
	background: #007AC1;
	margin-bottom: 0.3em;
}

ul.style1 li:hover a:after {
    background-color: transparent;
}

.grad2 ul.style1 li a {
    background: #07A99C;
}

ul.style1 hr {
    height: 1px;
	border: 0;
	background: #666666;
    transform: translateX(-21vw);
	max-width: calc(35em + 50vw);
}

ul.style2 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 3%;
}

ul.style2 .cell-header {
	margin: 6px 0;
	line-height: 1.25em;
	height: 7.5em;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
}

ul.style2 h2 {
	color: #333333;
	font-size: 1.25rem;
	margin: 0;
}

ul.style2 li {
	display: flex;
	flex-flow: column nowrap;
	flex: 1 0 33.3%;
}

ul.style2.row4 li {
    flex: 1 0 24%;
}

ul.style2 img {
    max-width: 100%;
    height: auto;
}

ul.style2 p {
    color: #4d4d4d;
    font-weight: 400;
    line-height: 1.25em;
    margin-top: .5em;
}

.ypostiriksi h1,
.ypostiriksi h2 {
    color: #07A99C;
}

@media (-webkit-min-device-pixel-ratio: 2) and (min-width: 1366px), (min-resolution: 192dpi) and (min-width: 1366px) { 

    html {
        font-size: 15pt;
    }

    .constrained {
        max-width: 60em;
    }

    h1 {
        font-size: 4em;
        margin: .3em 0 .3em 0;
    }

    h2 {
        font-size: 3em;
    }
}

@media screen and (max-width: 960px) {

    html {
        font-size: 13pt;
    }

    header,
    footer {
        flex: 1 0 auto;
    }

    h1 {
        word-break: break-word;
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }

    main {
        padding: 0;
    }

    main p {
        padding: 0 6px;
    }

    #page-bg-container {
        margin: 0 !important;
        transform: none !important;
    }

    .constrained {
        width: 90vw;
    }

    .constrained.wide {
        width: 100%;
        padding: 0 1em;
    }

    .front-carousel1 {
        padding: 0 10px;
    }

    .front-carousel2 {
        margin-bottom: 1.5em;
        padding: 0 10px;
    }

    .wordmark-figure {
        flex-flow: column wrap;
    }

    .paragraph-photo {
        flex-flow: column nowrap;
    }

    .paragraph-photo img {
        width: 100%;
    }

    .inline-md {
        margin-top: 0 !important;
    }

    .bg-lg {
        min-height: 450px;
        background-size: cover !important;
    }

    header .logo,
    footer .logo {
        margin: 0;
    }

    header .logo {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: -16px;
    }

    footer .contact .address {
        padding-left: 0;
    }
    
    footer .smallheader {
        padding-left: 0;
    }

    footer .logo {
        align-self: flex-end;
    }

    blockquote {
        font-size: 1.3rem;
        padding-left: .5rem;
    }

    ul.style1 li a {
        padding: .5em 1em;
    }

    #content {
        flex: 0 1 70vw;
        max-width: none;
        padding: 0 10px;
    }

    #content h1 {
        margin-left: 0;
        font-size: 1.9em;
        margin: 1em 0.5em;
    }

    h2 {
        font-size: 2rem;
        padding: 0 6px;
    }

    .style-bio #content h1 {
        font-size: 2.5em;
        text-indent: 0;
        padding: 0 3vw;
        text-align: center;
    }

    .constrained.wide #content h1 {
        margin: 1em .5em;
        font-size: 2em;
    }

    main:before {
        content: "";
        display: none;
        background: linear-gradient(180deg, #000 0%, #007bc2 50%, #000 100%);
        width: 6px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 1px;
        z-index: 5;
    }

    .content-pad {
        flex: 0 0 100px;
    }

    .svg-deco1 {
        width: 15vw;
    }

    .quote {
        font-size: 42pt;
    }

    #athlete1 {
        width: 60vw;
        align-self: center;
    }

    #athlete2 {
        width: 60vw;
        align-self: center;
    }

    #athlete3 {
        width: 60vw;
        align-self: center;
    }

    .feature-list li, .feature-list.row4 li {
        flex: 1 0 30%;
    }

    #tip {
        top: 3em;
        max-height: 90vh;
        max-height: calc(100vh - 6em);
        overflow-y: scroll;
    }

    #tip .close {
        position: static;
        float: right;
    }
    
    #tip .tip-container {
        max-height: none;
        padding-right: 6px;
    }

    #tip.open ~ main {
        pointer-events: none;
    }

}

@media screen and (max-width: 760px) {

    .hide-md {
        display: none;
    }

    .flatten-md {
        flex-direction: column;
        position: relative !important;
        margin-bottom: 1em;
    }

    .biopics > a {
        width: 50%;
    }

    header .constrained {
        padding-bottom: 0;
    }

    header .social-media {
        align-items: center;
        padding-bottom: 6px;
    }

    header .icons {
        padding-top: 1em;
    }

    .mobile-toggle {
        display: flex;
        padding-left: 24px;
        padding-right: 10px;
    }

    header.talentid-theme > .constrained:after {
        display: none;
    }

    .fixed .mobile-toggle {
        position: fixed;
        top: 0;
        right: 0;
        background: #0091d2;
        z-index: 10;
        padding: 1.5em 1em;
        justify-content: right;
        transition: padding .17s linear 0s;
    }

    .feature-list li,
    .feature-list.row4 li {
        flex: 1 0 48%;
    }

    .feature-list.row2 li {
        flex: 1 0 100%;
    }

    ul.style2 {
        flex-direction: column;
        gap: 40px;
    }

    ul.style2 h2 {
        margin-bottom: 10px;
    }

    ul.style2 .cell-header {
        height: auto;
        justify-content: center;
    }

    ul.style2 p {
        padding: 0 1em;
        line-height: 1.5em;
    }

    ul.style2 img {
        width: 100%;
    }

}

@media screen and (max-width: 640px) {

    html {
        font-size: 14pt;
    }

    #content {
        padding-left: 0;
        padding-right: 0;
    }

    .constrained {
        width: 100%;
        padding: 0;
    }

    .constrained.wide {
        padding: 0 6px;
    }

    .feature-list ul {
        gap: 6px;
    }

    .feature-list li, .feature-list.row4 li {
        flex: 1 0 100%;
    }


    footer .row1 {
        justify-content: center;
        align-items: center;
    }

    footer .contact {
        flex-flow: column nowrap;
        align-items: center;
    }

    footer .icons {
        margin: 1em 0 1em 0;
        display: flex;
        justify-content: center;
    }

    footer .logo {
        align-self: center;
    }

    footer .logo img {
        margin-bottom: -26px;
    }
}

@media screen and (max-width: 480px) {

}


@media screen and (max-width: 960px) {



}