.modal-backdrop {
    position: relative !important;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.preloader-size{
    height: auto;
  width: 670px;
}
.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 9999999;
  -webkit-transition: .9s;
  transition: .9s;
}


.pop-heading-text {
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 40px;
    color:#000000;
}

.pop-sub-heading-text {
    /*font-family: "DM Sans";*/
    font-weight: 600;
    font-size: 22px;
}

.pop-container{
    display: flex;
    position: relative;
    box-sizing: border-box;
    transition-property: box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.pop-container.uagb-block-dc586583 {
    box-shadow: 0px 0px #00000070;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
    order: initial;
    border-color: inherit;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    row-gap: 0px;
    column-gap: 20px;
}

.pop-icon{
    font-size: 20px;
    height: 20px;
    width: 20px;
    margin: 6px 0 0 0;
    color: #25b474;
    fill: #25b474;
}



.pop-icon-text{
    font-size: 22px;
    font-weight: 700;
    line-height: em;
    color: #000;
}

.pop-countdown{
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.pop-countdown-box{
    aspect-ratio: auto;
    width: 180px;
    height: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    row-gap: 15px;
    column-gap: 15px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 15%);
    border-top-width: 2px;
    border-left-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-top-left-radius: 4%;
    border-top-right-radius: 4%;
    border-bottom-left-radius: 4%;
    border-bottom-right-radius: 4%;
    border-style: solid;
    border-color: #25b474;
    margin-right: 30px;
    transition: box-shadow 0.2sease;
}

.pop-countdown-time{
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    color: #25b474;
}

.pop-countdown-lable{
    align-self: center;
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    color: #000000;
}

.pop-button{
    min-width: unset !important;
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
}

.pop-button-wrap{
    pointer-events: auto;
    margin: 10px;
}

.pop-button-link{
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-color: #ffffff;
    border-style: solid;
    padding: 12px 24px;
    box-shadow: 0px 0px 0 #00000026;
    background: #25b474;
    width: 100%;
    display: block;
}

.pop-button-link-text{
    color: #ffffff;
    font-weight: 600;
    text-transform: normal;
    text-decoration: none;
}



/* Background Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradients-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #3e986c, #2d6a4f, #a3d5c5);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: moveParticle 20s linear infinite;
  z-index: 2;
}

@keyframes moveParticle {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(100vw, 100vh) scale(1.5);
    opacity: 0;
  }
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  /*padding: 50px;*/
  max-width: 1200px;
  margin: 50px auto;
}

/* Card Design */
.card {
  position: relative;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s, background-color 0.4s, color 0.4s;
  z-index: 1;
  cursor: pointer;
  color: #fff; /* Default text color */
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background-color: #2d6a4f; /* Change background color on hover */
  color: #f7f7f7; /* Change text color to contrast the background */
}

.card:hover h1, .card:hover ul, .card:hover li, .card:hover span, .card:hover i {
  color: #f7f7f7; /* Ensure text and icons inside card change color on hover */
}

.card.selected {
  background-color: #3e986c;
  color: #ffffff; /* Change text color when selected */
}

.card.selected h1, .card.selected ul, .card.selected li, .card.selected span, .card.selected i {
  color: #ffffff; /* Ensure text and icons inside card change color when selected */
}


.card .content{
    display:block;
}
.content h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.attendee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attendee-list li {
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: transform 0.3s, background-color 0.3s;
  position: relative;
}

.attendee-list li:hover {
  transform: translateX(15px);
  background-color: rgba(255, 255, 255, 0.3);
}

.attendee-list li i {
  margin-right: 10px;
  color: #a3d5c5; /* Monochrome color for icons */
  transition: transform 0.3s, color 0.3s;
}

.attendee-list li:hover i {
  transform: scale(1.2);
  color: #f7f7f7; /* Change icon color on hover */
}


.preloader .loader {
  position: absolute;
  width: 35%;
  /*width: 80px;*/
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
          animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
          animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1.5);
          transform: translateY(-50%) scale(1.5);
}

.preloader .loader .indicator svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader .loader .indicator svg polyline#back {
  stroke: #ffffff;
}

.preloader .loader .indicator svg polyline#front {
  stroke: #1A76D1;
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  -webkit-animation: dash 1s linear infinite;
          animation: dash 1s linear infinite;
}

.preloader::before, .preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  /*background: #1A76D1;*/background-image: linear-gradient(to right, #15253D, #3E986C);
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after, .preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}




.video-bg{
    position: absolute;
    overflow: hidden;
    /* width: 100%; */
    height: 100%;
    top: 0;
    /* bottom: 0; */
    /* left: 0; */
    /* max-width: 100%; */
    /* min-height: auto;*/
}

.vplay {
    position: absolute;
    right: 0;
    bottom: 0%;
    min-width: 1591px;
    /*min-height: 100%;*/
}

.logo-size{
    width:273px;
    height:297px;
}

.bg-light-menu {
  background: #f8f9fa00;
}

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 3rem ;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show  .nav-link {
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

 .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: .5rem;
  }
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  margin-top: 10px;
}.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}  
.register-button{
    font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.3em;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-image: linear-gradient(to right, #15253D, #3e986c);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #3e986c;
  border-radius: 5px 5px 5px 5px;
  padding: 15px 20px 15px 20px;
  margin-left: 35%;
  width:100%;
  display: block;
}  
p {
    
    font-family: "Roboto", "Roboto", sans-serif;
    font-size: 20px;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: "Roboto", "Roboto", sans-serif;
    font-size: 20px;
}

li {
    
    font-family: "Roboto", "Roboto", sans-serif;
}

span{
    font-family: "Roboto", "Roboto", sans-serif;
}

.head{
    color: white;
    text-align: left;
    font-size: 60px;
    margin-left: 5%;
    }
    
.sub-head{
    color: white;
    text-align: left;
    margin-left: 5%;
} 

.typing {
            border-right: 2px solid #000;
            white-space: nowrap;
            overflow: hidden;
        }

.event-background{
    background-image: linear-gradient(45deg, rgba(245, 70, 66, 0.75), rgba(8, 83, 156, 0.75)), url(https://globaleconomiczone.com/images/homepage/bg2.png);
    padding-bottom:5%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 2700px;
}

.elementor-6066 .elementor-element.elementor-element-a1c8e2a .elementor-nav-menu--main .elementor-item{color:#fff;fill:#fff;padding-left:0px;padding-right:0px;padding-top:0px;padding-bottom:0px; font-weight: bold;}

.count-down-no{
    margin-left: 5%;
    margin-bottom: 2%;
}

    @property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
    .moving-border {
  width: 200px;
  height: 300px;
  position: relative;
  background: #111;
  padding: 4px;
}
.moving-border::before,
.moving-border::after {
  content: "";
  position: absolute;
  inset: -0.2rem;
  z-index: -1;
  background: linear-gradient(var(--angle), 
    #032146,  #C3F2FF, #b00);
  animation: rotate 10s linear infinite;
}
.moving-border::after {
  filter: blur(10px);
}
@keyframes rotate {
  0%     { --angle: 0deg; }
  100%   { --angle: 360deg;
  }
}
    
.count-down {
    width: 550px;
    padding: 0px;
}
.count-down .flipdown {
    margin: auto;
    width: 600px;
    margin-top: 30px;
}
.count-down h1 {
    text-align: center;
    font-weight: 400;
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.flipdown.flipdown__theme-dark .rotor-group-heading:before {
    color: #ffffff !important;
}

.flipdown.flipdown__theme-dark .rotor, .flipdown.flipdown__theme-dark .rotor-top, .flipdown.flipdown__theme-dark .rotor-leaf-front {
    color: #FFFFFF;
    /*background-color: #25b474 !important;*/
    background-image: linear-gradient(to right, #15253D, #3E986C)!important;
}

.flipdown.flipdown__theme-dark .rotor-bottom, .flipdown.flipdown__theme-dark .rotor-leaf-rear {
    color: #EFEFEF;
    /*background-color: #25b474 !important;*/
    background-image: linear-gradient(to right, #15253D, #3E986C)!important;
}

.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3):before,.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3):after {
   /* background-color: #25b474 !important;*/
    background-image: linear-gradient(to right, #15253D, #3E986C)!important;
}




.contenter-grd{
    /* margin: auto; */
    /* margin-right: 1px; */
    /* display: flex; */
    width: 100%;
    height: 100%;
    padding: 0px;
    background: linear-gradient(var(--gradient-angle), #15253D, #3E986C);
    border-radius: 3rem;
    animation: rotation 5s linear 0s infinite normal forwards;
    backdrop-filter: blur(50px);
}
 
.contenter-grd::after{
    margin: 3px;
    width: 100%;
    height: 100%;
    background-color: black;
    border-radius: 2em;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
} 
        
.div-gap{
    margin-top: 50px;
    margin-bottom: 50px;
}
 
.rounded-corner {
    border-radius: 3rem;
    width: 100%;
    height: 80%;
    top: 10%;
    position: relative;
}


.gradient-border {
    margin: auto;
    margin-right: 1px;
    display: flex;
    width: 100%;
    height: 80%;
    padding: 0px;
    background: linear-gradient(var(--gradient-angle), #15253D, #3E986C, #FFD230);
    border-radius: 3rem;
    animation: rotation 5s linear 0s infinite normal forwards;
    backdrop-filter: blur(50px);
    }

.gradient-border img {
    margin: 3px;
    width: 99%;
    height: 99%;
    background-color: black;
    border-radius: 2em;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}
    
    @keyframes rotation 
        {
           0%
           {
                --gradient-angle : 0deg;
           }
           100%
           {
                --gradient-angle : 360deg;
           }
        }
        @property --gradient-angle
        {
            syntax: "<angle>";
            initial-value: 0deg;
            inherits: false;
        }

   


/*.rounded-corner:hover {
    width: 100%;
    margin-top: .35rem;
    margin-right: .18rem;
    margin-left: .18rem;
    cursor: default;
    transition: .5s;
}

.round-corner:hover::after{
    position: absolute;
    z-index: -1;
    content: "";
    animation: rotation 6s linear infinite;
    border-radius: inherit;
    background: conic-gradient(from var(--gradient-angle), transparent, #eb3df7, #8a30c7, #3a29ab, #73fafd, transparent);
    inset: -.35rem;
}*/


.h1-power{
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 4.56px;
    line-height: 3.13158;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 35px;
    margin:0px;
}

.more-content {
      display: none;
    }
    
.gap-line{
    line-height: 45px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
}
        
.content h1{
    font-family:"Agharti", "Agharti fallback", sans-serif;
    font-weight: 900;
    letter-spacing: 4.56px;
    line-height: 1.13158;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 35px;
}
        
        .scroll-left {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 0.5s ease-in-out;
    }
    .scroll-right {
      opacity: 0;
      transform: translateX(100px);
      transition: all 0.5s ease-in-out;
    }
    .visible {
      opacity: 1;
      transform: translateX(0);
    }
    
    #faq-list ul{
    list-style-type: none;
    margin: 0;
    padding: 0;

}

#faq-list ul li{
   --c: #2d8fd3;
    /*color: var(--c);*/color: #fff;
    font-size: 10px !important;
    border: 0.3em solid var(--c);
    border-radius: 0.5em;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    margin: 1em;
}



#faq-list ul li span{
   position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

#faq-list ul li:hover{
   color: black;
}

#faq-list ul li:hover span{
   transform: translateY(0) scale(2);
}

#faq-list ul li span:nth-child(1) {
    --n: 1;
}

#faq-list ul li span:nth-child(2) {
    --n: 2;
}

#faq-list ul li span:nth-child(3) {
    --n: 3;
}

#faq-list ul li span:nth-child(4) {
    --n: 4;
}
    
 /* Styling for the appearing div */
    .appear-div {
      display: none;
    }
    .visible {
      display: block !important;
    } 
    
    
    .color-9 {
	background: #353535;
}
    
    .SMN_effect-9 a {
	line-height: 2em;
	-webkit-perspective: 800px;
	-moz-perspective: 800px;
	perspective: 800px;
	color: white;
}

.SMN_effect-9 a span {
    position: relative;
    display: inline-block;
    padding: 13px 0px 0px 0px;
    box-shadow: inset 0 3px #2f4351;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    transition: background 0.6s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    width: 100%;
    background: #fff;
    color: #000;
    margin-bottom: 15px;
    height: 60px;
    font-size: 17px;
    line-height: 20px;
    border-radius: 20px;
    overflow:hidden;
}

.SMN_effect-9 a span:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	color: #000;
	content: attr(data-hover);
	-webkit-transform: rotateX(270deg);
	-moz-transform: rotateX(270deg);
	transform: rotateX(270deg);
	-webkit-transition: -webkit-transform 0.6s;
	-moz-transition: -moz-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
	pointer-events: none;
	font-size: 17px;
    line-height: 20px;
    border-radius: 20px;
    overflow:hidden;
}

.SMN_effect-9 a:hover span, .SMN_effect-9 a:focus span {
	background: #2f4351;
}

.SMN_effect-9 a:hover span:before, .SMN_effect-9 a:focus span:before {
	-webkit-transform: rotateX(10deg);
	-moz-transform: rotateX(10deg);
	transform: rotateX(10deg);
/*	box-shadow: .5rem .5rem 0 rgba(233, 236, 239, .5);
    transform: translate3d(-4px, -4px, 0) rotateZ(-1deg);*/
}

.panel-top-blue{
    /*background: rgb(9 5 255 / 50%);/
    background:#25b474;*/
    background-image: linear-gradient(to right, #15253D, #3E986C);
}

.panel-top-white{
    background: white;
}

.panel-heading {
  padding: 0;
	border:0;
}

.panel-title{
    margin:0;
}

.panel-title>a, .panel-title>a:active{
	display:block;
	padding:15px 0 1px 15px;
  color:#fff;
  font-size:16px;
  font-weight:bold;
	text-transform:uppercase;
	letter-spacing:1px;
  word-spacing:3px;
	text-decoration:none;
}
.panel-heading  a:before {
   font-family: 'Glyphicons Halflings';
   content: "\e114";
   float: right;
   transition: all 0.5s;
   padding-right: 10px;
   
}
.panel-heading.active a:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
	padding-left: 10px;
} 

.p-color-black{
    margin: 0;
    padding: 0px 0px 15px 15px;
    color: black;
}

.p-color-white{
    margin: 0;
    padding: 0px 0px 15px 15px;
    color: white;
}

.shape {
 
  visibility: visible;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0.4s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.4s;
  
}
.bg-cover {
  
    height: 320px;
    width: 100%;
   background-image: url("https://vallybb.github.io/images/unavitadavanti.jpg");
     -webkit-animation: liquid 7s ease-in-out infinite;
    animation: liquid 7s ease-in-out infinite;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  background-size:cover;
  
}
@keyframes liquid {
0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
   
}
50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  
}
100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    
}
  }


.box {
  background-color: white;
  color: deepPink;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  /*width: 400px;
  height: 200px;*/
  margin: 10px;
  border-radius: 10px;
  box-shadow: 2px 4px 5px rgba(0,0,0,0.3);
  transform: translateX(200%);
  transition: transform 0.4s ease-in;
  display:none;
}

.box:nth-of-type(even) {
  transform: translateX(-200%);
  display:block;
}

.box.show {
  transform: translateX(0);
  display:block;
}
  
  
.animated-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.animated-list li:nth-child(1) {
    animation-delay: 0s;
}

.animated-list li:nth-child(2) {
    animation-delay: 0.1s;
}

.animated-list li:nth-child(3) {
    animation-delay: 0.2s;
}

.animated-list li:nth-child(4) {
    animation-delay: 0.3s;
}

.animated-list li:nth-child(5) {
    animation-delay: 0.4s;
}

.animated-list li:nth-child(6) {
    animation-delay: 0.5s;
}

.animated-list li:nth-child(7) {
    animation-delay: 0.6s;
}

.animated-list li:nth-child(8) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  
.swiper {
      margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden !important;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      /*background: #fff;*/
      display: flex;
      justify-content: center;
      align-items: center;
      
    }
    
    .swiper-vertical>.swiper-wrapper {
    flex-direction: unset !important;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper {
    transform: translate3d(0px,0,0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
    width: 320px !important;
    margin-right: 15px !important;
    border-radius: 20px;
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop:always}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start:var(--swiper-centered-offset-before)}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper: :before {
    height:100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start:var(--swiper-centered-offset-before)}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper: :before {
    width:100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0,0,0,.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset,50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev {
    display: none!important
}

.swiper-button-next svg,.swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg)
}

.swiper-button-prev,.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after {
    content: 'prev'
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}

.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
    display: none!important
}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none!important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right,8px);
    left: var(--swiper-pagination-left,auto);
    top: 50%;
    transform: translate3d(0px,-50%,0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform,.2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color,inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size,4px);
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size,4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none!important
}

.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset,1%);
    bottom: var(--swiper-scrollbar-bottom,4px);
    top: var(--swiper-scrollbar-top,auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size,4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left,auto);
    right: var(--swiper-scrollbar-right,4px);
    top: var(--swiper-scrollbar-sides-offset,1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size,4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform,opacity,height
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}


.meet-speakers-sec .meet-slider .swiper-button-prev {
    opacity : 1;
    left : 0 !important;
}

.meet-section {
	background-color: transparent !important;
}
.meet-section .content-title p,
.meet-section .content-title h2 {
    color: #fff !important;
}
.swiper-button-prev, .swiper-button-next {
	background-color: #25b474 !important;
	color: #25b474 !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
	color: #5E2DE3!important;
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
	color: #42edd1;
}

.price-slider.swiper, .meet-slider.swiper{
	overflow: hidden;
}

.meet-section {
	background-color: #F1F1F1;
  padding: 90px 0;
}
.meet-section .container {
	margin-left: auto;
	margin-right: auto;
	display: block;
	max-width: 100%;
	padding-left: 0px;
	padding-right: 0px;
}
.meet-section .content-title h2 {
	font-family: 'Poppins Bold';
	font-size: 45px;
	line-height: 52px;
	color: #2E2E2E;
	margin-bottom: 15px;
}
.meet-section .content-title {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.content-info p {
	color: #000;
}
.meet-blog {
	position: relative;
	display: flex;
	flex-direction: column;
	/*background: #fff;*/
	border-radius: 20px;
/*	box-shadow: 0 0 4px #CFCFCF40;*/
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-out;
	text-decoration: none;
}
.meet-blog:hover {
/*	box-shadow: 1px 6px 8px 0px #E6FF72cc;*/
		text-decoration: none;
}
.meet-img {
	position: relative;
	display: flex;
	width: 100%;
}
.meet-img img {
	width: 100%;
	border-radius: 20px 20px 0 0;
}
.meet-info {
	padding: 20px;
	background: #fff;
	min-height:160px;
}
.meet-info h3 {
	color: #000;
	font-size: 20px;
	line-height: 26.5px;
	font-weight: 600;
	margin: 0 0 8px;
}
.meet-info h3 img {
	margin-left: 5px;
	width: 20px;
}
.meet-info p {
	font-size: 14px;
	line-height: 18px;
	color: #000;
}
.meet-info p strong {
	display: block;
	font-weight: 700;
	margin-top: 5px;
}
.meet-bottom {
	padding: 0px;
}
.meet-bottom p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	font-size: 10px;
	line-height: 13px;
	color: #22B099;
	letter-spacing: 1px;
	gap: 5px 0;
	font-family: 'Poppins Regular';
	text-transform: uppercase;
}
.meet-bottom p span {
	display: flex;
}
.meet-bottom p span:after {
	position: relative;
	display: flex;
	content: '/';
	margin: 0 5px;
}
.mb-30 {
	margin-bottom: 30px;
}
.price-slider.swiper, 
.meet-slider.swiper {
	overflow: inherit;
}
.meet-section .btn-outer {
	margin-top: 43px;
}
.meet-slider .swiper-slide {
	height: auto !important;
	max-width: 250px;
	width: 250px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	position: relative;
	bottom: auto;
	margin-top: 45px;
}
.swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	background-color: rgba(137, 136, 146, 1);
	opacity: 1;
	margin: 0 15px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: rgba(230, 255, 114, 1);
}
.swiper-button-prev,
.swiper-button-next {
	width: 72px !important;
	height: 72px !important;
	background-color: #C6E8E2;
	border-radius: 50px;
	color: #7776EC;
	outline: none;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
	color: #22B099;
	font-size: 28px;
	font-weight: 600;
}
.swiper-button-next:hover:after, 
.swiper-button-prev:hover:after { 
  color: #42edd1;
}
.swiper-button-next:after {
	margin-top: 2px;
	margin-left: 5px;
}
.swiper-button-prev:after {
	margin-top: 2px;
	margin-right: 5px;
}
.swiper-button-prev{
	left: -90px;
} 
.swiper-button-next {
	right: 0px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}
  
.container-custom {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  /*background-color: #fafafa;*/
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  /*background-color: #25b474;*/background-image: linear-gradient(to right, #15253D, #3E986C);
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  /*background-color: #25b474;*/background-image: linear-gradient(to right, #15253D, #3E986C);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  color: #25b474;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;font-size:15px;
}

.btn:hover {
  /*background-color: transparent;
  color: #fff;*/
  background-color: #025e34;
    color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #25b474;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #25b474;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
}

.information i {
  color: #25b474;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #25b474;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  /*background: linear-gradient(to bottom, #1cd4af, #25b474);*/background-image: linear-gradient(to right, #15253D, #3E986C);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #ffffff47;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}


.top-gap{
        margin-top: 5%;
    }
    
.counter {
    
    padding: 20px 0;
    
}

.counter-bg{
    background-image: linear-gradient(to right, #15253D, #3E986C);
}

.counter-gap{
    padding:0px;
    
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.count-text {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #FFD230;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #FFD230;
}
.nav-tabs .nav-link.active {
    color: #ffd230;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    font-weight: 700;
    /* line-height: inherit; */
    letter-spacing: 1.56px;
}

a{
    color: #ffffff; 
    
}

.jumbotron {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
.jumbotron h1{
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 4.56px;
    line-height: 1.13158;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 60px;
    margin-top:25%;
}

.spo{
    padding-top: 5%;
    font-size: 25px;
    color: #ffd230;
    font-family: "Montserrat", "Montserrat", sans-serif;
}


.heading {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}

.speaker-heading {
    float: left;
    width: 100%;
    margin-bottom: 100px;
}

.col-box {
    padding: 0px 20px;
    margin-bottom: 120px;
}

.Speakers-box-content {
    padding-bottom: 62px;
}

.Speakers-box-content, .partner-col-box {
    border-radius: 10px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.16));
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 15px;
    float: left;
    width: 100%;
    height: 100%;
}

.Speakers-box-content img {
    margin-top: -110px;
    border: 5px solid #fff;
    border-radius: 100px;
    width: 159px;
    height: 159px;
    object-fit: cover;
}

.Speakers-box-content h4 {
    font-size: 15px;
    line-height: normal;
    color: #0d2e44;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}

.Speakers-box-content p {
    font-size: 15px;
    line-height: normal;
    color: #1a1a1a;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.profile-btn {
    
    text-align: right;
}

.profile-btn a {
    text-decoration: none;
    border-radius: 4px;
    filter: drop-shadow(0px 3px 3.5px rgba(0, 0, 0, 0.59));
    background-color: #79d658;
    font-size: 18px;
    color: #102e43;
    font-weight: 400;
    padding: 10px 30px;
    display: inline-block;
}

@media only screen and (max-width: 3840px) {
    
.logo-size {
    width: 480px;
}

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show .nav-link {
    color: white;
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 50rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 15%;
    margin-bottom: 0;
    list-style: none;
}

.register-button {
    font-size: 21px;
    font-weight: bold !important;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-image: linear-gradient(to right, #15253D, #3e986c);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #3e986c;
    border-radius: 5px 5px 5px 5px;
    padding: 15px 20px 15px 20px;
    margin-left: 190%;
    width: 100%;
    display: block;
}
    .top-gap{
        margin-top: 10%;
    }
    
    
    
    .container{
        max-width: 100%;
    }
    
    .vplay {
        position: absolute;
        right: 0px;
        bottom: 0%;
        /*min-width: 1591px;*/
        min-width: 100%;
        min-height: 100%;
        left: 0%;
        top:-5%;
        width:100%;
    }
    
    .head {
    color: white;
    text-align: left;
    font-size: 90px;
    margin-left: 5%;
}
    
.elementor-3143 .elementor-element.elementor-element-636e4a62 .elementor-heading-title {
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 65px;
}   

.counter-bg {
    background-image: linear-gradient(to right, #15253D, #3E986C);
    margin-top: 12%;
}

.content h1 {
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 4.56px;
    line-height: 1.13158;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 55px;
}

.content p {
    
    font-size: 25px;
}
 
.gradient-border img {
    margin: 3px;
    width: 100%;
    height: 736px;
    background-color: black;
    border-radius: 2em;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
} 

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.SMN_effect-9 a span {
    position: relative;
    display: inline-block;
    padding: 13px 0px 0px 0px;
    box-shadow: inset 0 3px #2f4351;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    transition: background 0.6s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    width: 65%; 
    background: #fff;
    color: #000;
    margin-bottom: 15px;
    height: 60px;
    font-size: 20px; 
    line-height: 40px;
    border-radius: 20px;
    font-weight: bold;
}

.schedule-stage:nth-child(1) > .schedule-stage__title > h3 {
    background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; */
    right: 170%;
    /* color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.schedule-stage:nth-child(3) > .schedule-stage__title > h3 {
  background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; */
    right: 170%;
    /* color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}


.container-my {
    position: relative;
    width: 500px;
    height: 500px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 5% 12% 12% 32%;
}
  
}
    
    .my-btn{
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.3em;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #25b474;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #25b474;
  border-radius: 5px 5px 5px 5px;
  padding: 15px 20px 15px 20px;
    }



@media only screen and (max-width: 1920px) {
     .elementor-6066 .elementor-element.elementor-element-d308155 {
    width: 21%;
  }
  
  .logo-size{
    width:273px;
    height:297px;
}

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show .nav-link {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: -2rem ;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}


.delegate-button {
        font-size: 16px;
        font-weight: bold !important;
        text-transform: uppercase;
        font-style: normal;
        text-decoration: none;
        line-height: 1.3em;
        fill: #FFFFFF;
        color: #FFFFFF;
        background-image: linear-gradient(to right, #15253D, #3e986c);
        border-style: solid;
        border-width: 2px 2px 2px 2px;
        border-color: #3e986c;
        border-radius: 5px 5px 5px 5px;
        padding: 10px 10px 10px 10px;
        margin-left: 43%;
        width: 15%;
        display: block;
        text-align: center;

    }

.register-button {
        font-size: 16px;
        font-weight: bold !important;
        text-transform: uppercase;
        font-style: normal;
        text-decoration: none;
        line-height: 1.3em !important;
        fill: #FFFFFF;
        color: #FFFFFF;
        background-image: linear-gradient(to right, #15253D, #3e986c);
        border-style: solid;
        border-width: 2px 2px 2px 2px;
        border-color: #3e986c;
        border-radius: 5px 5px 5px 5px;
        padding: 12px 20px 15px 20px;
        margin-left: 20%;
        width: 100%;
        display: block;
    }
    
    .top-gap{
        margin-top: 10%;
    }
    
    .SMN_effect-9 a span {
    position: relative;
    display: inline-block;
    padding: 13px 0px 0px 0px;
    box-shadow: inset 0 3px #2f4351;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    transition: background 0.6s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    width: 100%;
    background: #fff;
    color: #000;
    margin-bottom: 15px;
    height: 60px;
    font-size: 17px;
    line-height: 20px;
    border-radius: 20px;
}
    
    .container{
        max-width: 100%;
    }
    
    .head{
    color: white;
    text-align: left;
    font-size: 70px;
    margin-left: 5%;
    }
    

    .counter-bg {
        background-image: linear-gradient(to right, #15253D, #3E986C);
        margin-top: 0%;
    }
    
    .content h1 {
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 4.56px;
    line-height: 1.13158;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 35px;
        
    }
    
    .content p {
        font-size: 15px;
    }
    
    .gradient-border img {
    margin: 3px;
    width: 99%;
    height: 99%;
    background-color: black;
    border-radius: 2em;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}
    
.my-btn{
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.3em;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #25b474;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #25b474;
  border-radius: 5px 5px 5px 5px;
  padding: 15px 20px 15px 20px;
    }
    .vplay {
        position: absolute;
        right: 0px;
        bottom: 0%;
        /*min-width: 1591px;*/
        min-width: 100%;
        min-height: 100%;
        left: 0%;
        top:0%;
        width:100%;
    }
    .schedule-stage:nth-child(1) > .schedule-stage__title > h3 {
    background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; */
    right: 120%;
    /* color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.schedule-stage:nth-child(3) > .schedule-stage__title > h3 {
  background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; */
    right: 120%;
    /* color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.container-my{
    position: relative;
    width: 500px;
    height: 500px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 12%;
}

}

@media only screen and (min-width: 1919px) {
     .elementor-6066 .elementor-element.elementor-element-d308155 {
    width: 21%;
  }
  
  .logo-size{
    width:273px;
    height:297px;
}

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show .nav-link {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 75rem ;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.register-button {
        font-size: 16px;
        font-weight: bold !important;
        text-transform: uppercase;
        font-style: normal;
        text-decoration: none;
        line-height: 1.3em;
        fill: #FFFFFF;
        color: #FFFFFF;
        background-image: linear-gradient(to right, #15253D, #3e986c);
        border-style: solid;
        border-width: 2px 2px 2px 2px;
        border-color: #3e986c;
        border-radius: 5px 5px 5px 5px;
        padding: 12px 20px 15px 20px;
        margin-left: 100%;
        width: 100%;
        display: block;
    }
    
    .top-gap{
        margin-top: 10%;
    }
    
    .SMN_effect-9 a span {
    position: relative;
    display: inline-block;
    padding: 13px 0px 0px 0px;
    box-shadow: inset 0 3px #2f4351;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    transition: background 0.6s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    width: 100%;
    background: #fff;
    color: #000;
    margin-bottom: 15px;
    height: 60px;
    font-size: 17px;
    line-height: 20px;
    border-radius: 20px;
}
    
    .container{
        max-width: 100%;
    }
    
    .head{
    color: white;
    text-align: left;
    font-size: 70px;
    margin-left: 5%;
    }
    

    .counter-bg {
        background-image: linear-gradient(to right, #15253D, #3E986C);
        margin-top: 0%;
    }
    
    .content h1 {
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 4.56px;
    line-height: 1.13158;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 35px;
        
    }
    
    .content p {
        font-size: 20px;
    }
    
    .gradient-border img {
   margin: 3px;
    width: 100%;
    height: 515px;
    background-color: black;
    border-radius: 2em;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}
    
.my-btn{
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.3em;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #25b474;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #25b474;
  border-radius: 5px 5px 5px 5px;
  padding: 15px 20px 15px 20px;
    }
    .vplay {
        position: absolute;
        right: 0px;
        bottom: 0%;
        /*min-width: 1591px;*/
        min-width: 100%;
        min-height: 100%;
        left: 0%;
        top:0%;
        width:100%;
    }
    .schedule-stage:nth-child(1) > .schedule-stage__title > h3 {
    background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; */
    right: 120%;
    /* color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.schedule-stage:nth-child(3) > .schedule-stage__title > h3 {
  background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; */
    right: 120%;
    /* color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.container-my{
    position: relative;
    width: 500px;
    height: 500px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 12%;
}

}

@media only screen and (max-width: 1024px) {
  
 .logo-size {
    width: 200px;
    /*height: 297px*/;
  }
  
  .navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 0rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 13px;
  padding-left: 5px;
}

.register-button {
    font-size: 12px;
    font-weight: bold !important;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-image: linear-gradient(to right, #15253D, #3e986c);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #3e986c;
    border-radius: 5px 5px 5px 5px;
    padding: 0px 15px 0px 10px;
    margin-left: 10%;
    width: 100%;
    display: block;
  }
  
  .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -3% !important;
    width: 100%;
  }
  
    .head {
        color: white;
        text-align: left;
        font-size: 45px;
        margin-left: 5%;
        margin-top: 0% !important;
    }
  
  
.elementor-3143 .elementor-element.elementor-element-4c005641 > .elementor-container {
    min-height: 564px !important;
    /*background: linear-gradient(to bottom right, rgb(0 0 0 / 80%), rgb(147 0 255 / 50%));*/
  }
  
  .h1-power {
  font-family: "Montserrat", "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 4.56px;
  line-height: 3.13158;
  text-transform: uppercase;
  color: #FFD230;
  font-size: 20px;
  margin: 0px;
}


.container-my {
  position: relative;
  width: 350px !important;
  height: 350px !important;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 12%;
}

.container-my .micon .imgBx {
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #fff;
  box-shadow: 0 0 0 4px #222, 0 0 0 6px #fff;
  transform: rotate(calc(360deg/8 * var(--i)));
  transform-origin: 200px !important;
  z-index: 100;
  overflow: hidden;
}

.content-my::before {
  content: '';
  position: absolute;
  inset: 35px !important;
  border: 4px solid transparent;
    border-right-width: 4px;
    border-right-style: solid;
    border-right-color: transparent;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: transparent;
  border-left: 4px solid #2196f3;
  border-right: 4px solid #fff;
  border-radius: 50%;
  animation: animte_01 5s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.content-my::after{
    content: '';
    position: absolute;
    inset: 50px !important;
    border:4px solid transparent;
    border-left: 4px solid #ff1d50;
    border-right: 4px solid #fff;
    border-radius: 50%;
    animation: animte_02 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.contentBx .card-my .imgBx {
  position: relative;
  width: 75px !important;
  height: 75px !important;
  border-radius: 10px;
  overflow: hidden;
}
  
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}


@media only screen and (max-width: 850px) {
  
.navbar-light .navbar-toggler {
    color: white !important;
    border-color: white !important;
  }
  
    .head {
    color: white;
    text-align: left;
    font-size: 20px;
    margin-left: 5%;
    margin-top: 11% !important;
  }
  
  .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -29% !important;
    width: 100%;
  }
  
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media only screen and (max-width: 768px) {
.preloader-size{
    height: auto;
  width: 250px !important;
  margin-left:-30%;
}

.elementor-6066 .elementor-element.elementor-element-2688577 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -10px;
  margin-bottom: 0px;
  padding: 0 !important;
}

.logo-size {
    width: 130px !important;
    height: auto !important;
}

.bg-light-menu {
  background: #000 !important;
}

.navbar-light .navbar-toggler {
  color: white !important;
  border-color: white !important;
}

.register-button {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.3em;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-image: linear-gradient(to right, #15253D, #3e986c);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #3e986c;
  border-radius: 5px 5px 5px 5px;
  padding: 15px 20px 15px 20px;
  margin-left: 0%;
  width: 50%;
  display: block;
}

.elementor-6066 .elementor-element.elementor-element-2688577 > .elementor-container {
  min-height: 85px !important;
}

.elementor-3143 .elementor-element.elementor-element-4c005641 > .elementor-container {
  min-height: 0px !important;
  /*background: linear-gradient(to bottom right, rgb(0 0 0 / 80%), rgb(147 0 255 / 50%));*/
}

.elementor-6066 .elementor-element.elementor-element-5be7169 {
    width: var(--container-widget-width, 89.443%);
    max-width: 40.443% !important;
    --container-widget-width: 40.443%;
    --container-widget-flex-grow: 0;
    margin-top: -18%;
    position: static;
}

.elementor-6066 .elementor-element.elementor-element-5be7169 .elementor-button {
  font-size: 14px !important;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.3em;
  fill: #FFFFFF;
  color: #FFFFFF;
}

 .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -31%;
    width: 100%;
  }

    .head {
        color: white;
        text-align: left;
        font-size: 20px;
        margin-left: 5%;
        margin-top: 15%;
    }
    
    .m-gap{
        margin-top:-20px !important;
    }
    
    .elementor-3143 .elementor-element.elementor-element-636e4a62 .elementor-heading-title {
        font-size: 12px !important
    }
    
    .elementor-widget:not(:last-child) {
  margin-block-end: 0px !important;
}

.count-down .flipdown {
  margin: 0 !important;
    margin-top: auto;
  width: 350px !important;
  margin-top: -13px !important;
}

.count-title {
    font-size: 20px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.event-background {
  background-image: linear-gradient(45deg, rgba(245, 70, 66, 0.75), rgba(8, 83, 156, 0.75)), url(https://globaleconomiczone.com/images/homepage/bg2.png);
  padding-bottom: 5%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 2700px;
}

.h1-power {
  font-family: "Montserrat", "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0 !important;
  line-height: 0 !important;
  text-transform: uppercase;
  color: #FFD230;
  font-size: 25px !important;
  margin: 20px;
    /*margin-bottom: 0px;*/
}

.container-my {
  position: relative;
  width: 280px !important;
  height: 280px !important;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 12%;
}

.container-my .micon .imgBx {
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #fff;
  box-shadow: 0 0 0 4px #222, 0 0 0 6px #fff;
  transform: rotate(calc(360deg/8 * var(--i)));
  transform-origin: 165px !important;
  z-index: 100;
  overflow: hidden;
}

.content-my::before {
  content: '';
  position: absolute;
  inset: 35px !important;
  border: 4px solid transparent;
    border-right-width: 4px;
    border-right-style: solid;
    border-right-color: transparent;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: transparent;
  border-left: 4px solid #2196f3;
  border-right: 4px solid #fff;
  border-radius: 50%;
  animation: animte_01 5s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.content-my::after{
    content: '';
    position: absolute;
    inset: 50px !important;
    border:4px solid transparent;
    border-left: 4px solid #ff1d50;
    border-right: 4px solid #fff;
    border-radius: 50%;
    animation: animte_02 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.contentBx .card-my .imgBx {
  position: relative;
  width: 75px !important;
  height: 75px !important;
  border-radius: 10px;
  overflow: hidden;
}

}



@media only screen and (max-width: 650px) {
     .bg-light-menu {
    background: #000 !important;
    margin-top: 0.7em;
  }
    
     .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -29% !important;
    width: 100%;
  }
    
    .count-down {
        width: 97%;
        /*height: 362px;*/
    }
    .count-down h1 {
        font-size: 2.5em;
    }
    
    .event-background {
  background-image: linear-gradient(45deg, rgba(245, 70, 66, 0.75), rgba(8, 83, 156, 0.75)), url(https://globaleconomiczone.com/images/homepage/bg2.png);
  padding-bottom: 5%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 2700px;
}.counter-gap {
  padding: 0px;
  width: 50% !important;
  text-align: center;
  align-content: center;
}.SMN_effect-9 a span {
    position: relative;
    display: inline-block;
    padding: 13px 0px 0px 0px;
    box-shadow: inset 0 3px #2f4351;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    transition: background 0.6s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    width: 100%;
    background: #fff;
    color: #000;
    margin-bottom: 15px;
    height: 60px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 20px;
  }.SMN_effect-9 a span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
  content: attr(data-hover);
  -webkit-transform: rotateX(270deg);
  -moz-transform: rotateX(270deg);
  transform: rotateX(270deg);
  -webkit-transition: -webkit-transform 0.6s;
  -moz-transition: -moz-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
  pointer-events: none;
  font-size: 13px;
  line-height: 20px;
  border-radius: 20px;
  overflow: hidden;
}
}

@media only screen and (max-width: 568px) {
    
    
 .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -30% !important;
    width: 100%;
  }    
  .container-custom {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}


@media only screen and (max-width: 480px) {
    
    .pop-icon-text {
  font-size: 16px;
  font-weight: 700;
  line-height: em;
  color: #000;
}

.pop-countdown-box {
  aspect-ratio: auto;
  width: 95px;
  height: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  row-gap: 15px;
  column-gap: 15px;
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 15%);
  border-top-width: 2px;
  border-left-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-top-left-radius: 4%;
  border-top-right-radius: 4%;
  border-bottom-left-radius: 4%;
  border-bottom-right-radius: 4%;
  border-style: solid;
  border-color: #25b474;
  margin-right: 15px;
  transition: box-shadow 0.2sease;
}

.pop-countdown-time {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  color: #25b474;
}

.pop-countdown-lable {
  align-self: center;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  color: #000000;
}
    .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -30% !important;
    width: 100%;
  }        
    
.count-down-no {
  margin-left: 1%;
  margin-bottom: 2%;
}   


.h1-power {
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 0 !important;
    line-height: 40px !important;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 25px !important;
    margin: 20px;
    /* margin-bottom: 0px; */
}
    
  .container-custom {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}


@media only screen and (max-width: 320px) {
    .vplay {
    position: absolute;
    right: 0px;
    bottom: 0%;
    /*min-width: 550px !important;*/
    min-width: 100%;
    min-height: 100%;
    left: 0%;
    top: -30% !important;
    width: 100%;
  }        
    
.count-down-no {
  margin-left: 1%;
  margin-bottom: 2%;
}   


.h1-power {
    font-family: "Montserrat", "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 0 !important;
    line-height: 40px !important;
    text-transform: uppercase;
    color: #FFD230;
    font-size: 25px !important;
    margin: 20px;
    /* margin-bottom: 0px; */
}
    
  .container-custom {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}




.heading {
  line-height: 2;
  font-weight: 900;
}

.section-container {
  padding: var(--padding);
  a {
    color: #ffffff;
  }
}

.schedule-container {
  overflow: auto;
}

.schedule-stage__wrapper {
  display: inline-block;
}

.schedule-stage {
  display: grid;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 2rem;
  padding-bottom: 5rem;
  padding-top: 2rem;
  min-width: 100vw;

  &::after {
    content: "";
    width: var(--padding);
  }
}



.divider {
  position: sticky;
  left: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

.schedule-stage:nth-child(1) > .schedule-stage__title > h3 {
    background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive;     
    right: 120%;
    color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.schedule-stage:nth-child(3) > .schedule-stage__title > h3 {
  background: white;
    /* background: linear-gradient(to right, #eb3349, #f45c43); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    /* font-family: "Megrim", cursive; 
    right: 120%;
    color: #ffb8c2; */
    padding-top: 25px;
    padding-right: 6vw;
    /* font-size: 5vw; */
    white-space: nowrap;
    /* text-transform: uppercase; */
    /* cursor: vertical-text; */
    position: absolute;
    /* display: block; */
    /* height: auto; */
    /* direction: rtl; */
    /* z-index: 11; */
    /* line-height: 81%;*/
}

.schedule-stage__title {
  position: sticky;
  left: 0;
  padding-right: 5rem;
  height: 100%;
  padding-left: var(--padding);
  /*background: linear-gradient(to right, #000000 30%, hsla(0, 0%, 0%, 0));*/
  background-image: linear-gradient(to right, #15253D, #3E986C);
  & > h3 {
    font-weight: 900;
  }
}

.schedule-stage_guide-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  grid-gap: 2rem;
}

.guide-slot {
  color: hsl(0, 0%, 50%);
  & > p {
    margin-bottom: 1rem;
    color: #fff;
  }
}

.guide-slot_card {
  /*background: hsl(0, 0%, 4%);*/
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  padding: 1.6rem;
  cursor: pointer;
  background-image: linear-gradient(to right, #15253D, #3E986C);

  &:hover {
    border-color: hsl(0, 0%, 70%);
  }

  & > h4 {
    /*margin-right: 5rem;*/
    font-size: 1.4rem;
    color: #ffffff;
  }
  
  & > ul {
    /*margin-right: 5rem;*/
    font-size: 1.4rem;
    color: #ffffff;
  }
  
}

.author-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  & > picture {
    display: inline-block;
    inline-size: 2.6rem;
    block-size: 2.6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 1px solid var(--border);
    & > img {
      inline-size: 100%;
      block-size: 100%;
      object-fit: cover;
    }
  }
}



.container-my .micon{
    position:relative;
    left: -50%;
    /*width:100%;
    height:100%;*/
    top:50%;
    display: flex;
    justify-content: center;
    align-items :center;
    cursor: pointer;
    
}

.container-my .micon .imgBx{
    position: absolute;
    width:80px;
    height:80px;
    border-radius: 50%;
    transition: 0.5s;
    border: 1px solid #fff;
    box-shadow: 0 0 0 4px #222,
    0 0 0 6px #fff;
    transform: rotate(calc(360deg/8 * var(--i)));
    transform-origin: 290px;
    z-index: 100;
    overflow:hidden;
    
}

.container-my .micon .imgBx.active{
    box-shadow: 0 0 0 4px #222,
    0 0 0 12px #ff1d50;
}


.container-my .micon .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform: rotate(calc(-360deg/8 * var(--i)));
    transition: 0.5s;
    filter: grayscale(1);
    background: #000;
}

.container-my .micon .imgBx.active img{
    filter: grayscale(0);
}

.content-my{
    position: absolute;
    inset:0;
    overflow:hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-my::before{
    content: '';
    position: absolute;
    inset: 60px;
    border:4px solid transparent;
    border-left: 4px solid #2196f3;
    border-right: 4px solid #fff;
    border-radius: 50%;
    animation: animte_01 5s linear infinite;
    z-index: 1;
    pointer-events: none;
}


@keyframes animte_01
{
    0%
    {
        rotate: 0deg;
    }
    100%
    {
        rotate: 360deg;
    }
}

.content-my::after{
    content: '';
    position: absolute;
    inset: 120px;
    border:4px solid transparent;
    border-left: 4px solid #ff1d50;
    border-right: 4px solid #fff;
    border-radius: 50%;
    animation: animte_02 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}


@keyframes animte_02
{
    0%
    {
        rotate: 360deg;
    }
    100%
    {
        rotate: 0deg;
    }
}

.contentBx{
    position: absolute;
    transform: scale(0);
    transition: 0.5s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contentBx.active{
     transform: scale(1);
     opacity: 1;
     transition-delay:0.5s;
}

.contentBx .card-my{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.contentBx .card-my .imgBx{
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.contentBx .card-my .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contentBx .card-my .textBx{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contentBx .card-my .textBx h2{
    position: relative;
    font-size: 1.25em;
    font-weight: 600;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
}

