* {
  margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #374151;
   line-height: 1.6;
  overflow-x: hidden;
}

.container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
   display: flex;
   flex-wrap: wrap;
   margin: 0 -15px;
}

.col-md-3, .col-md-6, .col-md-7, .col-md-10, .col-md-12,
.col-lg-3, .col-lg-5, .col-lg-6, .col-sm-6 {
  padding: 0 15px;
}

.col-md-3 {
    flex: 0 0 25%;
  max-width: 25%;
}

.col-md-6 {
   flex: 0 0 50%;
    max-width: 50%;
}

.col-md-7 {
  flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-md-10 {
   flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-lg-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-lg-6 {
  flex: 0 0 50%;
   max-width: 50%;
}

.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.offset-lg-1 {
    margin-left: 8.333%;
}

.align-items-center {
  align-items  :    center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-around {
    justify-content: space-around;
}

.text-center {
   text-align: center;
}

.d-flex {
  display: flex;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
   margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-35    {
   margin-bottom: 35px;
}@media (max-width: 991px) {
    .col-md-3, .col-md-6, .col-md-7, .col-md-10, .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}.en-navbar-cf {
    background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   position: sticky;
    top: 0;
  z-index: 1000;
}

.en-nav-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: flex;
   justify-content: space-between;
    align-items: center;
}

.en-logo-zone a {
   display: block;
}

.en-brand-img {
  max-height: 84px;
    width: auto;
    display: block;
}

.en-nav-links {
   list-style: none;
   display: flex;
   gap: 40px;
  margin: 0;
}

.en-nav-links li a {
    color: #374151;
   text-decoration: none;
   font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.en-nav-links li a:hover {
   color: #2563eb;
}

.en-menu-toggle {
    display: none;
  flex-direction: column;
   gap: 5px;
   cursor: pointer;
}

.en-menu-toggle span {
    width: 28px;
   height: 3px;
    background: #374151;
    border-radius: 2px;
  transition: all 0.3s;
}@media (max-width: 768px) {
    .en-menu-toggle {
        display: flex;
    }

    .en-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .en-nav-links.active {
        display: flex;
    }

    .en-nav-links li {
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .en-nav-links li:last-child {
        border-bottom: none;
    }
}.site-blocks-cover {
  background-size: cover;
    background-repeat: no-repeat;
  background-position: center center;
  padding: 7em 0;
}@media (min-width: 768px) {
    .site-blocks-cover {
        padding: 12em 0;
    }
}.site-blocks-cover.overlay {
  position: relative;
}

.site-blocks-cover.overlay:before {
  content: "";
  position: absolute;
   top: 0;
  bottom: 0;
   right: 0;
    left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.site-blocks-cover .container {
  position: relative;
   z-index: 1;
}

.site-blocks-cover h1 {
   font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
}@media (min-width: 768px) {
    .site-blocks-cover h1 {
        font-size: 4rem;
    }
}.site-blocks-cover h1 strong {
   font-weight: 700;
}

.btn {
    position: relative;
  top: 0;
    transition: .3s all ease;
  text-decoration: none;
    display: inline-block;
}

.btn:hover, .btn:active, .btn:focus {
    outline: none;
   box-shadow: none !important;
}

.btn:hover {
  box-shadow: 0 5px 20px -7px rgba(0, 0, 0, 0.9) !important;
}

.btn.btn-primary {
  background-color: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.btn.btn-white.btn-outline-white {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.btn.btn-white.btn-outline-white:hover {
    background: #fff;
   color: #000;
}

.py-3 {
   padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-5 {
   padding-left: 3rem;
    padding-right: 3rem;
}

.rounded-0 {
  border-radius: 0;
}

.about-area {
  padding: 120px 0;
}@media (max-width: 991px) {
    .about-area {
        padding: 80px 0;
    }
}.section-gap {
    padding: 120px 0;
}@media (max-width: 991px) {
    .section-gap {
        padding: 80px 0;
    }
}.about-area .section-title {
    margin-bottom: 0;
}@media (max-width: 1024px) {
    .about-area .section-title {
        padding-bottom: 0px;
    }
}.section-title h2 {
   font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
   color: #242429;
  margin-bottom: 20px;
}@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}.about-area p {
   color: #777777;
    line-height: 1.625em;
    font-size: 15px;
}

.about-left img {
    width: 100%;
  height: auto;
   display: block;
}@media (max-width: 991px) {
    .about-area .about-left {
        display: none;
    }
}.primary-btn {
  display: inline-block;
  padding: 15px 30px;
   background: #2563eb;
  color: #fff;
    text-transform :uppercase;
    font-weight: 500;
  text-decoration: none;
   transition: all 0.3s ease;
   border: none;
  cursor: pointer;
}

.primary-btn:hover {
    background: #1e40af;
  color: #fff;
}

.primary-btn span {
   color: #fff;
}@media (max-width: 991px) {
    .about-right {
        margin-top: 40px;
    }
}.text_image_section {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F8F9FA;
}

.text_wrapper {
    padding-right: 40px;
}

.text_wrapper .subtitle {
  font-size: 16px;
    color: #2563eb;
  font-weight: 500;
  text-transform: uppercase;
    letter-spacing: 2px;
  margin-bottom: 15px;
   display: block;
}

.text_wrapper h3 {
    font-size: 40px;
   font-weight: 700;
    color: #191d34;
  margin-bottom: 25px;
   line-height: 1.3;
}

.text_wrapper p {
    font-size: 16px;
  font-weight: 400;
   line-height: 28px;
   color: #7A838B;
  margin-bottom: 20px;
}

.button_wrapper {
    margin-top: 35px;
}

.boxed-btn3 {
                    background: #2563eb;
   color: #fff;
  display: inline-block;
    padding: 13px 35px;
  font-size: 16px;
    font-weight: 500;
  border: 1px solid transparent;
   border-radius: 5px;
   text-transform: capitalize;
    transition: 0.3s;
    cursor: pointer;
  text-decoration: none;
}

.boxed-btn3:hover {
  color: #2563eb !important;
    border: 1px solid #2563eb;
  background: transparent;
}

.image_wrapper {
  position: relative;
}

.image_wrapper img {
   width: 100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 991px) {
    .text_image_section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .text_wrapper {
        padding-right: 20px;
    }

    .text_wrapper h3 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .text_image_section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .text_wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .text_wrapper h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .text_wrapper p {
        font-size: 15px;
        line-height: 26px;
    }

    .button_wrapper {
        margin-top: 25px;
    }
}.ftco-section {
    padding: 7em 0;
    position: relative;
}@media (max-width: 767.98px) {
    .ftco-section {
        padding: 6em 0;
    }
}.services-section {
    padding: 0;
}

.services-section .container-fluid {
  margin-top: -228px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.9);
}@media (max-width: 991.98px) {
    .services-section .container-fluid {
        background: rgba(255, 255, 255, 0.9);
    }
}.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
    margin-right: auto;
  margin-left: auto;
}

.px-md-5 {
   padding-left: 3rem;
   padding-right: 3rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.services {
   transition: all 0.3s ease;
}

.services .media-body {
    padding: 30px;
}

.services .num {
    font-weight: 600;
    color: #10b981;
  font-size: 18px;
  display: block;
  margin-bottom: 10px; 

}

.services h3 {
   font-size: 18px;
  font-weight: 600;
}

.services h3 a {
   color: #000000;
   text-decoration: none;
  transition: color 0.3s;
}

.services h3 a:hover {
  color: #2563eb;
}

.services p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

.align-self-stretch {
   align-self: stretch;
}

.ftco-counter {
  background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ftco-counter .overlay {
  position: absolute;
   top: 0;
  left: 0;
   right: 0;
   bottom: 0;
  content: '';
    opacity: 0.8;
    background: #1e293b;
}

.ftco-counter .block-18 {
    display: block;
  width: 100%;
}

.ftco-counter .block-18 .icon {
   width: 80px;
   height: 80px;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
   margin: 0 auto;
  margin-bottom: 30px;
}

.ftco-counter .block-18 .icon span {
    font-size: 40px;
   color: #fff;
}

.ftco-counter .block-18 .text .number {
    line-height: 1;
  font-size: 50px;
    font-weight: 500;
  color: #fff;
   display: block;
    margin-bottom: 5px;
}

.ftco-counter .block-18 .text span {
    font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.heading-section-white .subheading {
  color: rgba(255, 255, 255, 0.8) !important;
}

.heading-section-white h2    {
   color: #fff;
}

.counter-wrap {
  position: relative;
    z-index: 1;
}

.ftco-animate {
   opacity   : 0;
    visibility: hidden;
}

.site-section {
  padding: 5em 0;
}

.site-blocks-testimonials {
  padding-top: 5em;
    padding-bottom: 5em;
}

.testimonial {
  padding: 30px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial img {
	border: 4px solid #f8f9fa;
}

.p-3 {
   padding: 1rem;
}

.img-fluid {
  max-width: 100%;
    height: auto;
}

.w-25 {
    width: 25%;
}

.rounded-circle {
    border-radius: 50%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.h5 {
  font-size: 1.25rem;
}

.text-black {
  color: #000;
}

.text-muted {
    color: #6c757d;
}

.border-primary {
    border-bottom: 3px solid #2563eb;
   padding-bottom: 20px;
}

.font-weight-light {
   font-weight: 300;
}

.text-primary {
  color: #2563eb;
}

.en-cta-section-cf {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.en-content-wrap {
   max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.en-cta-content-cf {
    text-align: center;
    max-width: 800px;
  margin: 0 auto;
}

.en-cta-heading {
    color: #ffffff;
    font-size: 2.5rem;
  font-weight: 600;
    margin-bottom: 20px;
}

.en-cta-text {
  color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
  margin-bottom: 35px;
   line-height: 1.7;
}

.en-cta-button-cf {
    background: #ffffff;
   color: #2563eb;
   padding:    16px 45px;
    font-size: 17px;
    font-weight: 600;
  text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.en-cta-button-cf:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .en-cta-section-cf {
        padding: 60px 0;
    }

    .en-cta-heading {
        font-size: 1.8rem;
    }

    .en-cta-text {
        font-size: 1rem;
    }
}.footer_part {

  background-color: #1e293b;
    padding: 100px 0px 0px;


}@media (max-width: 991px) {
    .footer_part {
        padding: 70px 0px 0px;
    }
}.footer_part .single_footer_part {
  margin-bottom: 50px;
}

.footer_part .single_footer_part .footer_tittle h4 {
   font-size: 20px;
  color: #fff;
   margin-bottom: 25px;
  font-weight: 500;
}

.footer_part .single_footer_part p {
  color: rgba(255,255,255,0.8);
  line-height: 30px;
    font-size: 14px;
  font-weight: 400;
   margin-bottom: 15px;
}

.footer_part .single_footer_part .list-unstyled {
    list-style: none;
    padding: 0;
}

.footer_part .single_footer_part .list-unstyled li {
   margin-bottom: 15px;
}

.footer_part .single_footer_part .list-unstyled li a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
   font-weight: 400;
   transition     :       0.5s;
   text-decoration: none;
}

.footer_part .single_footer_part .list-unstyled li a:hover {
  color: #2563eb;
}

.footer_part .copyright_part {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
   margin-top: 50px;
}

.footer_part .copyright_part .footer-text {
   font-size: 14px;
  color: rgba(255,255,255,0.8);
   margin-bottom: 0;
}

.footer_part .copyright_part .footer-text a {
   color: #2563eb;
   font-weight: 500;
   text-decoration: none;
}

.footer_part .copyright_part .footer-text a:hover {
  color: rgba(255,255,255,0.8);
}

.catalog-section-en {
    padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}@media (max-width: 991px) {
    .catalog-section-en {
        padding: 70px 0;
    }
}.catalog-header-en {
   text-align: center;
   margin-bottom: 60px;
}

.catalog-title-en {
    font-size: 42px;
   font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
  line-height: 1.2;
}@media (max-width: 768px) {
    .catalog-title-en {
        font-size: 32px;
    }
}.catalog-subtitle-en {
   font-size: 18px;
   color: #64748b;
  max-width: 700px;
    margin: 0 auto;
   line-height: 1.6;
}@media (max-width: 768px) {
    .catalog-subtitle-en {
        font-size: 16px;
    }
}.catalog-list-en {
   display: flex;
   flex-direction: column;
  gap: 30px;
}

.catalog-card-en {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  overflow: hidden;
    border: 2px solid transparent;
}

.catalog-card-en:hover {
  box-shadow: 0 12px 40px rgba(37,99,235,0.15);
  border-color: #2563eb;
  transform: translateY(-4px);
}

.catalog-card-inner-en {
    display: grid;
   grid-template-columns: 200px 150px 1fr 1fr 200px;
   gap: 30px;
    padding: 35px;
    align-items: center;
}@media (max-width: 1200px) {
    .catalog-card-inner-en {
        grid-template-columns: 180px 140px 1fr 1fr 180px;
        gap: 20px;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .catalog-card-inner-en {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .catalog-card-inner-en {
        padding: 25px 20px;
    }
}.catalog-col-logo-en {
  display: flex;
   align-items: center;
  justify-content: center;
}

.catalog-logo-wrapper-en


{
    text-align: center;
}

.catalog-logo-img-en {
  max-width: 140px;
   height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}@media (max-width: 991px) {
    .catalog-logo-img-en {
        max-width: 160px;
        height: 70px;
    }
}.catalog-site-name-en {
    font-size: 18px;
   font-weight: 700;
  color: #1e293b;
    margin: 0;
}

.catalog-col-rating-en {
    display: flex;
  align-items: center;
    justify-content: center;
}@media (max-width: 991px) {
    .catalog-col-rating-en {
        border-top: 2px solid #e2e8f0;
        border-bottom: 2px solid #e2e8f0;
        padding: 20px 0;
    }
}.catalog-rating-block-en {
       text-align: center;
}

.catalog-rating-stars-en {
   font-size: 22px;
   margin-bottom: 8px;
    letter-spacing: 2px;
}

.star-filled-en {
    color: #fbbf24;
}

.star-half-en {
  color: #fbbf24;
   opacity: 0.5;
}

.star-empty-en {
    color: #d1d5db;
}

.catalog-rating-score-en {
   font-size: 20px;
    font-weight: 700;
  color: #2563eb;
}

.catalog-col-bonuses-en,
.catalog-col-features-en {
    padding: 0 15px;
}@media (max-width: 991px) {
    .catalog-col-bonuses-en,
    .catalog-col-features-en {
        padding: 0;
    }
}.catalog-col-title-en {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
	margin-bottom: 12px;
  text-transform: uppercase;
   letter-spacing: 0.5px;
}

.catalog-bonus-list-en,
.catalog-features-list-en {
  list-style: none;
    padding: 0;
   margin: 0;
}

.catalog-bonus-list-en li,
.catalog-features-list-en li {
    font-size: 14px;
    color: #475569;
   line-height: 1.6;
    margin-bottom: 8px;
  padding-left: 20px;
    position: relative;
}

.catalog-bonus-list-en li:before {
  content: "🎁";
  position: absolute;
  left: 0;
  font-size: 14px;
}

.catalog-features-list-en li:before {
  content: "✓";
    position: absolute;
    left: 0;
   color: #10b981;
   font-weight: 700;
   font-size: 16px;
}

.catalog-col-action-en {
  display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-btn-en {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
         color: #ffffff;
   padding: 16px 32px;
    font-size: 16px;
   font-weight: 700;
  text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  text-transform: uppercase;
   letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
   display: block;
    width: 100%;
   max-width: 200px;
}@media (max-width: 991px) {
    .catalog-btn-en {
        max-width: 100%;
        padding: 18px 32px;
        font-size: 17px;
    }
}.catalog-btn-en:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}@media (max-width: 991px) {
    .catalog-col-logo-en {
        border-bottom: none;
    }

    .catalog-col-bonuses-en {
        border-top: 2px solid #e2e8f0;
        padding-top: 20px;
    }

    .catalog-col-features-en {
        border-top: 2px solid #e2e8f0;
        padding-top: 20px;
    }

    .catalog-col-action-en {
        border-top: 2px solid #e2e8f0;
        padding-top: 25px;
    }
}.footer_part {
   background-color: #1e293b;
   padding: 100px 0px 0px;
}@media (max-width: 991px) {
    .footer_part {
        padding: 70px 0px 0px;
    }
}.footer_part .single_footer_part {
   margin-bottom: 50px;
}

.footer_logo_block {
    margin-bottom: 25px;
}

.footer-logo-img {
   max-height: 106px;
   width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer_part .single_footer_part .footer_tittle h4 {
  font-size: 20px;
  color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer_part .single_footer_part p {
  color: rgba(255,255,255,0.8);
	line-height: 30px;
   font-size: 14px;
    font-weight: 400;
  margin-bottom: 15px;
}

.footer_part .single_footer_part .list-unstyled {
  list-style: none;
   padding: 0;
    margin: 0;
}

.footer_part .single_footer_part .list-unstyled li {
    margin-bottom: 15px;
}

.footer_part .single_footer_part .list-unstyled li a {
  color: rgba(255,255,255,0.8);
   font-size: 14px;
   font-weight: 400;
    transition: 0.5s;
   text-decoration: none;
}

.footer_part .single_footer_part .list-unstyled li a:hover {
    color: #2563eb;
   padding-left: 5px;
}

.regulators_block {
  background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
  border: 2px solid rgba(255,255,255,0.1);
}

.regulators_title {
  color: #fff;
    font-size: 22px;
    font-weight: 600;
  text-align: center;
   margin-bottom: 30px;
}

.regulators_grid     {
   display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
   align-items: center;
}@media (max-width: 1200px) {
    .regulators_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .regulators_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .regulators_grid {
        grid-template-columns: 1fr;
    }
}.regulator_item {
    display: flex;
   flex-direction: column;
   align-items: center;
      text-align: center;
  padding: 20px 15px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
    text-decoration: none;
  border: 2px solid transparent;
}

.regulator_item:hover {
  background: rgba(255,255,255,0.12);
    border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.regulator_item img {
    max-width: 100%;
  height: 50px;
  object-fit: contain;
    margin-bottom: 12px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.regulator_item:hover img {
  filter: brightness(1) invert(0);
}

.regulator_name {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
    font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
    line-height: 1.4;
}

.disclaimer_block {
  background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(220,38,38,0.15) 100%);
  padding: 35px 40px;
    border-radius: 8px;
   margin-bottom: 40px;
    border-left: 5px solid #ef4444;
}@media (max-width: 768px) {
    .disclaimer_block {
        padding: 25px 20px;
    }
}.disclaimer_title {
  color: #fca5a5;
  font-size: 20px;
  font-weight: 700;
    margin-bottom: 15px;
  display: flex;
   align-items: center;
   gap: 10px;
}

.disclaimer_title:before {
  content: "⚠";
  font-size: 24px;
  color: #ef4444;
}

.disclaimer_text {
  color: rgba(255,255,255,0.9);
   font-size: 14px;
   line-height: 1.8;
  margin: 0;
}

.footer_part .copyright_part {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 30px 0;
  margin-top: 50px;
}

.footer_part .copyright_part .footer-text {
   font-size: 14px;
  color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.footer_part .copyright_part .footer-text a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
    transition: color 0.3s;
}

.footer_part .copyright_part .footer-text a:hover {
  color: #60a5fa;
}

.age-popup-overlay {
    position: fixed;
    top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
    display: flex;
        align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-popup-overlay.hidden {
   display: none;
}

.age-popup-container {
    max-width: 550px;
   width: 100%;
    animation: popupSlideIn 0.4s ease-out;
}@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.age-popup-content {
   background: #ffffff;
   border-radius: 12px;
   padding: 50px 40px;
    text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}@media (max-width: 576px) {
    .age-popup-content {
        padding: 35px 25px;
    }
}.age-popup-icon {
    margin-bottom: 25px;
}

.age-popup-icon svg {
   margin: 0 auto;
    display: block;
}

.age-popup-title {
    font-size: 32px;
  font-weight: 700;
   color: #1e293b;
   margin-bottom: 20px;
    line-height: 1.2;
}@media (max-width: 576px) {
    .age-popup-title {
        font-size: 26px;
    }
}.age-popup-text {
    font-size: 16px;
   color: #64748b;
  margin-bottom: 15px;
    line-height: 1.6;
}

.age-popup-question {
   font-size: 18px;
   font-weight: 600;
   color: #334155;
   margin-bottom: 30px;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
  flex-direction: column;
}@media (min-width: 576px) {
    .age-popup-buttons {
        flex-direction: row;
    }
}.age-popup-btn {
  flex: 1;
    padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
    border-radius: 8px;
  cursor: pointer;
   transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.age-popup-btn-yes {
    background: #2563eb;
   color: #fff;
}

.age-popup-btn-yes:hover {
    background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

.age-popup-btn-no {
   background: #e5e7eb;
   color: #374151;
}

.age-popup-btn-no:hover {
  background: #d1d5db;
}@media (max-width: 576px) {
    .age-popup-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}.dk {
  filter: brightness(1) invert(1);
}

.contact-hero-zone-cf {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 100px 0 80px;
    position: relative;
  overflow: hidden;
}

.contact-hero-overlay {
   position: absolute;
    top: 0;
   left: 0;
  right: 0;
  bottom: 0;
  background: url(../banners/sports_action_dynamic_collection_stock_image.webp) center/cover;
    opacity: 0.15;
}

.contact-hero-content-en {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
   font-weight: 700;
  color: #ffffff;
    margin-bottom: 15px;
}

.contact-hero-desc {
    font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
}@media (max-width: 768px) {
    .contact-hero-zone-cf {
        padding: 70px 0 60px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-desc {
        font-size: 1rem;
    }
}.contact-form-section-en {
   padding :     80px 0;
   background: #f8fafc;
}@media (max-width: 991px) {
    .contact-form-section-en {
        padding: 60px 0;
    }
}.contact-form-col-en {
    flex: 0 0 66.666%;
  max-width: 66.666%;
}

.contact-info-col-en {
    flex: 0 0 33.333%;
   max-width: 33.333%;
}@media (max-width: 991px) {
    .contact-form-col-en,
    .contact-info-col-en {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-info-col-en {
        margin-top: 50px;
    }
}.contact-form-wrapper-en {
   background: #ffffff;
    padding: 50px 40px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}@media (max-width: 576px) {
    .contact-form-wrapper-en {
        padding: 35px 25px;
    }
}.contact-form-header-en {
   margin-bottom: 40px;
   text-align: center;
}

.contact-form-title-en {
    font-size: 2rem;
    font-weight: 700;
   color: #1e293b;
    margin-bottom: 10px;
}

.contact-form-subtitle-en {
  font-size: 1rem;
  color: #64748b;
}@media (max-width: 576px) {
    .contact-form-title-en {
        font-size: 1.5rem;
    }
}

.form-row-en {
    margin-bottom: 25px;
}

.form-group-en {
    position: relative;
}

.form-label-en {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-icon-en {
    width: 18px;
    height: 18px;
}

.form-icon-en path,
.form-icon-en circle,
.form-icon-en rect,
.form-icon-en line {
    stroke: #2563eb;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-input-en,
.form-select-en,
.form-textarea-en {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input-en:focus,
.form-select-en:focus,
.form-textarea-en:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.form-input-en.error,
.form-select-en.error,
.form-textarea-en.error {
    border-color: #ef4444;
}

.form-textarea-en {
    resize: vertical;
    min-height: 140px;
}

.form-select-en {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-error-en {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
    font-weight: 500;
}

.form-submit-zone-en {
    margin-top: 35px;
    text-align: center;
}

.form-submit-btn-en {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 16px 50px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-submit-btn-en:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}

.form-submit-btn-en:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon-en {
    width: 20px;
    height: 20px;
}

.btn-icon-en path,
.btn-icon-en line {
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 576px) {
    .form-submit-btn-en {
        width: 100%;
        justify-content: center;
    }
}.contact-info-wrapper-en {
    background: #ffffff;
  padding: 40px 35px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
}@media (max-width: 991px) {
    .contact-info-wrapper-en {
        position: static;
    }
}.contact-info-title-en {
  font-size: 1.5rem;
   font-weight: 700;
  color: #1e293b;
   margin-bottom: 30px;
   padding-bottom: 15px;
   border-bottom: 3px solid #2563eb;
}

.contact-info-item-en {
   display: flex;
   gap: 20px;
   margin-bottom: 30px;
   padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.contact-info-item-en:last-child {
   margin-bottom: 0;
   padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon-en {
    flex-shrink: 0;
    width: 50px;
   height: 50px;
  background: rgba(37,99,235,0.1);
	border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
}

.contact-info-icon-en img {
   width: 24px;
   height: 24px;
}

.contact-info-icon-en img path,
.contact-info-icon-en img circle,
.contact-info-icon-en img line {
   stroke: #2563eb;
  fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-content-en h4 {
  font-size: 16px;
    font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.contact-info-content-en p {
   font-size: 14px;
  color: #64748b;
   line-height: 1.6;
  margin: 0;
}

.success-popup-overlay {
    position: fixed;
   top: 0;
  left: 0;
   right: 0;
   bottom: 0;
  background: rgba(0,0,0,0.8);
   z-index: 99999;
   display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-popup-overlay.active {
    display: flex;
}

.success-popup-container {
    max-width: 500px;
    width: 100%;
   animation: popupSlideIn 0.4s ease-out;
}

.success-popup-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}@media (max-width: 576px) {
    .success-popup-content {
        padding: 35px 25px;
    }
}.success-popup-icon {
    margin-bottom: 25px;
}

.success-popup-icon svg {
  margin: 0 auto;
    display: block;
}

.success-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
   margin-bottom: 15px;
}

.success-popup-text {
  font-size: 16px;
  color: #64748b;
    margin-bottom: 30px;
   line-height: 1.6;
}

.success-popup-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%); 
	    color: #ffffff; 
	   padding: 14px 40px; 
	    font-size: 16px; 
	    font-weight: 700; 
	   border: none; 
	  border-radius: 8px; 
	  cursor: pointer; 
	  transition: all 0.3s ease; 
	    text-transform: uppercase;
}

.success-popup-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}

.policy-hero-section-en {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0 60px;
  position: relative;
  text-align: center;
}@media (max-width: 768px) {
    .policy-hero-section-en {
        padding: 60px 0 40px;
    }
}.policy-hero-title-en {
   font-size: 2.8rem;
   font-weight: 700;
   color: #ffffff;
    margin-bottom: 12px;
   line-height: 1.2;
}@media (max-width: 768px) {
    .policy-hero-title-en {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .policy-hero-title-en {
        font-size: 1.6rem;
    }
}.policy-hero-subtitle-en {


   font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
	}@media (max-width: 576px) {
    .policy-hero-subtitle-en {
        font-size: 0.95rem;
    }
}.policy-content-section-en {
   padding: 80px 0;
   background: #f8fafc;
}@media (max-width: 991px) {
    .policy-content-section-en {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .policy-content-section-en {
        padding: 40px 0;
    }
}.policy-content-wrapper-en {
   max-width: 900px;
   margin: 0 auto;
  background: #ffffff;
   padding: 60px 70px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}@media (max-width: 991px) {
    .policy-content-wrapper-en {
        padding: 45px 50px;
    }
}

@media (max-width: 768px) {
    .policy-content-wrapper-en {
        padding: 35px 30px;
    }
}

@media (max-width: 576px) {
    .policy-content-wrapper-en {
        padding: 30px 20px;
    }
}.policy-block-en {
   margin-bottom: 45px;
}



.policy-block-en:last-child {
   margin-bottom: 0;
}@media (max-width: 576px) {
    .policy-block-en {
        margin-bottom: 35px;
    }
}.policy-heading-en {
   font-size: 1.75rem;
        font-weight: 700;
  color: #1e293b;
   margin-bottom: 18px;
  line-height: 1.3;
  padding-bottom: 12px;
   border-bottom: 3px solid #2563eb;
}@media (max-width: 768px) {
    .policy-heading-en {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .policy-heading-en {
        font-size: 1.3rem;
    }
}.policy-text-en {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
   margin: 0;
    text-align: justify;
}@media (max-width: 576px) {
    .policy-text-en {
        font-size: 15px;
        line-height: 1.7;
    }
}