* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Gilroy', sans-serif;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

.page {
    display: flex;
    flex-direction: column;
    background-color: #262626;
    width: 100%;
    min-height: 100%;
    color: #FFFFFF;
    overflow: hidden;
}
.page .page-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}
.page .page-wrapper-2 {
    margin: 0 20px;
}
.page .page-header {
    padding: 25px 0;
    border-bottom: 1px solid #5E5E5E;
}
.page .page-header-logo {
    display: block;
    width: 173px;
    height: 42px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page .page-header-button {
    display: block;
    padding: 19px 34px;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #ffffff;
    text-decoration: none;

    -webkit-transition: all 350ms;
    -moz-transition: all 350ms;
    -ms-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms;
}
.page .page-header-button:hover {
    color: #262626;
    background-color: #ffffff;
}
.page .page-content {
    padding: 50px 0;
    text-align: center;
}
.page .page-title {
    font-weight: 500;
    font-size: 77px;
    line-height: 99px;
    margin: 0 0 24px 0;
}
.page .page-description {
    margin-bottom: 60px;
    font-weight: normal;
    font-size: 22px;
    line-height: 20px;
}
.page .page-item-wrapper {
    display: block;
    text-decoration: none;
    outline: none;
}
.page .page-item-wrapper:hover {
    text-decoration: none;
    outline: none;
}
.page .page-item-image {
    display: block;
    position: relative;
    padding-top: 61%;
}
.page .page-item-image-wrapper {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-size: cover;
}
.page .page-item-name {
    margin-top: 25px;
    font-size: 24px;
    line-height: 20px;
    color: #ffffff;

    -webkit-transition: color 350ms;
    -moz-transition: color 350ms;
    -ms-transition: color 350ms;
    -o-transition: color 350ms;
    transition: color 350ms;
}
/*.page .page-item-wrapper:hover .page-item-name {
    color: #277ffc;
}*/
.page .page-item-button-wrap {
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);

    -webkit-transition: opacity 350ms;
    -moz-transition: opacity 350ms;
    -ms-transition: opacity 350ms;
    -o-transition: opacity 350ms;
    transition: opacity 350ms;
}
.page .page-item-button {
    display: block;
    padding: 19px 35px;
    color: #fff;
    background: #005eff;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    border-radius: 4px;
    text-decoration: none;
    opacity: 0;

    -webkit-transition: opacity 600ms 0.1s;
    -moz-transition: opacity 600ms 0.1s;
    -ms-transition: opacity 600ms 0.1s;
    -o-transition: opacity 600ms 0.1s;
    transition: opacity 600ms 0.1s;
}
.page .page-item-button.mobile {
    margin-top: 10px;
    display: none;
}
.page .page-item-wrapper:hover .page-item-button ,
.page .page-item-wrapper:hover .page-item-button-wrap {
    opacity: 1;
}
.page .page-footer {
    margin-top: auto;
    margin-bottom: 0;
    padding: 35px 0 45px 0;
    border-top: 1px solid #5E5E5E;
}
.page .page-footer a{
    text-decoration: none;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;

    -webkit-transition: all 350ms;
    -moz-transition: all 350ms;
    -ms-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms;
}
.page .page-footer a:hover{
    color: #277ffc;
}
.page .page-footer-copyright {
    margin-right: auto;
    order: -1;
    font-size: 14px;
    line-height: 20px;
    color: #707070;
}

@media all and (max-width: 1100px) {
    .page .page-title {
        font-size: 56px;
        line-height: 79px;
    }
    .page .page-description {
        font-size: 20px;
    }
    .page .page-content {
        padding: 90px 0;
    }
}

@media all and (max-width: 800px) {
    .page .page-title {
        font-size: 49px;
        line-height: 60px;
    }
    .page .page-description {
        font-size: 20px;
    }
    .page .page-content {
        padding: 70px 0;
    }
}

@media all and (max-width: 768px) {
    .page .page-item-name {
        margin-top: 16px;
    }
    .page .page-item-button.mobile {
        display: block;
        opacity: 1;
    }

    .page .page-item-button-wrap {
        display: none;
    }
}
@media all and (max-width: 550px) {
    .page .page-footer-copyright {
        margin-right: 0;
        order: 1;
    }
}
@media all and (max-width: 425px) {
    .page .page-title {
        font-size: 37px;
        line-height: 54px;
        margin-bottom: 12px;
    }
    .page .page-description {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .page .page-content {
        padding: 45px 0;
    }
}