@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap";

.Header_nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    /* изначально за экраном */
    width: 100vw;
    height: 100vh;
    background: #053d70;
    /* или твой цвет */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 1050;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(.83, .06, 0, .98);
    justify-content: flex-start;
}

/* Когда active — меню выезжает */
.Header_nav-links.active {
    right: 0;
}

.Header_nav-links li {
    margin: 0;
}

.Header_nav-links a {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}


.top-casinos-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 24px;
    justify-items: stretch;
}


.casino-card{
    background:#eaf6ff;
    border-radius:18px;
    box-shadow:none;
    width:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:24px 16px 16px 16px;
}


@media (max-width: 1024px){
  .top-casinos-grid{ grid-template-columns: repeat(3,1fr); }
}


@media (max-width: 768px){
  .top-casinos-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 420px){
  .top-casinos-grid{ grid-template-columns: 1fr; }
}


.casino-logo {
    height: 40px;
    margin-bottom: 16px;
}

.casino-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.casino-bonus a {
    color: #1375C3;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.casino-desc {
    color: #30334e;
    font-size: 15px;
    text-align: center;
    margin-bottom: 22px;
}

.faq-section .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-section .faq-item .faq-answer.active {
    max-height: 250px;
    /* Достаточно для текста, можно больше */
    padding: 5px 10px;
}

.faq-section .faq-item .faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-section .faq-item .faq-question .icon svg {
    transition: transform 0.3s;
}

.faq-section .faq-item.open .faq-question .icon svg {
    transform: rotate(45deg);
    /* минус превращается в плюс при закрытии */
}

.TopGamesSection_gameItem {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 0;
    transition: transform .5s ease;
    max-width: 264px;
    max-height: 142px;
}

.TopGamesSection_gameItem:hover {
    transform: scale(1.05);
    outline: 2px solid rgba(0, 0, 0, .4);
}

.TopGamesSection_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #deefff;
    opacity: 0;
    transition: opacity .5s ease;
}

.TopGamesSection_gameItem:hover .TopGamesSection_overlay {
    opacity: 1;
}

.button {
    cursor: pointer;
    font-family: Oswald;
    transition: background-color .3s ease, transform .3s ease;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.button.primary {
    padding: 4px 48px;
    background: #e8002f;
    color: #fff;
    font-size: 28px;
    border: none;
    border-radius: 50px;
    min-width: 280px;
    height: 87px;
    text-decoration: none;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media(max-width:768px) {
    .button.primary {
        font-size: 24px;
        padding: 4px 48px;
        min-width: 240px;
        height: 77px;

    }
}

@media(max-width:420px) {
    .button.primary {
        font-size: 18px;
        padding: 10px 14px
    }
}

@media(max-width:380px) {
    .button.primary {
        height: 60px
    }
}

@media(max-width:300px) {
    .button.primary {
        width: auto;
        height: auto
    }
}

.button.secondary {
    padding: 2px 18px;
    background: #ffe200;
    color: #00041a;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    height: 52px
}

@media(max-width:768px) {
    .button.secondary {
        font-size: 18px
    }
}

@media(max-width:300px) {
    .button.secondary {
        padding: 2px 16px;
        width: auto;
        height: auto
    }
}

.button:hover {
    transform: scale(1.07)
}

.List_listItem {
    margin-left: 24px
}

.TwoColumns_two-columns-container {
    display: flex;
    width: 100%
}

.TwoColumns_column {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1
}

.TwoColumns_column .Footer_copyrightAdvantageSection_advantageSectionTwoColumns_innerDiv {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.TwoColumns_categoriesList {
    margin-left: 1.5rem;
    padding: 24px 0
}

@media(max-width:820px) {
    .TwoColumns_two-columns-container {
        flex-direction: column;
        gap: 40px !important
    }

    .TwoColumns_two-columns-container .TwoColumns_column {
        gap: 40px !important
    }
}

@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap";

.about-section {
    background: #053d70
}

.about-section .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 64px 0
}

@media(max-width:1220px) {
    .about-section .container {
        padding: 40px;
        gap: 40px
    }
}

@media(max-width:375px) {
    .about-section .container {
        padding: 40px 20px;
        gap: 40px
    }
}

.about-section .about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.about-section .about-content .about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%
}

@media(max-width:1220px) {
    .about-section .about-content .about-text {
        width: 100%
    }
}

.about-section .about-content .about-text ul {
    margin-left: 1.5rem
}

.about-section .about-content .about-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center
}

@media(max-width:1380px) {
    .about-section .about-content .about-image {
        max-width: 650px;
        width: 100%
    }
}

@media(max-width:1220px) {
    .about-section .about-content .about-image {
        display: none
    }
}

.about-section .about-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.Footer_copyrightAdvantageSection_advantageSection .container {
    display: flex;
    flex-direction: column;
    gap: 48px
}

@media(max-width:768px) {
    .Footer_copyrightAdvantageSection_advantageSection .container {
        gap: 40px
    }
}

.AdvantageSection_columns {
    display: flex;
    gap: 24px
}

.AdvantageSection_columns .AdvantageSection_column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 30%
}

.AdvantageSection_columns .AdvantageSection_column ul li {
    margin-left: 24px;
    overflow-wrap: break-word
}

@media(max-width:768px) {
    .AdvantageSection_columns .AdvantageSection_column {
        width: 100%;
        gap: 24px
    }
}

@media(max-width:570px) {
    .AdvantageSection_columns {
        flex-direction: column;
        word-wrap: break-word;
        word-break: break-word
    }
}

.mobile-section {
    background: #053d70;
    padding: 64px 0;
    margin-bottom: 140px
}

.mobile-section .mobile-content {
    display: flex
}

.mobile-section .advantages-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 32px;
    border-right: 1px solid hsla(0, 0%, 100%, .2)
}

.mobile-section .app-info-block {
    padding-left: 32px
}

.mobile-section .advantages-block,
.mobile-section .app-info-block {
    flex: 1;
    align-items: flex-start;
    color: #fff
}

.mobile-section .advantages-block .primary,
.mobile-section .app-info-block .primary {
    height: 82px
}

.mobile-section .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    list-style: none;
    padding: 0
}

.mobile-section .advantages-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 400px;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.mobile-section .app-buttons {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    margin-top: 48px
}

.mobile-section .app-buttons button {
    background: none;
    border: none;
    cursor: pointer
}

.mobile-section .app-buttons button img {
    width: 181px
}

.mobile-section .mobile-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    z-index: 1
}

.mobile-section .mobile-image img {
    position: absolute;
    left: -5px;
    top: 46px
}

@media(max-width:1370px) {
    .mobile-section .mobile-image img {
        position: static;
        width: 450px;
        height: auto
    }
}

@media(max-width:1330px) {
    .mobile-section .mobile-image {
        max-width: 100%
    }
}

@media(max-width:1160px) {
    .mobile-section .mobile-image.hide-1080 {
        display: none
    }

    .mobile-section .mobile-image .app-image {
        height: 405px;
        width: 348px;
        object-fit: contain
    }
}

.mobile-section .mobile-image.show-1080 {
    display: none
}

@media(max-width:1160px) {
    .mobile-section .mobile-image.show-1080 {
        display: flex;
        justify-content: center;
        margin-left: 0
    }

    .mobile-section .mobile-image.show-1080 .app-image {
        max-width: 100%;
        height: auto
    }
}

@media(max-width:768px) {
    .mobile-section {
        padding: 40px 0 18px;
        margin-bottom: 64px
    }

    .mobile-section .mobile-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px
    }

    .mobile-section .mobile-content .app-info-block {
        padding: 24px
    }

    .mobile-section .mobile-content .app-info-block .app-image {
        margin-bottom: 4px;
        padding-bottom: 20px
    }

    .mobile-section .mobile-content .app-info-block h3 {
        margin-bottom: 24px
    }

    .mobile-section .mobile-content .app-info-block .app-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0
    }

    .mobile-section .mobile-content .advantages-block {
        padding: 24px;
        border: none;
        gap: 24px
    }

    .mobile-section .mobile-content .advantages-block ul {
        gap: 16px
    }

    .mobile-section .mobile-content .advantages-block ul li {
        font-size: 18px;
        width: auto
    }

    .mobile-section .mobile-content .advantages-block button {
        align-self: center;
        margin-top: 40px;
        max-width: 267px;
        height: 77px
    }
}

@media(max-width:380px) {

    .mobile-section .mobile-content .advantages-block,
    .mobile-section .mobile-content .app-info-block {
        padding: 24px 0
    }

    .mobile-section .mobile-content .advantages-block button {
        height: 60px
    }
}

.payment-methods-section {
    gap: 32px
}

.payment-methods-section .payment-methods-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    text-align: center;
    table-layout: auto;
    margin-bottom: -25px
}

.payment-methods-section .payment-methods-table tbody td:nth-child(2),
.payment-methods-section .payment-methods-table thead th:nth-child(2) {
    width: 11%
}

.payment-methods-section .payment-methods-table tbody td:nth-child(3),
.payment-methods-section .payment-methods-table thead th:nth-child(3) {
    width: 15%
}

.payment-methods-section .payment-methods-table tbody td:nth-child(4),
.payment-methods-section .payment-methods-table thead th:nth-child(4) {
    width: 12%
}

.payment-methods-section .payment-methods-table tbody td:nth-child(5),
.payment-methods-section .payment-methods-table thead th:nth-child(5) {
    width: 17%
}

.payment-methods-section .payment-methods-table tbody td:nth-child(6),
.payment-methods-section .payment-methods-table thead th:nth-child(6) {
    width: 13%
}

.payment-methods-section .payment-methods-table tbody td:nth-child(7),
.payment-methods-section .payment-methods-table thead th:nth-child(7) {
    width: 18%
}

.payment-methods-section .payment-methods-table .payment-methods-table-header {
    background: #053d70;
    background-attachment: fixed
}

.payment-methods-section .payment-methods-table .payment-methods-table-header tr {
    display: table-row;
    height: 60px;
    color: #fff;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    line-height: normal
}

.payment-methods-section .payment-methods-table .payment-methods-table-header tr th {
    font-weight: 500
}

.payment-methods-section .payment-methods-table .payment-methods-table-header tr th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.payment-methods-section .payment-methods-table .payment-methods-table-header tr th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.payment-methods-section .payment-methods-table tbody tr {
    height: 88px;
    background: none
}

.payment-methods-section .payment-methods-table tbody tr td {
    background: #deefff;
    padding: 10px;
    border-top: 0;
    border-bottom: 0;
    line-height: normal !important
}

.payment-methods-section .payment-methods-table tbody tr td:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 88px;
    overflow: hidden
}

.payment-methods-section .payment-methods-table tbody tr td:last-child {
    border-right: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.payment-methods-section .payment-methods-table tbody tr td img {
    filter: drop-shadow(.0625rem .0625rem .125rem rgba(0, 0, 0, .75))
}

.payment-methods-section .payment-methods-table tbody tr button {
    width: 168px;
    box-shadow: 0 4px 8px 0 rgba(0, 4, 13, .2)
}

@media(max-width:420px) {
    .payment-methods-section .payment-methods-table tbody tr button {
        width: auto
    }
}

.payment-methods-section .mobile-payment-methods {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-header {
    background: #053d70;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 8px
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-header img {
    width: 110px;
    margin-left: 16px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .4))
}

@media(max-width:420px) {
    .payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-header img {
        width: auto;
        margin-left: 0
    }
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-header button {
    max-width: 200px;
    width: 100%
}

@media(max-width:320px) {
    .payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px
    }
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-details {
    background: #deefff;
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    border: 0;
    border-radius: 8px
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-details p {
    color: #00041a;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-details p:last-child {
    border-bottom: none
}

.payment-methods-section .mobile-payment-methods .payment-method-card .payment-method-details p strong {
    background: #0075df;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500
}

@media(max-width:768px) {
    .payment-methods-section {
        gap: 40px
    }

    .payment-methods-section .payment-methods-table {
        display: none
    }
}

.PromotionsSection_promotionsSection {
    background: #053d70;
    padding: 64px 0;
    overflow-wrap: break-word;
    word-break: break-word
}

.PromotionsSection_promotionsSection .container {
    display: flex;
    flex-direction: column;
    gap: 48px
}

@media(max-width:768px) {
    .PromotionsSection_promotionsSection {
        padding: 40px 0
    }

    .PromotionsSection_promotionsSection .container {
        gap: 40px !important
    }
}

.providers-section .providers-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem
}

@media(max-width:980px) {
    .providers-section .providers-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:768px) {
    .providers-section .providers-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:570px) {
    .providers-section .providers-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:320px) {
    .providers-section .providers-grid {
        grid-template-columns: 1fr
    }
}

.providers-section .provider-block {
  display: flex;
  flex-direction: column;      
  align-items: center;
  justify-content: flex-start; 
  padding: 12px 10px 14px;
  border-radius: 8px;
  background: #a0d2ff;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  min-height: 150px;           
}
@media (max-width:760px){
  .providers-section .provider-block{
    min-height: 130px;
    padding: 10px 8px 12px;
  }
}

@media(max-width:576px) {
    .providers-section .provider-block {
        padding: .25rem;
        height: auto
    }
}

.providers-section .provider-image {
  display: block;
  max-width: 90%;
  max-height: 86px;
  width: auto;
  height: auto;
  margin: 4px 0 2px;
}

.providers-section .provider-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: #222;
  text-align: center;
  word-break: break-word;
}

@media(max-width:580px) {
    .providers-section h2 {
        max-width: 290px
    }
}

.SupportSection_leftContent {
    width: 60%
}

.SupportSection_leftContent .h2-heading {
    margin-bottom: 48px
}

@media(max-width:768px) {
    .SupportSection_leftContent {
        width: 100%
    }
}

.SupportSection_supportContent {
    display: flex;
    gap: 48px;
    position: relative
}

.SupportSection_supportContent ul {
    margin-left: 1.5rem;
    padding: 24px 0
}

@media(max-width:1050px) {
    .SupportSection_supportContent h2 {
        margin-bottom: 40px !important
    }
}

.SupportSection_rightImage {
    display: flex;
    align-items: center
}

.SupportSection_rightImage img {
    margin-right: -100px
}

@media(max-width:1380px) {
    .SupportSection_rightImage img {
        margin-right: 0
    }
}

@media(max-width:1220px) {
    .SupportSection_rightImage {
        display: none
    }
}

.OfferCard_offerCard__lpMw2 {
    display: flex;
    width: 260px;
    padding: 32px 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    outline: 0 solid #484646;
    border-radius: 8px;
    background: #deefff
}

.OfferCard_offerCard__lpMw2 img {
    filter: drop-shadow(.0625rem .0625rem .125rem rgba(0, 0, 0, .75))
}

.OfferCard_offerCard__lpMw2 h3 {
    color: #00041a;
    text-align: center;
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.OfferCard_offerCard__lpMw2 h4 {
    font-size: 24px;
    color: #0075df
}

.OfferCard_offerCard__lpMw2 h4,
.OfferCard_offerCard__lpMw2 p {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.OfferCard_offerCard__lpMw2 p {
    color: #00041a;
    text-align: center;
    font-size: 20px
}

@media(max-width:768px) {
    .OfferCard_offerCard__lpMw2 p {
        font-size: 16px
    }
}

.OfferCard_offerCard__lpMw2 button {
    margin-top: auto;
    width: 178px
}

@media(max-width:768px) {
    .OfferCard_offerCard__lpMw2 {
        width: 240px;
        height: 264px;
        padding: 16px
    }

    .OfferCard_offerCard__lpMw2 img {
        width: 160px
    }

    .OfferCard_offerCard__lpMw2 h3 {
        display: none
    }

    .OfferCard_offerCard__lpMw2 h4 {
        margin-bottom: -8px
    }

    .OfferCard_offerCard__lpMw2 button {
        width: 202px
    }
}

@media(max-width:575px) {
    .OfferCard_offerCard__lpMw2 {
        width: 100%
    }

    .OfferCard_offerCard__lpMw2 button {
        width: auto
    }
}

.top-casinos-section .offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 26px
}

.top-casinos-section button {
    align-self: center
}

@media(max-width:768px) {
    .top-casinos-section {
        padding: 24px 40px
    }

    .top-casinos-section .offers-grid {
        gap: 16px
    }
}

@media(max-width:380px) {
    .top-casinos-section {
        padding: 24px 20px
    }
}

@media(max-width:1180px) {
    .top-casinos-section .offers-grid {
        justify-content: center
    }
}

.TopGamesSection_topGames {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 140px;
    scroll-margin-top: 99px
}

.TopGamesSection_topGames h2 {
    margin-left: -12px
}

.TopGamesSection_topGames button {
    align-self: center
}

@media(max-width:768px) {
    .TopGamesSection_topGames {
        gap: 40px;
        margin-bottom: 64px
    }

    .TopGamesSection_topGames h2 {
        margin-left: 0
    }
}

.TopGamesSection_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px
}

@media(max-width:890px) {
    .TopGamesSection_grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .TopGamesSection_grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .TopGamesSection_grid {
        grid-template-columns: 1fr
    }
}

.TopGamesSection_gameItem {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 0;
    transition: transform .5s ease;
    max-width: 264px;
    max-height: 142px
}

.TopGamesSection_gameItem:hover {
    transform: scale(1.05);
    outline: 2px solid rgba(0, 0, 0, .4)
}

.TopGamesSection_gameItem .TopGamesSection_gameImage {
    width: 100%;
    height: auto;
    display: block
}

.TopGamesSection_gameItem .TopGamesSection_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #deefff;
    opacity: 0;
    transition: opacity .5s ease
}

.TopGamesSection_gameItem .TopGamesSection_overlay.TopGamesSection_visible {
    opacity: 1
}

.TopGamesSection_gameItem .TopGamesSection_overlay:hover {
    cursor: pointer
}

@media(max-width:1000px) {
    .TopGamesSection_gameItem .TopGamesSection_overlay {
        gap: 8px
    }
}

.TopGamesSection_gameItem .TopGamesSection_gameName {
    text-align: center;
    font-family: Roboto;
    color: #0075df;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

@media(max-width:1000px) {
    .TopGamesSection_gameItem .TopGamesSection_gameName {
        font-size: 24px
    }
}

@media(max-width:768px) {
    .TopGamesSection_gameItem .TopGamesSection_gameName {
        font-size: 32px
    }
}

.TopGamesSection_gameItem .TopGamesSection_playButton {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #0075df
}

@media(max-width:1000px) {
    .TopGamesSection_gameItem .TopGamesSection_playButton {
        font-size: 20px
    }
}

@media(max-width:768px) {
    .TopGamesSection_gameItem .TopGamesSection_playButton {
        font-size: 24px
    }
}

.TopGamesSection_gameItem .TopGamesSection_playButton .TopGamesSection_playIcon {
    --icon-color: #0075df;
    display: flex
}

.TopGamesSection_gameItem .TopGamesSection_playButton .TopGamesSection_playIcon svg {
    width: 33px;
    height: 32px
}

@media(max-width:1000px) {
    .TopGamesSection_gameItem .TopGamesSection_playButton .TopGamesSection_playIcon svg {
        width: 25px;
        height: 25px
    }
}

@media(max-width:768px) {
    .TopGamesSection_gameItem .TopGamesSection_playButton .TopGamesSection_playIcon svg {
        width: 30px;
        height: 30px
    }
}

@media(max-width:576px) {
    .TopGamesSection_gameItem .TopGamesSection_playButton .TopGamesSection_playIcon svg {
        width: 25px;
        height: 25px
    }
}

@media(max-width:1200px) {
    .TopGamesSection_gameItem {
        max-width: none;
        max-height: none
    }
}

@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap";





.WelcomeSection_welcomeContent {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 72.5rem
}

@media(max-width:768px) {
    .WelcomeSection_welcomeContent button {
        align-self: center;
        max-height: 77px
    }
}

.WelcomeSection_welcomeText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    width: 445px;
    max-width: 50%
}

.WelcomeSection_welcomeText .WelcomeSection_bonusText {
    display: none
}

@media(max-width:1280px) {
    .WelcomeSection_welcomeText {
        margin-left: 0
    }
}

@media(max-width:768px) {
    .WelcomeSection_welcomeText {
        width: 100%;
        max-width: 100%;
        gap: 24px;
        align-items: center;
        text-align: center
    }

    .WelcomeSection_welcomeText .WelcomeSection_bonusText {
        display: block
    }

    .WelcomeSection_welcomeText .WelcomeSection_offerText {
        display: none;
		
    }
}

@media(max-width:380px) {
    .WelcomeSection_welcomeText {
        gap: 20px
    }
}

.WelcomeSection_welcomeText h2 {
    font-family: Oswald;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    line-height: normal;
    text-transform: uppercase;
    color: #053d70
}

@media(max-width:768px) {
    .WelcomeSection_welcomeText h2 {
        display: none
    }
}

.WelcomeSection_welcomeText p {
    font-family: Roboto;
    color: #00041a;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

@media(max-width:768px) {
    .WelcomeSection_welcomeText p {
        font-size: 24px;
        font-family: Oswald;
        font-weight: 700;
        text-transform: uppercase
    }
}

@media(max-width:380px) {
    .WelcomeSection_welcomeText p {
        font-size: 20px
    }
}

@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: #fff;
    font-family: Roboto
}

.container {
    max-width: 1120px;
    margin: 0 auto
}

@media(max-width:1180px) {
    .container {
        padding: 0 40px
    }
}

@media(max-width:375px) {
    .container {
        padding: 0 20px
    }
}

.section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 140px;
    scroll-margin-top: 99px
}

@media(max-width:1120px) {
    .section {
        margin-bottom: 64px
    }
}

@media(max-width:768px) {
    .section {
        gap: 40px
    }
}

@media(max-width:420px) {
    .section {
        margin-bottom: 72px
    }
}

.h2-heading {
    color: #00041a;
    font-family: Oswald;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word
}

.h2-heading.white {
    color: #fff
}

@media(max-width:768px) {
    .h2-heading {
        font-size: 32px
    }
}

@media(max-width:570px) {
    .h2-heading {
        font-size: 26px
    }
}

.h3-heading {
    color: #fff;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word
}

@media(max-width:768px) {
    .h3-heading {
        font-size: 24px
    }
}

@media(max-width:570px) {
    .h3-heading {
        font-size: 20px
    }
}

.h4-heading {
    color: #00041a;
    font-family: Oswald;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word
}

.h4-heading.white {
    color: #fff
}

@media(max-width:768px) {
    .h4-heading {
        font-size: 18px
    }
}

.paragraph-text {
    color: #fff;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px
}

.paragraph-text.black {
    color: #00041a
}

@media(max-width:768px) {
    .paragraph-text {
        font-size: 18px;
        line-height: 32px
    }
}

.not-found {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100vh;
    text-align: center
}

.not-found h2 {
    margin-top: auto
}

.not-found p {
    font-family: Roboto;
    color: #00041a;
    font-size: 28px;
    font-weight: 500
}

.not-found button {
    align-self: center;
    margin-bottom: auto
}

@media(max-width:768px) {
    .not-found p {
        font-size: 20px;
        line-height: 26px
    }
}

.Footer_footer {
    position: relative;
    background: #053d70;
    display: flex;
    padding: 24px 0;
    text-align: center
}

.Footer_footer .container {
    width: 100%
}

.Footer_footer .Footer_partners {
    margin-bottom: 24px
}

.Footer_footer .Footer_partners .Footer_row {
    display: flex;
    justify-content: center;
    gap: 16px 18px;
    margin-bottom: 24px
}

.Footer_footer .Footer_partners .Footer_row:first-child {
    display: flex;
    flex-wrap: wrap
}

.Footer_footer .Footer_partners .Footer_row:first-child .Footer_logoWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0
}

.Footer_footer .Footer_partners .Footer_row:first-child .Footer_logoWrapper img {
    margin-top: 8px;
    margin-left: 0;
    position: absolute;
    left: 160px;
    cursor: pointer
}

@media(max-width:1320px) {
    .Footer_footer .Footer_partners .Footer_row:first-child .Footer_logoWrapper img {
        left: 50px
    }
}

@media(max-width:768px) {
    .Footer_footer .Footer_partners .Footer_row:first-child .Footer_logoWrapper img {
        margin-top: 14px;
        margin-left: 0
    }
}

.Footer_footer .Footer_partners .Footer_row:first-child:first-child {
    margin-top: -16px
}

@media(max-width:768px) {
    .Footer_footer .Footer_partners .Footer_row:first-child:first-child {
        margin-top: -26px
    }
}

.Footer_footer .Footer_partners .Footer_row:nth-child(2) {
    gap: 11px
}

@media(max-width:768px) {
    .Footer_footer .Footer_partners .Footer_row:nth-child(2) {
        gap: 8px !important
    }
}

.Footer_footer .Footer_partners .Footer_row .Footer_partnerLogo {
    mix-blend-mode: luminosity
}

.Footer_footer .Footer_partners .Footer_row .Footer_partnerLogo:hover {
    mix-blend-mode: normal
}

@media(max-width:1080px) {
    .Footer_footer .Footer_partners .Footer_row .Footer_partnerLogo {
        height: 22px !important;
        width: auto
    }
}

.Footer_footer .Footer_partners .Footer_row:nth-child(2),
.Footer_footer .Footer_partners .Footer_row:nth-child(3) {
    flex-wrap: wrap
}

.Footer_footer .Footer_partners .Footer_row:last-child {
    margin-bottom: 0
}

.Footer_footer .Footer_copyright {
    color: hsla(0, 0%, 100%, .34);
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.Footer_footer .Footer_copyright span:first-child {
    font-size: 32px;
    margin-right: 16px
}

@media(max-width:768px) {
    .Footer_footer .Footer_copyright {
        flex-wrap: wrap;
        font-size: 18px;
        line-height: 24px;
        margin-top: 34px
    }

    .Footer_footer .Footer_copyright span {
        font-size: 18px !important
    }

    .Footer_footer .Footer_copyright span:first-child {
        margin-right: 8px
    }
}

@media(max-width:768px)and (max-width:420px) {
    .Footer_footer .Footer_copyright span {
        font-size: 16px !important
    }
}

@media(max-width:1080px) {
    .Footer_footer .Footer_row:first-child .Footer_logoWrapper {
        margin-bottom: 16px
    }

    .Footer_footer .Footer_row:first-child .Footer_logoWrapper img {
        position: static !important
    }

    .Footer_footer .Footer_row:first-child .Footer_partnerLogo {
        height: 22px
    }
}

@media(max-width:768px) {
    .Footer_footer {
        padding: 24px 0 12px
    }

    .Footer_footer .Footer_partners {
        margin-bottom: -16px
    }

    .Footer_footer .Footer_row {
        flex-wrap: wrap;
        margin-bottom: 16px !important;
        gap: 10px !important
    }

    .Footer_footer .Footer_row .Footer_partnerLogo {
        width: auto
    }

    .Footer_footer .Footer_row img {
        margin-top: 0
    }
}

@media(max-width:480px) {
    .Footer_footer .Footer_row .Footer_partnerLogo {
        height: 18px
    }
}

@media(max-width:300px) {
    .Footer_footer .Footer_hiddenSpan {
        display: none !important
    }
}

.GamesToPlay_gamesToPlay {
    padding: 64px 0;
    background: #053d70
}

.GamesToPlay_gamesToPlay .container {
    display: flex;
    flex-direction: column;
    gap: 48px
}

@media(max-width:1380px) {
    .GamesToPlay_gamesToPlay {
        word-break: break-word
    }
}

@media(max-width:768px) {
    .GamesToPlay_gamesToPlay {
        padding: 40px 0
    }

    .GamesToPlay_gamesToPlay .container {
        gap: 40px
    }
}

@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap";

.Header_header {
    background: #053d70;
    padding: 20px 160px;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 96px
}

.Header_header img {
    margin-top: 4px;
    margin-left: 0;
    scale: 1
}

@media(max-width:1080px) {
    .Header_header {
        padding: 24px 40px
    }
}

@media(max-width:768px) {
    .Header_header {
        height: 96px
    }
}

@media(max-width:380px) {
    .Header_header {
        padding: 5px 10px;
        height: 64px
    }

    .Header_header img {
        margin-left: 0
    }
}

.Header_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.Header_nav-links_dekstop {
    list-style: none;
    display: flex;
    gap: 24px;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    opacity: 1
}

.Header_nav-links_dekstop li a {
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    transition: background-image .3s ease;
    background-image: none;
    cursor: pointer
}

.Header_nav-links_dekstop li a:hover {
    color: #f9e22c
}

@media(max-width:768px) {
    .Header_nav-links {
        flex-direction: column;
        position: fixed;
        top: 96px;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #053d70;
        padding-top: 2.5rem;
        gap: 16px;
        transition: right .4s ease;
        text-align: center
    }

    .Header_nav-links_dekstop {
        display: none;
    }

    .Header_nav-links.Header_open__9amQS {
        right: 0
    }

    .Header_nav-links li {
        padding: 1rem 0
    }

    .Header_nav-links li a {
        font-size: 32px
    }
}

@media(max-width:380px) {
    .Header_nav-links {
        top: 64px
    }
}

.Header_burger-menu {
    position: relative;
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    margin-right: 30px;
    margin-bottom: 35px
}

.Header_burger-menu .Header_burger-lines {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: all .3s ease
}

.Header_burger-menu .Header_burger-lines:after,
.Header_burger-menu .Header_burger-lines:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: all .3s ease
}

.Header_burger-menu .Header_burger-lines:before {
    top: -10px
}

.Header_burger-menu .Header_burger-lines:after {
    top: 10px
}

.Header_burger-menu.Header_open__9amQS .Header_burger-lines {
    background-color: transparent
}

.Header_burger-menu.Header_open__9amQS .Header_burger-lines:before {
    transform: rotate(45deg);
    top: 0
}

.Header_burger-menu.Header_open__9amQS .Header_burger-lines:after {
    transform: rotate(-45deg);
    top: 0
}

@media(max-width:768px) {
    .Header_burger-menu {
        display: block
    }
}

.LicensesSection_licensesSection {
    background: #053d70;
    padding: 64px 0
}

.LicensesSection_licensesSection h2 {
    margin-bottom: 24px
}

.LicensesSection_licensesSection .LicensesSection_licensesContent {
    display: flex;
    margin-bottom: 48px
}

.LicensesSection_licensesSection .LicensesSection_licensesContent .LicensesSection_leftContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 2.5;
    margin-right: 20px
}

.LicensesSection_licensesSection .LicensesSection_licensesContent .LicensesSection_rightImage {
    flex: 1;
    display: flex;
    justify-content: flex-end
}

.LicensesSection_licensesSection .LicensesSection_licensesContent .LicensesSection_rightImage img {
    width: auto
}

@media(max-width:768px) {
    .LicensesSection_licensesSection h2 {
        font-size: 32px;
        margin-bottom: 40px
    }

    .LicensesSection_licensesSection .LicensesSection_licensesContent {
        flex-direction: column;
        margin-bottom: 40px
    }

    .LicensesSection_licensesSection .LicensesSection_licensesContent .LicensesSection_leftContent {
        order: 2;
        margin-right: 0
    }

    .LicensesSection_licensesSection .LicensesSection_licensesContent .LicensesSection_rightImage {
        order: 1;
        justify-content: center;
        margin-bottom: 40px
    }

    .LicensesSection_licensesSection .LicensesSection_licensesContent .LicensesSection_rightImage img {
        max-width: 160px;
        width: 100%;
        height: auto
    }
}

.AppSection_appSection {
    background: #053d70;
    padding: 64px
}

@media(max-width:768px) {
    .AppSection_appSection {
        padding: 64px 0
    }
}

.AppSection_topRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px
}

.AppSection_topRow .AppSection_textBlock {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 548px
}

.AppSection_topRow .AppSection_textBlock .AppSection_imageMobile {
    display: none
}

.AppSection_topRow .AppSection_textBlock .AppSection_buttons {
    display: flex;
    gap: 24px
}

.AppSection_topRow .AppSection_textBlock .AppSection_buttons button {
    background: none;
    border: none;
    cursor: pointer
}

.AppSection_topRow .AppSection_imageBlock {
    flex: 1;
    position: relative;
    overflow: visible
}

.AppSection_topRow .AppSection_imageBlock .AppSection_image {
    position: absolute;
    top: -40px;
    right: -13px;
    overflow: hidden;
    height: auto
}

@media(max-width:1320px) {
    .AppSection_topRow .AppSection_imageBlock .AppSection_image {
        right: 0;
        max-width: 105%
    }
}

@media(max-width:1020px) {
    .AppSection_topRow {
        position: relative
    }

    .AppSection_topRow .AppSection_textBlock {
        width: 100%
    }

    .AppSection_topRow .AppSection_textBlock .AppSection_imageMobile {
        display: block;
        max-width: 496px;
        width: 100%;
        height: auto;
        align-self: center
    }

    .AppSection_topRow .AppSection_textBlock h3 {
        width: 80%
    }

    .AppSection_topRow .AppSection_imageBlock {
        display: none
    }
}

@media(max-width:768px) {
    .AppSection_topRow {
        position: relative;
        margin-bottom: 40px
    }

    .AppSection_topRow .AppSection_textBlock {
        gap: 24px
    }

    .AppSection_topRow .AppSection_textBlock h3:first-child {
        font-size: 32px
    }

    .AppSection_topRow .AppSection_textBlock .AppSection_buttons {
        align-self: center;
        margin-top: 16px;
        flex-wrap: wrap
    }
}

@media(max-width:768px)and (max-width:500px) {

    .AppSection_topRow .AppSection_textBlock h3,
    .AppSection_topRow .AppSection_textBlock p {
        width: 100%
    }
}

@media(max-width:768px) {
    .AppSection_topRow .AppSection_imageBlock {
        position: absolute;
        top: -7.5rem;
        right: -10px;
        width: 250px
    }

    .AppSection_topRow .AppSection_imageBlock img {
        top: -105px !important
    }
}

@media(max-width:768px)and (max-width:500px) {
    .AppSection_topRow .AppSection_imageBlock {
        display: none
    }
}

:root {
    --color-ico: #00041a
}

.bonus-details-section button {
    align-self: center;
    width: 280px
}

@media(max-width:850px) {
    .bonus-details-section button {
        width: 240px
    }
}

@media(max-width:480px) {
    .bonus-details-section button {
        width: auto
    }
}

.table {
    width: 100%;
    row-gap: 24px
}

.row,
.table {
    display: grid
}

.row {
    grid-template-columns: 18% 22% 12% 13% 12% 23%;
    align-items: center;
    border-radius: 8px
}

.row .secondary {
    width: 218px;
    height: 56px;
    box-shadow: 0 4px 8px 0 rgba(0, 4, 13, .2);
    color: #00041a;
    margin-top: -3px;
    margin-left: 6px
}

@media(max-width:1080px) {
    .row {
        grid-template-columns: 25% 15% 15% 15% 30%
    }
}

@media(max-width:850px) {
    .row {
        grid-template-columns: 36% 22% 22% 20%
    }

    .row button {
        width: auto
    }
}

.cell {
    color: #00041a;
    font-family: Roboto;
    background: #deefff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    padding: 9.25px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 88px
}

.cell:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.cell.last-cell {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.cell:after {
    content: "";
    position: absolute;
    right: 0;
    height: 40px;
    width: 1px;
    background-color: rgba(0, 0, 0, .2)
}

.cell.last-cell:after {
    display: none
}

.cell .offerImage {
    filter: drop-shadow(.0625rem .0625rem .125rem rgba(0, 0, 0, .75))
}

@media(max-width:850px) {
    .cell {
        font-size: 18px;
        height: 80px;
        line-height: normal
    }

    .cell.info-cell {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px
    }

    .cell:after {
        display: none
    }

    .cell:first-child:after {
        display: block
    }
}

@media(max-width:480px) {
    .cell {
        font-size: 16px;
        padding: 4px 8px
    }
}

.accordion {
    width: 100%;
    grid-column: span 6;
    background: #fff;
    display: grid;
    grid-template-columns: 18% 82%;
    color: #00041a;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px
}

@media(max-width:1080px) {
    .accordion {
        grid-template-columns: 25% 75%
    }
}

@media(max-width:850px) {
    .accordion {
        grid-template-columns: 36% 64%;
        font-size: 18px;
        line-height: 32px;
        padding-top: 16px
    }
}

.accordion-item {
    display: contents
}

.accordion-item.last-cell {
    display: flex;
    width: 100%
}

.accordion-item.show-768 {
    display: none
}

@media(max-width:850px) {
    .accordion-item.show-768 {
        display: contents
    }
}

.accordion-title,
.accordion-value {
    display: flex;
    align-items: center;
    background: #fff;
    text-align: left;
    padding: 8px 10px 8px 16px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.accordion-title:after,
.accordion-value:after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, .2)
}

.accordion-title:last-child:after,
.accordion-value:last-child:after {
    display: none
}

@media(max-width:850px) {

    .accordion-title,
    .accordion-value {
        padding: 8px 0 8px 8px
    }

    .accordion-title:after,
    .accordion-value:after {
        display: none
    }

    .accordion-title:first-child:after,
    .accordion-value:first-child:after {
        display: block
    }

    .accordion-title.last-cell,
    .accordion-value.last-cell {
        display: flex;
        justify-content: flex-end;
        border-bottom: none;
        padding: 16px 0 0 !important
    }

    .accordion-title.last-cell:after,
    .accordion-value.last-cell:after {
        display: none
    }

    .accordion-title.last-cell button,
    .accordion-value.last-cell button {
        width: 200px
    }
}

@media(max-width:480px) {

    .accordion-title,
    .accordion-value {
        padding: 4px 8px;
        font-size: 16px
    }

    .accordion-title button,
    .accordion-value button {
        width: auto !important
    }
}

@media(max-width:420px) {

    .accordion-title,
    .accordion-value {
        padding: 0 0 0 4px
    }
}

@media(max-width:300px) {

    .accordion-title,
    .accordion-value {
        padding: 0
    }
}

@media(max-width:1080px) {
    .hide-1020 {
        display: none !important
    }
}

@media(max-width:850px) {
    .hide-768 {
        display: none !important
    }

    .show-768 {
        display: block
    }
}

.head-row {
    height: 88px;
    background: #053d70;
    color: #fff;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 4, 13, .2)
}

@media(max-width:850px) {
    .head-row {
        font-size: 18px;
        height: 74px
    }
}

.headerCell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 72px;
    text-align: center;
    position: relative
}

.headerCell:after {
    content: "";
    position: absolute;
    right: 0;
    height: 72px;
    width: 1px;
    background-color: hsla(0, 0%, 100%, .2)
}

.headerCell:last-child:after {
    display: none
}

@media(max-width:850px) {
    .headerCell {
        padding: 0 11px
    }

    .headerCell:after {
        display: none
    }

    .headerCell:first-child:after {
        display: block
    }
}

@media(max-width:380px) {
    .headerCell {
        padding: 0
    }
}

.icon-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    --icon-color: var(--color-ico)
}

@media(max-width:850px) {
    .icon-button img {
        width: 32px;
        height: 32px
    }
}

@media(max-width:480px) {
    .icon-button img {
        width: 24px;
        height: 24px
    }
}

@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap";

.faq-section {
    display: block;
    gap: 0 !important
}

.faq-section .faq-item {
    margin-top: 24px;
    overflow: hidden;
    width: 100%
}

.faq-section .faq-item .faq-question {
    color: #00041a;
    font-family: Oswald;
    background: #deefff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color .3s ease
}

.faq-section .faq-item .faq-question .icon {
    margin-right: 24px;
    display: flex;
    align-items: center
}

.faq-section .faq-item .faq-question .icon svg {
    width: 32px;
    height: 32px;
    fill: #e8002f
}

.faq-section .faq-item .faq-answer {
    color: #00041a;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px
}

.faq-section .faq-item .faq-answer p {
    margin: 15px 0 5px
}

.faq-section .faq-item .faq-answer.active {
    padding: 5px
}

@media(max-width:768px) {
    .faq-section .faq-item .faq-question {
        font-size: 18px;
        padding: 8px 16px;
        word-wrap: break-word;
        word-break: break-word
    }

    .faq-section .faq-item .faq-question .icon {
        margin-right: 16px
    }

    .faq-section .faq-item .faq-question .icon svg {
        width: 24px;
        height: 24px
    }

    .faq-section .faq-item .faq-answer {
        font-size: 18px;
        line-height: 32px
    }
}

@keyframes shake {

    0%,
    to {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-2px)
    }

    50% {
        transform: translateX(2px)
    }

    75% {
        transform: translateX(-2px)
    }
}




.button.secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


.button.secondary:focus,
.button.secondary:active {
  text-decoration: none;
}

.Footer_logoWrapper {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
}

.Footer_logoWrapper img,
.Footer_footerLogo {
  height: clamp(36px, 5vw, 64px);
  width: auto;
  max-width: min(220px, 40vw);
  display: block;
  object-fit: contain;
}

@media (max-width:480px) {
  .Footer_logoWrapper img,
  .Footer_footerLogo {
    height: clamp(28px, 8vw, 48px);
  }
}

@media (min-width: 577px) {
    .WelcomeSection_welcomeText .WelcomeSection_offerText {
        width:400px;
    }
}