@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

html {
  overflow-x: hidden;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-width: 320px;
  position: relative;
  width: 100%;
  color: #000;
}

body {
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  font-family: "DM Sans";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body.lock {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  body.lock {
    width: 100%;
    position: fixed;
    overflow: hidden;
  }
}

input,
button,
textarea {
  font-family: "DM Sans";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #000;
  position: relative;
  z-index: 4;
}

body {
  height: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1112px) {
  .container {
    max-width: 970px;
  }
}

@media (max-width: 992.98px) {
  .container {
    max-width: 750px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: none;
    padding: 0 10px;
  }
}

.header {
  position: relative;
  background: #02185E;
  padding: 40px 0px;
}

@media (max-width: 767.98px) {
  .header {
    padding: 25px 0px;
  }
}

.header-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  padding-top: 25px;
  padding-left: 25px;
  padding-right: 50px;
}

@media (max-width: 767.98px) {
  .nav-container {
    padding-top: 15px;
  }
}

/* Условие для экранов с шириной от 0 до 1200px */
@media (max-width: 768px) {
  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.logo a {
  color: #fff;
}

@media (max-width: 767.98px) {
  .logo a {
    font-size: 25px;
  }
}

/* ------------ Desktop navigation ----------- */
.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Условие для экранов с шириной от 0 до 1200px */
@media (max-width: 1200px) {
  .nav {
    display: none;
  }
}

.nav__item {
  margin-right: 50px;
}

.nav__item:last-child {
  margin-right: 0px;
}

.nav__link {
  color: #fff;
  text-decoration: none;
  font-weight: bold !important;
  font-size: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav__link:hover:hover {
  text-decoration: underline;
}

/* --------------- Mobile navigation button ----------- */
.menu-icon {
  z-index: 19;
  position: relative;
  display: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

/* Условие для экранов с шириной от 0 до 1200px */
@media (max-width: 1200px) {
  .menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.menu-icon-line {
  position: relative;
  width: 30px;
  height: 5px;
  background-color: #fff;
}

.menu-icon-line::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #fff;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.menu-icon-line::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #fff;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.menu-icon.menu-icon-active .menu-icon-line {
  background-color: transparent;
}

.menu-icon.menu-icon-active .menu-icon-line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  -o-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.menu-icon.menu-icon-active .menu-icon-line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  -o-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

/* ----------------- Мобильная навигация ----------------- */
.mobile-nav {
  z-index: 12;
  display: block;
  position: absolute;
  right: -350px;
  top: 0;
  height: 200px;
  width: 200px;
  padding: 50px 20px 20px 20px;
  background: #02093B;
  -webkit-transition: -webkit-transform 0.4s ease-in;
  transition: -webkit-transform 0.4s ease-in;
  -o-transition: transform 0.4s ease-in;
  transition: transform 0.4s ease-in;
  transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
}

/* Условие для экранов с шириной от 0 до 1200px */
@media (max-width: 768px) {
  .mobile-nav {
    width: 300px;
    right: -300px;
  }
}

.mobile-nav--active {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.mobile-nav__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}

.mobile-nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  margin-bottom: 15px;
}

.mobile-nav__link {
  color: #fff;
  text-decoration: none;
  font-weight: bold !important;
  font-size: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-nav__link:hover:hover {
  text-decoration: underline;
}

/*
	.header-menu__icon{
		display: block;
		position: absolute;
		top: 18px;
		right: 10px;
		width:30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span{@include anim(0.3s,0s);top: 8px;left: 0px;position: absolute;width: 100%;height: 2px;background-color: #000;
			&:first-child{top: 0px;}
			&:last-child{top: auto;bottom: 0px;}
		}
		&.active{
			span{@include scale(0);
				&:first-child{@include rotate(-45deg);top: 8px;}
				&:last-child{@include rotate(45deg);bottom: 8px;}
			}
		}
	}
*/
footer {
  padding: 40px 0px;
  position: relative;
  z-index: 1;
}

.footer__info {
  margin: 20px 0px 20px 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .footer__info {
    text-align: center;
    display: block;
  }
}

.footer__info a {
  display: inline-block;
  padding: 0px 15px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .footer__info a {
    margin: 0px 0px 15px 0px;
  }
}

.footer__desc {
  text-align: center;
}

.footer__desc p {
  color: #fff;
  font-size: 12px;
  margin-bottom: 7px;
  line-height: 14px;
}

.images__row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px -15px;
}

@media (max-width: 767.98px) {
  .images__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.images__col {
  padding: 0px 15px;
}

.images__img {
  height: 30px;
}

@media (max-width: 767.98px) {
  .images__img {
    margin: 0px 0px 20px 0px;
  }
}

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

.footer__oneimg {
  margin: 20px 0px;
  text-align: center;
  height: 50px;
}

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

.footer__text {
  padding: 20px 0px;
  text-align: center;
}

.footer__text p {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  margin: 0px 0px 15px 0px;
}

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

.wrappbg {
  background: url("/assets/bg.webp") 0 0 no-repeat;
  background-size: cover;
  height: 100%;
  bottom: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
}

.gluck {
  position: relative;
  z-index: 1;
  background: #0643B7;
  padding: 10px 0px;
  text-align: center;
}

.gluck p {
  color: #fff;
  font-size: 13px;
}

.gluck p a {
  display: inline-block;
  padding: 0px 0px 0px 5px;
  color: #fff;
  text-decoration: underline;
}

.secttop {
  position: relative;
  z-index: 1;
  padding: 30px 15px;
}

@media (max-width: 767.98px) {
  .secttop {
    padding: 10px 15px;
  }
}

.secttop__text {
  max-width: 950px;
  margin: 0px auto;
  text-align: center;
}

.secttop__text h1 {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  margin: 20px 0px 20px 0px;
}

@media (max-width: 767.98px) {
  .secttop__text h1 {
    font-size: 22px;
    margin: 7px 0px;
  }
}

.secttop__text h1 span {
  background: -webkit-linear-gradient(#ffd25e, #fcf6ba, #e8c363, #fbf5b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.secttop__text h5 {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .secttop__text h5 {
    font-size: 17px;
  }
}

.secttop__text p {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0px 0px 20px 0px;
}

@media (max-width: 767.98px) {
  .secttop__text p {
    font-size: 17px;
    display: none;
  }
}

.secttop__desctop {
  padding: 15px 0px 10px 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (max-width: 767.98px) {
  .secttop__desctop {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 0;
  }
}

.desctop__img {
  margin: 0px 5px;
  height: 30px;
}

.desctop__img img {
  max-width: 100%;
  max-height: 100%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.secttop__row {
  max-width: 850px;
  margin: 0px auto;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .secttop__row {
    display: block;
    text-align: left;
  }
}

.secttop__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 10px;
  background: #02093B;
}

@media (max-width: 767.98px) {
  .secttop__item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) and (max-width: 767.98px) {
  .secttop__item {
    padding: 5px 0px;
  }
}

.secttop__item span {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  padding: 0px 0px 0px 5px;
}

@media (max-width: 767.98px) {
  .secttop__item span {
    font-size: 10px;
  }
}

.secttop__item img {
  height: 20px;
}

@media (max-width: 767.98px) {
  .secttop__item img {
    height: 15px;
  }
}

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

.sectcasin__third {
  padding: 30px 0px 0px 0px;
}

@media (max-width: 767.98px) {
  .sectcasin__third {
    padding: 15px 0px 0px 0px;
  }
}

.third__row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767.98px) {
  .third__row {
    display: block;
  }
}

.third__col {
  padding: 0px 20px 20px 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
  text-align: center;
}

@media (max-width: 767.98px) {
  .third__col {
    padding: 0px 0px 10px 0px;
  }
}

.third__bot {
  text-align: center;
  background: #262A40;
  padding: 10px 0px;
  border-bottom-right-radius: 15px;
}

@media (max-width: 767.98px) {
  .third__bot {
    display: none;
  }
}

.third__bot p {
  color: #fff;
  font-size: 10px;
}

.third__payma {
  text-align: center;
}

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

.sectcasin {
  position: relative;
  z-index: 1;
  padding: 30px 0px;
}

@media (max-width: 767.98px) {
  .sectcasin {
    padding: 20px 0px;
  }
}

.sectcasin h2 {
  text-align: center;
  margin: 0px 0px 20px 0px;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
}

.sectcasin__item {
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#012a48), to(#0070a0));
  background-image: -webkit-linear-gradient(bottom, #012a48 0%, #0070a0 100%);
  background-image: -o-linear-gradient(bottom, #012a48 0%, #0070a0 100%);
  background-image: linear-gradient(360deg, #012a48 0%, #0070a0 100%);
  border: 1px solid #fff;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 7px 15px 3px #000, 0px 5px 40px 10px rgba(252, 245, 182, 0.35);
  box-shadow: 0px 0px 0px 1px #fff, 0px 7px 15px 3px #000, 0px 5px 40px 10px rgba(252, 245, 182, 0.35);
}

@media (max-width: 767.98px) {
  .sectcasin__item {
    border-bottom-right-radius: 0px;
  }
}

.sectcasin__row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sectcasin__column:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  padding: 15px 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  position: relative;
}

@media (max-width: 767.98px) {
  .sectcasin__column:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 10px 10px 8px 10px;
    border-bottom-left-radius: 0px;
  }
}

.sectcasin__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
}

@media (max-width: 767.98px) {
  .sectcasin__column:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 767.98px) {
  .sectcasin__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

.sectcasin__title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

.sectcasin__title span {
  display: inline-block;
  height: 17px;
  min-width: 150px;
  background-color: #e48900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 10px 0 0px 0;
  white-space: nowrap;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  position: relative;
}

.sectcasin__title span:after {
  content: '';
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  width: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  right: -12px;
  top: 0;
  background: url("/assets/flag.svg");
  background-repeat: no-repeat;
  background-position: center left;
}

.sectlefos {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0px 10px;
  bottom: 0;
  margin: auto;
  z-index: 3;
  background: #191919;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.sectlefos span {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .sectlefos span {
    font-size: 25px;
  }
}

.sectcasin__img {
  padding: 0px 15px 0px 0px;
  border-right: 1px solid #fff;
  height: 90px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .sectcasin__img {
    margin: 20px 0px 10px 0px;
    height: 70px;
  }
}

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

.sectcasin__cent p {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 30px;
  line-height: 1.3;
  margin: 0px 0px 0px 0px;
}

@media (max-width: 767.98px) {
  .sectcasin__cent p {
    font-size: 23px;
  }
}

.sectcasin__right {
  text-align: center;
}

@media (max-width: 767.98px) {
  .sectcasin__right {
    text-align: left;
  }
}

.sectcasin__right span {
  margin: 15px 0px 0px 0px;
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.5;
}

.sectcasin__btn {
  margin: 0px 0px 10px 0px;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sectcasin__btn a {
  background: #089021;
  background: -webkit-gradient(linear, left top, right top, color-stop(16%, #089021), color-stop(85%, #1ae85b));
  background: -webkit-linear-gradient(left, #089021 16%, #1ae85b 85%);
  background: -o-linear-gradient(left, #089021 16%, #1ae85b 85%);
  background: linear-gradient(90deg, #089021 16%, #1ae85b 85%);
  display: inline-block;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  padding: 10px 35px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media (max-width: 767.98px) {
  .sectcasin__btn a {
    padding: 10px 15px;
    font-size: 15px;
    height: 35px;
    width: 75%;
  }
}

.sectcasin__btn a:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  -webkit-transform: skewX(30deg) translateZ(0);
  transform: skewX(30deg) translateZ(0);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.visit {
  margin: 10px 0px 0px 0px;
  text-align: center;
}

.visit a {
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
}

.visit a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .visit a {
    font-size: 14px;
  }
}

.sectcasinleft {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .sectcasinleft__col h5 {
    text-align: center;
  }
}

.sectcasinleft__col h5 a {
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .computer {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .sectcasinleft__desc h5 {
    text-align: center;
  }
}

.sectcasinleft__desc h5 a {
  font-weight: bold;
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

.sectcasinleft__desc ul {
  padding: 0px 0px 0px 25px;
}

.sectcasinleft__desc ul li {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  position: relative;
}

@media (max-width: 767.98px) {
  .sectcasinleft__desc ul li {
    text-align: center;
  }
}

.sectcasinleft__desc ul li:before {
  content: '';
  position: absolute;
  top: 25%;
  left: -10%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FCDD2E;
}

@media (max-width: 767.98px) {
  .sectcasinleft__desc ul li:before {
    width: 0;
    height: 0;
  }
}

.comp {
  display: none;
}

@media (max-width: 767.98px) {
  .comp {
    display: block;
  }
}

.comp span {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  display: block;
  margin: 0px 0px 10px 0px;
}

.comp span small {
  font-weight: 400px;
  font-size: 15px;
}

.comp small {
  font-size: 11px;
  color: #fff;
}

.sectcasinleft__rait {
  margin: 0px 0px 10px 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 24px;
}

@media (max-width: 767.98px) {
  .sectcasinleft__rait {
    height: 14px;
    margin: 10px 0px;
  }
}

.sectcasinleft__rait img {
  max-width: 100%;
  max-height: 100%;
  margin: 0px 1px;
}

@media (max-width: 767.98px) {
  .sectcasin__raiting {
    display: none;
  }
}

.raiting__col {
  text-align: center;
}

.raiting__col span {
  color: #fff;
  font-weight: bold;
  font-size: 27px;
  text-align: center;
  display: block;
  margin: 0px 0px 10px 0px;
}

.raiting__col span small {
  font-size: 17px;
  font-weight: 400;
}

.raiting__col small {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.raiting__col h6 {
  margin: 0px 0px 10px 0px;
  display: block;
  font-family: inherit;
  color: #FC4A23;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}

.bottext {
  display: none;
}

@media (max-width: 767.98px) {
  .bottext {
    display: block;
    background: #262A40;
    text-align: center;
    padding: 6px 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}

.bottext p {
  color: #fff;
  font-size: 10px;
  line-height: 1.3;
}

.kaztp__bod {
  margin: 0px 0px 10px 0px;
}

.btnorange a {
  background: #FF5100;
}

@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }

  30% {
    left: 110%;
    margin-left: 80px;
  }

  100% {
    left: 110%;
    margin-left: 80px;
  }
}

@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }

  30% {
    left: 110%;
    margin-left: 80px;
  }

  100% {
    left: 110%;
    margin-left: 80px;
  }
}

.desctoptex {
  display: none;
}

@media (max-width: 767.98px) {
  .desctoptex {
    display: block;
    text-align: center;
  }

  .desctoptex span {
    color: #fff;
    font-size: 8px;
    text-decoration: none;
    font-weight: 400;
  }
}

.desctopdesc span {
  color: #26A9FA;
  display: block;
  text-align: center;
  font-size: 14px;
  margin: 0px 0px 10px 0px;
}

.about {
  position: relative;
  z-index: 1;
  padding: 40px 0px;
}

.about__row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  margin: 0px -10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767.98px) {
  .about__row {
    display: block;
  }
}

.about__column {
  padding: 0px 10px;
}

.about__column:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}

.about__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}

.about__img {
  text-align: center;
}

@media (max-width: 767.98px) {
  .about__img {
    height: 450px;
    margin: 0px 0px 30px 0px;
  }
}

.about__img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__desc {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 15px;
  border-radius: 15px;
}

.about__desc h5 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .about__desc h5 {
    font-size: 18px;
  }
}

.about__desc p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0px 0px 15px 0px;
}

@media (max-width: 767.98px) {
  .about__desc p {
    font-size: 14px;
  }
}

.propros {
  position: relative;
  z-index: 1;
  padding: 40px 0px;
}

.propros__body {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 15px;
  border-radius: 15px;
  max-width: 750px;
  margin: 0px auto;
}

.propros__body h2 {
  color: #fff;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .propros__body h2 {
    font-size: 20px;
  }
}

.propros__body h4 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .propros__body h4 {
    font-size: 16px;
  }
}

.propros__body h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .propros__body h3 {
    font-size: 18px;
  }
}

.propros__body p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0px 0px 15px 0px;
}

@media (max-width: 767.98px) {
  .propros__body p {
    font-size: 14px;
  }
}

.propros__body ol {
  padding: 0px 0px 20px 25px;
}

.propros__body ol li {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .propros__body ol li {
    font-size: 14px;
  }
}

.propros__body ul {
  padding: 0px 0px 20px 25px;
}

.propros__body ul li {
  font-size: 16px;
  line-height: 1.5;
  list-style-type: disc;
  color: #fff;
  margin: 0px 0px 10px 0px;
}

@media (max-width: 767.98px) {
  .propros__body ul li {
    font-size: 14px;
  }
}

.propros__body ul li a {
  color: #fff;
  text-decoration: underline;
}

.privacy {
  padding: 60px 0px;
  background: #fff;
}

.privacy h2 {
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  font-size: 45px;
  margin: 0px 0px 40px 0px;
}

.privacy h5 {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  margin: 0px 0px 15px 0px;
}

.privacy h3 {
  font-size: 30px;
  line-height: 1.5;
  color: #1B329E;
  margin: 0px 0px 15px 0px;
}

.privacy p {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  margin: 0px 0px 15px 0px;
}

.privacy ol {
  padding: 0px 0px 15px 25px;
}

.privacy ol li {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  margin: 0px 0px 10px 0px;
}

.privacy ul {
  padding: 0px 0px 15px 25px;
}

.privacy ul li {
  font-size: 15px;
  line-height: 1.5;
  list-style-type: disc;
  color: #000;
  margin: 0px 0px 10px 0px;
}

::-webkit-input-placeholder {
  font-size: 16px;
}

::-moz-placeholder {
  font-size: 16px;
}

:-moz-placeholder {
  font-size: 16px;
}

:-ms-input-placeholder {
  font-size: 16px;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

.form-at {
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 0;
  letter-spacing: 0;
  background: #f9f9f9;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.2);
}

.form-at * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Verdana, sans-serif;
}

.validate-input-at,
.no-validate-input-at {
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 2px solid #BFE2FF;
  border-radius: 2px;
  margin-bottom: 20px;
}

.validate-input-at.w-50,
.no-validate-input-at.w-50 {
  width: calc(50% - 10px);
  display: inline-block;
}

.validate-input-at.w-50:first-child,
.no-validate-input-at.w-50:first-child {
  margin-right: 20px;
}

.input-at {
  display: block;
  width: 100%;
  background: transparent;
  color: #000;
}

input.input-at {
  height: 50px;
  padding: 0 20px 0 20px;
  font-size: 16px;
  outline: none;
  border: none;
}

textarea.input-at {
  min-height: 170px;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 22px;
  outline: none;
  border: none;
  resize: none;
}

textarea.input-at:focus,
input.input-at:focus {
  border-color: transparent;
}

.focus-input-at {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 2px solid #337AB7;
  border-radius: 2px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input-at:focus+.focus-input-at {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.form-at-btn {
  position: relative;
  display: block;
  padding: 0 40px;
  height: 50px;
  background-color: #337AB7;
  border-radius: 2px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 auto;
  outline: none;
  border: none;
  cursor: pointer;
}

.form-at-btn:hover {
  background-color: #333333;
}

.form-at-btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f129";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 22px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.error-at {
  color: red;
  padding: 10px 0;
}

.success-at {
  color: green;
  font-size: 28px;
  padding: 20px 0;
  text-align: center;
}

.form-at input[type=checkbox] {
  display: none;
}

.form-at input[type=checkbox]+label {
  display: block;
  position: relative;
  margin: 0 0 20px 34px;
  font-size: 13px;
  line-height: 24px;
  color: #333333;
}

.form-at input[type=checkbox]+label:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  content: '';
  width: 26px;
  height: 26px;
  line-height: 22px;
  left: -34px;
  border: 2px solid #BFE2FF;
  border-radius: 2px;
}

.form-at input[type=checkbox]:checked+label:before {
  content: '\2714';
  color: #337AB7;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  border: 2px solid #337AB7;
}

@media (max-width: 768px) {
  .validate-input-at.w-50 {
    width: 100%;
  }

  .validate-input-at.w-50:first-child {
    margin-right: 0;
  }

  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}