body {
    font-family: 'Inter', sans-serif;
}

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

.head {
    padding: 25px 10px;
    background: #fff;
    min-height: 100vh;
    color: #000;
}

.head-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 160px;

}

.logo-subtitle {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #000;
    text-transform: lowercase;
}

.main-block {
    padding-top: 50px;
    text-align: left;
}

.main-block__title {
    font-size: 18px;
    width: 100%;
    text-align: left;
    font-weight: 600;
}

.title-thanks {
    font-size: 36px;
    width: 100%;
    font-weight: 700;
}

.main-block h3 {
    font-size: 30px;
    width: 100%;
    font-weight: 700;
}

.main-block h4 {
    font-size: 18px;
    width: 100%;
    font-weight: 700;
}

.socials {
    margin-top: 25px;
}

.socials .flex a {
    color: thistle;
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
}

.socials .flex {
    margin-top: 25px;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 50px;
}

.socials .flex a img {
    width: 60px;
}

.form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.form-wrapper > form {
    max-width: 520px;
    width: 100%;
}

.product-image {
    display: flex;
}

.input-wrap {
    display: flex;
    /*flex-wrap: wrap;*/
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}

.input {
    margin-bottom: 20px;
    margin-left: 1%;
    margin-right: 1%;
    padding: 0 20px 0 22px;
    width: 100%;
    height: 42px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #777;
    border: 2px #000 solid;
    transition: border-color 0.3s ease;
    /* transform: skewX(-15deg); */

}

.input:hover {
    border-color: #666;
}

.footer {
    /* position: absolute;  */
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    display: block;
    text-align: center;
    margin-top: 50px;
}

.footer a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 5px;
}

.footer a:hover {
    color: #000;
    text-decoration: underline;
}

a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

a[href^="tel:"] {
    white-space: nowrap;
    display: inline-block;
}

.btn {
    border: none;
    padding: 1rem;
    background: linear-gradient(to right, #666666 0%, #000000 50%, #000000 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-position 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.btn:hover {
    background-position: 100% 0%;
    color: #fff;
}

/* Update */


.main-block {
    display: flex;
    position: relative;
    gap: 60px;
    width: 100%;
    align-items: flex-start;
}

#thnx .main-block {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 750px;
    margin: 0px auto;

}

#thnx .main-block h3 {
    margin-top: 25px;

}

.collumn {
    flex: 1 1 160px;
}

.collumn.mob-h {
    max-width: 460px;
}

.product-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 460px;
}


.collumn .product-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
}

.list {
    margin-top: 30px;
    margin-left: 20px;

}

.list li {
    line-height: 1.5;
}

.list li::before {
    content: "⏵";
    padding-right: 10px;
}

.product-grid.pc-h {
    display: none;
}

.main-block .collumn {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 32px;
}

@media screen and (min-width: 1200px) {
    .main-block .collumn {
        gap: 70px;
    }
}