:root{
    --color-1:#0072af;
    --color-2:#97b6d2;
    --color-3:#1a1a1a;
    --color-white: white;
    --color-light: white;
    --color-grey:#3c3c3c;
    --color-dark: var(--color-3, #1a1a1a);

    --color-bg: var(--color-white, white);
    --color-text:var(--color-dark );
    
    --footer-height:0px;
    --footer-padding:0px;
    --social-size:45px;
    --gepa-bottom-distance:50px;
}
*{
    box-sizing: border-box;
    /* pointer-events: none; */ 
}
img{
    max-width: 100%;
}
h1,h2,h3,h4 {
    
}
code {

}
a{
    text-decoration: none;
    /*pointer-events: none;*/
}
/* unvisited link */
a:link {
    color: var(--color-dark);
    /*pointer-events: none;*/
}
/* visited link */
a:visited {
    color: var(--color-dark);
}
/* mouse over link */
a:hover {
    color: var(--color-grey);
}
/* selected link */
a:active {
    color: #c92d1c;
    color:var(--color-grey);
}
h1 > a,
h1 > a:link,
h1 > a:visited,
h1 > a:hover,
h1 > a:active{
    color:inherit;
}
.svg-filter-container {
    position: absolute;
    height: 0;
    overflow: hidden;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Conqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently not supported by any browser */
    standard-user-select: none;
}
.nopointer {
    pointer-events: none;
}
.bold{
    font-weight: bold;
}
.flex{
    display: flex;
}
html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}
html{
    height: 100%;
    max-height: 100%;
}
body{
    color:var(--color-text);
    font-family: "Open Sans Condensed",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";;
}
header{

}
main {
    background-image: url(../img/bg.webp);
    background-attachment: fixed;
    background-size: cover;
    min-height: calc(100vh - var(--footer-height, 120px));
    position: relative;
    padding: 10% 5% 0;
    overflow: visible;
}
.content-wrapper{
    position: relative;
    z-index: 10;
    width: max-content;
}
h1{
    font-weight: 300;
    text-transform: uppercase;
    font-size: 103px;
    color: var(--color-1);
    margin: 0 0 20px;
    transition: all 0.4s ease-in;
    -webkit-text-stroke: 1.5pt var(--color-1);
}
.img-wrapper{
    position: absolute;
    bottom: 0;
    left:0;
    right:0;
    top:0;
    overflow: hidden;
}
.img-wrapper > img,
.img-wrapper > a > img{
    /*max-width: 78%;*/
    display: block;
    position: absolute;
    right: -30%;
    height: auto;
    max-height: 90%;
    bottom: 0;
    transform: translate(-22vw, 0);
    min-height: 100%;
    max-width: unset;
}
.item{
    font-size: 27px;
    text-shadow: 1px 1px 3px white;
}
.item .bold{
    text-transform: uppercase;
}
.social{
    margin-top: calc(var(--social-size) / 2);
    width: calc(3 * var(--social-size));
    justify-content:space-between;
    padding-bottom: 10px;
}
.social-btn{
    cursor:pointer;
}
.instagram-logo,
.facebook-logo{
    background-size: contain;
    display: block;
    width: var(--social-size);
    height: var(--social-size);
    background-repeat: no-repeat;
    background-position: center;
}
.instagram-logo{
    background-image: url(../img/Instagram.svg);
}
.facebook-logo{
    background-image: url(../img/facebook.svg);
}
#gepa{
    position: absolute;
    bottom: var(--gepa-bottom-distance, 35px);
    left: 5%;
}
footer {
    height: var(--footer-height, 120px);
    padding: var(--footer-padding) 5%;
    position: relative;
}
.footer-wrapper{
    justify-content: space-between;
    align-items: flex-end;
}
.footer-left{
    
}
.footer-left > span {
    font-size: 15px;
    font-weight: bold;
    /*width: 122px;*/
    max-width: 100%;
    display: inline-block;
}
.footer-left > a {
    height: calc(120 - (2 * var(--footer-padding)) - 20px);
    display: block;
    position: absolute;
    bottom: var(--gepa-bottom-distance, 35px);
    max-width: 100vw;
    right: 5%;
}
.smi-logo{
    height: calc(120 - (2 * var(--footer-padding)) - 20px);
	display: block;
    max-width: 240px;
}
.footer-right{
    flex-direction: column;
    
}
.footer-top{
    font-weight: bold;
    font-size: 22px;
    text-align: justify;
}
.footer-bottom{
    font-size: 19px;
    justify-content: space-between;
    font-style: normal;
}
.contact-type{
    font-family: "Open Sans";
    font-weight: bold;
}
.contact-content{
    
}
.contact-content > a{
    text-decoration: none;
}
.privacy{
    position: absolute;
    bottom: 0;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    font-size: 12px;
    right: 5%;
}
.privacy > span{
    
}
.privacy > span > a{
    text-decoration: none;
}

@media screen and (min-width: 1420px) {
    .img-wrapper > img,
    .img-wrapper > a > img {
        left: 50%;
        position: absolute;
        transform: translate(-50%,0);
    }
    h1{
        font-size: 83pt;
    }
}
@media screen and (min-width: 2000px) and (min-height: 1400px) {
    :root{
        --gepa-bottom-distance:100px
    }
    h1{
        font-size: 7.1vw;
    }
    .item {
        font-size: 1.2vw;
    }
    .footer-left > span {
        font-size: 0.78vw;
    }
    .footer-top {
        font-size: 1.145vw;
    }
    .footer-bottom{
        font-size: 0.99vw;
    }
    footer{
        /* height: calc(9% + 2.5vw); */
        /* padding: 0.75vw 5%; */
    }
    main{
        /* min-height: calc(100vh - 9% - 2.5vw); */
    }
    .smi-logo {
        /* height: 3vw; */
    }
    .instagram-logo, .facebook-logo {
        /*--social-size:2.344vw;*/
    }
    .social{
        --social-size:2.344vw;
    }
    .img-wrapper > img,
    .img-wrapper > a > img{
        height: 90%;
    }
    #gepa{
        /* top: -2vw; */
        font-size: 1vw;
    }
    
    .privacy{
        font-size: 1vw;
    }
    .smi-logo{
        max-width: 100%;
    }
}
@media screen and (max-width: 900px) {
    main {
        
    }
    .img-wrapper > img,
    .img-wrapper > a > img {
        right: 0;
        left: unset;
        transform:translate(0,0);
        max-height: 110%;
        max-width: unset;
        /*max-height: 150%;*/
        /*bottom: -42%;*/
    }
    footer{
    }
    .footer-wrapper {
        flex-direction: column;
        /*justify-content: center;*/
        align-items: center;
        gap: 10px;
		align-items: start;
    }
    .footer-left{
        /*align-self: baseline;*/
    }
    .footer-right{
        /*width: 100%;*/
    }
    .footer-top{
        text-align: center;
		text-align: left;
    	font-size: 16px;
    }
    .privacy{
        left:unset;
        /*transform: translateX(-50%);*/
        right: 5%;
    }
}
@media screen and (max-width: 800px) {
    h1{
        font-size: 90pt;
        width: 71%;
        line-height: 1em;
    }
    .item{
        display: flex;
    }
    .item > span {
        /*background-color: #fff8;*/
        /*padding: 0px 6px;*/
        /*margin-top: 2px;*/
    }
    .item > span + span{
        padding-left: 4px;

		padding-bottom: 2px;
		margin-top: -1px;
		padding-top: 1px;
    }
}
@media screen and (max-width: 630px) {
    main {
        /* min-height: calc(100vh - var(--footer-height, 120px) - 90px); */ 
    }
    h1{
        font-size: 80px;
        width: 384px;
        max-width: 100%;
        /*margin: 5% 0;*/
        padding-top: 5%;
    }
    footer{
        /* height: 210px; */
    }
    .footer-wrapper {

    }
    
    .footer-left{

    }
    .smi-logo {
        height: 40px;
    }
    .footer-right{

    }
    .footer-top{

    }
    .footer-top > span{
        display: block;
    }
    .footer-bottom{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .contact-element{

    }
    footer .spacer{
        display: none;
    }
    .contact-element:not(.spacer){
        width: 49%;
    }
    .contact-element:nth-child(4n-1){
        /*text-align: right;*/
    }
    .contact-element:nth-child(1){

    }
    .contact-element:nth-child(2){

    }
    .contact-element:nth-child(3){

    }
    .contact-element:nth-child(4){
        /*display: none;*/
    }
    .contact-element:nth-child(5){

    }
    .contact-element:nth-child(6){

    }
    .contact-element:nth-child(7){

    }

}
@media screen and (max-height: 715px){
    main {
        padding: 14.5vh 5% 0;
        padding-top: calc(100vh - 612px);
    }
}
@media screen and (max-height: 715px) and (min-width: 799.99px){
    .img-wrapper > img,
    .img-wrapper > a > img {
        max-height: 150%;
        bottom: -42%;
    }
}
@media screen and (max-height: 627px){
    main {
        /*padding: 2% 5%;*/
    }
    h1{
        font-size: 90px;
    }
    .social{
        margin-top: calc(var(--social-size) / 3);
    }
}
@media screen and (max-height: 552px){
    h1{
        margin-bottom: 8px;
    }
    .item{
        font-size: 21px;
    }
}
@media screen and (max-height: 460px){
/*@media screen and (max-width: 800px){*/
    main {
        padding: 0 5%;
        height: calc(100vh - 83px);
    }
    h1{
        font-size: 9.4vw;
        font-size: 74px;
        margin-bottom: 0;
        margin-left: -4px;
        padding-top: 6px;
    }
    .item {
        font-size: 16px;
    }
    .social{
        --social-size: 32px;
        margin-top: calc(var(--social-size) / 3);
        padding-bottom: 0;
    }
    .smi-logo{
        height: 100px;
    }
    .footer-left > span{
        font-size: 12px;
    }
    #gepa{
        right: 5%;
    }
    footer{
        height: auto;
    }
    .footer-wrapper {
        flex-direction: row;
        align-items: unset;
    }

    .footer-top{
        font-size: 18px;
        text-align: right;
    }

    .footer-bottom{
        font-size: 15.7px;
        justify-content: end;
    }
    .privacy{
        right: 5%;
        left: unset;
    }
}
@media screen and (max-height: 460px) and (max-width: 677px){
    .footer-top{
        font-size: 16.8px;
    }
    .footer-bottom{
        font-size: 14.6px;
    }
    .privacy{
        right: 5%;
        left: unset;
    }
}
@media screen and (max-height: 460px) and (max-width: 630px){
    .footer-bottom{
        position: absolute;
        right: 5%;
        bottom: 12px;
    }
    .contact-element:not(.spacer) {
        width: unset;
    }
    .footer-bottom > .spacer {
        display: inline;
    }
}

@media screen and (max-width: 550px) {
    main {
        /* height: calc(100vh - 184px); */
        padding: 2% 5%;
    }
    .img-wrapper {
        overflow: hidden;
    }
    h1{
        font-size: 16vw;
        width: 100%;
        margin: 2% 0;
        transition: none;
        text-align: center;
		text-align: left;
    }
    .item {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        font-size: 17px;
		display: flex;
		text-align: left;
		justify-content: left;
		align-items: center;
    }
    .item > span {
        margin: -1px 0 0 0;
        background-color:transparent;
        width: 56%;
        text-align: left;
        padding: 0 3px;
		width: auto;
		display: flex;
		justify-content: start;
		/*line-height: 15px;*/
		align-items: center;
		/*height: 24px;*/
    }
    .item:nth-child(2)::after,
    .item:nth-child(3)::after,
    .item:nth-child(5)::after{
        content:'';
        width: 56%;
    }
    .item > .bold {
        text-align: right;
        width: 44%;
		text-align: left;
		width: auto;
    }
    .social{
        --social-size: 40px;
        padding-bottom: 2%;
        margin-top: calc(var(--social-size) / 3);
        /* margin-left: calc((100% - (var(--social-size) * 2) - 12px) * 0.44); */
        width: calc(2 * var(--social-size) + 16px);
    }
    .img-wrapper > img,
    .img-wrapper > a > img {
        left: 50%;
        transform: translate(-55%,0%);
        bottom: 0;
        /*width: 115%;*/
        max-width: unset;
        top: 0;
    }
    .smi-logo {
        height: 30px;
    }
    #gepa{
        right: 5%;
    }
    footer{
        position: relative;
        height: auto;
    }
    .footer-wrapper {

    }
    .footer-left{
        align-self: start;
    }
    .smi-logo {

    }
    .footer-right{
        gap: 10px;
        align-items: start;
    }
    .footer-top{
        text-align: start;
        font-size: 18px;
		font-size: 15px;
    }
    .footer-bottom{
        gap: 4px;
        font-size: 16px;
    }
	.footer-bottom > div{
		flex: 1 1 49%;
		text-align: left;
		
	}
    .contact-element{

    }
    .contact-element.spacer{
        display: none;
    }
    .contact-element:not(.spacer){
        width: 130px;
    }
    .contact-element:nth-child(4n-1){

    }
    .contact-element:nth-child(1){

    }
    .contact-element:nth-child(2){

    }
    .contact-element:nth-child(3){

    }
    .contact-element:nth-child(4){

    }
    .contact-element:nth-child(5){

    }
    .contact-element:nth-child(6){

    }
    .contact-element:nth-child(7){

    }

}
@media screen and (max-height: 500px) and (max-width: 550px){
    .footer-wrapper{
        flex-direction: column;
    }
    .footer-bottom{
        position: relative;
        position: relative;
        right: unset;
        bottom: unset;
    }
    main{
        height: auto;
    }
}
@media screen and (max-width: 300px) {
    .privacy{
        position: relative;
        width: 100%;
        text-align: center;
        /* background: rgb(151,182,210); */
        /* background: -moz-linear-gradient(90deg, rgba(151,182,210,1) 0%, rgba(0,114,175,1) 100%); */
        /* background: -webkit-linear-gradient(90deg, rgba(151,182,210,1) 0%, rgba(0,114,175,1) 100%); */
        /* background: linear-gradient(90deg, rgba(151,182,210,1) 0%, rgba(0,114,175,1) 100%); */
        /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#97b6d2",endColorstr="#0072af",GradientType=1); */
    }
}
@media screen and (max-width: 550px) and (max-height: 700px){
    .img-wrapper > img,
    .img-wrapper > a > img {
        width: auto;
    }
}
@media screen and (max-width: 450px) and (max-height: 720px){
    .img-wrapper > img,
    .img-wrapper > a > img {
        /*width: 100%;*/
    }
}
@media screen and (max-width: 365px) {
    .img-wrapper > img,
    .img-wrapper > a > img {
        transform: translate(-52%, 20%);
        max-height: 610px;
        bottom: 0;
        top: initial;
    }
}
@media screen and (max-width: 365px) and (max-height: 645px){
    .img-wrapper > img,
    .img-wrapper > a > img {
        bottom: -100px;
    }
}
@media screen and (max-width: 365px) and (min-height: 940px){
    .img-wrapper > img,
    .img-wrapper > a > img {
        max-height: 610px;
        min-height: unset;
        top: initial;
    }
}