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

a {
    text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

textarea,
input,
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

img {
    max-height: 100%;
    max-width: 100%;
    display: block;
}

:root {
    --main-color: #158DE1;
    --secondary-color: #EAA92A;
    --secondary-color-hover: #D0931B;
}

.main-color {
    color: var(--main-color);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

.bold {
    font-weight: 700;
}

.highlight {
    display: inline-block;
    background: #8EBF18;
    color: #fff;
    font-weight: 600;
    padding: 2px 5px;
    margin: 0 3px;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}


.main {
    padding-bottom: 60px;
    padding-top: 60px;
}

.benefits_title {
    font-family: gotham-bold, sans-serif;
    font-size: 28px;
    line-height: 30px;
    color: #5a5d62;
    margin-bottom: 15px;
}
.benefits_subtitle {
    font-size: 18px;
    line-height: 120%;
    color: #a2a2a2;
    margin-bottom: 35px;
}
.benefits_wrap {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 75px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.benefits_item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 23%;
}
.benefits_icon {
    width: 80px;
    height: 80px;
}
.benefits_text {
    font-family: gotham-bold, sans-serif;
    font-size: 18px;
    line-height: 100%;
    color: #5a5d62;
}

@media (max-width: 1100px) {
    .benefits_item {
        width: 48%;
    }
}
@media (max-width: 655px) {
    .benefits_icon {
        width: 50px;
        height: 50px;
    }
    .benefits_text {
        font-size: 16px;
    }
    .benefits_item {
        width: 43%;
    }
}
@media (max-width: 375px) {
    .benefits_wrap {
        flex-direction: column;
    }
    .benefits_item {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .benefits_item:nth-child(1),
    .benefits_item:nth-child(4) {
        display: none;
    }
}
.main__title {
    margin-bottom: 40px;
}

.main__title h1 {
    color: #333333;
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 10px;
}

.main__title p {
    color: #666666;
    font-size: 16px;
    line-height: 100%;
}


.item__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.item {
    padding: 30px 20px;
    box-shadow: 0 4px 2px rgba(137, 137, 137, 0.5);
    font-size: 14px;
    color: #666666;
    background: #F9F9F9;
    display: flex;
    flex-direction: column;
}

.item:hover {
    box-shadow: 0 5px 3px #898989;
}

.item__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    height: 50px;
    max-width: 100%;
}

.item__title {
    color: #fff;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.item__info {
    margin-bottom: 15px;
    padding: 0 10px;
}


.sub__info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}


.payment__methods--wrap p {
    margin-bottom: 5px;
}


.get__money {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
}

.get__money:hover {
    background: var(--secondary-color-hover);
    color: #fff;
}


@media (max-width: 1025px) {
    .main__title h1 {
        font-size: 24px;
    }

    .item__row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {

    .container {
        padding: 0 10px;
    }


    .main {
        margin-bottom: 0;
    }

    .main__title {
        margin-bottom: 20px;
    }

    .main__title h1 {
        font-size: 20px;
    }

    .main__title p {
        font-size: 14px;
    }

    .item {
        font-size: 10px;
        padding: 10px 8px;
    }

    .item__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .item__info {
        padding: 0;
    }

    .item__logo {
        height: 40px;
    }
}

@media (max-width: 675px) {
    .main {
        padding-top: 40px;
    }
}