@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Light.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

* {
    color: #fff;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', Arial, Helvetica, sans-serif;
    font-weight: 300;
    margin: 0;
    background-color: #1a1a1a;
}

.preview {}

.preview__section {
    padding-top: 105px;
    padding-bottom: 210px;
    background: url('../img/shape1.svg') 50% -25% no-repeat, url('../img/Shape2.svg') 50% 85% no-repeat;
    background-size: auto;
}

.preview__inner {
    width: 1240px;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
}
.preview__head {
    margin-bottom: 60px;
}

.preview__title {
    font-size: 36px;
    color: #cfb285;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 15px;
    text-shadow: 0px 0px 30px rgba(207, 178, 133, 0.5);
}
.preview__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.502);
    line-height: 1.2;
    text-align: center;
}

.preview__items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
}

.preview__item {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    padding-left: 50px;
    margin-bottom: 60px;
    text-decoration: none;
}

.preview__item:hover .preview__img img {
    transform: scale(1.2);
}

.preview__item:hover .preview__name {
    color: #cfb285;
}

.preview__img {
    margin-bottom: 10px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    font-size: 0;
}

.preview__img img {
    max-width: 100%;
    height: auto;
    transition: transform 1s;
}

.preview__name {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    transition: color .3s;
}

.preview__foot {
    text-align: center;
}

.preview__btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 10px;
    background-color: rgb(207, 178, 133);
    box-shadow: 0px 0px 10px rgba(207, 178, 133, 0.3);
    width: 290px;
    padding: 23px 20px;
    display: block;
    margin: 0 auto;
    transition: box-shadow .3s;
}

.preview__btn:hover {
    box-shadow: 0px 0px 15px rgba(207, 178, 133, 0.5);
}


@media (min-width: 1921px) {
    .preview__section {
        background-size: contain;
    }
}

@media (max-width: 767px) {
    .preview__section {
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .preview__head {
        margin-bottom: 40px;
    }

    .preview__items {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 0;
    }

    .preview__item {
        flex: 0 0 none;
        width: 550px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 40px;
        padding-left: 0;
    }
}