@font-face {
    font-family: "Onest";
    font-display: swap;
    src:
        url(../fonts/OnestBold.woff) format("woff"),
        url(../fonts/OnestBold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Onest";
    font-display: swap;
    src:
        url(../fonts/OnestMedium.woff) format("woff"),
        url(../fonts/OnestMedium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Onest";
    font-display: swap;
    src:
        url(../fonts/OnestRegular.woff) format("woff"),
        url(../fonts/OnestRegular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none !important;
}

a {
    text-decoration: none;
    cursor: pointer;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

button {
    cursor: pointer;
}

html,
body {
    background: #F3F3F4;
    color: #001827;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    text-rendering: optimizeLegibility;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    font-family: "Onest", sans-serif;
}

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

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper__container {
    max-width: calc(1380px - 60px);
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.wrapper .wrapper__content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.wrapper .wrapper__logo {
    max-width: 100%;
    height: 42px;
    display: inline-flex;
    margin-bottom: 20px;
}

.wrapper .wrapper__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wrapper .wrapper__title {
    font-size: 48px;
    font-weight: bold;
    font-family: "Onest", sans-serif;
    font-style: normal;
    color: #001827;
    margin-bottom: 10px;
}

.wrapper .wrapper__description {
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
    font-family: "Onest", sans-serif;
    font-style: normal;
    color: #001827;
    max-width: 500px;
    margin-bottom: 20px;
}

.wrapper .wrapper__images {
    width: 320px;
}

.wrapper__dev {
    font-size: 20px;
    font-weight: 500;
    font-family: "Onest", sans-serif;
    font-style: normal;
    color: #001827;
    padding: 12px 24px;
    border: 2px solid #001827;
    display: inline-flex;
    border-radius: 50px;
}

.wrapper .wrapper__images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 970px) {
    .wrapper .wrapper__content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
}

@media screen and (max-width: 820px) {
    .wrapper .wrapper__content {
        display: flex;
    flex-direction: column;
    align-items: center;
        gap: 50px;
    }
    .wrapper .wrapper__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .wrapper .wrapper__title {
        text-align: center;
        font-size: 36px;
    }
    .wrapper .wrapper__description {
        text-align: center;
        font-size: 18px;
        font-weight: normal;
    }
}

@media screen and (max-width: 568px) {
    .wrapper .wrapper__images {
        width: 240px;
    }
    .wrapper .wrapper__title {
        text-align: center;
        font-size: 32px;
    }
    .wrapper .wrapper__description {
        text-align: center;
        font-size: 18px;
        font-weight: normal;
    }
}

@media screen and (max-width: 414px) {
    .wrapper .wrapper__title {
        text-align: center;
        font-size: 28px;
    }
    .wrapper .wrapper__description {
        text-align: center;
        font-size: 16px;
        line-height: 22px;
        font-weight: normal;
    }
    .wrapper .wrapper__logo {
        max-width: 100%;
        height: 32px;
        display: inline-flex;
        margin-bottom: 20px;
    }
    .wrapper__dev {
        font-size: 16px;
        font-weight: bold;
        font-family: "Onest", sans-serif;
        font-style: normal;
        color: #001827;
        padding: 8px 18px;
        border: 2px solid #001827;
        display: inline-flex;
        border-radius: 50px;
    }
}