*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;

    font-size: 10px;
}

body {
    background: url(./image/background1.png) no-repeat;
    background-size: cover;
}

.wrapper {
    margin: 4% 16% 0 16%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main {
    padding-bottom: 4%;

    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title {
    font-size: 8.6rem;
    font-weight: 900;
    margin-bottom: 1%;
}

.description {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 9%;
}

.markets img:first-child {
    margin-right: 15px;
}

.contacts {
    font-size: 2rem;
    font-weight: 400;
}

.contacts a {
    font-size: 2rem;
    text-decoration: none;
    color: #6963E8;
    font-weight: 600;
}

.phone {
    margin-top: 4%;
    display: flex;
    align-items: flex-end;
}

.phone img {
    max-width: 100%;
}

.phone img:nth-child(2) {
    display: none;
}

@media screen and (min-width: 1920px) and (min-height: 950px) {
    .phone img:nth-child(2) {
        display: block;
    }

    .phone img:first-child {
        display: none;
    }
}

@media screen and (max-width: 1500px) {
    * {
        font-size: 8.5px;
    }

    .wrapper {
        margin: 4% 8% 0 8%;
    }
}

@media screen and (max-width: 425px) {
    * {
        font-size: 7px;
    }

    body {
        background: url(./image/background2.png);
        background-size: cover;
        background-repeat:repeat;
    }

    .title {
        font-size: 7rem;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
    }

    .logo img {
        width: 147px;
        height: 80px;
    }

    .logo {
        margin-bottom: 40%;
    }

    .main {
        width: 100%;
    }

    .markets {
        display: flex;
        flex-direction: row;
        margin-bottom: 30%;
    }

    .markets img {
        width: 160px;
        height: 48px;
    }

    .phone {
        display: none;
    }
}

@media screen and (max-width: 320px) {
    .markets {
        flex-direction: column;
    }

    .markets img {
        margin-bottom: 15px;
    }
}