
* {
    box-sizing: border-box;
}

:root {
    --font-size: 14px;
    --max-width: 619px;
}


@font-face {
    font-family: 'Redtone';
    src: url('../fonts/Redtone-Regular.eot');
    src: url('../fonts/Redtone-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Redtone-Regular.woff2') format('woff2'),
        url('../fonts/Redtone-Regular.woff') format('woff'),
        url('../fonts/Redtone-Regular.ttf') format('truetype'),
        url('../fonts/Redtone-Regular.svg#Redtone-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Redtone';
    margin: 50px 0 45px;
}

.container {
    max-width: 720px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.images {
    display: flex;
    justify-content: center;
}
.images-bottom {
    margin-top: 30px;
}

.images.images-bottom {
  justify-content: flex-start;   
}
.images img {
    max-width: 200px;
	border-radius: 13px;
}

.images .title {
    margin-top: 5px;
    margin-left: 10px;
    font-size: var(--font-size);
}

.images > div:not(:last-child) {
    margin-right: 10px;
}

.wrapper {
    max-width: var(--max-width);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.top h5 {
    text-transform: uppercase;
    margin:0;
    font-weight: 400;
    text-align: end;
}

.logo {
    max-width: 110px;
}

.logo {
    height: 100%;
}

.preview img{
    max-width: 700px;
    width: 100%;
}

.icons {
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.icons h6 {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
    border-top: 2px solid #ED9F0D;
    padding-top: 9px;
    line-height: 10px;
}

.icons > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.icons > div img {
    max-width: 40px;
}

@media (max-width: 720px) {
    .wrapper {
        padding: 0 15px;
    }
    .images {
        flex-direction: column;
        align-items: center;
    }

    .images img {
        max-width: 100%;
    }

    .icons { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .images > div:not(:last-child) {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

@media (max-width: 420px) { 
    .icons { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 20px;
    }
}