header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5vh;
    padding: 3vh 0 3vh 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

header .left, header .right {
    width: 50%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15vh;
}

header .right {
    justify-content: flex-end;
    padding-right: 15vh;
}

header .left .logo {
    height: 7vh;
    width: 7vh;
}

header .left * {
    margin-right: 6vh;
}

.main {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right, rgb(0, 26, 75), rgb(0, 14, 41)) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .hero, .main .picture-holder {
    width: 60%;
    min-height: 100vh;
    box-sizing: border-box;
}

.main .picture-holder {
    position: relative;
    width: 40%;
    background: rgb(0, 26, 75);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 7vh 0 7vh;
}

.main .picture-holder img {
    width: 75%;
    height: 70vh;
    border-radius: 3vh;
    border: 2px solid var(--green-color);
    object-fit: cover;
}

.main .hero {
    padding: 0 15vh 0 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main .hero .main-btn {
    margin-top: 2vh;
    width: fit-content;
    height: fit-content;
    background: var(--green-color);
    color: #000;
    border: none;
}

.main .hero .main-btn:hover {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

.main .hero .corner {
    overflow: hidden;
    background-image: url('/resources/images/corner.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 40vh;
    height: 50vh;
}

.main .hero .corner:not(.cornertop) {
    left: 0;
    bottom: -15vh;
}

.main .hero .cornertop {
    right: 0;
    top: -15vh;
    transform: rotate(180deg)
}

.main .hero h1, .main .hero h1 * {
    font-size: 55pt;
    color: var(--green-color);
}

.main .hero h1 span::after {
    content: '';
    position: absolute;
    top: 73px;
    left: 0;
    display: block;
    width: 100%;
    height: 5vh;
    background-image: url('/resources/images/underline.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.main .hero p {
    margin-top: 4.5vh;
    font-size: 14pt;
    width: 50vh;
}

.main .hero .main-btn {
    background: transparent;
    border: 1px solid var(--green-color);
    color: var(--green-color);
}