body {
    font-family: 'ginormal', sans-serif;
}

@font-face {
    font-family: 'ginord';
    src: url('gnord.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ginormal';
    src: url('gnormal.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

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

span {
    display: block;
}

a {
    text-decoration: none;
    color: #000;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    font-family: 'ginord';
    font-weight: 900;
    opacity: 0;
    transition: all .1s ease-in-out;
}

main {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    padding: 50px;
}

.mainrows {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.mainrows > div {
    display: flex;
}

.first-row a {
    display: block;
}

.zirup-img {
    max-width: 330px;
}

.hi-img {
    max-width: 700px;
}

.zirup-img a,
.hi-img a {
    color: #fff;
    display: block;
    position: relative;
}

.zirup-img a:hover .overlay,
.hi-img a:hover .overlay {
    opacity: 1;
}

.logo {
    max-width: 140px;
}

.sec-row {
    min-height: 760px;
    gap: 75px;
    justify-content: flex-end;
    padding-top: 20px;
}

.sec-row > div:first-of-type {
    align-self: flex-end;
}

.sec-row-imprint {
    flex-direction: column;
}

.sec-row-imprint p {
    margin-top: 30px;
    font-size: 20px;
}

.sec-row-imprint p:first-of-type {
    margin-top: 40px;
}

.third-row {
    text-transform: uppercase;
    padding-top: 75px;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

.third-row > div:last-of-type {
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .sec-row {
        flex-direction: column-reverse;
        justify-content: center;
    }
    .sec-row > div:first-of-type {
        align-self: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    main {
        padding: 30px;
    }
    .sec-row {
        gap: 30px;
    }
    .third-row {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 25px;
        font-size: 26px;
        padding-top: 30px;
    }
    .third-row > div:last-of-type {
        text-align: left;
    }
}