::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html body .container {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto 0;
    z-index: 10;
}

@media only screen and (min-width: 768px) {
    html body .container {
        width: 768px;
    }
}

@media only screen and (min-width: 992px) {
    html body .container {
        width: 992px;
    }
}

@media only screen and (min-width: 1200px) {
    html body .container {
        width: 1170px;
    }
}

@media only screen and (min-width: 1300px) {
    html body .container {
        width: 1270px;
    }
}

@media only screen and (min-width: 1400px) {
    html body .container {
        width: 1370px;
    }
}


.container ul {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.container ul li {
    position: relative;
    list-style: none;
}

.container ul li:before {
    content: '';
    position: absolute;
    top: 59%;
    transform: translateY(-50%);
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4D029B;
    display: block;
}

.button-primary {
    display: inline-block;
    padding: 17px 40px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    background: linear-gradient(247deg, #29FADF -2.17%, #8B1DFF 84.87%);
    background-size: 100% 100%;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.button-primary:hover {
    background-size: 180% 100%;
}


/* Secondary */
.button-secondary {
    display: inline-block;
    text-align: center;
    border: 1px solid #5C28A3;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    color: #4827AF;
    transition: all 0.4s ease;
}

.button-secondary:hover {
    color: #fff;
    background: #4D029B;
    border-color: #4D029B;
}


.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 99999;
    display: none;
    transition: 0.3s ease;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 50px;
    box-sizing: border-box;
    border-radius: 30px;
    z-index: 999991;
    display: none;
    border: 1px solid #E3D6F5;
    background: #CFEDFF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
}

.window .close_window {
    position: absolute;
    top: 20px;
    right: 20px;
}

.window .close_window svg path {
    fill: #20124D;
    opacity: 0.5;
}

.window .close_window:hover svg path {
    opacity: 1;
}

.window .contact_us_container {
    width: 520px;
    display: block;
}

.window .contact_us_container h3 {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    margin: 0 0 25px;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(90deg, #31EAE1 18.77%, #5498ED 47.16%, #8B1DFF 76.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.window .contact_us-item {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.window .contact_us-item-submit {
    margin-bottom: 0;
}


.window .contact_us-item input[type="text"],
.window .contact_us-item input[type="email"],
.window .contact_us-item input[type="tel"] {
    width: 100%;
    height: 47px;
    padding: 0 15px;
    outline: none;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #fff;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    color: #20124D;
}

.window .contact_us-item textarea {
    width: 100%;
    height: 130px;
    padding: 10px 15px;
    outline: none;
    resize: none;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #fff;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    color: #20124D;
}

.window .contact_us-item input[type="text"]::placeholder,
.window .contact_us-item input[type="email"]::placeholder,
.window .contact_us-item input[type="tel"]::placeholder,
.window .contact_us-item textarea::placeholder {
    color: #5f5972;
}

.window .contact_us-item .input_holder {
    position: absolute;
    top: -9px;
    left: 15px;
    display: inline-block;
    font-size: 14px;
    padding: 3px 7px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s ease;
    background: #15123D;
}


.window .contact_us-item input[type="submit"] {
    display: block;
    width: 100%;
    color: #29FADF;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    background: #8715FF;
    border-radius: 7px;
    padding: 15px 35px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

.window .contact_us-item input[type="submit"]:hover {
    background: #29FADF;
    color: #8715FF;
}

.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-response-output {
    display: none;
}

.wpcf7-spinner {
    display: none;
}

form input.wpcf7-not-valid {
    border: 1px solid #ff005c !important;
}

.window.contact_us-thanks {
    padding: 45px 60px;
}

.window.contact_us-thanks .contact_us_container {
    width: 300px;
    text-align: center;

}

.window.contact_us-thanks .contact_us_container svg {
    display: block;
    margin: 0 auto;

}

.window.contact_us-thanks .contact_us_container h3 {
    margin: 20px 0 25px;
}

.window.contact_us-thanks .contact_us_container p {
    color: #20124D;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (max-height: 700px) {
    .window {
        height: calc(100vh - 30px);
        overflow-y: scroll;
    }
}

@media only screen and (max-width: 767px) {
    .window {
        padding: 30px 15px;
        width: calc(100% - 30px);
    }

    .window .contact_us_container {
        width: 100%;
    }

    .window .contact_us_container h3 {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .window .contact_us-item input[type="text"],
    .window .contact_us-item input[type="email"],
    .window .contact_us-item input[type="tel"] {
        height: 35px;
    }

    .window .contact_us-item textarea {
        height: 80px;
    }

}

/*popup sign-up*/
.window.sign_up_mob { 
	background: #F9F4FF;
	border-radius: 14px;
	box-sizing: border-box;
}
.sign_up_mob_container {
	max-width: 412px;
	padding-inline: 12px;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	margin: 0 auto;

}
.sign_up_mob_container__item img {
	border-radius: 14px;
	width: 100%;
}
.sign_up_mob-title h3 {
	color: #392466;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	    line-height: 1.2;
}
.sign_up_mob-title p {
	margin-top: 14px;
	color: #392466;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}
.sign_up_mob-title p span {
	font-weight: 700;
}
.window .sign_up_mob-item input[type="email"] {
	margin-top: 20px;
	width: 100%;
	border: 1px solid #A48DE5;
	border-radius: 7px;
	padding: 16px 12px;
	color: #989BA0;
}
.sign_up_mob-submit  {
	margin-top: 20px;
	display: block;
   width: 100%;
	border-radius: 10px;
	background: linear-gradient(247deg, #29FADF -2.17%, #8B1DFF 84.87%);
}
.sign_up_mob-submit input[type="submit"] {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 40px;
	color:  #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.sign_up_mob-submit-thanks {
	margin-top: 20px;
	display: block;
   width: 100%;
	border-radius: 10px;
	background: linear-gradient(247deg, #29FADF -2.17%, #8B1DFF 84.87%);
  padding: 16px 40px;
	color:  #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.sign_up_mob-terms {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	row-gap: 7px;
}
.sign_up_mob-terms p {
	color: #392466;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.24;
}
.sign_up_mob-terms p a {
	color: #3199FF;
	text-decoration: underline;
}
.sign_up_mob-terms p .wpcf7-list-item {
	margin: 0;
}
.wpcf7-list-item-label::before {
	margin-right: 8px;
}

/* Menu */


.page_navbar {
    background: #F9F4FF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.page_navbar.active {
    background: none;
}

.page_navbar .page_navbar_inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.page_navbar .page_navbar_inner .page_navbar_logo {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #FFF;
    padding: 8.5px 12px;
}

.page_navbar .page_navbar_inner .page_navbar_logo a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.page_navbar .page_navbar_inner .page_navbar_logo img {
    width: 92px;
    height: auto;
    display: block;
}

.page_navbar .page_navbar_inner .page_navbar_logo span {
    position: relative;
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3em;
    text-decoration: none;
}

.page_navbar .page_navbar_inner .page_navbar_logo span:before {
    content: '';
    position: absolute;
    width: 1px;
    height: calc(100% + 5px);
    top: -2px;
    left: -10px;
    background: #722DAC;
}

/* Navber */
.page_navbar_menu {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
}

.page_navbar_menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex-direction: row;
}
.page_navbar_menu ul li{
    position: inherit;
}
.page_navbar_menu ul li:before {
    opacity: 0;
}

.page_navbar_menu ul li a {
    font-size: 16px;
    line-height: 1em;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-decoration: none;
    position: relative;
    display: flex;
    padding: 4px;
}

.page_navbar_menu ul li a div {
    color: #20124D;
    border-radius: 8px;
    padding: 10px 15px;
    transition: 0.3s ease;
    position: relative;
    line-height: 1em;

}

.page_navbar_menu ul li a div:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;

}

.page_navbar_menu ul li a div span {
    position: relative;
    z-index: 2
}

.page_navbar_menu > ul > li > a:hover div,
.page_navbar_menu > ul > li > a.active div {
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
}

.page_navbar_menu ul li a:hover div:before {
    opacity: 1;
}

.page_navbar_menu ul li .mega-menu-dropdown {
    position: absolute;
    width: 97.6%;
    top: calc(100% + 25px);
    left: 16px;
    z-index: 999;
    background: #FFF;
    border-radius: 20px;
    border: 2px solid #D4BAF4;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 45px 65px;
    transition: 0.3s ease;
    display: none;
    visibility: hidden;
    opacity: 0;

}

.page_navbar_menu ul li.menu-item-has-children .mega-menu-dropdown.show {
    visibility: visible;
    opacity: 1;
    display: flex;
}

.page_navbar_menu ul li .mega-menu-dropdown ul{
    display:flex;
    justify-content: space-between;
    width: 100%;
}

.page_navbar_menu ul li ul li {
    width: calc(100% / 3 - 15px);
    margin: 0;
}

.page_navbar_menu ul li ul li .mega-menu-column-title {
    padding: 0 0 0 8px;
    display: flex;
    font-size: 14px;
    line-height: 1.5em;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap:10px;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
    margin-bottom: 15px;
}

.page_navbar_menu ul li ul li .mega-menu-column-links {
    flex-direction: column;
    gap:6px;
}

.page_navbar_menu ul li ul li .mega-menu-column-links,
.page_navbar_menu ul li ul li .mega-menu-column-links li,
.page_navbar_menu ul li ul li .mega-menu-column-links li a{
    width: 100%;
}
.page_navbar_menu ul li ul li .mega-menu-column-links li a{
    padding: 0;
}

.page_navbar_menu ul li ul li a .menu__link-content-wrapper:before,
.page_navbar_menu ul li ul li a .menu__link-content-wrapper .menu__link-text-wrapper:before{
    display: none;
}

.page_navbar_menu ul li ul li .mega-menu-column-links li a .menu__link-content-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px;
}
.page_navbar_menu ul li ul li .mega-menu-column-links li a .menu__link-content-wrapper .menu__link-text-wrapper{
    padding: 0;
}

.page_navbar_menu ul li ul li .mega-menu-column-links li a .menu__link-content-wrapper .menu__link-text-wrapper .menu__link-title{
    color: #5C28A3;
    font-size: 16px;
}

.menu__link-arrow-right{
    width:16px;
    height:auto;
    fill:#fff;
    transition: 0.3s ease;
    opacity: 0;
}

.page_navbar_menu ul li .mega-menu-dropdown a:hover div,
.page_navbar_menu ul li .mega-menu-dropdown a.active div{
    color: #5C28A3;
    background: #F9F4FF;
}

.page_navbar_menu ul li .mega-menu-dropdown a:hover .menu__link-arrow-right,
.page_navbar_menu ul li .mega-menu-dropdown a.active .menu__link-arrow-right{
    fill:#5C28A3;
    opacity: 1;
}

/* Login Menu */
.page_left_navbar_menu {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}

.page_right_navbar_menu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.page_navbar_cta {
    display: flex;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    padding: 4px;
    text-decoration: none;
}

.page_navbar_cta div {
    border-radius: 8px;
    color: #20124D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    padding: 10px 15px;
    transition: 0.3s ease;
    position: relative;
}

.page_navbar_cta div:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.page_navbar_cta.active div:before {
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
}

.page_navbar_cta div:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #6F389E;
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.page_navbar_cta.active div:after {
    background: linear-gradient(247deg, #8B1DFF -8.95%, #29FADF 87.19%);
}


.page_navbar_cta div span {
    position: relative;
    z-index: 2
}

.page_navbar_cta.active div span {
    color: #fff;
}

.page_navbar_cta:hover div {
    color: #fff;
}

.page_navbar_cta:hover div:before {
    opacity: 1;
}

.page_navbar_login .page_navbar_cta.active:hover div:before {
    opacity: 0;
}

.page_navbar_login .page_navbar_cta.active:hover div:after {
    opacity: 1;
}

.page_navbar_login {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.page_navbar_login .page_navbar_cta {
    border: none;
    background: none;
    box-shadow: none;
}

.page_navbar_login .page_navbar_cta.active {
    padding-left: 0;
}

.page_navbar_login .page_navbar_cta.active div:before {
    opacity: 1;
}


.page_navbar_burger {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.page_navbar_burger:hover {
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
}

.page_navbar_burger:hover svg path {
    fill: #fff;
}

.navbar-right {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    /*max-width:360px;*/
    width: 100%;
    height: 100dvh;
    background: #F9F4FF;
    z-index: 99999;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateX(100%);
}

.navbar-right.active {
    opacity: 1;
    transform: translateX(0);
}

.navbar-right-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.navbar-right-top .page_navbar_logo {
    padding: 8.5px 9px;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
}

.navbar-right-top .page_navbar_logo a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-right-top .page_navbar_logo img {
    width: 31px;
    height: auto;
    display: block;
}

.navbar-right-menu {
    display: flex;
    justify-content: center;
}

.navbar-right-menu ul {
    margin: 0;
    padding: 0;
}

.navbar-right-menu ul li {
    list-style: none;
    margin: 0 15px;
    padding: 0;
    text-align: left;
}

.navbar-right-menu ul li a {
    color: #20124D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2em;
    text-decoration: none;
    position: relative;
}

.navbar-right-menu ul li a svg {
    display: none;
}

.navbar-right-menu ul li ul {
    max-height: 200px;
    overflow-y: scroll;

}

.navbar-right-menu ul li ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.navbar-right-menu ul li ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.navbar-right-menu ul li ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
    border: 2px solid #f1f1f1;
}

.navbar-right-menu ul li ul ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.navbar-right-menu ul li ul li a {
    color: #20124D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2em;
}


.navbar-right-copyright {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.navbar-copuright {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    text-align: center;
}

.navbar-right-copyright .menu_soc {
    padding: 0;
    text-align: center;
}

.page_navbar .page_navbar_inner .page_navbar_logo .mobile_logo {
    display: none;
}

.navbar-open {
    display: none;
}

@media only screen and (max-width: 991px) {
    .page_navbar_menu {
        display: none;
    }

    .navbar-open {
        display: flex;
    }
}

@media only screen and (max-width: 599px) {
    .contant_sales {
        display: none;
    }
}


/* Footer */

.footer {
    background: #F8F8FC;
    position: relative;
    z-index: 10;
}

.footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
}

.footer-row {
    padding: 45px 0;
}

.footer .footer-logo img {
    width: 100px;
    height: auto;
    display: block;
}

.footer .footer-menu ul {
    padding-left: 0;
    flex-direction: row;
    gap: 25px;
}

.footer .footer-menu ul li:before {
    display: none;
}

.footer .footer-menu ul li a {
    color: #20124D;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.footer .footer-menu ul li a:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: #20124D;
    transition: 0.3s ease
}

.footer .footer-menu ul li a:hover:before {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom .footer-copyright {
    color: #20124D;
    font-size: 12px;
}

.footer-bottom .footer-menu {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom .footer-menu a {
    color: #20124D;
    font-size: 12px;
    position: relative;
}

.footer-bottom .footer-menu a:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: #20124D;
    transition: 0.3s ease
}

.footer-bottom .footer-menu a:hover:before {
    width: 100%;
}

.footer-bottom .footer-menu .footer-divider {
    width: 1px;
    height: 12px;
    display: block;
    background: #20124D;
}


.footer-middle{
    border-bottom: 1px solid #E0E0E0;
}

.footer-middle .footer-menu ul{
    display: flex;
    flex-wrap: wrap;
}
.footer-middle .footer-menu ul li{
    width: calc(25% - 19.5px);
}
.footer-middle .footer-menu ul li a{
    display: block;
    padding: 17px;
    border-radius: 10px;
    border: 1px solid #E3D6F5;
    background: #FFF;
    transition: 0.3s ease;
    color: #5C28A3;
    font-size: 14px;
    font-weight: 400;
    
}
.footer-middle .footer-menu ul li a:before{
    display: none;
}
.footer-middle .footer-menu ul li a .menu__item{
    display: flex;
    gap:15px;
    align-items: center;
    justify-content: flex-start;
}

.footer-middle .footer-menu ul li a:hover{
    transform: translateY(2px);
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.07);
}
@media (max-width: 1199px) {
    .footer-middle .footer-menu ul li{
        width: calc(33.33% - 19.5px);
    }
}
@media (max-width: 991px) {
    .page_navbar .page_navbar_inner .page_navbar_logo {
        padding: 5px 6px;
    }

    .page_navbar .page_navbar_inner .page_navbar_logo .pc_logo {
        display: none;
    }

    .page_navbar .page_navbar_inner .page_navbar_logo .mobile_logo {
        display: block;
        width: 34px;
    }
    .footer-middle .footer-menu ul li{
        width: calc(50% - 19.5px);
    }
}

@media (max-width: 767px) {
    .footer-row {
        padding: 25px 0;
    }

    .footer .footer-top {
        flex-direction: column;
        gap: 10px;
    }

    .footer .footer-menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .footer .footer-middle ul {
        flex-direction: row;
    }
    .footer-middle .footer-menu ul li {
        width: calc(50% - 5.5px);
    }
    .footer-middle .footer-menu ul li a{
        padding: 10px;
        font-size:12px;
    }
    .footer-middle .footer-menu ul li a .menu__item{
        gap:10px;
    }
    
}

@media (max-width: 479px) {
    .footer-middle .footer-menu ul li {
        width: 100%;
    }
}


.cookie {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
    opacity: 0;
    background: #f9efff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    z-index: 9999991;
    transition: 0.3s ease;
}

.cookie.active {
    visibility: visible;
    opacity: 1;
}

.cookie_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.cookie_inner_item_1 {
    width: 330px;
}

.cookie_inner_item_1 img {
    width: 100%;
    height: auto;
    max-height: 67px;
    display: block;
}

.cookie_inner_item_2 {
    width: calc(100% - 650px);
    font-size: 16px;
    line-height: 1.5em;
    color: #666666;
    text-align: left;
}

.cookie_inner_item_2 a {
    color: #666666;
    text-decoration: underline;
}

.cookie_inner_item_2 a:hover,
.cookie_inner_item_2 a:focus {
    text-decoration: none;
}

.cookie_inner_item_3 {
    width: 190px;
}

.cookie_inner_item_3 a {
    display: block;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #450768;
    padding-left: 35px;
    text-decoration: none;
}

.cookie_inner_item_3 a:hover,
.cookie_inner_item_3 a:focus {
    text-decoration: underline;
}

.cookie_deagree {
    color: #925EB0;
}


.cookie_popup {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #450768;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    width: 720px;
    height: auto;
    z-index: 9999993;
    transition: 0.3s ease;
    display: none;
    opacity: 0;
}

.cookie_popup.active {
    display: block;
    opacity: 1;
}

.cookie_popup_inner {
    padding: 30px 45px;
}

.cookie_popup_inner_top {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.cookie_popup_inner_top_item {
    width: calc(50% - 15px);
}

.cookie_popup_inner_top_item img {
    display: block;
    width: 130px;
    height: auto;
}

.cookie_popup_inner_top_item2 {
    text-align: right;
}

.cookie_popup_inner_top_item a {
    font-size: 20px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
    transition: 0.3s ease;
    text-decoration: none;
}

.cookie_popup_inner_top_item a:hover,
.cookie_popup_inner_top_item a:focus {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
}

.cookie_popup_inner h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3em;
    text-align: center;
    color: #FFFFFF;
    margin: 35px 0 25px;
}

.cookie_popup_inner p {
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.8;
}

.cookie_popup_inner_bot {
    text-align: center;
    margin: 30px 0 0;
}

.cookie_popup_inner_bot_item {
    padding: 15px 0 0;
}

.cookie_popup_agree {
    display: inline-block;
    line-height: 1em;
    padding: 17px 35px 15px;
    font-size: 24px;
    background: #f06e9c;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: 4px solid #fff;
    border-radius: 75px;
    -webkit-box-shadow: 0px 0px 30px #f06e9c;
    box-shadow: 0px 0px 30px #f06e9c;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    text-transform: uppercase;
    font-weight: 700;
}

.cookie_popup_agree:hover,
.cookie_popup_agree:focus {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    border-radius: 0;
}

.cookie_popup_deagree {
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s ease;
}

.cookie_popup_deagree:hover,
.cookie_popup_deagree:focus {
    color: #fff;
    opacity: 1;
}



@media (max-width: 1199px) {
    .cookie_inner_item_2 {
        width: calc(100% - 540px);
    }

    .cookie_inner_item_1 img {
        width: 290px;
    }

    .cookie_popup_inner p {
        font-size: 16px;
    }

    .cookie_popup_agree {
        padding: 15px 35px 13px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .cookie_inner_item_1 {
        width: 275px;
    }

    .cookie_popup_inner h2 {
        font-size: 32px;
        margin: 20px 0 10px;
    }

    .cookie_popup {
        top: 100px;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .cookie_popup {
        top: 90px;
        width: calc(100% - 15px);
    }

    .cookie_popup_inner {
        padding: 15px;
    }

    .cookie_popup_inner_top_item1 {
        width: 160px;
    }

    .cookie_popup_inner_top_item2 {
        width: calc(100% - 180px);
    }

    .cookie_popup_inner h2 {
        font-size: 26px;
    }

    .cookie_popup_inner_top_item a {
        font-size: 17px;
    }

    .cookie_popup_inner_bot {
        margin: 0;
    }

    .cookie_popup_agree {
        padding: 11px 25px 9px;
        font-size: 16px;
        border: 2px solid #fff;
    }

    .cookie_popup_deagree {
        font-size: 16px;
    }

    .cookie_inner_item_3 a {
        background: none !important;
    }

    .cookie_inner {
        flex-wrap: wrap;
    }

    .cookie_inner_item_1 {
        display: none;
    }

    .cookie_inner_item_2 {
        width: 100%;
        text-align: center;
        padding: 0 0 15px;
    }

    .cookie_inner_item_3 {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .cookie_popup_inner_top_item1 {
        display: none;
    }

    .cookie_popup_inner_top_item2 {
        width: 100%;
        text-align: center;
    }

    .cookie_popup_inner h2 {
        margin: 10px 0 0;
    }

    .cookie_popup_inner p {
        margin-top: 0;
    }

    .cookie_popup_inner_bot_item {
        padding: 0px 0 0px;
    }

    .cookie_popup_agree {
        padding: 9px 20px 7px;
        font-size: 16px;
        border: 2px solid #fff;
        margin: 0 0 10px;
    }

    .cookie_inner_item_2 br {
        display: none;
    }

}


.switch {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

.switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    padding: 0;
}

.toggle {
    position: relative;
    width: 45px;
    height: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #5C28A4;
    box-sizing: border-box;
    transition: background .25s ease, border-color .25s ease;
}

.toggle::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #5C28A4;
    transition: transform .25s ease, background .25s ease;
}

.switch input:checked+.toggle {
    background: #5C28A4;
}

.switch input:checked+.toggle::after {
    transform: translateX(21px);
    background: #ffffff;
}

.switch:hover {
    cursor: pointer;
}


.check {
    display: inline-block;
    line-height: 0;
    position: relative;
    top:3px;
}


.check input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    padding: 0;
}


.check .box {
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #5C28A4;
    background: #fff;
    position: relative;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    cursor: pointer;
}


.check .box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) scale(0.6);
    opacity: 0;
    transition: opacity .15s ease .05s, transform .15s ease .05s;
}


.check input:focus-visible+.box {
    outline: 2px solid #b89ae4;
    outline-offset: 3px;
}


.check input:checked+.box {
    background: #6a2bc0;
    border-color: #6a2bc0;
}

.check input:checked+.box::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.check input:hover+.box {
    box-shadow: inset 0 0 0 3px rgba(106, 43, 192, .06);
}

.check input:disabled+.box {
    opacity: .5;
    cursor: not-allowed;
}

.grecaptcha-badge{
    display:none !important;
}

