
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: #05232A;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;                                           
  background: #05232A;
  color: #1A2222;
}

.no-scroll {
  overflow-y: hidden;
}



body.no-scroll {
  overflow-y: hidden;
}
  
a {
  text-decoration: none;
  color: #1A2222;
  transition: all 0.3s linear;
}
  
button {
  cursor: pointer;
  font-family: inherit;
}
  
ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  position: relative;
}
  
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
  
img {
  display: block;
}

.main {
  max-width: 1600px;
  margin: 0 auto;
  padding:  0px 30px;
  display: flex;
  gap: 20px;
  position: relative;
}


.container {
  width: 100%;
  margin: 0 auto;
  padding:20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 0px;
  background: #FFFFFF;
  border-radius: 0px;
  box-shadow: 2px 3px 4px 0px #00000033;

}
.container2 {
  padding: 32px 20px;
}

.container-dark {
  background: #054146;
  overflow: hidden;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;;
}

.image-box {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

h1 {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

p {
  font-size: 15px;
  line-height: 155%;
  text-align: left;
  position: relative;
  z-index: 1;
  color: #1A2222;
}

p.white { 
  color: #fff;
}
p.white strong { 
  color: #fff;
}

h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  padding: 10px 20px;
  position: relative;
  background: linear-gradient(179.66deg, #1B8993 0.2%, #004D57 99.6%);
  overflow: hidden;
  border-radius: 2px;
  text-transform: none;
  z-index: 1;
  color: #fff;
}


h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: #1A2222;
}


h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  text-align: left;
    position: relative;
  z-index: 1;
}

h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
    position: relative;
  z-index: 1;
}


ul.list  {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  width: 100%;
}
ul.list.row  {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
ul.list.row2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
ul.list li {
  padding: 12px 12px 12px 49px;
  border-radius: 6px;
  background: #1B8993;
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
ul.list li p {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
}
ul.list.row li {
  width: calc(50% - 4px);
}
ul.list.row2 li {
  width: calc(33.33% - 5.33px);
}


ul.list li::before {
  content: url('./img/check-icon.svg');
  position: absolute;
  width: 25px;
  height: 25px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.box-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 12px 49px;
  border-radius: 6px;
  background: #1B8993;
  position: relative;
}
.box-list p {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
}
.box-list p strong {
  font-weight: 700;
}
.box-list ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.box-list ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.box-list ul li strong {
  font-weight: 700;
}
.box-list ul li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 8px;
  top: 10px;
}
.box-list::before {
  content: url('./img/check-icon.svg');
  position: absolute;
  width: 25px;
  height: 25px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}



ol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  counter-reset: item;
  position: relative; 
  z-index: 1;
  width: 100%;
  gap: 8px;
}


ol li {
  position: relative;
  counter-increment: item;
  z-index: 1;
  overflow: visible;
  width: 100%;
  background: #1B8993;
  border: 1px solid #0B98A1CC;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  padding: 12px 20px 12px 58px;
}
ol li p {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
}
ol li strong {
  font-weight: 700;
}
ol li p strong {
  font-weight: 700;
}

ol li::before {
  content: counter(item, decimal) " ";
  min-width: 18px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 30px;
  line-height: 50px;
  color: #00B35C;
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 1;
  transform: translateY(-50%);
  font-family: "Open Sans", sans-serif;
}
ol.dark li::before {
  background: #0D5057;
  color: #fff;
}
ol.row {
  display: flex;
  gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
}
ol.row2 {
  display: flex;
  gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
}
ol.row li {
  width: calc(33.33% - 5.33px);
  display: flex;
  align-items: center;
}
ol.row2 li {
  width: calc(50% - 4px);
  display: flex;
  align-items: center;
}


.ol-list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.ol-list__item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 10px 20px 10px 23px;
}
.ol-list__number {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0D5057;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px #00000040;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.ol-list__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ol-list__text p {
 color: #0D5057;
 font-size: 16px;
 line-height: 150%;
}
.ol-list__text p strong {
  font-weight: 700;
}


.short-ul {
  max-width: 468px;
}
.short-ol {
  max-width: 572px;
}
.short2 {
  max-width: 480px;
}
.short3 {
  max-width: 560px;
}
.short-box {
  max-width: 480px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.list.short {
  max-width: 720px;
}

p.short, h3.short {
  max-width: 720px;
}

.banner__logo {
  width: 310px;
  height: auto;
  position: relative;
}

.button {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 202px;
  padding: 13px 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 128%;
  text-align: center;
  text-transform: uppercase;
  max-width: max-content;
  color: #FCFCFC;
  background: #FF4949;
  box-shadow: 0px 4px 18px 0px #0E181140;
  border: none;
  outline: none;
  transition: all 0.3s linear;
}

.button.green {
  background: #00B35C;
}


.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}

.button:hover {
  scale: 1.05;
}

.button.register-button {
  min-width: 151px;
  border-radius: 25px;
  padding: 13px 23px;
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px #00000040;
  background: #FF4949;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
}
.button.login-button {
  min-width: 163px;
  padding: 12px 16px;
  background: #2DAF55;
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px #00000040;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
}

.decor {
  width: 402px;
  height: auto;
  position: absolute;
  right: -113px;
  bottom: 0px;
  z-index: 1;
}

.decor2 {
  width: 281px;
  height: auto;
  position: absolute;
  right: -26px;
  bottom: 98px;
  z-index: 1;
  rotate: -5deg;
}

.decor3 {
  width: 236px;
  height: auto;
  position: absolute;
  right: 13px;
  bottom: 0;
  z-index: 2;
}
.decor4 {
  width: 247px;
  height: auto;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-4.93deg);
  z-index: 2;
}
.decor5 {
  width: 273px;
  height: auto;
  position: absolute;
  right: -13px;
  bottom: 18px;
  z-index: 0;
}
.decor6 {
  width: 366px;
  height: auto;
  position: absolute;
  right: -86px;
  bottom: 0px;
  z-index: 0;
}
.decor7{
  width: 382px;
  height: auto;
  max-height: none;
  position: absolute;
  right: -112px;
  bottom: -138px;
  z-index: 0;
  rotate: -17deg;
}

.last-box p {
 color: #fff; 
}
.last-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  background: #183E43CC;
  backdrop-filter: blur(6px);
  padding: 32px;

}


.header-clock-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__clock {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}
.header__clock-img {
  width: 15px;
  height: 15px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #0D5057;
  z-index: 103;
}
.header__container {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 75px;

}

.header__logo {
  width: 130px;
  height: auto;
  margin-right: 129px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}


.header-menu__list {
  display: flex;
  align-items: center;
  background: #16656D;
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 11px 20px;
  gap: 57px;
}

.header-menu__list li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: color 0s linear;
}

.header-menu__list a:hover {
   color: #00FFAD;
}


.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  position: relative;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}


.header__lang {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
}
.header__lang img {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  padding: 15px 30px;
  margin-top: 95px;
  margin-bottom: 0px;
  background: transparent;
  position: relative;
}


.hero__image img {
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-content__rating {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom:16px;
}
.hero-content__rating span  {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: rgba(255, 255, 255, 1);

}


.hero-content__subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: #fff;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
}

.hero-content__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width:550px;
  position: relative;
  z-index: 2;
  background: #00616BCC;
  padding: 32px;
  border-radius: 6px;
}

.numbered-item {
  border-radius: 4px;
  background: #1B8993;
  border: 1px solid #0B98A1CC;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 12px 20px;
}
.numbered-item__number {
  font-weight: 800;
  font-size: 30px;
  line-height: 50px;
  color: #00B35C;
}
.numbered-item__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.numbered-item__text p {
  font-size: 15px;
  line-height: 165%;
  color: #fff;
}
.numbered-item__text p strong {
 font-weight: 700;
}

.numbered-item__text ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.numbered-item__text ul li {
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  position: relative;
  padding-left: 20px;
}
.numbered-item__text ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 10px;
  left: 8px;
}
.numbered-item__text ul li strong {
 font-weight: 700;
}


.features__box {
  overflow: auto;
  position: relative;
  background: #1B4146E5;
  border: 1px solid #D5DFE3;
  border-radius: 6px;
}


.features__box::-webkit-scrollbar {
  display: none;
}
.features__list  {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  position: relative;
  
}
.features__list thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background:#1B4146;
}

.features__list tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.features__list thead {
  overflow: hidden;
}
.features__list thead tr th {
  padding: 12px 20px;

}
.features__list tbody tr td {
  padding: 12px 20px;
}
.features__list2 tbody tr td {
  display: flex;
  gap: 20px;
  align-items: center;
}
.features__list tbody tr td img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.features__list tr {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
  
}

.features__list tbody tr:not(:last-child) {
  border-bottom: 2px solid #fff;
}
.features__list tbody tr:first-child {
  border-top: 2px solid #fff;
}

.features__list tr td {
  position: relative;
}

.features__list tr td:nth-child(1), .features__list tr th:nth-child(1) {
  width: 35%;
}
.features__list tr td:nth-child(2), .features__list tr th:nth-child(2) {
  width: 65%;
}
.features__list.second tr td:nth-child(1), .features__list.second tr th:nth-child(1) {
  width: 35%;
}
.features__list.second tr td:nth-child(2), .features__list.second tr th:nth-child(2) {
  width: 65%;
}
.features__list.third tr td:nth-child(1), .features__list.third tr th:nth-child(1) {
  width: 60%;
}
.features__list.third tr td:nth-child(2), .features__list.third tr th:nth-child(2) {
  width: 40%;
}

.features__list tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;

}
.features__list tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}
.features__list tr td a {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  text-decoration: underline;
}
.features__list tr td:nth-child(1) {
  font-weight: 700;
}


.pros-cons__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 2px;
  position: relative;
  padding: 32px 20px;
  background: linear-gradient(180deg, #00666C 0%, #174547 100%);
}

.pros-cons__item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 155%;
  color: #fff;
  text-transform: uppercase;
}
.pros-cons__item h3 img {
  width: 35px;
  height: 35px;
}
.item__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.item__list div {
  padding: 12px 12px 12px 49px;
  border-radius: 6px;
  background: #1B8993;
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
.item__list div::before {
  content: url('./img/check-icon.svg');
  position: absolute;
  width: 25px;
  height: 25px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.item__list div {
  width: calc(33.33% - 10.66px);
}
.item__list div:nth-child(4), .item__list div:nth-child(5) {
  width: calc(50% - 8px);
}
.item__list.second div {
  width: calc(50% - 8px);
}


.banner.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 0px;
  padding: 57px 50px;
}
.banner2 {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 0px;
  padding: 54px 105px;
}
.banner3.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 0px;
  padding: 57px 70px;
}

.image.opr img {
    object-position: right;
}
.image.opr2 img {
    object-position: 78%;
}
.image.opl img{
  object-position: left;
}
.image.opc img{
  object-position: center;
}
.image.op img {
  opacity: 1;
}


.banner__wrapper {
  position: relative;
  max-width: 490px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 32px;
  border-radius: 6px;
  background: #00616BCC;
  backdrop-filter: blur(6px);
}

.banner__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  margin-bottom: 20px;
}

.banner__text {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 20px;
  color: #fff;
}


.banner__buttons2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.banner__box {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}


.banner2__button {
  padding: 8px 21px;
  min-width: 230px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: #00B35C;


}
.banner2__button img {
  width: 32px;
  height: 32px;
}

.banner2__button div {
  font-weight: 700;
  font-size: 15px;
  line-height: 165%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}


.banner__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: max-content;
}
.logo-big {
  width: 310px;
  height: auto;
  position: relative;
}
.banner__buttons {
  display: flex;
  gap: 20px;
}

.bonus {
  background: #06272A;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2DAF55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus h4 {
  background: #0D5057;
  border-radius: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  padding: 13px 20px;
  color: #fff;
}
.bonus.bonus2 h4 {
  text-align: left;
}
.bonus p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
.bonus__button {
  margin: 7px auto;
}


.box {
  position: relative;
  padding: 0px;
  border-radius: 2px;
  background: linear-gradient(180deg, #00666C 0%, #174547 100%);
  padding: 32px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}
.box2-item {
  width: calc(50% - 4px);
  border-radius: 4px;
  background: linear-gradient(179.66deg, #004D57 0.2%, #1B8993 99.6%);
  padding: 32px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;  
  gap: 20px;
}
.box2-item.second {
  width: calc(33.33% - 5.33px);
}
.box2-item__img2 {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}
.box2-item__img3 {
  width: 173px;
  height: auto;
  flex-shrink: 0;
  margin-left: -12px;
}
.box2-item__img4 {
  width: 137px;
  height: auto;
  flex-shrink: 0;
  margin-left: -9px;
}
.box2-item__text2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box2-item__text2 h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  text-transform: capitalize;
  color: #fff;
}
.box2-item__text2 p {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: #fff;
}
.box2-item__text2 ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box2-item__text2 li {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  position: relative;
  color: #fff;
  padding-left: 20px;
}
.box2-item__text2 li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 8px;
  top: 9px;
}
.box2-item__text2 li strong {
  font-weight: 700;
  display: inline;
}


.box-inside {
  display: flex;
  gap: 12px;
  flex-direction: column;
  max-width: 700px;
}

.box h3, .box-inside h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 155%;
  text-transform: uppercase;
  color: #fff;
}
.box p, .box-inside p {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
}

.img1 {
  position: absolute;
  width: 151px;
  height: auto;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.img2 {
  position: absolute;
  width: 209px;
  height: auto;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
}
.img3 {
  position: absolute;
  width: 163px;
  height: auto;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.img4 {
  position: absolute;
  width: 168px;
  height: auto;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.img5 {
  position: absolute;
  width: 120px;
  height: auto;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.program-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.program-list__item {
  background: linear-gradient(179.66deg, #004D57 0.2%, #1B8993 99.6%);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: calc(33.33% - 5.33px);
}
.program-list__item.second {
  width: calc(50% - 4px);
}
.program-list__item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  text-transform: capitalize;
  color: #fff;
}
.program-list__item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: #fff;
}
.program-list__item ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.program-list__item ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.program-list__item ul li strong {
  font-weight: 700;
}
.program-list__item ul li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 8px;
  top: 9px;
}

.flex-box {
  display: flex;
  position: relative;
  gap: 20px;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  padding: 32px 12px 32px 152px;
  background: linear-gradient(179.66deg, #004D57 0.2%, #1B8993 99.6%);
  border-radius: 4px;
}
.flex-box__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flex-box__text h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  text-transform: capitalize;
  color: #fff;
}
.flex-box__text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
}
.flex-box__text ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flex-box__text ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.flex-box__text ul li strong {
  font-weight: 700;
}
.flex-box__text ul li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 8px;
  top: 9px;
}


.games__box {
  overflow: auto;
  position: relative;
  background: #1B4146E5;
  border: 1px solid #D5DFE3;
  border-radius: 6px;
}

.games__box::-webkit-scrollbar {
  display: none;
}

.games__table {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  position: relative;
}

.games__table thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background:#1B4146;
}

.games__table tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table thead {
  overflow: hidden;
}
.games__table thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table tbody tr td {
  padding: 12px 20px;
}


.games__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table tr th {
  width: 33.33%;
  text-align: left;
}
.games__table tr td {
  width: 33.33%;
}


.games__table.second tr th:nth-child(1), .games__table.second tr td:nth-child(1) {
  width: 27%;
}
.games__table.second tr th:nth-child(2), .games__table.second tr td:nth-child(2) {
  width: 46%;
}
.games__table.second tr th:nth-child(3), .games__table.second tr td:nth-child(3) {
  width: 27%;
}



.games__table.third tr th {
  width: 25%;
  text-align: left;
}

.games__table.third tr td {
  width: 25%;
  align-items: center;
  display: flex;
}

.games__table.third tr th:nth-child(3), .games__table.third tr td:nth-child(3) {
  width: 50%;
}


.games__table tr:not(:last-child) {
  border-bottom: 2px solid #fff;
}
.games__table tbody tr:first-child {
  border-top: 2px solid #fff;
}
.games__table tr td:nth-child(1) {
  font-weight: 700;
}
.games__table tr td {
  position: relative;
  display: flex;
  align-items: center;
}


.games__table tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;

}
.games__table tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;

}

.games__table tr td ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.games__table tr td ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  padding-left: 16px;
  position: relative;
}
.games__table tr td ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.games__table.middle tr td {
  align-items: center;
  display: flex;
}



.games__box2 {
  overflow: auto;
  position: relative;
  background: #1B4146E5;
  border: 1px solid #D5DFE3;
  border-radius: 6px;
}


.games__box2::-webkit-scrollbar {
  display: none;
}

.games__table2 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table2 thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background:#1B4146;
}

.games__table2 tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table2 thead {
  overflow: hidden;
}
.games__table2 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table2 tbody tr td {
  padding: 12px 20px;
}


.games__table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table2 tr th {
  width:25%;
  text-align: left;
}

.games__table2 tr td {
  width:25%;
}
.games__table2 tr td {
  position: relative;
}

.games__table2 tr:not(:last-child) {
  border-bottom: 2px solid #fff;
}
.games__table2 tbody tr:first-child {
  border-top: 2px solid #fff;
}
.games__table2 tr td:nth-child(1) {
  font-weight: 700;
}



.games__table2 tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;

}
.games__table2 tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}



.games__box3 {
  overflow: auto;
  position: relative;
  background: #13646D;
  border: 2px solid #54979E;
  border-radius: 6px;
}


.games__box3::-webkit-scrollbar {
  display: none;
}

.games__table3 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table3 thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(0deg, #004B54 0%, #33A2AC 100%);
}

.games__table3 tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table3 thead {
  overflow: hidden;
}
.games__table3 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table3 tbody tr td {
  padding: 12px 20px;
}


.games__table3 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table3 tr th {
  width:50%;
}

.games__table3 tr td {
  width:50%;
}
.games__table3 tr td:nth-child(2), .games__table3 tr th:nth-child(2) {
  text-align: right;
  justify-content: flex-end;
}

.games__table3 tr td {
  position: relative;
}

.games__table3 tbody tr:not(:last-child) {
  border-bottom: 1px solid #FFFFFF33;
}

.games__table3 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3E404929;
}
.games__table3 tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;

}
.games__table3 tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;

}
.table-decor {
  position: absolute;
  width: 383px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
}


.games__box4 {
  overflow: auto;
  position: relative;
  background: #1B4146E5;
  border: 1px solid #D5DFE3;
  border-radius: 6px;
}

.games__box4::-webkit-scrollbar {
  display: none;
}

.games__table4 {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  position: relative;
}

.games__table4 thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background:#1B4146;

}

.games__table4 tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.games__table4 thead {
  overflow: hidden;
}
.games__table4 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.games__table4 tbody tr td {
  padding: 12px 20px;
}


.games__table4 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table4 tr th {
  width:20%;
  text-align: left;
}

.games__table4 tr td {
  width:20%;
}



.games__table4 tr td {
  position: relative;
}

.games__table4 tr:not(:last-child) {
  border-bottom: 2px solid #fff;
}
.games__table4 tbody tr:first-child {
  border-top: 2px solid #fff;
}
.games__table4 tr td:nth-child(1) {
  font-weight: 700;
}

.games__table4 tr th {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;

}
.games__table4 tr td {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;

}


.games__box5 {
  overflow: auto;
  border-radius: 10px;
  position: relative;
  background: #E5E8ED;

  border: 1px solid #00A964;
  box-shadow: 0px 0px 8px 0px #00A964;
  backdrop-filter: blur(84px);
  border-radius: 12px;
}


.games__box5::-webkit-scrollbar {
  display: none;
}

.games__table5 {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  position: relative;
}

.games__table5 thead {
  border-radius:  10px 10px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: none;
}

.games__table5 tbody {
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #3E4049;
}

.games__table5 thead {
  overflow: hidden;
}
.games__table5 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: flex-start;
}
.games__table5 tbody tr td {
  padding: 12px 20px;
}


.games__table5 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table5 tr th, .games__table5 tr td {
  width:22%;
  text-align: left;
  
}
.games__table5 tr th:nth-child(4), .games__table5 tr td:nth-child(4) {
  width:34%;
 
}


.games__table5 tr td {
  position: relative;
}

.games__table5 tr td {
  position: relative;
}

.games__table5 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3E404929;
}


.swiper-slide {
  width: calc(50% - 10px); 
  max-width: 450px;
}

.swiper {
    padding: 0px 44px;
    width: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; 
}


.swiper-button-next {
  background-image: url('img/sw-arr-right.svg');
  width: 24px;
  height: 24px;
  right: 0px;
  left: auto;

}
.swiper-button-prev {
  background-image: url('img/sw-arr-left.svg');
  width: 24px;
  height: 24px;
  left: 0px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: auto;
  pointer-events: none;
}

.swiper-wrapper {
  align-items: stretch;
}

.short-table {
  max-width: 322px;
}

.reviews__box {
  display: flex;
  gap: 16px 20px;
  flex-wrap: wrap;
}


.reviews__item {
  background: linear-gradient(179.66deg, #004D57 0.2%, #1B8993 99.6%);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  width: calc(50% - 10px);
}
.reviews-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.reviews-item__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  color: #fff;
  text-transform: capitalize;

}


.reviews-item__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: #fff;
  text-align: left;
}


.reviews-item__stars {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.ac {
  width: 100%;
  margin-top: 0;
  border: none;
  position: relative;
  background: transparent;  
  overflow: hidden;
  border-radius: 6px;
}

.ac:not(:last-child) {
  margin-bottom: 20px;
}
.ac-header {
  width: 100%;
}
.ac-header::after, .ac-header::before {
  display: none;
}
.ac .ac-trigger {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 160%;
  text-align: left;
  padding: 16px 20px 16px 60px !important;
  background: transparent;
  white-space: normal;
  color: #fff;
  background: #066B72;
}
  
.ac .ac-trigger:focus {
  color: #fff;
}

.ac.is-active > .ac-header {
  color: #fff;
}
.ac.is-active > .ac-header .ac-trigger {
  color: #fff;
}

.ac .ac-panel {
  padding: 0;
  background: transparent;
  position: relative;
  margin-top: 2px;
  background: #1B4146; 
  border-radius: 0 0 6px 6px;
}

.ac .ac-panel p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 155%;
  text-align: left;
  color: #fff;
  padding: 16px 20px;
  margin: 0;
}

.ac .ac-panel ul  {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px 16px 16px;
}
.ac .ac-panel ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  padding-left: 24px;
}
.ac .ac-panel ul li::before {
  content: "";
  background: #3E4049;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
  
.ac .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width:24px;
  height: 24px;
  flex-shrink: 0;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all .3s ease;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width:24px;
  height: 24px;
  transform: translateY(-50%) rotate(0deg);
  transition: all .3s ease;
}

.grade-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.grade-item {
  padding: 20px 12px;
  border-radius: 4px;
  background: linear-gradient(179.66deg, #1B8993 0.2%, #004D57 99.6%);
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  width: calc(50% - 10px);
}
.grade-item:nth-child(3), .grade-item:nth-child(4), .grade-item:nth-child(5) {
  width: calc(33.33% - 13.33px);
}
.grade-item p {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  color: #fff;
  
}
.grade-item p.grade {
  font-weight: 800; 
  font-size: 30px;
  line-height: 20px;
  color: #00B35C;
  font-family: "Open Sans", sans-serif;
}
.grade-item p.grade span {
  font-size: 40px;
  line-height: 20px;
}

.benefits {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}
.benefits-item {
  width: calc(25% - 6px);
  border-radius: 4px;
  background: linear-gradient(179.66deg, #004D57 0.2%, #1B8993 99.6%);
  padding: 32px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.benefits-item.second {
  width: calc(50% - 4px);
}
.benefits-item__img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.benefits-item__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits-item__text h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  color: #fff;
}
.benefits-item__text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: #fff;
}
.benefits-item__text ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.benefits-item__text ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.benefits-item__text ul li strong {
  font-weight: 700;
}
.benefits-item__text ul li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 8px;
  top: 10px;
}


.footer {
  background: #fff;
  margin-top: 20px;
}

.footer__container {
  max-width: 1600px;
  padding: 32px 48px;
  margin: 0 auto;
}

.footer__nav-list {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav-list div a {
  font-size: 14px;
  font-weight: 350;
  line-height: 16px;
  color: #2E99DC;
  transition: all 0.3s ease;
}
.footer__nav-list div a:hover {
  color:#FFF;
}
.language__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0px 0 32px;
  justify-content: center;
  padding: 0 69px;
}
.language__link {
  display: flex;
  background: #054146;
  border-radius:12px;
  padding: 10px 16px;
  color: #fff;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.3s ease;

}
.language__link:hover {
  border: 2px solid #2DAF55;
}
.language__link img {
  width: 24px;
  height: 24px;
}

.footer__nav {
  border-top: 1px solid #054146;
  border-bottom: 1px solid #054146;
  padding: 32px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-nav__list {
  width: calc(25% - 15px);
}
.footer-nav__list-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: #054146;
  margin-bottom: 8px;
}
.footer-nav__list ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.footer-nav__list ul li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #054146;
  transition: all 0.3s ease;
}
.footer-nav__list ul li a:hover {
  color: #141414;
}


.footer__cards {
  padding: 30px 0px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.footer__cards img {
  width: auto;
  height: 40px;
}


.footer__down {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-down__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__down p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #054146;
}



.button-up {
  position: fixed; 
  bottom: 10px;    
  right: 20px;   
  cursor: pointer;
  display: flex;   
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: transparent;
  display: none;  
  z-index: 102;   
  width: 50px;
  height: 50px;
}

.button-up img {
  width: 50px;
  height: 50px;
}
  

.burger-button {
  display: none;
}


.content {
  flex-shrink: 1; 
  width: calc(100% - 240px - 240px - 40px);
}


.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 95px;
  left: 30px;
  height: calc(100vh - 95px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 240px;
  -webkit-flex: 0 1 240px;
  flex: 0 1 240px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
}
.sidebar-right {
  position: -webkit-sticky;
  position: sticky;
  top: 95px;
  right: 30px;
  height: calc(100vh - 95px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 240px;
  -webkit-flex: 0 1 240px;
  flex: 0 1 240px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.sidebar-right::-webkit-scrollbar {
  display: none;
  width: 0;
}
  
  
@media screen and (min-width: 1600px) {
  .sidebar {
    left: calc((100% - 1600px) / 2 + 30px);
  }
}
@media screen and (min-width: 1600px) {
  .sidebar-right {
    right: calc((100% - 1600px) / 2 + 30px);
  }
}
  
  
.aside-left__wrapper {
  position: sticky;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  padding: 0px;
}
.aside-left-wrap__box {
  background: #FFFFFF;
  box-shadow: 0px 0px 6px 0px #06E5A040;

  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;

}
.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

.aside-left-wrap__box {
  margin-bottom: 20px;
}
.aside-left__nav {
  border-radius: 12px;
  margin-top: 20px;
}

  
.main-left-nav__desc {
  border-radius:12px;
}
.main-left-nav__desc.active {
  border-radius: 12px;
}
   
  
.main-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.main-left-nav__list.visible {
  max-height: 2000px;
  padding-bottom: 8px;
  opacity: 1;
  overflow-y: auto;
}

.aside-left-wrap__list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  gap: 0px;
}

.aside-left-wrap__list li {
  padding: 0;
}
.aside-left-wrap__list li::before {
  display: none;
}
.aside-left-nav__list li {
  padding: 0;
}
.aside-left-nav__list li::before {
  display: none;
}
.aside-left-wrap__list li a {
  padding: 8px 12px;
  background: #141414;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s linear;
  position: relative;
}
.aside-left-wrap__list li:not(:last-child) a {
  border-bottom: 1px solid #F6F6F6;
}
.aside-left-wrap__list li a:hover {
    background: #9E01FF;
}
.link-list-toggle::after {
  content: url('./img/arr-sidebar.svg');
  position: absolute;
  top: 11.5px;
  right: 12px;
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}

.link-list-toggle.active::after{
  content: url('./img/arr-sidebar.svg');
  transform: rotate(0deg);
} 

.link-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.aside-left-wrap__list li .link-list a {
  display: flex;
  grid-auto-flow: 12px;
  align-items: center;
  background: #fff;
  padding: 11px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  gap: 12px;
  color: #3E4049;
  text-transform: none;
}
.aside-left-wrap__list li .link-list a:not(:last-child) {
  border-bottom: 1px solid #E2E8EE;
}

.aside-left-wrap__list li .link-list a:hover {
  background: #06E5A008;

}

.link-list.open {
  max-height: 1500px; 
  opacity: 1;
  transform: translateY(0);
}



.main-left-nav__desc, .aside-left-nav__desc {
  border-radius: 12px;
}
.main-left-nav__desc.active, .aside-left-nav__desc.active {
  border-radius: 12px 12px 0 0;
}
.aside-left-nav__desc {
  padding: 12px 15px;
  background: #0D5057;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  display: flex;
  text-align: left;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}


.aside-left-nav__desc::after {
  content: url('./img/arr-sidebar.svg');
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}

.aside-left-nav__desc.active::after{
  content: url('./img/arr-sidebar.svg');
  transform: rotate(0deg);
}

.aside-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
  
.aside-left-nav__list.visible {
  max-height: 2000px;
  opacity: 1;
  overflow-y: auto;
}

.aside-left-nav__list.visible::-webkit-scrollbar {
  width: 0;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  gap: 0px;
}

.aside-left-nav__list li a {
  padding: 8px 15px;
  background: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #0D5057;
  text-align: left;
  position: relative;
  display: flex;
  transition: all 0.3s linear; 
}

.aside-left-nav__list li:not(:last-child) {
  border-bottom: 1px solid #F6F6F6;
  
}
.aside-left-nav__list li:last-child a {
  border-radius: 0 0 12px 12px;
}

.aside-left-nav__list li a:hover {
  background: #0D5057;
  color: #FFFFFF;
}

.aside-left__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-bottom: 20px;
}
.aside-left-links__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 12px 9px;
  background:#0D5057;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  transition: all 0.3s linear;
}

.aside-left-links__top:hover {
  opacity: 0.7;
}

.aside-left-links__top::after {
  content: url('./img/arr-sidebar.svg');
  position: absolute;
  top: 14px;
  right: 9px;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}


.aside-left__events {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.aside-left-events__box {
  background: #FFFAEB;
  border-radius: 12px;
  padding: 10px 8px;

}
.aside-left-events__top {
  display: flex;
  gap: 8px;
  position: relative;
  padding: 4px;
  background: #F04C44;
  align-items: center;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s linear;
}
.aside-left-events__top::after {
  content: url('./img/live-icon2.svg');

}
.aside-left-events__top:hover {
  opacity: 0.9;
}
.aside-left__events {
  background-color: #fff;
}
.aside-left-events__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aside-left-events__list li a {
  padding: 6px 15px;
  gap: 8px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #959FA8;
  text-transform: capitalize;
  transition: all 0.3s linear;
}
.aside-left-events__list li:last-child a {
  border-radius: 0 0 6px 6px;
  border-bottom: none;
}

.aside-left-events__list li a:hover {
  background-color: #FFFAEB;

}
.aside-left-events__list li a span img {
  width: 20px;
  height: 20px;
}


.aside-right-wrap__bets {
  background-color: #FFFFFF;
  border-radius: 3px;

}
.aside-right-wrap__bets p {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  color: #3C404B;
  text-transform: uppercase;
  padding: 5px 8px;
  border-bottom: 2px solid #F1F3F5;
}
.aside-right-wrap-bets__link {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3C404B;
  padding: 5px 8px;
}

.aside-right-wrap__bonus {
  background-color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.aside-right-wrap-bonus__list {
  padding: 12px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.aside-right-wrap-bonus__list li {
  text-align: center;
}
.aside-right-wrap-bonus__list li span {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #0D5057;

}
.aside-right-wrap-bonus__list li img {
  min-width: 16px;
}
.aside-right-wrap-bonus__text {
  background: linear-gradient(90deg, #0D5057 0%, #2DAF55 100%);
  padding: 21px 22px 16px;
}
.aside-right-wrap-bonus__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #FFFFFF;
  text-transform: uppercase;
  max-width: 150px;
}
.aside-right-wrap-bonus__button-box {
  padding: 11px 16px 15px;
}
.button.aside-right-wrap-bonus__button {
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  text-align: center;
  height: 35px;
  padding: 10px 12px;
  border-radius: 25px;
  max-width: max-content;
  min-width: 130px;
}
.aside-right-wrap-bonus__img {
  position: absolute;
  right: 13px;
  bottom: 10px;
  width: 67px;
  height: 120px;
}

.aside-right-wrap-bonus__img img {
  width: 67px;
  height: 120px
}
.aside-right-wrap__list {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}


.aside-right-wrap-list__item a {
  padding-top: 65px;
  position: relative;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.aside-right-wrap__list li {
  width: calc(50% - 5px);
}
.aside-right-wrap__list li:last-child {
  width: 100%;
}

.aside-right-wrap-list__item:nth-child(1) a {
  background-image: url(./img/aside1.webp);
}
.aside-right-wrap-list__item:nth-child(2) a {
  background-image: url(./img/aside2.webp);
}
.aside-right-wrap-list__item:nth-child(3) a {
  background-image: url(./img/aside3.webp);
}
.aside-right-wrap-list-item__info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 13px;                                              
  text-align: center;
  color: #FFFFFF;
  background: #2DAF55;
  box-shadow: 0px 0px 6.3px 0px #2DAF55;

  border-radius: 12px;
  width: 100%;
  text-transform: uppercase;

}
.aside-right-wrap-list-item__img {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}


.main-left {
  display: none;
}

.settings {
  padding: 11px 16px;
  gap: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0px 5px 10px 0px #0000001F;
  background: #000000;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 17.5px;
  text-transform: uppercase;
  border-radius: 12px;
}
.aplication {
  box-shadow: 0px 0px 6px 0px #00000040;
  background: #000000;
  border-radius: 16px;
  margin-top: 16px;
  overflow: hidden;
  display: block;
}
.aplication__up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12.47px;
  line-height: 17.5px;
  text-transform: uppercase;
}
.aplication__tabs {
  background: #181818;
  display: flex;

}
.aplication__tab {
  width: 50%;
  padding: 8px 0px;
  font-weight: 600;
  font-size: 10px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF66;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid #C5CCD8;
}
.aplication__tab.active {
  color: #FFFFFF;
  border-bottom: 2px solid #0CE5A0;
}

.aplication__image {
  width: 132px;
  height: auto;
  margin: 0 auto 14px;
}  
.aplication__text {
  font-weight: 500;
  font-size: 12px;
  line-height:20px;
  text-align: center;
  color: #818E95;
  margin-bottom: 12px;
  padding: 0 12px;
}
.aplication__text2 {
  font-weight: 400;
  font-size: 10px;
  line-height:20px;
  text-align: center;
  color: #818E95;
  margin-bottom: 14px;
  padding: 0 12px;
}
.aplication__input {
  border: 1px solid #EEF1F2;
  background: transparent;
  margin: 0 12px 21px;
  width: calc(100% - 24px);
  border-radius: 24px;
  padding: 9px 12px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #818E95;
}

.aplication__buttons {
  display: flex;
  background: #181818;
  padding: 8px 12px 12px;
  gap: 12px;
  justify-content: space-between;
  border-radius: 8px 8px 0px 0px;
}
.aplication__input2 {
  border: 1px solid #6F7B8D;
  background: transparent;
  margin: 0;
  width: 116px;
  border-radius: 48px;
  padding: 5px 17px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818E95;
}

.button.violet.aplication__button {
  padding: 8px 12px;
  width: calc(100% - 116px);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  min-width: 72px;
  border-radius: 18px;
}

.casino {
  background: #F8F8F8;
  box-shadow: 0px 5px 10px 0px #0000001F;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}
.casino.bonus-page {
  margin-top: 0;
}
.casino__top {
  background: #000000;
  padding: 0 16px;
}
.casino__top p {
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  border-top: 5px solid #06E5A0;
  max-width: max-content;
  color: #fff;
}
.casino__list {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.casino__list a {
  width: calc(50% - 4px);
}


  



@media screen  and (max-width: 1580px) {
  .decor4 {
    right: 0px;
  }
}
@media screen  and (max-width: 1550px) {
  .decor3 {
    width: 236px;
    right: 0px;
    bottom: 0;
    z-index: 0;
    opacity: 0.3;
  }
  .decor4 {
    opacity: 0.3;
    z-index: 0;
  }
  .benefits-item {
    flex-direction: column;
    justify-content: space-between;
  }
  .benefits-item.second {
    flex-direction: row;
    justify-content:flex-start;
  }
  .decor7 {
    opacity: 0.3;
  }
}
@media screen  and (max-width: 1500px) {
  .decor {
    z-index: 0;
    opacity: 0.3;
  }
  .grade-item:nth-child(3), .grade-item:nth-child(4), .grade-item:nth-child(5) {
    width: calc(50% - 10px);
  }
  .box2-item.second {
    width: calc(50% - 4px);
  }
}
@media screen  and (max-width: 1440px) {
  .decor5 {
      right: 0px;
      bottom: 0px;
      opacity: 0.3;
  }
}
@media screen  and (max-width: 1400px) {
  .box2-item {
    width: 100%;
    padding: 20px 10px;
  }
  .box2-item__img3, .box2-item__img4 {
    width: 140px;
    margin-left: 0px;
  }
}

@media screen  and (max-width: 1380px) {
  .container.banner, .container.banner3, .container.banner4, .container.banner5, .container.banner6, .container.banner7 {
    padding: 40px 10px;
  }
}


@media screen  and (max-width: 1350px) {
  .sidebar-right {
    display: none;
  }
  .main {
    padding-right: 20px;
  }
  .content {
    width: calc(100% - 260px);
  }
}

@media screen  and (max-width: 1320px) {
  .header__logo {
    margin-right: 50px;
  }
  .list__item {
    width: 100%;
  }
  .banner__wrapper, .banner__wrapper2, .banner__wrapper3, .banner__wrapper4, .banner__wrapper5, .banner__wrapper6, .banner__wrapper7 {
    padding: 20px 10px;
    margin: 0 auto;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
  }
  .banner__title, .banner__text {
    text-align: center;
  }
  .banner__wrap {
    backdrop-filter: blur(10px);
    padding: 20px 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }
  .header-menu__list {
    gap: 20px;
  }
}

@media screen  and (max-width: 1200px) {
  .list__item {
    width: calc(50% - 10px);
  }
  .games__table2 tr td, .games__table2 tr th {
    width: 25%;
  }

  .aside-left-wrap__list {
    padding: 0;
  }
  .aside-left-wrap__list li:last-child {
    margin-bottom: 10px;
  }
  .aside-left-wrap__list::after {
    display: none;
  }
  .aside-left-nav__desc::after {
    top: 12px;
  }
  .main-left {
    display: block;
  }
  .main-left.container {
    padding: 0;
  }
  .aside-left__nav {
    border-radius: 0px;
    margin-top: 0px;
  }
  .sidebar {
    display: none;
  }
  .hero__content {
    padding-left: 20px;
  }
  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main {
    padding-left: 20px;
  }
  .button-up {
    right: 20px;
  }
  .content, .container {
    width: 100%;
    max-width: 100%;
  }

  .header__container {
    padding-left: 20px;
  }
  .hero__image img {
    right: 0px;
    width: 100%;
  }
  .hero.container {
    width:100%;
    margin-right: 0px;
  }
  .aside-left-nav__desc {
    padding: 12px;
    padding-right: 45px;
    border-radius: 0;
  }
  .header__menu {
    display: none;
  }
  .header__container {
    padding-right: 20px;
    height: 60px;
  }
  .main {
    padding-top: 0px;
  }
  .main.bonus-page {
    margin-top: 20px;
  }
  .hero.bonus-page {
    margin-top: 60px;

  }
  .header__buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #101F2EF2;
    padding: 16px;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .header__buttons a {
    min-width: 163px;
    text-align: center;
  }
  .header__buttons .button.register-button,
  .header__buttons .button.login-button {
    min-width: 163px;
    text-align: center;
  }
  .footer__container {
    padding-bottom: 50px;
  }
  .button-up {
    bottom: 20px;
  }

  .burger-button {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2; 
    }
  .burger-button span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .burger-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-button.open span:nth-child(2) {
    opacity: 0;
  }
  .burger-button.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  .burger-menu {
    position: fixed;
    top: 60px;
    right: -100%; 
    width: 100%;
    height: 100%;
    padding: 0 10px;
    background: #101F2E;
    padding-bottom: 100px;
    transition: right 0.3s ease; 
    overflow-y: auto;
    display: block;
    z-index: 105;
  }
  .burger-menu.open {
    right: 0; 
    overflow-y: auto;

  }
  .burger-menu ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 16px;
    min-width: 300px;
  }
  .burger-menu ul li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .burger-menu ul li a {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 300px;
    height: 46px;
    color: #FFF;
    text-transform: uppercase;
    border: 2px solid #FF4949;
    border-radius: 40px;
  }
  .burger-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    min-width: 300px;
    margin-top: 20px;
  }
  .burger-menu__buttons a {
    width: 300px;
  }
  .burger-menu .button.login-button {
    width: 300px;
    height: 46px;
    max-width: 100%;
  }
  .burger-menu .button.register-button {
    width: 300px;
    height: 46px;
    max-width: 100%;
  }
  .main {
    padding-right: 20px;
  }
  .features__list {
    width: 100%;
  }
  .features__box {
    flex-direction: column;
  }
}


@media screen and (max-width: 950px) {
  .games__table4 tr td:nth-child(1), .games__table4 tr th:nth-child(1) {
     width:210px;
  }
  .games__table4 tr td:nth-child(2), .games__table4 tr th:nth-child(2) {
    width:150px;
  }
  .games__table4 tr td:nth-child(3), .games__table4 tr th:nth-child(3) {
     width:150px;
  }
  .games__table4 tr td:nth-child(4), .games__table4 tr th:nth-child(4) {
     width:150px;
  }
  .games__table4 tr td:nth-child(5), .games__table4 tr th:nth-child(5) {
     width: 150px;
  }
  .hero-content__wrap {
    margin: 0 auto;
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
  }
  .decor2 {
    display: none;
  }
  h1 {
    text-align: center;
  }
  div.list2 .list__item h4 {
    font-size: 16px;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero {
    padding: 40px 10px;
  }
  .rating__list {
    flex-direction: column;
  }
  .rating__item {
    width: 100%;
  }


  .flex-box__left {
    width: 100%;
  }
  .flex-box__right {
    width: 100%;
  }
  .list2 {
    flex-direction: column;
  }
  .list2__item {
    width: 100%;
  }
  .list2-blur {
    max-width: 100%;
  }
  .games__table2 tr th,  .games__table4 tr th {
    width: 250px;
  }

  .games__table2 tr td,  .games__table4 tr td {
    width: 250px;
  }

  .list__item {
    width: 100%;
    padding: 20px 10px;
  } 
  .games__table tr th, .games__table tr td {
    width: 250px;
  }

  .games__table tr th:nth-child(3), .games__table tr td:nth-child(3) {
    width: 300px;
  }
  .games__table.second tr th:nth-child(1), .games__table.second tr td:nth-child(1) {
    width: 155px;
  }
  .games__table.second tr th:nth-child(2), .games__table.second tr td:nth-child(2) {
    width: 300px;
  }
  .games__table.second tr th:nth-child(3), .games__table.second tr td:nth-child(3) {
    width: 300px;
  }
  .games__table.third tr th {
    width: 200px;
  }

  .games__table.third tr td {
    width: 200px;
  }

  .games__table.third tr th:nth-child(3), .games__table.third tr td:nth-child(3) {
     width: 250px;
  }
  .program-list__item {
    padding: 20px 10px;
    width: 100%;
  }
  ol.row li {
    width: 100%;
  }
  ul.list.row li {
    width: 100%;
  }
  .benefits-item {
    width: calc(50% - 4px);
    flex-direction: row;
    justify-content: flex-start;
  }
}



@media screen and (max-width: 850px) {
  .opacity2 {
    opacity: 0.3;
  } 
  .footer__nav-list {
    gap: 16px;
  }
  .banner__title {
    font-size: 26px;
    line-height: 120%;
  }
}
@media screen and (max-width: 768px) {
  .box2-item.second {
    width: 100%;
  }
  .last-box {
    padding: 20px 10px;
  }
  ol.row2 li {
    width: 100%;
  }
  .decor5 {
    position: static;
    margin: 0 auto -20px;
    opacity: 1;
  }
  .decor6 {
    position: static;
    margin: 0 auto -20px;
    opacity: 1;
  }
  .decor7 {
    opacity: 1;
    position: static;
    margin: 0 auto -75px;
    pointer-events: none;
  }
  .decor {
    position: static;
    margin: 0 auto -20px;
    opacity: 1;
  }
  .decor3 {
    position: static;
    margin: 0 auto -20px;
    opacity: 1;
  }
  .decor4 {
    position: static;
    margin: 0 auto -20px;
    opacity: 1;
    transform: translateY(0) rotate(-4.93deg);
  }
  .box {
    padding: 20px 10px;
  }
  .numbered-item {
    padding: 12px 10px;
    gap: 10px;
  }
  .reviews__item {
    width: 100%;
    padding: 10px;
  }
  .footer-nav__list {
    width: calc(50% - 10px);
  }
  .list2-item__box {
    width: 100%;
  }
  .list2__item {
    padding: 20px 10px;
  }
  .hero.container {
    padding: 42px;
  }
  .hero {
    padding: 48px 10px;
  }
  .banner__image {
    right: 0;
  }
  .footer {
    padding: 0;
  }

  .banner__image {
    width: 100%;
  }

  .banner {
    padding: 20px;
  }
  .hero__image img {
    object-position: 78%;
  }
  .hero-content__wrap {
    padding: 20px 10px;
  }
  .features__list tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 230px;
    width: auto;
  }
  .features__list tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 300px;
    width: auto;
  }
  .features__list2 tr td:nth-child(1),.features__list2 tr th:nth-child(1) {
    min-width:300px;
    width: auto;
  }
  .features__list2 tr td:nth-child(2),.features__list2 tr th:nth-child(2) {
    min-width: 300px;
    width: auto;
  }
  .features__list.third tr td:nth-child(1), .features__list.third tr th:nth-child(1) {
    width: 60%;
    min-width: auto;
  }
  .features__list.third tr td:nth-child(2), .features__list.third tr th:nth-child(2) {
    width: 40%;
    min-width: auto;
  }
  .flex-box__left, .flex-box__right, .slots__item {
    width: 100%;
    padding: 20px 10px;
  }

  .hero-content__wrap {
    padding: 20px 10px;
  }
  .banner__wrapper, .banner__wrapper2 {
    padding: 20px 10px;
  }
  .banner2 {
    padding: 40px 10px;
  }
  .pros-cons__item {
    width: 100%;
  }
  .image.op img {
    opacity: 0.6;
  }
   .logo-big {
    width: 220px;
  }
  .box.box4 {
    padding: 0;
  }
  .decor1 {
    width: 150px;
    height: auto;
    right: 10px;
    top: 200px;
    opacity: 0.3;
  }
  .decor2 {
    display: none;
  }
  .pros-cons__item {
    padding: 20px 10px;
  }
  .item__list div {
    width: 100%;
  }
  .item__list div:nth-child(4), .item__list div:nth-child(5) {
   width: 100%;
  }
  .item__list.second div {
   width: 100%;
  }
  .grade-item, .grade-item:nth-child(3), .grade-item:nth-child(4), .grade-item:nth-child(5) {
    width: 100%;
  }
  .program-list__item.second {
    width: 100%;
  }
  .benefits-item.second {
    width: 100%;
    padding: 20px 10px;
  }
  ul.list.row2 li {
    width: 100%;
  }
}



@media screen and (max-width: 600px) {
  .decor7 {
    width: 100%;
  }
  .box2-item.second {
    flex-direction: column;
    padding: 10px 10px 20px;
    gap: 4px;
  }
  .box2-item__text2 {
    align-items: flex-start;
    width: 100%;
  }
  .benefits-item {
    width: 100%;
    padding: 20px 10px;
  }
  .hero-content__wrap {
    padding: 20px 7px;
  }
  .footer__card-list {
    padding: 0px 0 20px;
    gap: 16px 16px;
    margin-bottom: 20px;
  }
  .flex-box {
    flex-direction: column;
  }
  .flex-box__item {
    width: 100%;
  }
  .main {
    padding: 0px 10px;
  }

  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  h1  {
    font-size: 27px;
    line-height: 35px;
    text-align: center;
  }
  .hero-content__rating {
    justify-content: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero__button {
    margin: 0 auto;
  }
  .hero {
    margin-top: 76px;
  }
  h2  {
    font-size: 22px;
    line-height: 30px;
  }

  .header__logo {
    width: 110px;
    height: auto;
    margin-right: 0;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
  h3{
    font-size: 16px;
    line-height: 22px;
  }
  .header__container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .button.banner__button {
    margin: 0 auto;
  }
  .banner__wrapper {
  align-items: center;
  }
  .banner__title {
    text-align: center;
  }
  
  .hero-content__wrap {
    align-items: center;
  }
  .box.color p, .box.color h3 {
    color: #fff;
  }
  .image.op2 img {
    opacity: 0.6;
  }
  .games__table3 tr td, .games__table3 tr th {
    width: 250px;
  }
  .op4 {
    opacity: 0.4;
  }
  .op3 {
    opacity: 0.3;
  }
  ol.big {
    gap: 0px;
  }
    ol li {
    padding: 10px 20px 10px 54px;
  }
  ol li::before {
    left: 10px;
  }
  .banner__buttons,.banner__buttons2 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .ol-list__item {
    gap: 10px;
    padding: 10px 20px 10px 10px;
  }
  .numbered-item__text ul li {
    padding-left: 14px;
  }
  .numbered-item__text ul li::before {
    left: 0px;
  }
  ol li {
    padding: 10px 10px 10px 38px;
  }
  .flex-box {
    padding: 10px 10px 20px;
    gap: 8px;
  }
  .img1, .img2, .img3, .img4, .img5, .img6, .img7 {
    position: static;
    transform: translateY(0%);
  }
}

@media screen and (max-width: 480px) {
  .box2-item {
    width: 100%;
    padding: 10px 10px 20px;
    flex-direction: column;
  }
  .decor {
    width: 100%;
    height: auto;
  }
  .banner__text {
    font-size: 20px;
  }
  .banner__text2 {
    font-size: 18px;
  }
  .features__list li {
    width: 100%;
    gap: 12px;
  }
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .footer__nav-list li::after {
    display: none;
  }
  .footer__down {
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
  }
  .footer__cards { 
    padding: 20px 10px;
  }
  .footer__nav {
    padding: 20px 10px;
  }
  .footer__container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .features__list li strong {
    min-width: auto;
    width: 50%;
  }
  .features__list li strong::after {
    display: none;
  }
  .features__list li span::after {
    display: none;
  }
  .features__list li span {
   padding-right: 0;
  }
  .header__buttons a {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .rating__item p:first-child::after {
    display: none;
  }
  .rating__item p:first-child {
    max-width: 150px;
  }
  .header__buttons .button.register-button,
  .header__buttons .button.login-button {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    text-align: center;
  }

  .language__list {
    gap: 10px;
    padding: 0;
  }
  .swiper {
    padding: 0px 24px;
    width: 100%;
  }
  .bonus {
    padding: 20px 10px;
  }
  .container {
    padding: 20px 10px;
  }
  .container2 {
    padding: 20px 10px;
  }
  .op8 {
    opacity: 0.8;
  }
  .decor1 {
    width: 150px;
    height: auto;
    right: 10px;
    top: 400px;
    opacity: 0.3;
  }
  .decor5 {
    width: 100%;
    margin-right: -10px;
  }
  .decor6 {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .banner__logo {
    width: 230px;
    height: auto;
  }
  .benefits-item.second {
    flex-direction: column;
  }
  .benefits-item.second .benefits-item__text {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {

    .language__link {
      padding: 8px 12px;
      width: 100%;
    }
    .banner2__button {
      margin: 0 auto;
    }
    .container {
      padding: 20px 10px;
    }
    .header__right {
      gap: 12px;
    }
}





/* BONUS PAGE */


.breadcrumbs {
  display: flex;
  margin-bottom: 6px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs a {
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 1);
  transition: all 0.2s linear;
}
.breadcrumbs li:first-child::after {
  content: "|";
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  opacity: 1;
  margin: 0 9px;
}
.breadcrumbs li:last-child span {
  font-weight: 700;
}


.hero-bonus {
  padding: 32px 30px;
}

.app-bonus {
  padding: 32px 30px;
}
.betting-hero {
  padding: 32px 30px;
}


ul.block-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul.block-list li {
  border-radius: 6px;
  background: #13646DBF;
  padding: 8px 12px 8px 36px;
  border: 2px solid #54979E;
  font-weight: 700;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  position: relative;
}
ul.block-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #41B15B;
  border-radius: 50%;
}


@media screen and (max-width: 1200px) {
  .hero-bonus, .app-bonus, .betting-hero {
    padding: 40px 10px;
  }
  
}
@media screen and (max-width: 600px) {
  .breadcrumbs {
    justify-content: center;
  }
}


/* APP PAGE */

.box-center {
  margin: 0 auto;
  width: 100%;
  max-width: 834px;
  background: #123D61BF;
  border: 1px solid #FFFFFFB2;
  border-radius: 6px;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}




.box__text {
  background: #172D44B2;
  border: 2px solid #5BA8B3;
  border-radius: 6px;
  padding: 20px;
  position: relative;
  width: 100%;
  max-width: 588px;
}
.box__text2 {
  margin-left: auto;
} 
.buttons__box {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.buttons__box2 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero.app-hero {
  padding: 8px 40px 10px;
}
.offers {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; 
  justify-content: center;
  position: relative;
}
.offers__item {
  width: calc(50% - 10px);
  border: 1px solid #D5DFE3;
  border-radius: 12px;
  background: #FFFFFFCC;
  overflow: hidden;

}
.offers__item h4 {
  padding: 13px 20px;
  background: #D5DFE3;
  color: #0D5057;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}
.offers__item p {
  padding: 8px 20px;
}


@media screen and (max-width: 950px) {
  .banner2.container {
    padding: 40px 10px;
  }
  .hero.app-hero {
    padding: 8px 10px 10px;

  }
  .offers__item {
    width: 100%;

  }
  .offers__item h4 {
    padding: 13px 10px;
  }
  .offers__item p {
    padding: 8px 10px;
  }
}
@media screen and (max-width: 600px) {
  .box-center {
    padding: 20px;
  }
}


.flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.flex-item {
  width: calc(50% - 10px); 
  border: 1px solid #D5DFE3;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  height: max-content;
}

.flex-item__top {
  background: #D5DFE3;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}
.flex-item__top h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #0D5057;
}
.flex-item__bottom p {
  padding: 8px 20px;
  color: #0D5057;
}


@media screen and (max-width: 1024px) {
  .flex-box.duo {
    flex-direction: column;
  }
  .flex-box.duo .flex-box__left {
    width: 100%;
  }
  .flex-box.duo .flex-box__right {
    width: 100%;
  }
}
@media screen and (max-width: 950px) {
  .box-center__item {
   width:100%;
  }
  .box-center__item.duo {
    width:100%;
  }
  .hero.slot {
    padding: 40px 10px;
  }
  .breadcrumbs {
    justify-content: center;
  }
  .flex-item {
    width: 100%; 
    height:auto;
  }
  .flex-item__top {
    padding: 10px 10px;
  }
  .flex-item__bottom p {
    padding: 8px 10px;
  }
}