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

*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

body{
  background: linear-gradient(#65dfc9, #6cdbeb);
  margin: 0;
  z-index: 2000;
}



section{
    position: relative;
    top: 50%;
    width: 60%;
    min-height: 78vh;
    padding: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 0.5s;
    margin: 0;
    z-index: 10;
}


/*.preload {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
  text-align: center;
  z-index: -1000;
}

/*.preload-finish {
  opacity: 0;
  pointer-events: none;
}

.plane {
  width: 50%;
  height: 50%;
  animation: airplane 1s ease infinite alternate;
}

.cloud1,
.cloud2,
.cloud3 {
  height: 100px;
  position: absolute;
  z-index: -1;
}

.cloud1 {
  top: 25%;
  transform: translate(100%, -25%);
  animation: clouds 13s ease infinite;
}

.cloud2 {
  top: 50%;
  transform: translate(100%, -50%);
  animation: clouds 20s ease infinite;
}

.cloud3 {
  top: 75%;
  transform: translate(100%, -75%);
  animation: clouds 16s ease infinite;
}

@keyframes airplane {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(50px);
  }
}

@keyframes clouds {
  from {
    right: 0%;
  }
  to {
    right: 130%;
  }
}
h1 {
  color: white;
  font-size: 60px;
  font-family: sans-serif;
}*/


.background::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(#f3f5f5, #9c27b0);
    border-radius: 50%;
    transform: translate(-150px, -120px);
}

.background::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(#ff2871, rgba(255, 40, 113, 0.2));
    border-radius: 50%;
    transform: translate(250px, 150px);
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header .logo{
    position: relative;
    left: 5%;
    color: #ff5e8e;
    display: inline-block;
    font-size: 2em;
    text-decoration: none;
    font-weight: 800;
    opacity: 0;
    animation: slide_left 0.5s linear forwards;
    animation-delay: 0.2s;
}
@keyframes slide_left{
    0%
    {
        transform: translateX(-100px);
        opacity: 0;
    }
    100%
    {
        transform: translateX(0px);
        opacity: 1;
    }
}

header ul{
    display: flex;
}

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

header ul li a{
    display: inline-block;
    color: #ff2871;
    font-weight: 600;
    font-size: 1.1em;
    margin-left: 80px;
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    user-select: none;
    opacity: 0;
    animation: slide_top 0.5s linear forwards;
    animation-delay: calc(0.2 * var(--i));
}

@keyframes slide_top{
    0%
    {
        transform: translateY(100px);
        opacity: 0;
    }
    100%
    {
        transform: translateY(0px);
        opacity: 1;
    } 
}

header ul li a.active,
header ul li a:hover{
    background: #0169b2;
    color: #fff;
    border-radius: 30px;
}

.content{
    position: relative;
}

.content .textBox{
    position: relative;
    max-width: 550px;
}

.content .textBox h2{
    color: #426696;
    font-size: 3.5em;   
    margin-bottom: 10px;
    line-height: 1.5em;
    font-weight: 800;
    opacity: 0;
    animation: slide_right 0.5s linear forwards;
    animation-delay: .5s;
}

.content .textBox li{
  opacity: 0;
}
@keyframes slide_right{
    0%
    {
        transform: translateX(100px);
        opacity: 0;
    }
    100%
    {
        transform: translateX(0px);
        opacity: 1;
    }
}
section .content .textBox p{
    font-size: 1.2em;
    color: #fff;
    opacity: 0;
    animation: slide_left 0.5s linear forwards;
    animation-delay: .8s;
}

.content .textBox a{
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1.2em;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0;
    animation: slide_top 0.5s linear forwards;
    animation-delay: 1s;
}

.sci{
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sci li{
    list-style: none;
}

.sci li a{
    position: relative;
    display: inline-block;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5 ease;
    text-decoration: none;
}

.sci li i{
    color: #fff;
    transform: scale(1.5);
}

.sci li img{
    filter: invert(1);
    transform: scale(0.5);
}

.sci li a:hover{
    background: #ff5e8e;
    transform: translateY(-10px);
}

.cake{
    position: absolute;
    margin-right: 80px;
    bottom: 0;
    right: 0;
    height: 800px;
    width: 800px;
    max-width: 900px;
    opacity: 1;
    transition: .5s;
}

.halo{
  position: absolute;
  height: 500px;
  width: 430px;
  max-width: 600px;
  opacity: 1;
  transition: .5s;
  border-radius: 10px;
  size: cover;
}

.mostPop{
  justify-content: center;
  align-items: center;
  display: flex;
  height: 550px;
  width: 450px;
  background: #fff;
  position: absolute;
  margin-right: 80px;
  bottom: 5%;
  right: 0%;
  border-radius: 20px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.mostPop header{
  position: absolute;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right top, #65dfc9, #6cdbeb);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
  border-radius: 15px 0 15px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.animation{
  position: absolute;
  margin-right: 80px;
  bottom: 0;
  right: 0;
  height: 800px;
  width: 800px;
  max-width: 900px;
  opacity: 1;
  transition: .5s;
  fill: #fff;
}



@media (max-width: 1500px){
    section{
        padding: 150px 20px;
    }
    header{
        padding: 20px;
    }
    .navigation{
        display: none;
    }
    .navigation.active{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #161623;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .box.active{
        display: none;
    }

    header ul li{
        margin: 10px 0;
    }
    header ul li a{
        font-size: 1.5em;
        margin-left: 0px;
    }
    .toggle{
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: #0169b2 url(images/menu.png);
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 1000;
        border-radius: 50%;
    }
    .toggle.active{
        background: #0169b2 url(images/close.png);
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .cake{
        max-width: 600px;
        max-height: 600px;
    }

    .desktop{
      max-width: 600px;
      max-height: 600px;
    }

    .content .textBox h2{
        font-size: 2.5em;
    }
    .content .textBox p{
        font-size: 1.2em;
    }
}
.grid{
    margin: 80px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    align-items: center;
}

.grid > article{
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    border: none;
    text-align: center;
    border-radius: 20px;
    width: 250px;
    transition: transform;
}

.grid > article:hover{
    transform: translateY(5px);
}

.grid > article img{
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

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

.text h3{
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.text button{
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    border-radius: 20px;
    border: none;
    color: #fff;
    padding: 10px;
    width: 50%;
    font-weight: 800;
    text-transform: uppercase;

}

.text p{
  color: #fff;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 1500px){
  .grid{
      grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1300px){
  .grid{
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px){
    .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px){
    .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .gird > article{
        text-align: center;
    }
}

.nape{
  display: flex;
}

.accordion{
  position: relative;
  left: 25%;
  display: flex;
  max-width: 1010px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  padding: 45px 90px 45px 60px;
}
.accordion .image-box{
  height: 360px;
  width: 300px;
}
.accordion .image-box img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.accordion .accordion-text{
  width: 60%;
}
.accordion .accordion-text .title{
  font-size: 35px;
  font-weight: 600;
  color: #7d2ae8;
  font-family: 'Fira Sans', sans-serif;
}
.accordion .accordion-text .faq-text{
  margin-top: 25px;
  height: 263px;
  overflow-y: auto;
}
.faq-text::-webkit-scrollbar{
  display: none;
}
.accordion .accordion-text li{
  list-style: none;
  cursor: pointer;
}
.accordion-text li .question-arrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-text li .question-arrow .question{
  font-size: 18px;
  font-weight: 500;
  color: #595959;
  transition: all 0.3s ease;
}
.accordion-text li .question-arrow .arrow{
  font-size: 20px;
  color: #595959;
  transition: all 0.3s ease;
}
.accordion-text li.showAnswer .question-arrow .arrow{
  transform: rotate(-180deg);
}
.accordion-text li:hover .question-arrow .question,
.accordion-text li:hover .question-arrow .arrow{
  color: #7d2ae8;
}
.accordion-text li.showAnswer .question-arrow .question,
.accordion-text li.showAnswer .question-arrow .arrow{
  color: #7d2ae8;
}
.accordion-text li .line{
  display: block;
  height: 2px;
  width: 100%;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
}
.accordion-text li p{
  width: 92%;
  font-size: 15px;
  font-weight: 500;
  color: #595959;
  display: none;
}
.accordion-text li.showAnswer p{
  display: block;
}

@media (max-width: 994px) {
  .nape{
    padding: 40px 20px;
  }
  .accordion{
    max-width: 100%;
    padding: 45px 60px 45px 60px;
  }
  .accordion .image-box{
    height: 360px;
    width: 220px;
  }
  .accordion .accordion-text{
    width: 63%;
  }
}
@media (max-width: 820px) {
  .accordion{
    flex-direction: column;
  }
  .accordion .image-box{
    height: 360px;
    width: 300px;
    background: #7d2ae8;
    width: 100%;
    border-radius: 25px;
    padding: 30px;
  }
  .accordion .accordion-text{
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 538px) {
  .accordion{
    padding: 25px;
  }
  .accordion-text li p{
    width: 98%;
  }
}


.main{
  position: absolute;
  top: 25%;
  left: 30%;
	height: 60%;
	width: 80%;
	display: flex;
	align-items: center;
    justify-content: center;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 10px;
}
.main button{
	padding: 10px 12px;
  margin: 0 10px;
  position: relative;
  top: 50%;
  right: 50%;
}
.main #logo{
	position: absolute;
	top: 10px;
	left: 30px;
	font-size: 25px;
	color: #fff;
}
.main #logo i{
	margin-right: 15px;
}

/* left & right part */
.right,.left{
	position: relative;
	height: 100%;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* song image */

/* both range slider part */
input[type="range"] {
	-webkit-appearance: none;
	width: 50%;
	outline: none;
	height: 2px;
	margin: 0 15px;
}
input[type="range"]::-webkit-slider-thumb{
	-webkit-appearance: none;
	height: 20px;
	width: 20px;
	background: linear-gradient(to right top, #65dfc9, #6cdbeb);
	border-radius: 50%;
	cursor: pointer;
}
.right input[type=range]{
	width: 40%;
}


/* volume part */
.left .volume{
	position: absolute;
	bottom: 10%;
	left: 50%;
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.left .volume p{
	font-size: 15px;
}
.left .volume i{
	cursor: pointer;
	padding: 8px 12px;
	background: linear-gradient(to right top, #65dfc9, #6cdbeb);
}
.left .volume i:hover{
	background: rgba(245,245,245,0.1);
}
.volume #volume_show{
	padding: 8px 12px;
	margin: 0 5px 0 0;
	background: rgba(245,245,245,0.1);
}



/* right part */
 .right .middle{
 	width: 100%;
    display: flex;
	align-items: center;
	justify-content: center;
}
.right .middle button{
	border: none;
	height: 70px;
	width: 70px;
	border-radius: 50%;	
    display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	transition: 0.5s;
	background: rgba(255,255,255,0.1);
}
.right #title{
	position: absolute;
	top: 60px;
	left: 0%;
	transform: translateX(-50%);
	text-transform: capitalize;
	color: #fff;
	font-size: 35px;
}
.right #artist{
	position: absolute;
	top: 110px;
	left: 0%;
	transform: translateX(-50%);
	text-transform: capitalize;
	color: #fff;
	font-size: 18px;
}
.right .duration{
	position: absolute;
	bottom: 20%;
	left: 0%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 20px;
	margin-top: 40px;
}
.right .duration p{
	color: #fff;
	font-size: 15px;
	margin-left: 20px;
}
.right #auto{
  position: absolute;
  top: 20%;
  right: 83%;
  width: 30%;
	font-size: 18px;
	cursor: pointer;
	margin-top: 45px;
	border: none;
	padding: 10px 14px;
	color: #fff;
	background: rgba(255,255,255,0.2);
	outline: none;
	border-radius: 10px;
}
#play{
	background: linear-gradient(to right top, #65dfc9, #6cdbeb);
}
.right button:hover{
	background: linear-gradient(to right top, #65dfc9, #6cdbeb);
}
.right i:before{
	color: #fff;
	font-size: 20px;
}

.right .show_song_no{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #fff;
  border-radius: 5px;
  background: rgba(255,255,255,0.2);
}
.right .show_song_no p:nth-child(2){
	margin: 0 5px;
}
.box{
    position: relative;
}
.box .container{
    position: relative;
    width: 400px;
    min-height: 400px;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1200px){
  .main{
    height: 40%;
    width: 100%;
  }
}

#dycalendar{
    width: 100%;
    padding: 20px;
}

#dycalendar table{
    width: 100%;
    margin-top: 40px;
    border-spacing: 5px;
}

#dycalendar table tr:nth-child(1) td{
    background: #fff;
    color: #111;
    border-radius: 4px;
    font-weight: 600;
}

#dycalendar table td{
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
}

#dycalendar table td:hover{
    background: #fff;
    color: #111 !important;
}
.dycalendar-month-container
.dycalendar-header .dycalendar-prev-next-btn.prev-btn{
     background: #fff;
     color: #111;
     width: 44px;
     height: 38px;
     left: 4px;
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 600;
}
.dycalendar-month-container .dycalendar-header
.dycalendar-prev-next-btn.next-btn{
    background: #fff;
    color: #111;
    width: 44px;
    height: 38px;
    right: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

.dycalendar-month-container .dycalendar-span-month-year{
    color: #fff;
    font: 1.5em;
    font-weight: 600;
}

.contact-form section-gap .wrapper {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .contact-form section-gap .wrapper {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .contact-form section-gap .wrapper {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .contact-form section-gap .wrapper {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .contact-form section-gap .wrapper {
      max-width: 1140px;
    }
  }
  
  
  .d-grid {
    display: grid;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  button,
  select {
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }
  
  button,
  .btn,
  select {
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  iframe {
    border: none;
  }
  
  h1,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
    color: #fff;
    padding: 0 0 50px 0;
  }
  
  p {
    margin: 0;
    padding: 0;
  }
  
  /* Section top bottom gap */
  .section-gap {
    padding: 4.5rem 0;
  }
  
  @media screen and (max-width:767px) {
    .section-gap {
      padding: 3.5rem 0;
    }
  }
  
  @media screen and (max-width:480px) {
    .section-gap {
      padding: 3rem 0;
    }
  }
  
  /* / Section top bottom gap */
  
  /* title-styling */
  h3.global-title {
    font-size: 40px;
    line-height: 45px;
    color: #16191e;
    margin-bottom: 50px;
    text-transform: capitalize;
  }
  
  @media screen and (max-width:767px) {
    h3.global-title {
      font-size: 40px;
      line-height: 45px;
    }
  }
  
  @media screen and (max-width:600px) {
    h3.global-title {
      font-size: 35px;
      line-height: 40px;
    }
  }
  
  @media screen and (max-width:500px) {
    h3.global-title {
      font-size: 30px;
      line-height: 35px;
    }
  }
  
  /* / title-styling */
  /* simple contact form */
  .contact-form {
    border-radius: 10px;
  }
  
  .field {
    backdrop-filter: blur(25px);
    border-radius: 30px;
    margin-bottom: 20px;
  }
  
  .form-mid {
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    padding: 1.5em;
    border-radius: 10px;
  }
  
  .form-mid form input,
  .form-mid form textarea {
    outline: none;
    border: none;
    font-size: 16px;
    padding: 12px 15px;
    width: 92%;
    height: 55px;
    font-weight: 800;
    backdrop-filter: blur(25px);
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    border-radius: 10px;
  }

  .form-mid form input.placeholder,
  .form-mid form textarea.placeholder{
      color: #000;
      background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(25px);
  }
  
  .form-mid form textarea {
    color: #000;
    resize: none;
    min-height: 140px;
  }
  
  .form-mid form input:focus,
  .form-mid form textarea:focus {
    outline: none;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    box-shadow: none;
  }
  
  button.btn-contact {
    border: none;
    font-size: 16px;
    padding: 15px 30px;
    margin: 20px auto 0;
    color: #fff;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    border-color: #fff;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 10px;
  }
  
  @media(max-width: 568px) {
    .form-mid {
      padding: 1.5rem;
    }
  }

  .cont{
    width: 360px;
    padding: 15px;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 12px;
  }
  .cont input[type="text"]{
    width: 100%;
    height: 100px;
    margin: 0 3px;
    outline: none;
    border: none;
    color: #fff;
    font-size: 20px;
    text-align: right;
    padding-right: 10px;
    background: transparent;
  }
  .cont input[type="button"]{
    height: 65px;
    color: #fff;
    width: calc(100% / 4 - 5px);
    background: transparent;
    border-radius: 12px;
    margin-top: 15px;
    outline: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .cont input[type="button"]:hover{
    background: rgba(255, 255, 255, 0.1);
  }

  ::selection{
    color: #fff;
    background: #9b27ca;
  }
  .rapper{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 480px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 15px;
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1.2);
    transition: opacity 0.2s 0s ease-in-out,
                transform 0.2s 0s ease-in-out;
  }
  .rapper .cont,
  .cont .warn-icon,
  .warn-icon .icon{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rapper .cont{
    flex-direction: column;
  }
  .cont .warn-icon{
    height: 115px;
    width: 115px;
    border-radius: 50%;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
  }
  .warn-icon .icon{
    height: 100px;
    width: 100px;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: inherit;
  }
  .warn-icon .icon i{
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
  }
  .cont h2{
    color: #fff;
    margin-top: 35px;
    font-size: 32px;
  }
  .cont p{
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
  }
  .btn{
    height: 57px;
    width: 223px;
    margin-top: 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
  }
  .btn .bg-layer{
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    transition: all 0.4s ease;
  }
  .btn:hover .bg-layer{
    left: 0;
  }
  .cont button{
    position: relative;
    height: 100%;
    width: 100%;
    background: none;
    font-size: 18px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
  }


  .rap{

    border-radius: 10px;
    position: fixed;
    left: 5%;
    top: 5%;
    width: 100%;
  }
  .rap nav{
    position: fixed;
    top: 5%;
    left: 5%;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
  }
  nav .conte{
    position: fixed;
    top: 5%;
    left: 3%;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  nav .conte .links{
    margin-left: 80px;
    display: flex;
  }
  .conte .logo a{
    color: #ff5e8e;
    font-size: 30px;
    font-weight: 800;
  }
  .conte .links li{
    list-style: none;
    line-height: 70px;
  }
  .conte .links li a,
  .conte .links li label{
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .conte .links li label{
    display: none;
  }
  .conte .links li a:hover,
  .conte .links li label:hover{
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 10px;
  }
  .rap .search-icon,
.rap .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.rap .menu-icon{
    display: none;
  }

  .rap #show-search:checked ~ .search-icon i::before{
    content: "\f00d";
  }
  .rap #show-search:checked ~ .search-box{
    opacity: 1;
    pointer-events: auto;
  }
  .rap input[type="checkbox"]{
    display: none;
  }
  
  /* Dropdown Menu code start */
  .conte .links ul{
    position: absolute;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    top: 80px;
    opacity: 0;
    visibility: hidden;
  }
  .conte .links li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
  .conte .links ul li a{
    display: block;
    width: 75%;
    line-height: 30px;
    border-radius: 0px!important;
  }
  .conte .links ul ul{
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
  }
  .conte .links ul li{
    position: relative;
  }
  .conte .links ul li:hover ul{
    top: 0;
  }

  @media (max-width: 1250px){
    .rap nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .conte .links{
      margin-left: 30px;
    }
    .conte .links li a{
      padding: 8px 13px;
    }
    .rap .search-box{
      max-width: calc(100% - 100px);
    }
    .rap .search-box input{
      padding: 0 100px 0 15px;
    }
  }
  @media (max-width: 900px){
    .rap .menu-icon{
      display: block;
    }
    .rap #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .conte .links{
      display: block;
      position: fixed;
      background: linear-gradient(to right top, #65dfc9, #6cdbeb);
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
      height: 100%;
      width: 100%;
      top: 100px;
      left: -100%;
      margin-left: 0;
      max-width: 350px;
      overflow-y: auto;
      padding-bottom: 100px;
      transition: all 0.3s ease;
    }

    nav #show-menu:checked ~ .conte .links{
      left: 0%;
    }
    .conte .links li{
      margin: 15px 20px;
    }
    .conte .links li a,
    .conte .links li label{
      line-height: 40px;
      font-size: 20px;
      display: block;
      padding: 8px 18px;
      cursor: pointer;
    }

    .conte .links li a.desktop-link{
      display: none;
    }
    /* dropdown responsive code start */
    .conte .links ul,
    .conte .links ul ul{
      position: static;
      opacity: 1;
      visibility: visible;
      background: none;
      max-height: 0px;
      overflow: hidden;
    }
    .conte .links #show-features:checked ~ ul,
    .conte .links #show-services:checked ~ ul,
    .conte .links #show-items:checked ~ ul{
      max-height: 100vh;
    }
    .conte .links ul li{
      margin: 7px 20px;
    }
    .conte .links ul li a{
      font-size: 18px;
      line-height: 30px;
      border-radius: 5px!important;
    }
  }
  @media (max-width: 400px){
    .rap nav{
      padding: 0 10px;
    }
    .conte .logo a{
      font-size: 27px;
    }
    .rap .search-box{
      max-width: calc(100% - 70px);
    }
    .rap .search-box .go-icon{
      width: 30px;
      right: 0;
    }
    .wrarappper .search-box input{
      padding-right: 30px;
    }
  }

  .hello{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0;
  }
  
  .boxx {
    position: relative;
    width: 400px;
    height: 600px;
    margin: 15px;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    box-shadow: 0 30px 30px rgba(0,0,0,.5);
    border-radius: 10px;
  }
  
  .boxx .imgBx {
    position: relative;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .boxx .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 10px;
  }
  
  .boxx:hover .imgBx img {
    opacity: 0;
  }
  
  .boxx .cont-ent {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    transition: 0.5s;
    overflow: hidden;
    border-radius: 10px;
  
    padding: 15px;
    box-sizing: border-box;
  }
  
  .boxx:hover .cont-ent {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
  }
  
  .boxx .cont-ent h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #fff;
  }
  
  .boxx .cont-ent p {
    margin: 10px 0 0;
    padding: 0;
    opacity: 0;
    line-height: 1.2em;
    transition: 0.5s;
    text-align: justify;
    color: #fff;
    font-weight: 600;
  }
  
  .boxx:hover .cont-ent p {
    opacity: 1;
    transition-delay: 0.5s;
    color: #fff;
  }