@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');
body {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -o-text-size-adjust: none;
    position: relative;
    background-color: #EB8425;
    min-height: 100vh;
    overflow-anchor: none;
}
body, body a {
    color: #000;
}
body.scroll-off {
    overflow: hidden;
}
#content .item{
    background-color: #fff;
}
strong, b {
    font-weight: 700;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
}
.duration {
    -webkit-transition-duration:.3s;
    -o-transition-duration:.3s;
    transition-duration:.3s;
}

header {
    padding: 20px;
    overflow: hidden;
    color: #F2EEED;
}

/* logo */
#logo {
    margin-right: auto;
    padding-right: 20px;
    max-width: 200px;
}
#logo svg,
#logo img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-height: 50px;
}
/* /logo */

/* title */
#title {
    text-align: center;
}
#title .color {
    background: #EB8425;
    padding: 30px 20px;
    color: #F2EEED;
}
#title h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}
#title p {
    font-size: 14px;
    line-height: 16px;
}
#title h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    padding: 40px 0 20px;
}
/* /title */

/* content */
#content {
    padding: 20px;
    overflow: hidden;
}
#content .items {
    -ms-flex-direction: column;
    flex-direction: column;
}
#content .item {
    -webkit-box-shadow: inset 0 0 0 2px #E5EBF1;
    box-shadow: inset 0 0 0 2px #E5EBF1;
    border-radius: 10px;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    position: relative;
    margin-bottom: 20px;
}
#content .item .info {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#content .item .logo {
    overflow: hidden;
    /*height: 120px;*/
    display: flex;
    justify-content: center;
}
#content .item .logo svg,
#content .item .logo img {
    max-width: 70%;
    height: 100%;
    object-position: 50% 50%;
}
#content .item .line {
    flex-direction: row;
    justify-content: center;
    padding: 10px;
}
#content .item .line .icon {
    margin-right: 10px;
}
#content .item .line p {
    font-weight: 700;
    font-size: 20px;
}
#content .item .text {
    flex-direction: column;
}
#content .item .text .td {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#content .item .text .td .icon {
    margin-right: 10px;
}
#content .item .text .td p {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    border-top: 1px solid #E5EBF1;
    flex-grow: 1;
    align-self: center;
    padding: 10px 0;
}
#content .item .text .td:first-child p {
    border-top: 0;
}
#content .item .item-btn {
    position: relative;
    z-index: 20;
    margin-top: 20px;
}
#content .item .item-btn .btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    line-height: 50px;
    color: #F2EEED;
    background: #EB8425;
    border-radius: 2px;
}
#content .item .item-btn .btn:hover {
    background-color: #EB8425;
}
#content .item .link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}
/* /content */

/* footer */
footer {
    padding: 20px;
    background-color: #EB8425;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
    font-size: 12px;
}
/* /footer */

@media (min-width: 360px) {
    /* title */
    #title h1 {
        font-size: 24px;
        line-height: 29px;
    }
    #title h2 {
        font-size: 24px;
        line-height: 29px;
    }
    /* /title */
}

@media (min-width: 720px) {
    /* title */
    #title .color {
        padding: 50px;
    }
    #title h1 {
        font-size: 30px;
        line-height: 37px;
    }
    #title p {
        font-size: 18px;
        line-height: 21px;
    }
    #title h2 {
        padding: 20px 0 0;
    }
    /* /title */

    /* content */
    #content .items {
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    #content .item {
        width: calc(50% - 10px);
    }
    /* /content */

    /* footer */
    footer {
        padding: 40px 20px;
    }
    /* /footer */
}

@media (min-width: 1000px) {
    /* title */
    #title .color {
        padding: 70px;
    }
    #title h1 {
        font-size: 48px;
        line-height: 59px;
    }
    #title p {
        font-size: 30px;
        line-height: 35px;
    }
    #title h2 {
        padding: 50px 0 30px;
        font-size: 36px;
        line-height: 44px;
    }
    /* /title */

    /* content */
    #content .items {
        justify-content: flex-start;
        margin: 0 -10px;
    }
    #content .item {
        width: calc(33% - 20px);
        margin: 0 10px 20px;
    }
    /* /content */
}

@media (min-width: 1600px) {
    .inner {
        max-width: 1420px;
        margin: 0 auto;
    }

    /* title */
    #title .color {
        padding: 70px;
    }
    #title h1 {
        font-size: 64px;
        line-height: 78px;
    }
    #title p {
        font-size: 36px;
        line-height: 42px;
    }
    /* /title */

    /* content */
    #content .item {
        width: calc(25% - 20px);
        margin: 0 10px 20px;
    }
    /* /content */

    /* footer */
    footer {
        padding: 50px 20px;
    }
    /* /footer */
}
.showcase-description {
    padding: 30px 15px
}

@media(min-width: 768px) {
    .showcase-description {
        padding:60px 15px
    }
}

.showcase-description h2 {
    margin-bottom: 15px
}

.showcase-description p,.showcase-description a {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: .02em;
    margin-bottom: 10px
}

.showcase-description a {
    text-decoration: underline
}

.showcase-description ul {
    padding: 0 20px;
    margin-bottom: 40px
}

.showcase-description ul li {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: .02em;
    color: rgba(0,0,0,.75);
    padding-left: 22px;
    position: relative
}

.showcase-description ul li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    width: 3px;
    height: 3px;
    background: rgba(0,0,0,.75);
    border-radius: 2px
}

.showcase-description ul li p {
    padding: 0 20px
}
*,*::before,*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

html {
    height: 100%;
    line-height: 1.15;
    font-style: normal;
    scroll-behavior: smooth
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%
}

main {
    display: block
}

a {
    background-color: rgba(0,0,0,0);
    text-decoration: none
}

sub,sup {
    position: relative;
    vertical-align: baseline
}

button,input,optgroup,select,textarea {
    line-height: inherit;
    border: unset
}

button {
    overflow: visible;
    text-transform: none
}

button,[type=button],[type=reset],[type=submit] {
    -webkit-appearance: button
}

input {
    overflow: visible
}

input:focus {
    outline: none
}

fieldset {
    border: unset
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

select {
    text-transform: none
}

textarea {
    overflow: auto;
    vertical-align: top
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=color] {
    background: inherit
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .5
}

::-moz-focus-inner {
    border: 0
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    overflow: visible;
    color: inherit;
    outline: none;
    border: none
}

dl,ol,ul {
    list-style: none
}

b,strong {
    font-weight: bolder
}

img {
    border: 0
}

details {
    display: block
}

summary {
    display: list-item
}

canvas {
    display: inline-block
}

template {
    display: none
}
.copyright {
    margin-top: auto
}

.copyright__owner {
    padding: 10px 15px;
    background-color: rgba(0,0,0,.031372549)
}

@media(min-width: 992px) {
    .copyright__owner {
        padding:20px 15px
    }
}

.copyright__owner-text {
    font-size: 14px;
    line-height: 115%;
    letter-spacing: .02em;
    color: #fff;
    text-align: center
}

.copyright__info {
    padding: 10px 0;
    background-color: #EB8425;
}

@media(min-width: 992px) {
    .copyright__info {
        padding:20px 0
    }
}

.copyright__info-text {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 115%;
    color: #F2EEED;
}

@media(min-width: 992px) {
    .copyright__info-text {
        font-size:14px
    }
}
.overlay {
    background-color: rgba(0, 0, 0, 0.35);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 99999;
}
.text_bottom {
    color: #272727;
}
.text_bottom p {
    line-height: 24px;
}
.text_bottom ul li {
    margin: 10px 0;
}
.modal {
    width: 600px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.modal_title {
    width: 100%;
    /*height: 70px;*/
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 20px 40px;
    background-color: #EB8425;
}
/*.modal_title:before {*/
/*    content: "";*/
/*    top: 0;*/
/*    left: 0;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-image: url(../img/wave-3.svg);*/
/*    background-size: cover;*/
/*    transform: rotate(180deg);*/
/*    background-position-y: 95px;*/
/*    z-index: -1;*/
/*}*/
.offer_modal .logo img {
    max-width: 150px;
}
.push_block {
    width: 300px;
    height: 72px;
    background-image: linear-gradient(#ef6e9d, #ef6e9d);
    border-radius: 0px 20px 20px 0px;
    display: block;
    position: fixed;
    left: 0;
    bottom: 20px;
    display: none;
}
.white_block {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    width: 295px;
    height: 67px;
    border-radius: 0px 20px 20px 0px;
    background-color: #fff;
    padding: 0 20px;
    margin-top: 2px;
    margin-left: 2px;
}
.push_block .image_block img {
    width: 25px;
}
.push_block .text_block {
    text-align: right;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #272727;
}
.offer_modal .text {
    color: #191919;
    font-weight: bold;
    font-size: 25px;
}
.offer_modal {
    padding: 20px 30px;
    display: flex;
    text-decoration: none;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.offer_modal .button .offer_button {
    margin-top: 0;
}
.offer_modal.border {
    border-top: 1px solid #0099ff;
    border-bottom: 1px solid #0099ff;
}
.modal_bottom {
    padding: 15px 0;
    position: relative;
    background-color: #0099ff;
}
.offer_button {
    display: block;
    width: 170px;
    height: 32px;
    background-color: #EB8425;
    border: 1px solid #EB8425;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    transition: 0.3s;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 15px;
}
.offer_button:hover {
    background-color: transparent;
    color: #EB8425;
}
.input_block input {
    width: 198px;
    height: 33px;
    background: #ffffff;
    border-radius: 20px;
    border: none;
    padding-left: 15px;
    outline: none;
    font-size: 18px;
}
.input_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.button_block {
    margin-top: 20px;
}
.button_block button {
    width: 220px;
    height: 33px;
    background: #ffffff;
    border-radius: 20px;
    border: none;
    font-weight: bold;
    font-size: 18px;
    color: #0099ff;
    display: block;
    margin: 0 auto;
    -webkit-text-fill-color: #0099ff;
    opacity: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.modal {
    position: relative;
}
.close_modal img {
    width: 30px;
    height: 30px;
}
.close_modal {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 3;
}
.button_block button {
    cursor: pointer;
}
.button_block button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/*Adaptive Begin*/
@media (max-width: 767px) {
    .wrapper {
        padding: 0 15px;
    }
    .modal {
        width: 94%;
    }
    header .wrapper {
        justify-content: center;
    }
    .offer_modal {
        justify-content: center;
    }
    .offer_modal .text {
        font-size: 20px;
        margin-left: 20px;
    }
    /*.modal_title:before {*/
    /*    height: 140px;*/
    /*    background-position-y: 140px;*/
    /*}*/
    .input_block input {
        margin: 5px 0;
    }
    .offer .offer_button {
        font-size: 13px;
        width: 145px;
        height: 40px;
        line-height: 40px;
    }

    .offer_title,
    .offer_descr {
        font-size: 12px;
    }
    .offer_descr {
        font-size: 14px;
    }
    .offer_logo img {
        /*max-width: 120px;*/
        display: block;
        /*max-height: 40px;*/
    }
    .offer {
        max-width: 175px;
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
        padding: 10px;
        margin: 10px 5px;
    }
    .offers {
        margin-top: 15px;
    }
    /*.title_section .title{
		font-size: 18px;
	}*/
    .mob_hid {
        display: none;
    }
    .title_section .title {
        margin-bottom: 0;
        font-size: 15px;
    }
    .title_section .subtitle {
        font-size: 15px;
    }
    .offers .wrapper {
        padding: 0;
    }
    .push_block {
        bottom: 20px;
        top: unset;
    }
    .offer:nth-child(1):before,
    .offer:nth-child(2):before,
    .offer:nth-child(3):before {
        width: 35px;
        height: 35px;
        left: 0px;
        top: -1px;
    }
    .modal_title {
        font-size: 15px;
    }
    .offer_modal {
        padding: 18px 30px;
    }
    .modal_title {
        margin-bottom: 15px;
    }
    .modal_title:before {
        height: 115px;
        background-position-y: 115px;
    }
    .input_block input {
        width: 166px;
        font-size: 15px;
    }
    .offer_modal .logo img {
        max-width: 100px;
    }
    .offer_modal .button .offer_button {
        margin-top: 10px;
    }
    #content .item .logo{
        height: auto;
    }
}