* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
	width: 100%;
    height: 100vh;
    line-height: normal;
    min-height: 360px;
}

h1 {
    font-size: 4rem;
}

.Mail-link {
    z-index: 20;
    -webkit-transition: color 0.5s 0.25s;
    transition: color 0.5s 0.25s;
    overflow: hidden;
    outline: none;
    display: inline-block;
    font-size: 18px;
    position: absolute;
    left: 2rem;
    bottom:2rem;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
}

.Mail-link:hover {
    -webkit-transition: none;
    transition: none;
    color: transparent;
}

.Mail-link::before {
	background: #4183c4;
    content: '';
    width: 100%;
    height: 6px;
    margin: -3px 0 0 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.Mail-link:hover::before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.Mail-link span {
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

.Mail-link span::before {
    content: attr(data-letters);
    position: absolute;
    left: 0;
    width: 100%;
    color: #fff;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.Mail-link span:nth-child(2) {
    top: 50%;
}

.Mail-link span:first-child::before {
    top: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.Mail-link span:nth-child(2)::before {
    bottom: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.Mail-link:hover span::before {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.Page {
    width: 100%;
    height: 100%;
}

.Inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.HP {
    background: #101c45;
}

.HP .TextCenterBlock {
    text-align: center;
    color: #4183c4;
    max-width: 800px;
    width: 100%;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.HP .TextCenterBlock p {
    color: #4183c4;
    font-size: 16px;
    line-height: 0px;
    font-family: 'Circular Std Book';
}

.HP .TextCenterBlock p strong {
    font-family: 'Circular Std';
    font-weight: bold;
}

@font-face {
    font-family: SoftathlonFont;
    src: url(softathlon-fonts/Softathlon.woff) format('woff'), url(softathlon-fonts/Glyphter.ttf) format('ttf');
}

.softathlon-font {
    font-family: SoftathlonFont !important;
    /* content: '\u0041'; */
}

@media screen and (max-width:1300px) {
    .Content {
        margin: 0;
        padding: 0 30px;
    }
}

@media screen and (max-width:850px) {
    .HP .TextCenterBlock {
        padding: 0 15px;
    }
}

@media screen and (max-width:650px) {
    .HP .TextCenterBlock p {
        font-size: 22px;
        line-height: 35px;
    }
}

@media screen and (max-width:570px) {
    .HP .TextCenterBlock p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media screen and (max-width:370px) {
    .HP .TextCenterBlock p {
        font-size: 16px;
        line-height: 25px;
    }
    .Content {
        padding: 0 15px;
    }
}