@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
ul,
ol {
  margin: 30px 0;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}
button,
[role=button] {
  cursor: pointer;
}
/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.page--content {
  padding: 60px 0;
}
.page--breadcrumbs {
  padding: 20px 0;
}
.updated {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}
.updated--inner {
  padding: 10px 15px;
  border-radius: 12px;
}
.post-entry {
  font-size: 16px;
}
.post-entry a {
  color: #10c767;
}
.post-entry h2 {
  margin: 30px 0 16px;
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
}
.post-entry h2:first-child {
  margin-top: 0;
}
.post-entry h3 {
  margin: 30px 0 16px;
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
}
.post-entry h3:first-child {
  margin-top: 0;
}
.post-entry p {
  margin: 16px 0;
  line-height: 1.7;
}
.post-entry ul {
  padding-left: 0;
}
.post-entry ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.post-entry ul li:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #10c767;
  border-radius: 50%;
  left: 0;
  top: 4px;
}
.post-entry ol {
  list-style: none;
  counter-reset: list;
  padding-left: 0;
}
.post-entry ol li {
  position: relative;
  counter-increment: list;
  list-style: none;
  padding-left: 68px;
  margin-bottom: 24px;
}
.post-entry ol li:before {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  content: counter(list);
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  color: #10c767;
  background: rgba(16, 199, 103, 0.1);
  border-radius: 50%;
  font-size: 22px;
  left: 0;
  top: -7px;
}
.post-entry .wp-block-group {
  margin: 30px 0;
  padding: 40px;
}
.post-entry .wp-block-columns {
  margin: 30px 0;
  gap: 30px;
  justify-content: center;
}
.post-entry .wp-block-image {
  margin: 15px 0;
  border-radius: 16px;
  overflow: hidden;
}
.post-entry .wp-block-buttons .wp-block-button__link {
  min-width: 100px;
}
.post-entry .wp-block-table {
  margin: 16px 0;
  border-radius: 16px;
  padding: 0;
}
.post-entry .wp-block-table table {
  border-spacing: 0;
  border: 10px solid #000;
}
.post-entry .wp-block-table table tr {
  border-spacing: 0 10px;
}
.post-entry .wp-block-table table td,
.post-entry .wp-block-table table th {
  padding: 16px 24px;
  background: #000;
  border: none;
}
.post-entry .wp-block-table table tr:nth-child(odd) td,
.post-entry .wp-block-table table tr:nth-child(odd) th {
  background-color: #0e2f29;
}
.post-entry .wp-block-table table thead {
  border-bottom: none;
}
.post-entry .wp-block-table table thead tr th,
.post-entry .wp-block-table table thead tr td {
  background: #000 !important;
}
.post-entry .wp-block-table table thead tr th:first-child,
.post-entry .wp-block-table table thead tr td:first-child {
  border-radius: 10px 0 0 0;
}
.post-entry .wp-block-table table thead tr th:last-child,
.post-entry .wp-block-table table thead tr td:last-child {
  border-radius: 0 10px 0 0;
}
@media (max-width: 1024px) {
  .post-entry {
    font-size: 14px;
  }
  .post-entry h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
  }
  .post-entry h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
}
.btn-primary, .btn-border, .post-entry .wp-block-buttons .wp-block-button__link {
  background-color: #88e9bc;
  background-image: linear-gradient(-153deg, #69d9e8, rgba(105, 217, 232, 0) 53%);
  border-radius: 10px;
  padding: 17px 33px;
  color: #000 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.btn-border {
  background: transparent;
  border: 1px solid #FC6896;
  box-shadow: none;
}
.header {
  background: #051d20;
  padding: 25px 0;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
.header--top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header--mobile-row {
  display: none;
}
.header--menu-open {
  display: none;
}
.header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header--top-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header--buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header--logo {
  display: block;
  width: 124px;
}
.header--logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.header--left {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header--menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header--menu ul li {
  list-style: none;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  justify-content: center;
}
.header--menu .menu a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.header--menu .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  background: #000;
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  min-width: calc(100% + 35px);
}
.header--menu .menu .sub-menu a {
  display: block;
  white-space: nowrap;
}
.header--menu .menu > li {
  padding: 7px 10px;
  border-radius: 7px;
}
.header--menu .menu > li:hover {
  background-color: #0e2f29;
}
.header--menu .menu > li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
.header--menu .menu > li.menu-item-has-children:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  width: 11px;
  height: 6px;
  background-image: url(//soft2bet-malta.com/wp-content/themes/theme/dist/styles/../../images/angle-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.header--menu .menu > li.menu-item-has-children:hover:after {
  transform: rotate(180deg);
}
.header--menu .menu > li.menu-item-has-children:hover > .sub-menu {
  display: flex;
}
@media (max-width: 1024px) {
  .header--button {
    padding: 9px;
  }
  .header--top-right {
    gap: 15px;
  }
  .header--logo {
    max-width: 100px;
  }
  .header--menu-open {
    display: flex;
    width: 28px;
    height: 28px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 12px;
  }
  .header--menu {
    display: none;
    position: absolute;
    height: calc(100vh - 84px);
    top: 100%;
    width: 100vw;
    left: 0;
    background: #000;
  }
  .header--menu.menu-active {
    display: block;
  }
  .header--menu .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .header--menu .menu li:after {
    display: none !important;
  }
  .header--menu .menu .sub-menu {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }
  .header--mobile-row {
    display: block;
    margin-top: 15px;
  }
  .header--mobile-row .header--buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
}
.footer {
  background: #0A0A0A;
  color: #fff;
  margin-top: 50px;
  padding: 60px 0;
}
.footer--top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 15px;
}
.footer--top-right {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer--logo {
  max-width: 210px;
  margin-bottom: 22px;
}
.footer--socials {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer--social-item {
  width: 25px;
  height: 25px;
  display: block;
}
.footer--social-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer--top-right {
  display: flex;
  justify-content: flex-end;
}
.footer--menu {
  display: flex;
  flex-direction: row;
}
.footer--menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.footer--menu a {
  color: #fff;
  font-size: 16px;
}
.footer--menu a:hover {
  color: #10c767;
}
.footer--logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer--logos img {
  height: 40px;
  width: auto;
}
.footer--copyright {
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.footer--bottom {
  padding-top: 25px;
}
.footer--menu-bottom ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer--menu-bottom ul li {
  list-style: none;
}
.footer--menu-bottom ul a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1024px) {
  .footer--top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer--top-right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.licences {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.licences--item {
  width: 210px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.licences--item img {
  max-height: 60px;
}
@media (max-width: 1024px) {
  .licences--item {
    width: 25%;
    height: 70px;
    padding: 10px;
  }
}
.cards {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.cards--item {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: #6e8c81;
  border-radius: 15px;
}
.cards--item:hover .cards--decor {
  opacity: 0;
  transform: translateY(-50px);
}
.cards--item:hover .cards--inner {
  padding-top: 25px;
  transform: translateY(0);
}
.cards--bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.cards--bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.cards--inner {
  position: relative;
  background: #6e8c81;
  padding: 90px 25px 25px;
  overflow: hidden;
  transform: translateY(calc(100% - 186px));
  transition: 0.4s ease;
}
.cards--title {
  color: #fff;
  font-size: 32px;
  line-height: 110%;
  font-weight: 700;
  min-height: 71px;
  margin-bottom: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cards--decor {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 40px;
  transition: 0.4s ease;
}
.cards--text {
  color: #fff;
}
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .cards--inner {
    transform: none;
    padding: 15px;
  }
  .cards--decor {
    display: none;
  }
  .cards--title {
    -webkit-line-clamp: initial;
    min-height: initial;
    font-size: 24px;
  }
}
.custom-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  gap: 30px;
}
.custom-tiles--item {
  background: #0e2f29;
  border-radius: 12px;
  padding: 25px;
}
.custom-tiles--item > *:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 1024px) {
  .custom-tiles {
    grid-template-columns: 1fr;
  }
}
.certs {
  margin: 30px 0;
  background: #0e2f29;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 500px;
  padding: 50px;
}
.certs--title {
  font-size: 56px;
  color: #10c767;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.certs--text {
  font-size: 24px;
}
.certs--right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.certs--right img {
  height: 75px;
  width: auto;
}
@media (max-width: 1024px) {
  .certs {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }
  .certs--title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .certs--text {
    font-size: 18px;
  }
}
.custom-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.custom-list--item {
  position: relative;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.custom-list--item .big {
  font-size: 20px;
  font-weight: 600;
}
.custom-list--item .small {
  margin: 0;
  color: rgba(255, 255, 255, 0.4392156863);
  font-size: 15px;
}
.custom-list--item:before {
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  top: 0;
  left: 0;
  height: 100%;
  background: #10c767;
}
.slider--wrap {
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.slider--wrap .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.1882352941);
}
.slider--wrap .swiper-pagination-bullet-active {
  background: #fff;
}
.slider--slide {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 30px;
  min-height: 400px;
  background-color: #0e2f29;
  border-radius: 15px;
}
.slider--right {
  position: relative;
}
.slider--right img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
}
.slider--left {
  padding: 30px;
  font-size: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.slider--link {
  color: #000 !important;
  background: #fff !important;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .slider--slide {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .slider--right {
    height: 250px;
  }
  .slider--right img {
    -o-object-position: center;
       object-position: center;
  }
}
.faq {
  margin: 30px auto;
  width: 800px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq--item {
  padding: 20px;
  overflow: hidden;
  background: #0e2f29;
  border-radius: 10px;
}
.faq--item.active .faq--text {
  display: block;
}
.faq--item.active .faq--title svg {
  transform: rotate(180deg);
}
.faq--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  text-align: left;
  color: #fff;
  background: transparent;
}
.faq--title svg {
  width: 16px;
  min-width: 16px;
  transition: all 0.3s;
  fill: #041059;
}
.faq--text {
  display: none;
  padding: 15px 0 0;
  color: rgba(255, 255, 255, 0.8);
}
.hero {
  background-color: #051d20;
  padding: 30px 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero--title {
  font-size: 68px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero--title span {
  color: #88e9bc;
}
@media (max-width: 1024px) {
  .hero--title {
    font-size: 40px;
  }
  .hero--row {
    grid-template-columns: 1fr;
  }
  .hero--right {
    display: flex;
    justify-content: center;
  }
  .hero--right img {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .page--content {
    padding: 50px 0;
  }
  .page--content-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
html,
body {
  margin-top: 0 !important;
  font-family: "Roboto", sans-serif;
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}
.body--inner {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  font-size: 18px;
  background: #051d20;
  color: #fff;
  padding-top: 100px;
}
.container {
  width: 1400px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.lang--switcher {
  position: relative;
  font-size: 14px;
  background: #051d20;
  border-radius: 5px;
}
.lang--switcher:hover .lang--switcher-list {
  display: flex;
}
.lang--switcher:hover .lang--switcher-current svg {
  transform: rotate(180deg);
}
.lang--switcher-current {
  background: transparent;
  padding: 6px 12px 6px 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang--switcher-current svg {
  max-width: 8px;
  transition: all 0.3s;
  position: relative;
}
.lang--switcher-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}
.lang--switcher-item span {
  width: 16px;
  min-width: 16px;
}
.lang--switcher-list {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 6px;
  background: #051d20;
  z-index: 100;
  border-radius: 8px;
}

/*!
Theme Name: Mel Mostbet
Author: Vlad Belmas
Author URI: mailto:vladbelmas007@gmail.com
Version: 1.0.1
*/
@media(max-width:1024px){.header--top-right{gap:9px}.header--logo{max-width:130px}.post-entry .wp-block-group{margin:15px 0;padding:0}.post-entry .wp-block-table table{width:auto}.post-entry .wp-block-table table.has-fixed-layout{table-layout:initial;width:auto}.slider--left{padding:15px;font-size:24px}.certs{min-height:initial;padding:30px 15px}.certs--title{font-size:32px}.post-entry .wp-block-table table td,.post-entry .wp-block-table table th{padding:12px 10px}}.contactUsBlock{display:none;position:fixed;width:100%;height:100%;left:0;top:0;z-index:9999}.contactUsBlock.active{display:block}.contactUsBlock_overlay{position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.85)}.contactUsBlockContainer{width:100%;max-width:90vw;margin:0 auto;position:relative;padding:20px;z-index:9;top:50%;transform:translateY(-50%)}.a_modalBox_heading{color:#fff;margin-bottom:30px;font-size:22px;font-weight:700}.contactUsBlock input{border-bottom:1px solid #8d8d8d;border-radius:0;background:0 0;margin-bottom:35px;padding:.9375rem 1.5rem .9375rem 0;color:#fff;font-size:14px;width:100%;outline:0}.contactUsBlock input::placeholder{color:#fff}.contactUsBlock input:focus{border-color:#8aeab9}.a_modalBox_close{position:absolute;top:0;right:10px;font-size:20px;padding:10px;cursor:pointer;color:#fff}.a_modalBox_btn{margin-top:25px}.a_modalBox_submit{font-size:14px;font-weight:700;text-transform:uppercase;background:linear-gradient(90deg,#00ffab,#00d0ff);color:#051d20;transition:box-shadow .2s;border-radius:8px;padding:15px 24px}.a_modalBox_submit:hover{box-shadow:inset 0 0 20px 20px #0000001a}@media (min-width:768px){.contactUsBlockContainer{max-width:900px}.h_field_group{display:flex;justify-content:space-between}.contactUsBlock .a_modalBox_fieldName{width:47%}.contactUsBlock .a_modalBox_fieldEmail{width:47%}}