@font-face {
    font-family: 'OpenSans-400';
    src: url(../fonts/opensans-regular.woff2) format('woff2'),
        url(../fonts/opensans-regular.woff) format('woff');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-600';
    src: url(../fonts/opensans-semibold.woff2) format('woff2'),
        url(../fonts/opensans-semibold.woff) format('woff');
    font-display: swap;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-700';
    src: url(../fonts/opensans-bold.woff2) format('woff2'),
        url(../fonts/opensans-bold.woff) format('woff');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}


/* Global */

html {
    box-sizing: border-box;
}

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

body {
    font-family: 'font-name', sans-serif;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'OpenSans', sans-serif;
}


/* .container {
    max-width: 1440px;
    padding: 0 50px;
    margin: 0 auto;
} */

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

/* Header */

.header__section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 20px;
    max-width: 1280px;
}

.header__section-image {
    max-width: 175px;
    width: 100%;
}

.header__menu {
    width: 31%;
}

.header__menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header__menu-link {
    font-family: 'OpenSans-400', sans-serif;
    font-size: 18px;
    line-height: 100%;
    color: #262627;
    padding: 11px 35px;
    border: 2px solid #262627;
    border-radius: 30px;
}

.header__menu-link:hover {
    background: #262627;
    color: #ffffff;
}

/* first section */

.section__first {
    background-image: url('../img/background-main.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 89px;
    padding-bottom: 89px;
    border-radius: 30px;
}

.section__first-image {
    width: 100%;
    text-align: center;
}

.section__first-image img {
    text-align: center;
    max-width: 203px;
    width: 100%;
}

.section__first-title {
    width: 90%;
    text-align: center;
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(30px + 21 * ((100vw - 320px) / (1440 - 320)));
    line-height: 110%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 45px auto 20px auto;
}

.section__first-text {
    width: 55%;
    margin: auto;
    text-align: center;
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* button */

.section__first__btn {
    margin-top: 10px;
    margin-bottom: 140px;
}

.section__first__btn:hover {
    transform: scale(1.03);
    transition: .3s;
   
}

.btn {
    text-align: center;
    background: #2B4EF4;
    border-radius: 30px;
    
}

.btn__link {
    width: 100%;
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(15px + 3 * ((100vw - 320px) / (1440 - 320)));
    line-height: 100%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    display: block;
    padding-top: 26px;
    padding-bottom: 26px;
}

/* second section */

.section__second__information {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.section__second__information-title {
    width: 40%;
}

.section__title {
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(28px + 16 * ((100vw - 320px) / (1440 - 320)));
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #262627;
}

.section__second__information__text {
    width: 48.5%;
    padding-top: 10px;
}

.section__second__information__text-subtitle {
    font-family: 'OpenSans-600', sans-serif;
    font-size: calc(20px + 4 * ((100vw - 320px) / (1440 - 320)));
    font-weight: 600;
    line-height: 110%;
    color: #262627;
}

.section__second__information__text-descr {
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    margin-top: 10px;
}


.section__second__instructions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    counter-reset: section;
}

.section__second__instructions__items:not(:last-child)::before {
    counter-increment: section;
    content: "0"counters(section, ".");
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    background: #262627;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;

}

.section__second__instructions__items {
    width: 50%;
    background-color: #F4F4F4;
    border-radius: 30px;
    padding: 30px 40px 85px 40px;
}

.section__second__instructions__items-title {
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(18px + 6 * ((100vw - 320px) / (1440 - 320)));
    line-height: 120%;
    color: #262627;
    margin-top: 15px;
    letter-spacing: -0.06em;
}

.section__second__instructions__items-text {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    margin-top: 15px;
}

.section__second__instructions__items:nth-child(5) {
    padding: 0;
    padding: 30px 40px 20px 40px;
}

.section__second__instructions__items:nth-child(6) {
    padding: 0;
     display: flex;
   
}

/* .section__second__instructions__items:nth-child(6) img {
    width: 100%;
    object-fit: fill;
} */

.section__second__btn {
    margin-bottom: 65px;
}

/* add info */

.add__information {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 140px;
}

.add__information-title {
    width: 50%;
}

.add__information-text {
    width: 48.5%;
}

.add__information-text p {
    margin-top: 0;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
}

.add__information-text p:nth-child(2) {
    margin-top: 15px;
}

/* third section */

.section__third__information__text {
    margin-top: 0;
    padding-top: 0;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
}

.section__third__functions {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}

.section__third__functions-image {
    width: 30%;
    display: flex;
}

.section__third__functions-image img {
    border-radius: 30px;
        object-fit: cover;
    
}

.section__third__functions__descr {
    width: 70%;
}

.section__third__functions__descr-top,
.section__third__functions__descr-down {
    padding: 40px 40px 55px 40px;
    background-color: #F4F4F4;
    border-radius: 30px;
}

.section__third__functions__descr-down {
    padding-top: 30px;
    padding-bottom: 65px;

}

.section__third__functions__desrc-title {
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(18px + 6 * ((100vw - 320px) / (1440 - 320)));
    line-height: 33px;
    letter-spacing: -0.05em;
    color: #262627;
}

.section__third__functions__desrc-title span {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #2B4EF4;
    color: #2B4EF4;
}

.section__third__functions__desrc-text {
    font-family: 'OpenSans-4000', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    margin-top: 13px;
}

.section__third__statistic {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section__third__statistic-title {
    width: 45%;
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(24px + 4 * ((100vw - 320px) / (1440 - 320)));
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #262627;
}

.section__third__statistic-text {
    width: 48.5%;
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    color: #262627;
}

.section__third__conditions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: section;
    margin-top: 32px;
    margin-bottom: 32px;

}


.section__third__conditions-items::before {
    counter-increment: section;
    content: "0"counters(section, ".");
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    background: #262627;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;

}

.section__third__conditions-items {
    width: 31.5%;
    border-top: 1px solid #262627;
    padding-top: 20px;
}

.section__third__conditions-items p {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    margin-top: 20px;
}

/* fourth section */

.section__forth__text {
    padding-top: 0;
}

.section__fourth {
    margin-bottom: 145px;
}

.section__fourth__description {
    margin: 40px auto 65px auto;
    display: flex;
    flex-direction: row;
    position: relative;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* width: 1380px; */
    overflow: hidden;

}
.section__forth__text {
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
}


.section__fourth__description-blue,
.section__fourth__description-grey,
.section__fourth__description-black {
    width: 30%;
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(15px + 4 * ((100vw - 320px) / (1440 - 320)));
    font-weight: 700;
    line-height: 120%;
}

.section__fourth__description-blue {
    background: #2B4EF4;
    border-radius: 50%;
    color: #fff;
    height: 20em;
    position: relative;
    width: 20em;
    z-index: 10;
    left: 2.5%;
}

.section__fourth__description-blue p {
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(15px + 4 * ((100vw - 320px) / (1440 - 320)));
    font-weight: 700;
    line-height: 120%;
    top: 50%;
    height: auto;
}

.section__fourth__description-grey {
    background: #F4F4F4;
    border-radius: 50%;
    color: #262627;
    height: 20em;
    width: 20em;
    position: relative;
    z-index: 5;
}

.section__fourth__description-grey p {
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(15px + 4 * ((100vw - 320px) / (1440 - 320)));
    font-weight: 700;
    line-height: 120%;
    top: 50%;
    height: auto;
}

.section__fourth__description-black {
    background: #262627;
    border-radius: 50%;
    color: #ffffff;
    height: 20em;
    width: 20em;
    position: relative;
    right: 3%;
    z-index: 1;
}

.section__fourth__description-black p {
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 75%;
    text-align: center;
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(15px + 4 * ((100vw - 320px) / (1440 - 320)));
    font-weight: 700;
    line-height: 120%;
    top: 50%;
    height: auto;
 }

.section__fourth__attention {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section__fourth__attention-title {
    width: 45%;
    font-family: 'OpenSans-600', sans-serif;
    font-weight: 600;
    font-size: calc(20px + 4 * ((100vw - 320px) / (1440 - 320)));
    line-height: 110%;
    color: #262627;
}

.section__fourth__attention__information {
    width: 48.5%;
}

.section__fourth__attention__information p,
.section__fourth__attention__information li {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    color: #262627;
}

.section__fourth__attention__information li {
    margin-top: 10px;
}

.section__fourth__attention__information ul {
    list-style: none;
}

.section__fourth__attention__information ul li::before {
    content: "\2014";
    position: relative;
    left: -5px;
}


/* slider */

.slider {
    background-color: #262627;
}

.slider__information {
    padding-top: 80px;
    padding-bottom: 30px;
}

.section__slider-title {
    width: 45%;
}

.section__slider-descr {
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
}

.section__slider-title,
.section__slider-subtitle,
.section__slider-descr {
    color:#ffffff;
}



.owl-carousel {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    /* margin-left: auto;
    margin-right: 0; */
    
}

.owl-items {
    padding: 40px 30px 0 40px;
    background: #F4F4F4;
    border-radius: 30px;
    height: 530px;
}

.owl-items-icon {
    width: 80px;
    background: #2B4EF4;
    border-radius: 50px;
    padding: 30px;
}

.owl-items-icon-img {
    width: 21px;
    height: 21px;
}


.owl-items-title {
font-family: 'OpenSans-700', sans-serif;
font-size: calc(18px + 6 * ((100vw - 320px) / (1440 - 320)));
line-height: 120%;
letter-spacing: -0.06em;
color: #262627;
margin-bottom: 10px;
margin-top: 30px;
}

.owl-items-text {
    font-family: 'OpenSans-400', sans-serif;
font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
line-height: 150%;
letter-spacing: -0.02em;
color: #262627;
}

.owl-prev, .owl-next {
    border: 2px solid #ffffff !important;
    border-radius: 30px !important;
   width: 90px;
   height: 40px;
}


.owl-theme .owl-nav {
    margin-top: 30px !important;
    padding-bottom: 70px;
    text-align: left !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #ffffff !important;
 
}

.owl-theme .owl-nav [class*=owl-]:hover path {
    fill: #262627 !important;
 
}


/* fifth section */

.section__fifth {
    margin-top: 140px;
}

.section__fifth__information {
    margin-bottom: 40px;
    align-items: center;
}

.section__fifth__information-title {
    width: 45%;
}

.section__fifth__information-subtitle {
    width: 49%;
}

.section__fifth__instructions__items:nth-child(2) {
    padding: 0;
    display: flex;
}
/* .section__fifth__instructions__items img {
    height: 100%;
} */

.section__fifth__instructions__items {
    padding-bottom: 75px;
}

.section__fifth__text-mobile {
    display: none;
}

/* sixth section */

.section__sixth__information-title {
    width: 55%;
}

.section__sixth__instructions__items {
    padding: 30px 40px 30px 40px;
}

.section__sixth__instructions__items-list li {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    color: #262627;
    margin-top: 15px;
}

.section__sixth__instructions__items-list li::before {
    content: "\2014";
    position: relative;
    left: -5px;
}

.section__sixth__instructions__items:nth-child(1) {
    padding: 0;
    display: flex;
    
}

/* .section__sixth__instructions__items:nth-child(1) img {
   height: 100%;
    
} */

.section__sixth__instructions__items:nth-child(1)::before {
    display: none;
}

.section__sixth__instructions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    counter-reset: section+1;
}

.section__sixth__instructions__items:not(:first-child)::before {
    counter-increment: section;
    content: "0"counters(section, ".");
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    background: #262627;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

/* seventh section */
.section__seventh__information {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* .section__seventh__information__items img {
    height: 100%;
} */

.section__seventh__information__items-title {
    margin-bottom: 60px;
}

.section__seventh__information__items {
    width: 48.5%;
    margin-top: 0;
    display: flex;
}

.section__seventh__information__items-text {
    width: 95%;
    padding-top: 15px;
}

.section__seventh__information__items-text p:nth-child(1) {
    padding-bottom: 40px;
}

/* section eighth */

.section__eighth {
    margin-top: 75px;
    margin-bottom: 80px;
}

.section__eighth__information {
    margin-bottom: 45px;
}

.section__eighth__information-title {
    width: 50%;
}

.section__eighth__information-text {
    width: 48.5%;
}

.section__eighth__information-text p {
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
}

.section__eighth__information-notice {
    padding: 40px;
    background: #F4F4F4;
    border-radius: 30px;
}

.section__eighth__information-notice span {
    color:#2B4EF4;
}

/* footer */

.footer {
    background-color: #262627;
}

.footer__section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer__section-image {
    max-width: 175px;
    width: 100%;
}

.footer__menu {
    width: 30%;
}

.footer__menu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: end;

}

.footer__menu li {
    font-family: 'OpenSans-400', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 150%;
    color: #ffffff;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    padding: 5px 16px;
    margin-left: 10px;
}

.footer__menu li:hover {
    color: #262627;
    background-color: #ffffff;
}

/* page 1 win */
.section__first__one__win {
    background-image: url('../img/background-win.jpg');
}


.section__fourth__description-grey-1win p {
    height: 60%;
    top: 55%;
}


.section__second__win-subtitle {
    width: 49%;
}

.section__third__win-title {
    width: 45%;
}

.section__sixth__win {
    margin-top: 140px;
}

.section__sixth__win-title {
    width: 48%;
}

.section__sixth__win-text {
    width: 60%;
    margin-left: 0;
    padding-left: 0;
}

.section__seventh {
    margin-top: 140px;
}

.section__seventh__win-title {
    width: 48%;
}

.section__seventh__win__instructions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    counter-reset: section;
}

.section__seventh__win__instructions__items {
    width: 50%;
    background-color: #F4F4F4;
    border-radius: 30px;
    padding: 30px 40px 85px 40px;
}

.section__seventh__win__instructions__items::before {
    counter-increment: section;
    content: "0"counters(section, ".");
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    background: #262627;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.section__seventh__win__instructions__items-title {
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(18px + 6 * ((100vw - 320px) / (1440 - 320)));
    line-height: 33px;
    letter-spacing: -0.05em;
    color: #262627;
}

.section__seventh__win__instructions__items-title span {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #2B4EF4;
    color: #2B4EF4;
}

.section__seventh__win__instructions__items-text {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    margin-top: 15px;
}

.section__fourth__win-title {
    width: 60%;
}

.section__fourth__win__conditions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: section;
    margin-top: 32px;
    margin-bottom: 32px;
}

.section__fourth__win__conditions-items {
    width: 48%;
    border-top: 1px solid #262627;
    padding-top: 20px;
}

.section__fourth__win__conditions-items:not(:last-child)::before {
    counter-increment: section;
    content: "0"counters(section, ".");
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    background: #262627;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.section__fourth__win__functions__desrc-title {
    font-family: 'OpenSans-700', sans-serif;
    font-size: calc(18px + 6 * ((100vw - 320px) / (1440 - 320)));
    line-height: 33px;
    letter-spacing: -0.05em;
    color: #262627;
}

.section__fourth__win__conditions-items {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    margin-top: 20px;
}

.section__fourth__win__conditions-items span {
    font-weight: 700;
}

.section__fourth__win__conditions-items ul {
    list-style: none;
}

.section__fourth__win__conditions-items ul li::before {
    content: "\2014";
    position: relative;
    left: -5px;
}

.section__fourth__win__conditions-items:nth-child(3) {
    order: 4;
 }

.section__fourth__win__conditions-items:last-child {
   border-top: none;
   order: 3;
   padding-top: 0;
   display: flex;
}

/* .section__fourth__win__conditions-items img {
    height: 100%;
    object-fit: fill;
} */

/* Pin up page */

.section__first__pinup-text {
    width: 70%;
}

.section__first__pinup-image img {
    max-width: 376px;
}

.section__second__pinup {
    margin-top: 140px;
}

.section__second__pinup-title {
    width: 50%;
}

.section__second__pinup__conditions-items {
    width: 49%;
}

.slider__pinup-title {
    color: #ffffff;
    width: 48%;
}

.section__fourth__pinup {
    margin-top: 140px;
}

.section__fourth__pinup__add__information {
    margin-top: 40px;
    margin-bottom: 50px;
}

.section__fourth__pinup-image {
    border-radius: 30px;
    margin-bottom: 80px;
}

.section__fourth__pinup-subtitle {
    margin-bottom: 40px;
    width: 55%;
}

.section__fifth__pinup-title {
    width: 55%;
}

.section__seventh__pinup {
    margin-top: 140px;
    margin-bottom: 80px;
}
.section__second__1xbet-title {
    width: 50%;
}

.section__second__1xbet-image {
    border-radius: 30px;
}

.section__second__1xbet-image {
    margin-top: 40px;
    margin-bottom: 85px;
}

/* 1x bet page */

.section__third__1xbet-title {
    width: 48%;
}

.section__fourth__description-grey-1xbet p {
    height: auto;
    top: 50%;
}

.section__fifth__1xbet-title {
    width: 65%;
}

.section__sixth__1xbet {
    margin-top: 100px;
    margin-bottom: 70px;
}

.section__sixth__1xbet__conditions-items p span {
    font-weight: 700;
}

.section__third__1xbet__attention {
    margin-top: 0;
    margin-bottom: 30px;
}

/* Mostbet page */

.section__first__mostbet-text {
    width: 70%;
}

.section__first__mostbet-image img {
    max-width: 334px;
}

.section__second__mostbet-title {
    width: 51%;
}

.section__second__mostbet__attention {
    width: 100%;
    height: 100%;
}

.section__second__mostbet__attention-image img {
    object-fit: fill;
}

.section__second__mostbet-subtitle {
    width: 80%;
}

.section__fourth__mostbet {
    margin-top: 140px;
}

.section__fifth__mostbet__information-text {
    margin-top: 40px;
    margin-bottom: 140px;
}

.section__sixth__mostbet {
    margin-bottom: 80px;
}

.section__sixth__mostbet__descr-text span {
    font-weight: 700;
}

/* strategy page */

.section__first__strategy-text {
    width: 80%;
}

.section__second__strategy__information-text {
    width: 50%;
}

.section__second__strategy__instructions__items p span {
    font-weight: 700;
}

.section__third__strategy {
    margin-top: 140px;
}

.section__third__strategy__description-blue p {
    height: auto;
}

.section__fourth__strategy__information__block {
    width: 50%;
}

.section__fourth__strategy__text {
    width: 100%;
}
.section__fourth__strategy__text span {
    font-weight: 700;
}

/* Comments page */

.section__second__comments-image {
    border-radius: 30px;
}

.section__third__comments {
    margin-top: 140px;
    margin-bottom: 140px;
}

.section__third__comments-title {
    width: 65%;
}

.section__third__comments__items ul {
    list-style: none;
}

.section__third__comments__items ul li::before {
    content: "\2014";
    position: relative;
    left: -5px;
}

.section__third__comments__items li {
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
    line-height: 150%;
    color: #262627;
}

.slider__comments-text {
    color:#ffffff;
}

.owl-items-comments-title {
    color:#2B4EF4
}

.owl-items-comments {
    min-height: 300px;
    height: auto;
}

.section__fifth__comments {
    margin-top: 80px;
    margin-bottom: 80px;
}

.section__second__win-subtitle span {
    margin-top: 20px;
}

.section__second__comments-image img {
    border-radius: 30px;
}

/* page tivit bet */

.section__first-tivit {
    background-image: url(../img/background-tivit.png);
}

.section__second__information-tivit {
    margin-top: 40px;
}
.btn-tivit {
    margin-top: 20px;
    margin-bottom: 75px;
}
.section__third__tivit-text {
    margin-top: 75px;
    margin-bottom: 55px;
}

.section__third__tivit-subtitle {
    width: 50%;
    font-family: 'OpenSans-400', sans-serif;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.02em;
}
.section__third__tivit__registration {
    display: flex;
    justify-content: space-between;
}

.section__third__conditions-tivit {
    display: block;
}
.section__third__tivit__title-descr {
    width: 100%;
}
.section__third__tivit-descr {
    width: 100%;
    padding-bottom: 50px;
}
.section__third__titiv-information {
    margin-top: 0;
}
/* .section__third__conditions-tivit {
    width: 50%;
} */
.section__fourth__tivit__deposit {
    width: 45%;
}
.section__fouth__tivit-subtitle {
    width: 100%;
}
.section__fouth__tivit-info {
    width: 100%;
    margin-bottom: 0;
}
.section__fouth__tivit-descr {
    width: 100%;
    padding-bottom: 50px; 
}
.section__fourth__tivit__withdraw {
    width: 100%;
}
.btn__section__fourth__tivit {
    margin-top: 60px;
    margin-bottom: 95px;
}
.section__fourth__tivit__deposit-info {
    margin-top: 50px;
}
.section__fifth__tivit-subtitle {
    margin-top: 40px;
    margin-bottom: 40px;
line-height: 150%;
letter-spacing: -0.02em;
}
.btn-tivit-section-fifth {
    margin-top: 50px;
    margin-bottom: 50px;
}

/*chillbet page*/
.section__first-chillbet {
    background-image: url(../img/background-chillbet.png);
}
.section__second__information-chillbet {
    width:50%;
}
.section__second__information-chillbet-text {
    width:100%;
}
.section__third__information-chillbet {
    margin-top:20px;
}
.section__fourth__chillbet__subtitle {
    margin-top:35px;
}
.section__faq__chillbet {
    margin-top:80px;
}
.section__faq__items-count:before {
        content: none;
}


/*style for img*/

.section__image__tivit {
    width:48%;
}

.section__image__tivit-title {
    width: 100%;
    margin-bottom: 90px;
}

.section__image__tivit-picture {
    margin-bottom: 50px;
}
.section__image__tivit-picture-mobile {
    display:none;
}

@media screen and (max-width:1000px) {
   .section__image__tivit {
       width:100%;
   } 
   .section__image__tivit-title {
       margin-bottom:20px;
   }
   .section__image__tivit-picture {
    margin-bottom: 20px;
    text-align:center;
}
.section__image__tivit-picture-desktop {
    display:none;
}
.section__image__tivit-picture-mobile {
    display:block;
    margin-top:20px;
}
}


/*style images*/
.section__second__image {
    margin-bottom:32px;
}

.section__images {
    display: flex;
    justify-content: space-between;
    margin-bottom:140px;
}

.section__image-right {
    width: 100%;
    display: flex;
}

.section__image-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section__image-right img, .section__image-left img {
    max-width:550px;
    width:100%;
}
.micro__image {
    display:flex;
}

@media screen and (max-width:1000px) {
    .section__images {
        flex-direction:column;
    }
    .section__image-right, .section__image-left {
          justify-content: center;
          margin-bottom:30px;
          text-align: center;
    }
    .section__image-left img {
        margin:auto;
    }
}

.section__image-center {
    text-align:center;
}

.btn__partners__inside {
    text-align: center;
    background: #2B4EF4;
    border-radius: 30px;
    width:50%;
    margin:20px auto;
    font-family: 'OpenSans-400', sans-serif;
    font-size: calc(10px + 8 * ((100vw - 320px) / (1440 - 320)));
    line-height: 100%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    display: block;
  
}
.btn__partners__inside a {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
}

    .btn__partners__inside:hover {
    transform: scale(1.03);
    transition: .3s;
}

	    .main__link {
font-family: 'OpenSans-400', sans-serif;
      font-size: 10px;
    line-height: 100%;
    color: #262627;
   width:18%;
    margin:-5px 0 0 0;
    white-space: nowrap;
       display: flex;
    justify-content: center;
  
}

.main__link a {
    display:block;
     padding: 7px 13px 6px;
       border: 2px solid #262627;
    border-radius: 30px;
        width: fit-content;
    float: right;
     font-size: 10px;
     line-height:10px;
     height:26.8px;
}

 .main__link a:hover{
     background: #262627;
    color: #ffffff;
 }
				 
 
@media screen and (max-width:1000px) {
    .btn__partners__inside {
        width:60%;
    }
    .main__link {
        margin:0 10px 0 0;
    }
    
}

@media screen and (max-width: 1379px) and (min-width: 1025px) {
    .space-header-logo {
    width: 8% !important;
}
.space-header-logo-ins {
    margin: 5px 0 !important;
}
.main__link {
    width:5%;
}

}

/*table style*/
 .table-screen td {
    width:25%;
    height:auto;
    padding:5px;
}
.table-screen img {
    border-radius:10px;
}
.table-screen p {
     font-family: 'OpenSans-400', sans-serif;
     line-height: 150%;
     letter-spacing: -0.02em;
    color: #262627;
     font-weight: 700;
     font-size: calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
     margin:5px 0; 
}
		    
@media screen and (max-width:1000px) {
.table-screen tr {
    display:flex;
    flex-wrap:wrap;
    
}
.table-screen td {
     width:50%;
}
}


/*table style*/
.content__section__information {
    display:flex;
    justify-content: space-between;
    margin:20px 0 140px 0;
}
.content_section_information-menu {
    width:45%;
}


    .content_section_information-menu-items li{
        border-top: 1px solid #262627;
      /*padding:10px 0;*/
    font-family: 'OpenSans-400', sans-serif;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #262627;
    font-weight:700;
   background-image: url('/wp-content/themes/mercury/img/icons/arrow-menu.svg');
    background-repeat: no-repeat;
    background-position: center right;
    font-size:calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));

    }
    .content_section_information-menu-items li:last-child {
        border-bottom: 1px solid #262627;
    }
    .content_section_information-menu-items li:hover {
        color:#2B4EF4;
        background-image: url('/wp-content/themes/mercury/img/icons/arrow-menu-blue.svg');
        
    }
     .content_section_information-menu-items li a {
         display:block;
         padding:10px 0;
     }
    .content__section__information-table {
        width:45%;
    }
    
    .table{
      font-family: 'OpenSans-400', sans-serif;
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	height: auto;
	font-size:calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));

}
.table__column {
    width:70%;
}
.table__column {
    border-bottom-left-radius:20px;
    border-top-left-radius:20px;
}
.table__column-numbers {
    border-bottom-right-radius:20px;
    border-top-right-radius:20px;
    font-weight:700;
}

.table td{
	padding: 25px 10px;

}
.table tr {
    border-radius:20px;
}
.table tr:nth-child(2n+1){
    background-color:#F4F4F4;
}

@media screen and (max-width:1000px) {
    .content__section__information {
        flex-direction:column;
    }
    .content_section_information-menu, 
    .content__section__information-table {
        width:100%;
    }
   .content_section_information-menu {
       margin-bottom:50px;
    }
    .content__section__information {
        margin-bottom:30px;
    }
    
.table{
width:100%;

}
}	
 
/* contact */
.section__contact__form {
	margin:100px 0;
	 background-image: url('../img/background-contact.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding:50px 0 50px 0;
 }
.subtitle__contact__form {
/* 	margin-bottom:50px; */
	font-family: 'OpenSans-700', sans-serif;
    font-size: calc(28px + 16 * ((100vw - 320px) / (1440 - 320)));
    line-height: 100%;
    letter-spacing: -0.05em;
}
.contact__form-block {
	display:flex;
	flex-direction:column;
}
.contact__form-email {
	padding: 18px 25px;
	max-width: 538px;
	width:100%;
	height: 61px !important;
	border: 2px solid #FFFFFF !important;
	border-radius: 62px !important;
	 background: transparent !important;
	color:#FFFFFF !important;
}
.contact__form-text {
	max-width: 538px;
	width:100%;
	height: 111px !important;
	border: 2px solid #FFFFFF !important;
	border-radius: 39px !important;
	background: transparent !important;
	margin:20px 0 25px 0;
	color:#FFFFFF !important;
	resize: none !important; 
}

.contact__form-btn {
	max-width: 538px;
	width:100%;
	height: 70px;
	background: #2B4EF4;
	border-radius: 30px;
	color:#FFFFFF;
	font-size:calc(13px + 2 * ((100vw - 320px) / (1440 - 320)));
	text-transform:uppercase;
	border:none;
	cursor:pointer;
}

.contact__form-btn:hover {
	 transform: scale(1.03);
	 transition: .3s;
}

/* Современные браузеры
   ----------------------------  */
.contact__form-email::placeholder {color: #FFFFFF;}
.contact__form-text::placeholder {color: #FFFFFF;}
/* WebKit, Edge
   ----------------------------  */
.contact__form-email::-webkit-input-placeholder {color: #FFFFFF;}
.contact__form-text::-webkit-input-placeholder {color: #FFFFFF;}
/* Edge
   ----------------------------  */
.contact__form-email::-ms-input-placeholder {color: #FFFFFF;}
.contact__form-text::-ms-input-placeholder {color: #FFFFFF;}
/* Firefox 4-18
   ----------------------------  */
.contact__form-email:-moz-placeholder {color: #FFFFFF;opacity: 1;}
.contact__form-text:-moz-placeholder {color: #FFFFFF;opacity: 1;}
/* Firefox 19+
   ----------------------------  */
.contact__form-email::-moz-placeholder {color: #FFFFFF;opacity: 1;}
.contact__form-text::-moz-placeholder {color: #FFFFFF;opacity: 1;}
/* IE 10-11
   ----------------------------  */
.contact__form-email:-ms-input-placeholder {color: #FFFFFF;}
.contact__form-text:-ms-input-placeholder {color: #FFFFFF;}

@media screen and (max-width:1000px) {
	.contact__form-text, .contact__form-email,
	.contact__form-btn {
		max-width:100%;
	}
	.section__contact__form  {
		background-position:left;
	}
}

.contact__email {
	text-align:left;
	margin:30px 0;
	
}


/*author block*/
   .block__author__personal {
        margin:100px auto;
        display:flex;
        flex-wrap:wrap;
        flex-direction:row;
        justify-content: space-between;

    }
    .block__author__personal-image {
        width:25%;
    }
     .block__author__personal-image img{
       max-width:335px;
       width:100%;
    }
    .block__author__personal-info {
        width:70%;
    }
    .author__name {
        width:60%;
    }
    .block__author__personal-info p {
        width:60%;
    }
    @media screen and (max-width:1000px) {
        .block__author__personal {
            flex-direction:column;
        }
        .block__author__personal-image, 
         .block__author__personal-info, 
          .block__author__personal-info p {
              width:100%;
          }
     .block__author__personal-image  {
         margin-bottom:35px
     }
      .block__author__personal-image {
        text-align:center;
    }
     .block__author__personal {
         margin:50px auto;
     }
    }
    
    	   .author__block__info {
	       background: #F4F4F4;
	       border-radius:30px;
	       padding:30px 40px;
	       margin-bottom:80px;
	       display:flex;
	       flex-direction:row;
	       flex-wrap:wrap;
	       justify-content: space-between;
	      align-items: center;
	   } 
	   .block__image img {
	       width:85px;
	       border-radius:50%;
	   }
	   .author__block__info-descr {
	       width:90%;
	   }
	   .author__block__info-name {
	        font-family: 'OpenSans-700', sans-serif;
    font-size: calc(18px + 6 * ((100vw - 320px) / (1440 - 320)));
font-weight: 700;

line-height: 120%;
letter-spacing: -0.06em;
color: #262627;
	   }

.block__image {
	display:flex;
}
.block__image-name {
	margin-left:20px;
}
	   
.section__first-rocketx {
        background-image: url(../img/rocket-x-fon.png);
}

.footer .sub__menu__pages {
    display:none;
}

.space-header-menu ul.main-menu li.menu-item-has-children a:after {
      margin-left: 5px !important;
       position: unset !important;
}
.sub__menu__pages a {
    background:none !important;
    font-size:10px !important;
      text-align:center;
	line-height: unset !important;
}
.sub__menu__pages:hover a {
	background: #262627 !important;
	border-bottom:none !important;
  
}
.sub-menu .menu-item a {
	background:#ffffff !important;
	font-size:12px !important;
	padding: 6px 30px !important;
	width:100% !important;
	
}
.sub-menu a:hover {
	background:#ffffff !important;
}

.space-header-menu ul.main-menu li:hover ul.sub-menu {
    top:30px !important;
}

.space-mobile-menu-list ul li.menu-item-has-children:after {
    z-index:1000;
    color: white;

    display:block;
    width:20px;
    height:20px;
}
@media screen and (max-width:1000px) {
	.sub__menu__pages {
		order:10;
	}
	
	.sub__menu__pages a {
		font-size:20px !important;
		line-height:150% !important;
	}
	
	.sub-menu .menu-item a {
    background: transparent !important;
 	 margin-top:15px;
}
	.sub-menu li {
		margin-bottom:0 !important;
	}
	.space-mobile-menu-list ul li.menu-item-has-children:after {
       top: 10px !important;
    right: -10px !important;
      width: 100% !important;
}
	.sub__menu__pages:hover a {
		 border: 2px solid #FFFFFF !important;
	}
	

}

.sub-menu-active .sub-menu {
	display:block !important;
}

.img__adaptive {
    display:flex;
}

/* casinos vitrina */
  .casinos {
        background: #F5F5F5;
        width: 100%;
        display: flex;
        align-items: center;
        border-radius:20px;
        justify-content: space-between;
        padding: 30px;
        margin: 20px auto;
    }
    .casinos__main {
        display: grid;
        grid-template-columns: 130px 350px;
          grid-template-rows: 65px 65px;
          gap:10px;
      
    }
    .casinos__full-left, .casinos__full-center, .casinos__full-right {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

    }
    .casinos__info-all {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap:60px;
    }
    .casinos__name {
        font-size: calc(24px + 10 * ((100vw - 320px) / (1440 - 320)));
        font-weight: 900;
        color:#000;
        margin: 0;
    }
    .casinos__conditions {
        color:#2B4EF4;
        font-size: calc(16px + 8 * ((100vw - 320px) / (1440 - 320)));
        font-weight: 700;
        margin: 0;
    }
    .casinos__main-img {
        max-width: 130px;
        width: 100%;
        height: 130px;
        grid-row: 1 / 3; 
    }
    .casinos__main-img img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
    }
.casinos__full-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top:15px;
}
.casinos__full-name {
    color:#000;
    font-size: calc(12px + 3 * ((100vw - 320px) / (1440 - 320)));
    font-weight: 700;
    margin: 0;
}
.casinos__full-descr {
    color:#808080;
    font-size: calc(12px + 3 * ((100vw - 320px) / (1440 - 320)));
    margin: 0;
}
    .casinos__info {
        display: flex;
        flex-direction: column;
    }
    .casino__info-text {
        font-size: calc(12px + 3 * ((100vw - 320px) / (1440 - 320)));
        color: #808080;
        margin: 0;
    }
    .casino-info-descr {
        font-size: calc(16px + 8 * ((100vw - 320px) / (1440 - 320)));
        color: #000;
        margin: 0;
        font-weight: 700;
    }

    .casinos__btn a {
        text-decoration: none;
        color:#fff;
        border-radius: 30px;
        background: #2B4EF4;
        padding: 20px 30px;
    }
    @media screen and (max-width:1000px) {
        .casinos {
            flex-direction: column;
        }
        .casinos__btn {
             display: flex;
            text-align: center;
            width: 100%;
        }
        .casinos__btn a {
             display: flex;
           justify-content: center;
            width: 100%;
        }
        .casinos__info-all  {
        margin: 20px auto;
        justify-content: space-around;
        gap:30px;
        width: 100%;
    }
    .casinos__main-img {
        grid-row: 1; 
        width: 60px;
        height: 60px;
		
    }
		.casinos__main-img img {
			border-radius:10px;
		}
.casinos__full-info {
    grid-column: 1 / 3; 
}
    .casinos__main {
        grid-template-columns: 65px 200px;
    }
    .casino__info-top {
        margin-bottom: 15px;
    }
    }
