@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55?styles=30125,16016,16008,16022,15981,15985,16012,15994,30128,15999,30123,30130,30135,15997');
@import url('https://fonts.googleapis.com/css?family=Poppins:900i');

* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}


:root {
    --header-bg: linear-gradient(0deg, #19073f, #19073f);
    --black: #000000;
    --white: #ffffff;
    --text-secondary: #999999;
    --main-accent: #FFCB05;
}

body {
    overflow-x: hidden;
    margin: 0;
    background-color: #320b5b;
}

.container {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

a {
    text-decoration: none;
}

.link {
    cursor: pointer;
}

header {
    width: 100%;
    height: 70px;
    background: var(--header-bg);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 80%;
    margin: 0 auto;
}

header .header_links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
}

.header_logo{
    width: 100px;
}

.nav_menu {
    display: flex;
    gap: 20px;
}

.nav_menu li {
    list-style-type: none;
    position: relative;
}

.nav_menu .animated svg {
    height: 22px;
    width: 80px;
    transform: translateY(-1px);
    fill: #999;
    transition: all .3s;
}

.nav_menu li a {
    color: #fff;
    font-size: 18px;
    text-transform: none;
    cursor: pointer;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6px 10px;
    white-space: nowrap;
    transition: all .3s;
    text-transform: uppercase;
}

.nav_menu li a.active::after {
    transition: width .3s;
    width: 80%;
    content: "";
    height: 2px;
    background-color: #ecbf09;
    border-radius: 6px;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.nav_menu li a:hover{
    color: #ecbf09;
}


.nav_menu li span {
    position: absolute;
    font-size: 8px;
    padding: 1px 3px 1px;
    border-radius: 3px;
    min-height: auto;
    right: 3px;
    top: -8px;
    background-color: #ffcb05;
    color: #000;
}

.header_btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    background: linear-gradient(91.55deg, #ffeb65 1.97%, #ffec74 44.69%, #dbbe0b 94.66%);
    -webkit-box-shadow: 0 0 30px rgba(243, 214, 36, .5);
    box-shadow: 0 0 30px rgba(243, 214, 36, .5);
    border-radius: 10px;
    text-align: center;
    margin-right: 9px;
    cursor: pointer;
    border: 1px solid #fff;
    padding: 15px 30px;
}

.btn.primary {
    background-color: var(--main-accent);
    position: relative;
    overflow: hidden;
}

header .btn.primary::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 20%;
    background-color: hsla(0, 0%, 100%, .2);
    left: -25%;
    top: 0;
    transform: skewX(-20deg);
    opacity: 0.1;
    transition: all .5s;
}

header .btn.primary:hover::after {
    left: 100%;
    opacity: 1;
}

.btn.secondary {
    background-color: var(--white);
}

.burger__menu {
    display: none;
    position: relative;
    width: 40px;
    height: 25px;
    cursor: pointer;
}

.burger__menu span,
.burger__menu::before,
.burger__menu::after {
    position: absolute;
    height: 4px;
    width: 50px;
    transition: all 0.5s;
    background-color: var(--white);
    border-radius: 100px;
}


.burger__menu::before,
.burger__menu::after {
    content: "";
}

.burger__menu::before {
    top: 0;
}

.burger__menu::after {
    bottom: 0;
}

.burger__menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
}

.burger__menu._active span {
    transform: scale(0) translate(0px, -50%);
}

.burger__menu._active::before {
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
}

.burger__menu._active::after {
    bottom: 50%;
    transform: rotate(-45deg) translate(0px, 50%);
}

/*MAIN SLIDER */

.main__slider {
    margin-top: 70px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 768px;
}

.main__slider img {
    height: 100%;
    width: 100%;
}

.swiper-pagination {
    position: absolute !important;
    bottom: 0% !important;
    height: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background-color: #908F8E !important;
    height: 10px !important;
    width: 10px !important;
}

.swiper-pagination-bullet-active {
    background-color: #88c6fc !important;
    height: 10px !important;
    /* Увеличьте высоту активного булета */
    width: 10px !important;
    /* Увеличьте ширину активного булета */
}

/*MARQUEE TEXT*/

.marquee-container{
    background-color: #320b5b;
    box-sizing:border-box;
    overflow-x: hidden;
    width: 100%;
}

.marquee-wrapper{
    background-color: #fff;
    width: 60%;
    margin: 15px auto;
    padding: 5px;
    border-radius: 15px;
    position: relative;
}

.marquee-wrapper .img{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 25px;
    z-index: 9;
    background-color: #fff;
    width: 25px;
    height: 25px;
    border-radius:15px 0 0 15px;
    padding: 0px 0px 0px 10px;
    padding-right: 30px;
}

.marquee-wrapper img{
    width: 25px;
    position: absolute;
    top: 2px;
}

.marquee-text{
    margin: 0 auto;
    display: inline-block;
    animation: marquee 50s linear infinite;
}

.marquee-text ul {
    display: flex;
    gap: 200px;
}

.marquee-text ul li {
    color: #320b5b;
    font-weight: 600;
    list-style-type: none;
    white-space: nowrap;
    font-size: 12px;
}

@keyframes marquee {
    0% { transform: translateX(50%); }
    100% { transform: translateX(-100%); }
}

/*TEXT SECTION*/

.textSection {
    color: var(--white);
    padding: 20px;
    background: linear-gradient(180deg, #d43f7a 13.65%, #6722c7 76.87%);
}

.textSection a {
    color: var(--main-accent);
}

.textSection h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.textSection h2 {
    font-size: 32px;
    margin: 20px 0px;
    font-weight: 500;
    text-align: center;

}

.textSection h3 {
    font-size: 26px;
    margin: 20px 0px;
    font-weight: 500;
    text-align: center;

}

.textSection p {
    font-size: 1rem;
    font-style: normal;
    line-height: 30px;
}


.textSection ul {
    list-style: none;
    margin: 20px;
}

.textSection ul,
.textSection ol {
    margin: 20px;

}


.textSection ul li,
.textSection ol li {
    line-height: 30px;

}


.textSection ul li::before {
    content: "\2022";
    color: var(--main-accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.textSection ol li {
    color: #FFCB05;
}

.textSection ol span {
    color: #fff;
}

.text-img {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    margin: 20px auto;
}

.txt_img {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.txt_img-text {
    padding: 20px 0px;
    width: 50%;
}

.txt_img-text.w-100{
    width: 100%;
}

.txt_img-text {
    position: relative;
}

.txt_img-text h2 {
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.txt_img-text ul,
.txt_img-text ul {
    position: relative;
}

.txt_img-text ul li,
.txt_img-text ol li {
    position: relative;
    left: 0;
    color: #fce4ec;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid var(--main-accent);
    transition: 0.5s;
    cursor: pointer;
}

.txt_img-text ul li:hover,
.txt_img-text ol li:hover {
    left: 10px;
}

.txt_img-text ul li span,
.txt_img-text ol li span {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: 0.5s;
}

.txt_img-text ul li:hover span,
.txt_img-text ol li:hover span {
    color: #111;
}

.txt_img-text ul li:before,
.txt_img-text ol li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
}

.txt_img-text ul li:hover:before,
.txt_img-text ol li:hover:before {
    transform: scaleX(1);
}

.txt_img img {
    border-radius: 10px;
    width: 30%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

th,
td {
    border: 1px solid var(--main-accent);
    padding: 8px;
    text-align: left;
}

th {
    background-color: #6070AB;
    color: #fff;
}

/*TEXT BUTTON*/

.button_section {
    background-color: #ffcb05;
    padding: 30px 12px;
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.button_section h2 {
    font-size: 32px;
    font-weight: 500;
}

.button_section .btn {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 30px;
}

.button_section .btn:hover {
    background-color: var(--white);
    color: var(--black);
}

/*Sky Zone*/

.sky_zone {
    padding: 0px 0 20px 0;
}

.sky_zone h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin: 20px 0;
}

.sky_zone ul {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.sky_zone ul li {
    width: calc(25% - 20px);
    list-style-type: none;
    border-radius: 10px;
    position: relative;
}

.sky_zone ul li img {
    width: 100%;
    border-radius: 10px;
}

.sky_zone ul li .active_item {
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .3);
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    backdrop-filter: blur(5px);
    transition: all .3s;
    text-align: center;
}

.sky_zone ul li .active_item._active {
    display: block;
}

.sky_zone ul li .active_item .primary {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    position: relative;
    width: auto;
    padding: 10px 20px;
    margin: 0 auto;
    background-color: #ffcb05;
    color: #000;
    height: 42px;
    font-size: 18px;
}

.faq {
    margin: 0 auto;
    margin-top: 45px
    
}

.faq details {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--text-secondary);
    padding: 31px 70px 31px 53px;
    position: relative;
    line-height: 142%;
    background-color: #d43f7a;
}

.faq details:first-of-type{
    border-radius: 15px 15px 0 0;
}

.faq details:last-of-type{
    border-radius:0 0 15px 15px
}

.faq summary {
    font-weight: 700;
    font-size: 20px;
    line-height: 142.69%;
    outline: 0;
    cursor: pointer;
    display: block;
    margin-right: -10px;
    color: #fff;
}

.faq summary::-webkit-details-marker,
.faq summary::marker {
    display: none;
    content: ""
}

.faq summary::after {
    content: "\203A";
    position: absolute;
    top: 24px;
    right: 30px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 2rem;
}

.faq details[open]{
    background: linear-gradient(91.55deg, #ffeb65 1.97%, #ffec74 44.69%, #dbbe0b 94.66%);
}

.faq details[open] summary,
.faq details[open] p{
    color: #5d3707;
}



.faq details[open] summary::after {
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

/*FOOTER*/

footer {
    background: linear-gradient(0deg, #19073f, #19073f);
    padding-bottom: 20px;
}

footer .container {
    padding-top: 40px;
    padding-bottom: 20px;
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid #999999;
}

footer .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo{
    width: 200px;
}

.social_links{
    color: #fff;
}

.social_links h6{
    font-weight: 900;
}

.links_wrapper{
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.social_links img{
    width: 25px;
}

.join_us{
    border: 2px solid #ecbf09;
    border-radius: 15px;
    margin-top: 20px;
    padding-top: 80px;
    position:relative;
}

.join_us img{
    width: 200px;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.join-our {
    font-family: Inter;
    font-style: normal;
    font-weight: 800;
    font-size: 27px;
    background: linear-gradient(91.55deg, #d43f7a 1.97%, #b61957 44.69%, #d43f7a 94.66%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    z-index: 9;
    position: relative;
}

.affilliate-program {
    margin-bottom: 14px;
    font-family: Inter;
    font-style: normal;
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    color: #ffe11c;
    text-align: center;
}

.box-line-2 {
    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;
    text-align: center;
}

.box-line-2 .btn-1 {
    background: url(../img/agent_join_us.1.png) no-repeat;
    background-size: contain;
    background-position: 50%;
    width: 45%;
    color: #000;
    font-size: 10px;
    height: 100%;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(243, 214, 36, .0);
}

.box-line-2 .btn-2 {
    background: url(../img/agent_login.2.png) no-repeat;
    background-size: contain;
    background-position: 50%;
    color: #fff;
    width: 55%;
    font-size: 10px;
    height: 100%;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(243, 214, 36, .0);
}

.box-line-3 {
    width: 90%;
    height: 30px;
    margin: 0 auto;
    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;
    font-family: Poppins;
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    color: #d43f7a;
}


.copyright p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 11px
}

@media(max-width: 1600px) {

    .container,
    .sky_zone ul {
        width: 100%;
    }
}

@media(max-width: 1200px) {

    header .header_links {
        gap: 20px;
    }

    .txt_img {
        flex-wrap: wrap;
        justify-content: center;
    }

    .txt_img-text {
        width: 100%;
    }


    .top_footer {
        flex-direction: column-reverse;
        gap: 100px;
    }

    .footer_add,
    .footer_links{
        width: 100%;
    }

    .footer_links{
        flex-direction: row-reverse;
    }

    .footer_add{
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .add_item{
        width: 35%;
        align-items: flex-start
    }
}

.side_menu{
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;

}

.side_menu ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.side_menu ul li{
    list-style-type: none;
}

.side_menu ul li img{
    width: 45px;
}

@media(max-width: 900px)
{
    header .nav_menu{
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--header-bg);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: all .5s ease;
    }

    header .nav_menu.active{
        left: 0;
    }

    header .nav_menu li{
        width: 25%;
    }

    .burger__menu{
        display: block;
    }

    header .wrapper {
        width: 100%;
    }

    .main__slider {
        height: 568px;
    }
  
    footer .wrapper{
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .footer-right{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 600px)
{
    .main__slider {
        height: 468px;
    }

    .marquee-wrapper{
        width: 80%;
    }

    .txt_img img {
        width: 100%;
    }

    .textSection{
        padding: 20px 0;
    }

    .add_item{
        width: 50%;
        align-items: flex-start
    }

    .add_item:nth-child(3){
        width: 100%;
    }

    .footer_links {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer_links ul {
        width: calc(50% - 40px);
    }

    .mobile_menu{
        gap: 50px;
    }

    .mobile_menu .nav_menu {
        flex-wrap: wrap;
    }

    .mobile_menu .nav_menu li a {
        font-size: 1.2rem;
    }

    .social_links h6{
        text-align: center;
    }

    .footer-right{
        flex-direction: column;
    }

    .side_menu ul li img{
        width: 35px;
    }
}

@media(max-width: 424px) {
    .header_btns .btn{
        padding: 10px 20px;
    }
}

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

    header .container{
        padding-right: 20px;
     }

    .main__slider {
        height: 268px;
    }

    .header_btns{
        gap: 5px;
    }
    .header_logo{
        width: 80px;
    }
    .header_btns .btn{
        padding: 8px 15px;
    }

    .textSection ul, .textSection ol {
        margin: 10px;
    }
}

@media screen and (max-width: 600px) {
    table.table-wrap {
      border: 0;
    }

    table.table-wrap tr.title{
        display: none;
    }

    table.table-wrap td.colored{
        background-color: #17185c;
    }

    table.table-wrap td.colored p{
        color: #fff;
    }
  
    table.table-wrap thead {
      display: none;
    }
  
    table.table-wrap tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
      border-right: 1px solid #ea2087;
    }
  
    table.table-wrap td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #ccc;
      border-right: 1px solid transparent;
    }
  
    table.table-wrap td:last-child {
      border-bottom: 0;
    }
  
    table.table-wrap td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
    }
  }