body {
    height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    background: url(./images/black_paper_@2X.png);
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
}

@font-face {
    font-family: Aktifo-A-Book;
    font-style: normal;
    src: url("./fonts/Aktifo-A-Book.otf") format("opentype");
}
.AktifoFont {
	font-family: Aktifo-A-Book;
}

a, a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

#mainLogo {
    background: url(./images/LOGOTYPE_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 68px;
    margin: auto;
    margin-bottom: 15px;
}

.grayFontColor {
    color: #B3B3B3;
}

.whiteFontColor {
    color: #ffffff;
}

#mainImage {
    background: url(./images/C1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 604px;
    margin: auto;
}

#signatureIcon {
    background: url(./images/CRSL_logo_gold_3.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 150px;
    height: 150px;
    margin: auto;
    background-color: #231F20;
    border-radius: 100%;
    filter: drop-shadow(8.5px 14.7px 5.67px black);
    position: absolute;
    right: 13em;
    bottom: 1em;
    border: 4px solid #231F20;
}

#mainLogoMobile {
    background: url(./images/A.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 273px;
    margin: auto;
}

.lastRow {
    padding-bottom: 40px;
}

.centralRow {
    height: calc(100vh - 270px);
}

.mobile-image-wrapper {
    height: 100%;
    display: flex;
}

@media(min-width: 320px) {
    .displayMobile {
        display: block;
    }
    .displayDesktop {
        display: none;
    }
    p {
        font-size: 17px;
        line-height: 0.5;
    }
    body {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media(min-width: 992px) {
    .displayMobile {
        display: none;
    }
    .displayDesktop {
        display: block;
    }
    p {
        font-size: 22px;
        line-height: 1;
    }
    body {
        padding-left: 55px;
        padding-right: 55px;
    }
}