@import "fonts.css";
body {
    overflow: hidden;
    color: #00405B;
    margin: 0;
    background: #00405B;
    padding: 50px;
}
body::after {
	content: "";
	background-image: url(../assets/triangle.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: -70%;
	left: -30%;
	right: -30%;
	bottom: -60%;
	background-size: cover;
	background-position: 50%;
	z-index: -1;
}
.frame {
    background: #fff;
    border-radius: 10px;
    max-width: 1600px;
    margin: auto;
}
.frame-content {
	width: calc(100% - 80px);
	max-width: 1600px;
	height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	margin: auto;
	padding: 0 40px;
    -webkit-box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.25); 
    box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.25);
    position: relative;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: calc(20% - 40px);
    align-items: end;
    padding-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 0 80px 80px;

}
.footer-logo {
    margin-bottom: 20px;
}
.logo {
    width: 70%;
    height: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
    z-index: 3;
    background-image: url(../assets/frame-logo.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: 50% 50%;
}
.logo img {
    width: 100%;
    margin: auto;
}
.content-triangle {
    position: absolute;
    background-image: url(../assets/background-pattern.svg);
    background-repeat: space;
    background-size: 100px;
    left: 50px;
    top: 50px;
    right: 50px;
    bottom: 50px;
    z-index: 0;
}
.mail-content {
    font-family: 'gothambold';
    font-size: 22px;
}
.mail-content img {
    margin-right: 20px;
}
.footer-logo span {
    font-family: 'gothamlight';
    display: block;
    font-size: 24px;
    margin-top: 7px;
}
.adress-content {
    font-family: 'gothambold';
}
.adress-content span {
    display: block;
    font-size: 22px;
    line-height: 32px;
}
.mail-content a, .adress-content a {
    text-decoration: none;
    color: #00405B;
}

@media screen and  (max-width:1024px)  {
    body {
        padding: 20px;
    }
    body::after {
        top: 0%;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(../assets/frame-bg-mobile.svg);
    }
    .frame-content {
        height: calc(100vh - 150px);
        width: calc(100% - 30px);
        padding: 15px;
    }
    .content-triangle {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 30px;
        background-size: 90px;
    }
    .hide-triangle-mobile {
        display: block;
        position: absolute;
        width: 100%;
        height: 20px;
        top: 0;
        left: 0px;
        right: 0;
        background: #00405B;
    }
    .logo {
        width: 100%;
        height: 70%;
    }
    .logo img {
        width: 90%;
    }
    .footer {
        height: 30%;
        padding: 0;
        flex-direction: column;
        justify-content: flex-end;
        align-items: baseline;
    }
    .footer-logo {
        width: 80%;
        margin-bottom: 30px;
    }
    .footer-logo img {
        width: 100%;
    }
    .footer-logo span {
        margin: 0;
    }
    .adress-content span, .footer-logo span {
        font-size: 18px;
        line-height: 28px;
    }
    .mail-content {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width:1024px) and (max-height:800px) {
    .mail-content, .footer-logo {
        margin-bottom: 5px;
    }
}