@charset "UTF-8";
/*RESET - сброс стилей*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

i, em {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

s {
    text-decoration: line-through;
}

/*DEFAULT STYLES - глобальные стили*/
html {
    height: 100%;
}

body {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    font-size: 18px;
    line-height: 1.23;
    color: #000;
    background: #e5e5e5;
    font-family: "Arial", sans-serif;
    font-weight: normal;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 767px) {

}

.container {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button, input {
    font-family: "Arial", sans-serif;
    outline: none;
}

::selection,
::-moz-selection {
    background: #000;
    color: #fff;
}

/*----------------------> Links And buttons <------------------*/
a {
    color: #000;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

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

.link {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 8px 35px;
    margin: 0 0 0;
    font-size: 12px;
    color: #fff;
    background-color: #3DCD58;
    font-weight: bold;
}

.btn:hover {
    background-color: rgba(61, 205, 88, 0.8);
    color: #fff;
}

.btn-2 {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 0 0;
    font-size: 12px;
    color: #525252;
    background-color: #3ECD59;
    font-weight: bold;
    text-align: center;
    border-radius: 15px;
}

.btn-2:hover {
    color: #fff;
    background-color: rgba(62, 205, 89, 0.8);
}

/*----------------------> Basic Classes <------------------*/
.reg {
    text-transform: uppercase;
}

.f_left {
    float: left;
}

.f_right {
    float: right;
}

.al_left {
    text-align: left;
}

.al_right {
    text-align: right;
}

.al_center {
    text-align: center;
}

.it {
    font-style: italic;
}

.let {
    letter-spacing: -1px;
}

.full_w {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.val_mid {
    vertical-align: middle;
}

/*----------------------> Positions <------------------*/
.p_abs {
    position: absolute;
}

.p_rel {
    position: relative;
}

.p_fix {
    position: fixed;
}

.clear {
    clear: both;
    width: 100%;
    line-height: 0;
    font-size: 0;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.wrapper {
    overflow: hidden;
}

/*----------------------> Displays <------------------*/
.d_block {
    display: block;
}

.d_ib {
    display: inline-block;
}

.d_none {
    display: none;
}

.d_tc {
    display: table-cell;
}

.d_t {
    display: table;
}

/*----------------------> Basic Colors <------------------*/
/*=====================> content ========================*/
.content__inner {
    display: flex;
    justify-content: space-between;
}

.content__primary {
    width: 75%;
}

.content__sidebar {
    width: calc(25% - 20px);
    background-color: #fff;
    min-height: 500px;
    padding: 25px 10px;
}

.content__item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
}

.content__item:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 995px) {
    .content__inner {
        flex-wrap: wrap;
    }

    .content__primary, .content__sidebar {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .content__item {
        padding: 20px;
    }
}

.img-bg__box {
    background: url(../images/img-bg-box.png) 50% 50% no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 30px 30px 15px;
    font-size: 14px;
    margin-bottom: 25px;
}

.img-bg__box--2 {
    background: url(../images/img-bg-box-2.png) 50% 50% no-repeat;
    background-size: cover;
}

.img-bg__box::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    opacity: .9;
    content: "";
}

.img-bg__box > * {
    position: relative;
    z-index: 10;
}

.actions-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*=====================> Paragraphs ========================*/
p {
    margin-bottom: 18px;
}

.mb1 {
    margin-bottom: 1px;
}

.mb2 {
    margin-bottom: 2px;
}

.mb3 {
    margin-bottom: 3px;
}

.mb4 {
    margin-bottom: 4px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb6 {
    margin-bottom: 6px;
}

.mb7 {
    margin-bottom: 7px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb9 {
    margin-bottom: 9px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb11 {
    margin-bottom: 11px;
}

.mb12 {
    margin-bottom: 12px;
}

.mb13 {
    margin-bottom: 13px;
}

.mb14 {
    margin-bottom: 14px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb16 {
    margin-bottom: 16px;
}

.mb17 {
    margin-bottom: 17px;
}

.mb18 {
    margin-bottom: 18px;
}

.mb19 {
    margin-bottom: 19px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb21 {
    margin-bottom: 21px;
}

.mb22 {
    margin-bottom: 22px;
}

.mb23 {
    margin-bottom: 23px;
}

.mb24 {
    margin-bottom: 24px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb26 {
    margin-bottom: 26px;
}

.mb27 {
    margin-bottom: 27px;
}

.mb28 {
    margin-bottom: 28px;
}

.mb29 {
    margin-bottom: 29px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb31 {
    margin-bottom: 31px;
}

.mb32 {
    margin-bottom: 32px;
}

.mb33 {
    margin-bottom: 33px;
}

.mb34 {
    margin-bottom: 34px;
}

.mb35 {
    margin-bottom: 35px;
}

.mb36 {
    margin-bottom: 36px;
}

.mb37 {
    margin-bottom: 37px;
}

.mb38 {
    margin-bottom: 38px;
}

.mb39 {
    margin-bottom: 39px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb41 {
    margin-bottom: 41px;
}

.mb42 {
    margin-bottom: 42px;
}

.mb43 {
    margin-bottom: 43px;
}

.mb44 {
    margin-bottom: 44px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb46 {
    margin-bottom: 46px;
}

.mb47 {
    margin-bottom: 47px;
}

.mb48 {
    margin-bottom: 48px;
}

.mb49 {
    margin-bottom: 49px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb51 {
    margin-bottom: 51px;
}

.mb52 {
    margin-bottom: 52px;
}

.mb53 {
    margin-bottom: 53px;
}

.mb54 {
    margin-bottom: 54px;
}

.mb55 {
    margin-bottom: 55px;
}

.mb56 {
    margin-bottom: 56px;
}

.mb57 {
    margin-bottom: 57px;
}

.mb58 {
    margin-bottom: 58px;
}

.mb59 {
    margin-bottom: 59px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb61 {
    margin-bottom: 61px;
}

.mb62 {
    margin-bottom: 62px;
}

.mb62 {
    margin-bottom: 62px;
}

.mb63 {
    margin-bottom: 63px;
}

.mb64 {
    margin-bottom: 64px;
}

.mb65 {
    margin-bottom: 65px;
}

.mb66 {
    margin-bottom: 66px;
}

.mb67 {
    margin-bottom: 67px;
}

.mb68 {
    margin-bottom: 68px;
}

.mb69 {
    margin-bottom: 69px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb75 {
    margin-bottom: 75px;
}

/*=====================> Lists ========================*/
.list-1 li {
    background: url(../images/marker1.png) 0 7px no-repeat;
    padding-left: 20px;
}

.list-2 li {
    background: url(../images/marker1.png) 0 7px no-repeat;
    padding-left: 20px;
}

.list-3 li {
    background: url(../images/marker1.png) 0 7px no-repeat;
    padding-left: 20px;
}

/*=====================> Titles ========================*/
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.title-1 {
    font-weight: bold;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.title-2 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #525252;
}

.title-2--2 {
    color: #000;
}

.title-4 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-3 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 10px;
}

/*

.title-3{
  font-size: px;
  line-height: ;
}



.title-5{
  font-size: px;
  line-height: ;
}*/
/*================================>> GOOGLE FONTS  <<========================================*/
/*================================>> hovers <<========================================*/
a {
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

a:hover {
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

/*============================ Arctic modal =============================*/
.arcticmodal-overlay,
.arcticmodal-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.arcticmodal-container {
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

*:first-child + html .arcticmodal-container {
    height: 100%;
}

.arcticmodal-container_i {
    height: 100%;
    margin: 0 auto;
}

.arcticmodal-container_i2 {
    padding: 24px;
    margin: 0;
    border: 0;
    vertical-align: middle;
}

.arcticmodal-error {
    padding: 20px;
    border-radius: 10px;
    background: #000;
    color: #fff;
}

.arcticmodal-loading {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #000 url(loading.gif) no-repeat 50% 50%;
}

/* ========================== OWL CAROUSEL =============================*/
/*
 *  Core Owl Carousel CSS File
 *  v1.3.2
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* display none until init */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
    cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.header {
    background-color: #3DCD58;
    color: #fff;
    position: relative;
}

.header__inner {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: -20px;
    background-color: rgba(61, 205, 88, 0.8);
    content: "";
}

.header--2::after {
    background-color: rgba(61, 205, 88, 0.4);
}

.navigation__list {
    display: flex;
}

.navigation__list li {
    margin: 0 30px;
}

.navigation__list a {
    color: #fff;
    text-decoration: underline;
}

.navigation__list a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 995px) {
    .navigation__list li {
        margin: 0 15px;
    }
}

@media only screen and (max-width: 767px) {

    .header::after {
        display: none;
    }

    .resp-toggle-btn {
        display: inline-block;
        border: none;
        cursor: pointer;
        outline: none;
        width: 50px;
        height: 40px;
        position: relative;
        top: 12px;
        right: 12px;
        position: absolute;
        background: none;
    }

    .resp-toggle-btn span {
        display: block;
        position: absolute;
        height: 2px;
        left: 8px;
        right: 8px;
        background-color: #fff;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

    .resp-toggle-btn span.line1 {
        top: 11px;
    }

    .resp-toggle-btn span.line2 {
        top: 19px;
    }

    .menu > .hasUl > a::after {
        right: 22px;
    }

    .resp-toggle-btn span.line3 {
        top: 27px;
    }

    .navTrue .resp-toggle-btn span {
        left: 6px;
        right: 6px;
    }

    .navTrue .resp-toggle-btn span.line1 {
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 19px;
    }

    .navTrue .resp-toggle-btn span.line2 {
        opacity: 0;
    }

    .navTrue .resp-toggle-btn span.line3 {
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 19px;
    }

    .navigation {
        position: fixed;
        left: 100%;
        top: 63px;
        width: 300px;
        height: 100%;
        z-index: 99999;
        padding: 0;
        overflow: auto;
        background-color: #3DCD58;
        -webkit-transition: all 350ms ease;
        -moz-transition: all 350ms ease;
        -ms-transition: all 350ms ease;
        -o-transition: all 350ms ease;
        transition: all 350ms ease;
    }

    .navTrue .navigation {
        left: calc(100% - 300px);
    }

    .navigation__list {
        display: block;
    }

    .navigation__list li {
        float: none;
        display: block;
        margin: 0;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navigation__list a {
        display: block;
        padding: 10px 20px;
        color: #fff;
        font-size: 16px;
    }

    .nav_overlay {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 888;
        color: #fff;
        background-color: #000;
        -webkit-transition: all 350ms ease;
        -moz-transition: all 350ms ease;
        -ms-transition: all 350ms ease;
        -o-transition: all 350ms ease;
        transition: all 350ms ease;
    }

    .navTrue .nav_overlay {
        opacity: .7;
        visibility: visible;
    }

    .logo {
        width: 200px;
    }

    .logo img {
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 480px) {
    .navigation {
        width: 100%;
    }

    .navTrue .navigation {
        left: 0;
    }
}

.banner {
    background: url(../images/banner-bg.jpg) 50% -150px no-repeat;
    background-size: cover;
    padding: 70px 0;
    align-items: center;
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

.banner__inner {
    margin-left: 100px;
    max-width: 460px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.banner--2 {
    background: url(../images/banner-bg-2.png) 50% 50% no-repeat;
    background-size: cover;
    font-size: 24px;
}

.banner--2 .banner__inner {
    max-width: 550px;
}

@media only screen and (max-width: 1700px) {
    .banner {
        background-position: 50% 0;
        background-size: cover;
    }
}

@media only screen and (max-width: 768px) {
    .banner {
        font-size: 24px;
        padding: 30px 0;
    }

    .banner__inner {
        margin: 0;
    }
}

.rules {
    display: flex;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 55px;
}

.rules__item {
    width: 33.3%;
    padding: 0 50px;
}

.rules__item-img {
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .rules {
        margin-bottom: 20px;
    }

    .rules__item {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 600px) {
    .rules {
        flex-wrap: wrap;
    }

    .rules__item {
        width: 100%;
        margin-bottom: 20px;
    }
}

.prizes {
    display: flex;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.prizes__item {
    width: 33.3%;
    padding: 0 50px;
}

.prizes__item-img {
    margin-bottom: 25px;
}

@media only screen and (max-width: 995px) {
    .prizes__item {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 600px) {
    .prizes {
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .prizes__item {
        width: 100%;
        margin-bottom: 30px;
    }
}

.products {
    display: flex;
}

.products__item {
    width: 20%;
    text-align: center;
    font-size: 14px;
    padding: 0 15px;
    position: relative;
}
.products__item-25 {
    width: 22%;
}
.products__item--water:after {
    content: ' ';
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(../images/water.svg) no-repeat left top;
    right: 15px;
    top:10px;
}



.products__item-img {
    margin-bottom: 20px;
    min-height: 155px;
}

.products__item-img img {
    max-width: 100%;
    height: auto;
}

.products__item-name {
    margin-bottom: 10px;
    min-height: 42px;
}

.products__item .btn-2 {
    display: block;
}

.products--modal .products__item {
    width: 50%;
}

@media only screen and (max-width: 995px) {
    .products {
        flex-wrap: wrap;
    }

    .products__item {
        width: 50%;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .products__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .products__item-name {
        min-height: 0;
    }
}

.links {
    font-size: 12px;
}

.links li {
    margin-bottom: 40px;
}

.links__item-excerpt {
    position: relative;
}

.links__item-excerpt::before {
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    display: block;
    position: absolute;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
    /* IE6-9 */
    content: "";
}

.links__item-link {
    padding-top: 20px;
    text-align: right;
}

.thumbnails {
    font-size: 14px;
    line-height: 1.4;
}

.thumbnails__img {
    margin-bottom: 10px;
}

.thumbnails img {
    width: 100%;
}

.thumbnails__link {
    padding-left: 80px;
    text-align: right;
}

.thumbnails li {
    margin-bottom: 40px;
}

.footer {
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    height: 200px;
    line-height: 200px;
    background: #666;
    color: #fff;
    text-align: center;
}

.body-modal {
    overflow: hidden;
}

.modal {
    color: #000;
    overflow: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 40px 0;
    height: 100%;
    z-index: 1001;
    text-align: center;
    vertical-align: middle;
    bottom: 0;
    display: none;
    font-size: 18px;
    line-height: 22px;
}

.modals__fog {
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
    z-index: 1000;
}

.modal--video .modal__body {
    width: 900px;
}

.modal__body {
    position: relative;
    z-index: 1;
    padding: 80px;
    width: 830px;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    display: inline-block;
    background: #fff;
    text-align: left;
    border: none;
    vertical-align: middle;
    border-radius: 5px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.modal__body h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal__body iframe {
    height: 420px;
}

.modal__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.modal__header {
    padding: 0;
    border-bottom: none;
}

.modal__content {
    padding: 0;
}
.modal__content a {
    text-decoration: underline;
}
.modal__content a:hover {
    text-decoration: none;
}


.modal__footer {
    padding: 0;
    border-top: none;
    margin: 0;
}

.modal__close {
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 20px;
    background: url(../images/close-icon.svg);
    width: 30px;
    height: 30px;
}

.modal__title {
    font-family: inherit;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .modal__body {
        padding: 30px;
    }

    .modal__body .title-1 {
        font-size: 20px;
    }

    .modal__body h3 {
        font-size: 18px;
    }

    .modal__body iframe {
        height: 300px;
    }

    .modal__close {
        right: 10px;
        top: 10px;
        width: 20px;
        height: 20px;
        background-size: cover;
    }
}
