/*===============================================================================
	FONTS
===============================================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');



/*===============================================================================
	PRELOADER
===============================================================================*/

#page-preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #DBE4EB;
    background-size: cover;
    z-index: 999999;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.contpre {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
}


b, strong{
    font-weight:bold;
}
/*===============================================================================
	BODY
===============================================================================*/

:root {
    --primarycolor: #6F2E96;
    --secondarycolor: #8C58AB;
    --linkcolor: #8D5A9F;
    --bodycolor: #FEFFF6;
    /*--textcolor: #314141;*/
    --textcolor: #000;
    --bordercolor: #EFEFEF;
    --white: #fff;
}

body {
    line-height: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px !important;
    font-weight: normal;
    color: var(--textcolor);
    background: var(--bodycolor);
    overflow-X: hidden;
}

h1 {
    font-family: 'Poiret One', sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px; /* 91.429% */
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--textcolor);
}

h2 {
    font-family: 'Poiret One', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
    /*color: var(--textcolor);*/
    color: #d95b70;
    text-align: center;
}

h3 {
    font-family: 'Poiret One', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 68px;
    margin-bottom: 20px;
    color: var(--textcolor);
}

h4 {
    font-family: 'Poiret One', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
    color: var(--textcolor);
}

h5 {
    font-family: 'Poiret One', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 20px;
    color: var(--textcolor);
}

h6 {
    font-family: 'Poiret One', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    color: var(--textcolor);
}

a {
    display: inline-block;
    color: var(--linkcolor);
    transition: all .4s ease;
    text-decoration: none;
}

a:hover {
    color: var(--primarycolor);
}

.content ul {
    list-style: none;
}
.content ul, .content ol {
    margin-bottom: 1rem;
    line-height: 1.5;
}
.content ol {
  list-style-type: decimal-leading-zero;
  padding-left: 2.5rem;
  margin: 0;
}
.content ul li, .content ol li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5875em;
    color: #FFF;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 144.444% */
}
.content ul li:before {
    content: "";
    position: absolute;
    top: 0.6125em;
    left: 0;
    width: 0.4375em;
    height: 0.4375em;
    border-radius: 50%;
    background: var(--color);
}
.content ol li::marker {
  color: rgba(255, 255, 255, 0.56);
  font-family: Poiret One;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  text-transform: uppercase;
  color: var(--white);
}



/*===============================================================================
	CHECKBOX
===============================================================================*/

.checkbox {
    margin-bottom: 0;
}

.checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 6px 0 0 3px;
}

.checkbox_text {
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
    color: var(--white);
    font-family: 'Raleway', monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.checkbox_text:before {
    content: '';
    position: absolute;
    top: calc(50% - 18px/2);
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #fff;
    transition: .2s;
    border: 1px solid var(--border-color);
}

.checkbox_text:after {
    content: '\2713';
    position: absolute;
    top: calc(50% - 11px);
    left: 4px;
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 16px;
    background: transparent;
    color: #fff;
    transition: .2s;
}

.checkbox input:checked+.checkbox_text:before {
    background: var(--global-color);
    border-color: var(--global-color);
}

.checkbox input:checked+.checkbox_text:after {
    opacity: 1;
}

/* i-os */

.checkbox-ios {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
    font-size: 14px;
    user-select: none;
}

.checkbox-ios .checkbox-ios-switch {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 77px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 25%/50%;
    vertical-align: top;
    background: #fff;
    transition: .2s;
}

.checkbox-ios .checkbox-ios-switch:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #BBCADA;
    transition: .15s;
}

.checkbox-ios input[type=checkbox] {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox-ios input[type=checkbox]:checked+.checkbox-ios-switch {
    background: var(--global-color);
}

.checkbox-ios input[type=checkbox]:checked+.checkbox-ios-switch:before {
    transform: translateX(37px);
    background: #fff;
}

/* Hover */
.checkbox-ios input[type="checkbox"]:not(:disabled)+.checkbox-ios-switch {
    cursor: pointer;
    border-color: rgba(0, 0, 0, .3);
}

/* Disabled */
.checkbox-ios input[type=checkbox]:disabled+.checkbox-ios-switch {
    filter: grayscale(70%);
    border-color: rgba(0, 0, 0, .1);
}

.checkbox-ios input[type=checkbox]:disabled+.checkbox-ios-switch:before {
    background: #eee;
}

/* Focus */
.checkbox-ios.focused .checkbox-ios-switch:before {
    box-shadow: inset 0px 0px 4px #ff5623;
}



/*===============================================================================
	RADIO
===============================================================================*/

.radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}

.radio+label {
    position: relative;
    padding: 0 0 0 35px;
    cursor: pointer;
    font-size: 14px;
    display: inline;
}

.radio+label:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: #FFF;
}

.radio+label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--global-color);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 0;
    transition: .2s;
}

.radio:checked+label:after {
    opacity: 1;
}

.radio:checked+label:before {
    border-color: var(--global-color);
}



/*===============================================================================
	Form
===============================================================================*/

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Raleway', monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000;
}

.form-group .btn-content {
    border: 0;
    background: transparent;
    margin-top: 60px;
}
.form-group .btn-content::before {
    border-color: var(--global-color);
}

.form-control {
    display: block;
    width: 100%;
    font-family: 'Raleway', monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    height: 60px;
    padding: 0;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
}

.form-control:focus {
    color: #000;
    background-color: transparent;
    border-color: var(--border-color);
    outline: 0;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: gray;
    color: #fff;
}

.effect::-webkit-input-placeholder {
    color: var(--placeholder-color);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.effect::-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.effect:-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.effect:-ms-input-placeholder {
    color: var(--placeholder-color);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.effect:focus::-webkit-input-placeholder {
    color: var(--placeholder-color);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.effect:focus::-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.effect:focus:-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.effect:focus:-ms-input-placeholder {
    color: var(--placeholder-color);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

textarea {
    resize: none;
}



/*===============================================================================
	Scrollbar browsers
===============================================================================*/

/* scrollbar firefox */
html {
    scrollbar-color: var(--primarycolor) lightgray;
    scrollbar-width: thin;
}

/*scrollbar chrome edge*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: lightgray;
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    background-color: var(--primarycolor);
}

/* hidden scrollbar chrome edge*/
/* ::-webkit-scrollbar {
        width: 0;
        height: 0;
    } */
/* hidden scrollbar firefox */
/* html {scrollbar-width: none;} */



/*===============================================================================
	Accordion
===============================================================================*/

.accordion-button .count {
  color: #CDE6E7;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 10px;
}
.accordion-button::after {
  background: url(assets/images/plus.svg)no-repeat center;
}
.accordion-button:not(.collapsed)::after {
  background: url(assets/images/minus.svg)no-repeat center;
}
.accordion-button {
  padding: 20px;
  border-radius: 20px;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid #EFEFEF;
  background: #FFF;
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid #EFEFEF;
}
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.accordion-button:not(.collapsed) {
  color: var(--primarycolor);
  background-color: #fff;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button .service_descr {
  margin-bottom: 0 !important;
}
.accordion-collapse .card-body {
  padding: 0 20px;
}



/*===============================================================================
	Header
===============================================================================*/

.header_wrapper {
  /* margin: 15px 15px 0; */
  margin: 0;
}
/* .header_bg {
  border-radius: 25px;
  background: radial-gradient(994.79% 121.03% at 89.56% 18.58%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;
  background: url(assets/images/header_bg.svg)no-repeat center bottom;
  background-size: cover;
} */
.header_content {
    width: 100%;
}
.header_bg {
    background: url(assets/images/hero_bg.webp)no-repeat 78%;
    background-size: cover;
/*  background: radial-gradient(994.79% 121.03% at 89.56% 18.58%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;*/
}
.header_left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header_right {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100Vh;
}
.lang_select {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 99;
}
.lang_select ul {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.lang_select ul li a {
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px; /* 200% */
  text-transform: uppercase;
}
.lang_select ul li a.active {
  color: #fff;
}
.header_right .aWrap {
  position: absolute;
  bottom: 0;
}
.head_wrapp {
  margin-top: 140px;
/*  height: 100%;*/
  display: flex;
  flex-direction: column;
}
.head_wrapp .logo h1 {
  display: flex;
  align-items: center;
  color: var(--white);
}
.logo_text  {
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 150% */
  max-width: 536px;
}
.head_social {
  display: flex;
  padding: 4px 4px 4px 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #FFF;
  max-width: 312px;
  width: 100%;
  margin-top: 40px;
  color: #fff;
}
.header_bottom {
  margin-top: 60px;
  margin-bottom: 20px;
      border-radius: 15px;
    background: #ffffff1f;
    padding: 20px;
}

.header_bottom .head_name {
  color: var(--textcolor);
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 214.286% */
  text-transform: uppercase;
}

.header_bottom .head_text {
  color: var(--textcolor);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 144.444% */
}

.logo-ng{
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(to bottom, #ddc881,#7c622e, #7c622e);
    padding: 3px;
    border-radius: 50%;
    margin-right: 20px;
    font-weight: bold;
}
.logo-ng span{
    background: #472770;
    padding: 20px 13px;
    display: block;
    border-radius: 50%;
    color: #c1ad67;
    font-size: 30px;
}




/*===============================================================================
	Footer
===============================================================================*/

footer {
    height: 144px;
    margin: 0 15px 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 25px;
    background: radial-gradient(17044.98% 132.88% at 100% 12.5%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head_social ul,
.footer_social ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.head_social ul {
  gap: 4px;
}
.footer_social ul li {
    color: #fff;
}
.head_social ul li a svg,
.footer_social ul li a svg {
    transition: all .4s ease;
}
.head_social ul li a:hover svg,
.footer_social ul li a:hover svg {
    transform: scale(1.2);
}
.head_social .svg_box,
.footer_social .svg_box {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--secondarycolor);
}



/*===============================================================================
	MAIN
===============================================================================*/

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky + .cont {
  padding-top: 60px;
}

section, footer {
    margin-top: 100px;
}

/* (A) MATERIAL ICONS */
.aWrap .svg-inline--fa {
  color: var(--primarycolor) !important;
}

/* (B) WRAPPER */
.aWrap {
  font-family: Arial, Helvetica, sans-serif;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  /* allow buttons to wrap into another row on small screens */
  /* flex-wrap: wrap; */
  max-width: 500px;
  width: 100%;
  padding: 25px 35px;
  margin: 25px 0;
  border-radius: 15px;
  border: 1px solid rgba(111, 46, 150, 0.17);
  background: rgba(111, 46, 150, 0.17);
  backdrop-filter: blur(7.5px);
}

.top_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.top_container .name {
  color: #EBE7F5;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 187.5% */
}

.aWrap,
.aWrap * {
  box-sizing: border-box;
}

/* (C) PLAY/PAUSE BUTTON */
.aPlay {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  cursor: pointer;
}
.aPlay .aPlayIco {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}

/* (D) TIME */
.aCron {
  font-size: 14px;
  color: #cbcbcb;
  margin: 0 10px;
  display: none;
}

/* (E) RANGE SLIDERS */
/* (E1) HIDE DEFAULT */
.aWrap input[type="range"] {
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  padding: 0;
  margin: 0;
  background: 0;
}

.range,
.range-volume {
  position: relative;
  display: flex;
  align-items: center;
}

.range input,
.range-volume input {
  position: relative;
  z-index: 1;
}

.range .change-range,
.range-volume .change-range {
  position: absolute;
  left: 0;
  top: 2px;
  height: 2px;
  width: 0px;
  border-radius: 50px;
  background: #FFF;
}

.range-volume .change-range {
  height: 10px;
  width: 95%;
}

.under-ranger {
  position: absolute;
  left: 0;
  top: 2px;
  height: 2px;
  width: 100%;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.26);
}

.range-volume .under-ranger {
  height: 10px;
}

.aWrap input[type="range"]::-webkit-slider-thumb {
  appearance: none;
}

/* (E2) CUSTOM SLIDER TRACK */
.aWrap input[type="range"]::-webkit-slider-runnable-track {
  background: transparent;
  height: 2px;
  border-radius: 10px;
}

/* (E3) CUSTOM SLIDER BUTTON */
.aWrap input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-top: -5px;
}

.aWrap input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-top: -5px;
}

/* (F) VOLUME */
.aVolIco {
  margin: 0 10px;
  cursor: pointer;
}

input.aVolume {
  width: 100px !important;
}

.aVolume::-webkit-slider-runnable-track {
  height: 10px !important;
}

.aVolume::-webkit-slider-thumb {
  margin-top: -3px !important;
}

.aVolume::-moz-range-thumb {
  margin-top: -3px !important;
}

.volume-container {
  display: none;
  align-items: center;
}

.nav-tabs {
  margin-top: 20px;
}

.nav-tabs,
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
  border-color: var(--secondarycolor);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  border-bottom: 0;
}

.nav-tabs .nav-link {
  width: 33.333%;
  color: var(--primarycolor);
  font-family: Poiret One;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 125% */
  text-transform: uppercase;
}

.rounded img {
  border-radius: 25px;
  margin-bottom: 24px;
  width: 100%;
  object-fit: cover;
  max-width: 526px;
}
.rounded figure img {
    margin-bottom: 5px;
}
.rounded.inner_image {
    display: inline-block;
    float: left;
}
.rounded.inner_image.fl_right {
    float: right;
}
.rounded.inner_image img {
    width: auto;
    margin-right: 24px;
}
.rounded.inner_image.fl_right img {
    margin-left: 24px;
    margin-right: 0;
}

.tab-content {
  margin: 40px 0;
}
.tab_content_link a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tab_content_head {
    color: var(--primarycolor);
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 130% */
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tab_content_text {
  color: var(--textcolor);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
}
.about_text {
    color: var(--textcolor);
    font-family: Raleway;
    font-style: italic;
    font-size: 18px;
    padding-left: 20px;
}
.content_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service_block {
  border-radius: 25px;
  border: 1px solid var(--primarycolor);
  background: #FFF;
  display: flex;
  padding: 40px;
  flex-direction: column;
  gap: 20px;
}
.service_block + .service_block {
  margin-top: 24px;
}
.service_block.image {
    padding: 0;
}
.service_block.image img {
    margin-bottom: 0;
}
.mt24 {
  margin-top: 24px;
}
.mb24 {
  margin-bottom: 24px;
}
.service_content .service_head {
  color: var(--primarycolor);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
  text-transform: uppercase;
  margin-bottom: 5px;
}
.service_content .service_descr {
  color: var(--textcolor);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
  margin-bottom: 10px;
}
.service_content .service_text p {
  color: var(--textcolor);
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
}
.service_info {
  display: flex;
  gap: 20px;
  margin-top: auto;
}
.info_block .info_head {
  color: #8EAAAA;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.info_block .info_text {
  color: #be5b9a;
  font-family: Poiret One;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
}

.powerclub {
  border-radius: 25px;
  background: radial-gradient(994.79% 121.03% at 89.56% 18.58%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;
  padding-top: 115px;
  padding-bottom: 115px;
  margin: 0 15px;
  position: relative;
  overflow: hidden;
}
.powerclub .lotus {
  background: url(assets/images/lotus_bg.webp)no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 359px;
  width: 709px;
}
.powerclub h2 {
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 50px;
  text-align: left;
}
.two_column {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.content.two_column ol li {
  margin-bottom: 20px;
}
.block_contact {
  max-width: 425px;
  margin-left: auto;
  color: #fff;
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(111, 46, 150, 0.38);
  backdrop-filter: blur(12.5px);
}
.block_contact_top__head {
  color: #FFF;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
  margin-bottom: 10px;
}
.block_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block_price .price {
  color: #FFF;
  font-family: Poiret One;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
}
.btn_submit a {
  color: #74359A;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 10px;
  background: #ECCBFF;
  display: flex;
  padding: 12px 30px;
  align-items: center;
}
.btn_submit a:hover {
  background: var(--bordercolor);
}
.block_contact hr {
  border-color: #fff;
}
.block_contact_bottom .block_contact_bottom__head {
  color: #FFF;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 216.667% */
  text-transform: uppercase;
}
.block_contact_bottom .block_contact_bottom__text {
  color: #FFF;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 157.143% */
}
.block_contact .head_social {
  margin-top: 10px;
  max-width: 200px;
  color: #FFF;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 214.286% */
  text-transform: uppercase;
}
.double {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-nav {
  display: flex;
  align-items: center;
  width: 60px;
}
.review_block {
  height: 346px;
  overflow: hidden;
  border-radius: 25px;
}
.review_info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 40px 0;
}
.review_info .review_img {
  border-radius: 50%;
}
.review_info .review_img img {
  width: 57px;
}
.review_info .review_name {
  color: var(--textcolor);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
}




#swiperGallery .swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  #swiperGallery .swiper-container {
    min-height: 320px;
  }
}
#swiperGallery .swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
  /* height: 100vh;
  width: 100vw; */
  height: 300px;
  width: 100%;
}
@media (min-width: 480px) {
  #swiperGallery .swiper-container-wrapper {
    flex-flow: row nowrap;
    height: 500px;
  }
}

#swiperGallery .swiper-button-next, 
#swiperGallery .swiper-button-prev {
  color: #000;
}

#swiperGallery .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}

#swiperGallery .swiper-slide .description,
#swiperGallery .swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}

#swiperGallery .swiper-slide-active .description,
#swiperGallery .swiper-slide-active .title {
  opacity: 1;
}

#swiperGallery .swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
#swiperGallery .swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

#swiperGallery .gallery-top {
  position: relative;
  width: 100%;
  height: 300px;
}
@media (min-width: 480px) {
  #swiperGallery .gallery-top {
    width: 80%;
    height: 100%;
    margin-right: 10px;
  }
}

#swiperGallery .gallery-thumbs {
  width: 100%;
  padding-top: 10px;
  height: 100px;
}
@media (min-width: 480px) {
  #swiperGallery .gallery-thumbs {
    width: 20%;
    height: auto;
    padding: 0;
  }
}
#swiperGallery .gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
  #swiperGallery .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
#swiperGallery .gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.75;
  cursor: pointer;
}
@media (min-width: 480px) {
  #swiperGallery .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
#swiperGallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
#swiperGallery .gallery-top .swiper-slide {
  border-radius: 25px;
}
#swiperGallery .gallery-thumbs .swiper-slide {
  border-radius: 15px;
}


.play-btn {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    rgba(111, 46, 148,0.8) 60%,
    rgba(255, 255, 255, 1) 62%
  );
  border-radius: 50%;
  position: relative;
  display: block;
  /* box-shadow: 0px 0px 25px 3px rgba(255, 0, 128, 0.8); */
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  top: -25%;
  left: -25%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}

#swiperQuote {
  position: relative;
}

#swiperQuote .quote {
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 2;
}

#swiperQuote .swiper {
  position: static;
  width: 100%;
  height: 100%;
  padding-top: 20px;
}

#swiperQuote .swiper-slide {
  color: #FFF;
  padding: 80px;
  font-family: Poiret One;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
  text-align: left;
  background: radial-gradient(994.79% 121.03% at 89.56% 18.58%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.bottom-nav {
  position: absolute;
  right: 12px;
  bottom: 0;
  z-index: 1;
  display: flex;
  width: 60px;
  background: var(--bodycolor);
  border-top-left-radius: 15px;
}
.bottom-nav__item {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: center;
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  color: #eee;
  cursor: pointer;
}
.bottom-nav__item:not(.swiper-button-disabled):hover {
  opacity: 0.8;
}
.bottom-nav__item.swiper-button-disabled {
  background-color: transparent;
  cursor: default;
}
.bottom-nav__item.swiper-button-disabled path {
  fill: #ccc;
}
.prog_wrapp .card-body {
  padding-bottom: 15px;
}
.prog_wrapp .prog_head {
  color: #8EAAAA;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.prog_wrapp .service_text p {
  color: #314141;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
}
.prog_wrapp .prog_price {
  color: #314141;
  font-family: Poiret One;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 150% */
  text-transform: uppercase;
}

.swiper_programms .programm_block {
  border-radius: 25px;
  border: 1px solid #EFEFEF;
  background: #FFF;
  padding: 40px;
  position: relative;
}
.swiper_programms .count {
  color: #CDE6E7;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  text-transform: uppercase;
  position: absolute;
  top: 15px;
  right: 20px;
}
.swiper_programms .service_descr {
  color: #314141;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
}
.swiper_programms .prog_head {
  color: #8EAAAA;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.swiper_programms .service_text p {
  color: #314141;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
}
.swiper_programms .prog_price {
  color: #314141;
  font-family: Poiret One;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
  text-transform: uppercase;
}
.heading {
    text-align: center;
}
.sbg {
    background: radial-gradient(994.79% 121.03% at 89.56% 18.58%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;
    border-color: transparent;
}
.sbg .service_head,
.sbg .service_text p {
    color: #fff;
}
.svg_box.whatsup {
    background: #3ac729 !important;
}
.soc_btn {
    display: flex;
    justify-content: center;
}
.bonusProg {
    background: #fa2888;
    border: 1px solid #fa2888;
    text-align: center;
}
.bonusProg .service_content,
.bonusProg .service_descr,
.bonusProg .info_block .info_head,
.bonusProg .service_head,
.bonusProg .info_text,
.bonusProg .service_text p {
    color: #fff;
    font-weight: bold;
}
.bonusProg .service_info {
    margin: 0 auto;
}

#about-regresolog{
    background:url('/assets/images/bridge.webp') no-repeat center center; 
    background-size:cover;
    background-attachment: fixed;
}

#about-regresolog .mask-black{
    background: #0000009c;
    width: 100%;
}
.bonus_bg {
    background: radial-gradient(994.79% 121.03% at 89.56% 18.58%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%), #6F2E96;
    border-color: transparent;
}
.about_text_img img {
    width: 160px;
}
.about_text_img {
    margin-right: 10px;
}