@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
  scroll-behavior: smooth;
}

/*------------------------------------POPUP-----------------------------------*/
.popup{
  background-color: white;
  width: 450px;
  padding: 30px 40px;
  position: absolute;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 998;
  border-radius: 8px;
  display: none;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

.popup ion-icon{
  color: red;
  padding: 5px;
  margin-bottom: -1.5vh;
  font-size: 27px;
}

.popup button{
  display: block;
  margin: 0 0 20px auto;
  background-color: transparent;
  font-size: 30px;
  border: none;
  outline: none;
  cursor: pointer;
}

.popup h2{
  font-weight: 500;
  text-transform: uppercase;
  margin-top: -55px;
  font-size: 23px;
  
}

.popup p{
  font-size: 14px;
  text-align: center;
  margin: 20px 0;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.popup a{
  display: block;
  width: 150px;
  position: relative;
  margin: auto;
  text-align: center;
  background: white /*linear-gradient(#4EB9AB, #6EBA77, #5CB05F)*/;
  text-decoration: none;
  color: black;
  padding: 5px 0;
  border-radius: 20px;
  border: 1px solid black;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 14px;
}

.popup a:hover{
  background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
  color: white;
  border: 1px solid lightgreen;
}


/*----------------------------------------------------------------------------------------------------------------------*/

.containerAbt{
  width: 100%;
  min-height: 100vh;
  background-color: white;
  
}

.containerAbt .title{
 width: 100%;
 display: flex;
 align-items: center; 
 justify-content: center;
 text-transform: uppercase;
 color: black;
 padding: 20vh 0;
 padding-bottom: 4vh;
 
}

.containerAbt .title h1{
  font-weight: 500;
  font-size: 34px;
}

.containerAbt p{
  margin-top: -20px;
  text-align: center;
}

.content{
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 30px auto;
  padding: 50px;
  margin-top: -10px;
}

.content .desc{
 /* box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);*/
  background-color: white;
  padding: 25px 25px;
}

.content .desc h2{
  color: black;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
}

.content .desc p {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.5;
  color: black;
  font-weight: 400;
  text-align: left;
 
}

.containerAbt{
  margin-bottom: -10vh;
}

.desc li{
  list-style: circle;
  margin-top: 1vh;
  font-size: 15px;
}

.desc ul li{
  margin-left: 15px;
  list-style: "- ";
}

.desc li:nth-child(7){
  font-weight: 600;
}


.image-sec img{
  width: 100%;
  height: 80vh;
}


/*-----------------------------------------------------------------TEMPLATES----------------------------------------------------*/

.containertem{
	max-width: 100vw;
	margin:auto;
}

.row{
	display: flex;
	flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  align-items: center;
}

img{
	max-width: 100%;
	vertical-align: middle;
}

/*.gallery*/
.gallery{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-color: white;
	padding: 100px 0;
  margin-top: -20vh;
}

.gallery .gallery-filter{
	padding: 0 15px;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.gallery .gallery-filter .filter-item{
	color: gray;
	font-size: 18px;
	text-transform: uppercase;
	display: inline-block;
	margin:0 10px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	line-height: 1.2;
	transition: all 0.3s ease-in-out;
}

.gallery .gallery-filter .filter-item.active{
	color: green;
	border-color : green;
}

.gallery .gallery-item{
	width: calc(100% / 4);
	padding: 15px;
}

/*.gallery .gallery-item:hover{
	filter: grayscale(100%);
}

.gallery .gallery-item span{
  display: none;
  position: absolute;
  top: 20vh;
  left: 10vw;
}

.gallery .gallery-item:hover span{
  display: block;
}

.gallery .gallery-item span input[type="button"]{
  width: 10vw;
  height: 5vh;
  border-radius: 5px;
  background-color: black;
  color: white;
  border: black;
  cursor: pointer;
}*/


.gallery .gallery-item-inner img{
	width: 100%;
}

.gallery .gallery-item.show{
	animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.gallery .gallery-item.hide{
	display: none;
}

/*responsive*/
@media(max-width: 991px){
	.gallery .gallery-item{
		width: 50%;
	}
}
@media(max-width: 767px){
    .gallery .gallery-item{
		width: 100%;
	}	
	.gallery .gallery-filter .filter-item{
		margin-bottom: 10px;
	}
}

/*-------------------------------------------------GLOWING BOX--------------------------------------*/

.containerload{
    width: 100%;
    min-height: 40vh;
    display: flex;
    background-color: white;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
  }
  
  .loader{
    position: relative;
    width: 100vw;
    height: 20vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    color: black;
    overflow: hidden;
   font-size: 20px;
   margin-top: 1vh;
  }
  
  .loader span{
    position: absolute;
    display: block;
  }
  
  .loader span:nth-child(1){
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #4EB9AB, #6EBA77, #5CB05F);
    animation: animate1 2s linear infinite;
    animation-delay: 0s;
  }
  @keyframes animate1{
    0%
    {
        left: -100%;
    }
    50%, 100%
    {
        left: 100%;
    }
  }
  
  .loader span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(270deg, transparent, #4EB9AB, #6EBA77, #5CB05F);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;
  }
  @keyframes animate3{
    0%
    {
        right: -100%;
    }
    50%, 100%
    {
        right: 100%;
    }
  }
  
  .loader span:nth-child(2){
    top: -100%;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #4EB9AB, #6EBA77, #5CB05F);
    animation: animate2 2s linear infinite;
    animation-delay: 0.5s;
  }
  @keyframes animate2{
    0%
    {
        top: -100%;
    }
    50%, 100%
    {
        top: 100%;
    }
  }
  
  .loader span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #4EB9AB, #6EBA77, #5CB05F);
    animation: animate4 2s linear infinite;
    animation-delay: 1.5s;
  }
  @keyframes animate4{
    0%
    {
        bottom: -100%;
    }
    50%, 100%
    {
        bottom: 100%;
    }
  }
  
  .loader h2{
    color: black;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    border-right: 1px solid #03e9f4;
    animation: typing 5s steps(16) infinite;
    margin-right: 2vh;
    font-weight: 500;
  }
  
  
  .loader:hover h2{
    color: #111;
    border-right: 1px solid #111;
  }
  @keyframes typing{
    0%, 90%, 100%
    {
        width: 0px;
    }
    30%, 60%
    {
        width: 200px;
    }
  }


/*-----------------------------------------------BOTTOM SECTION------------------------------------------------*/

#join{
  background-color: white;
  padding-top: 4vh;
  padding-bottom: 5vh;
  margin-top: -5vh;
}

.bottominput{
 
  width: 100%;
  margin-top: -2vh;
  margin-bottom: 2vh;
  display: inline-block;
  text-align: center;
}

.bottominput input{
height: 5vh;
border-radius: 5px;
margin-right: 5px;
text-align: center;
}

.bottom{
  margin: 0 auto;
}


#join .btn-trial2{
  width: 15vw;
  text-transform: uppercase;
  font-weight: 400;
  background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
  color: white;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  padding: 6px;
  font-size: 90%;

  margin-bottom: 3vh;
  text-decoration: none;
}


#join h1{
  font-size: 26px;
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 3vh;
    text-transform: uppercase;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
 
  .containerAbt .content{
    
    grid-template-columns: repeat(1, 1fr);
    
}

    .image-sec{
      margin-top: -10vh;
    }

    .containerload{
      margin-top:  -30vh;
    }

    .content{
      margin-top: -5vh;
      
    }

  .loader h2{
        font-size: 28px;
      }
    
      .loader p{
        font-size: 20px;
      }

      .btn-trial2{
        min-width: fit-content;
        padding-left: 10px;
        padding-right: 10px;
        margin: 10px;
        margin-bottom: 15px;
      }
}

@media screen and (max-width: 720px) {
  
  .containerAbt .content{
    
    grid-template-columns: repeat(1, 1fr);
    
}

  .containerAbt .title h1{
      font-size: 22px;
  }

  #join h1{
    font-size: 22px;
  }

  .btn-trial2{
    min-width: 40vw;
    margin: 10px;
    margin-bottom: 15px;
  }

  .content .desc h2{
      font-size: 95%;
  }

  .content .desc li{
      font-size: 14px;
  }

  .content .image-sec img{
      max-height: 220px;
  }

  .image-sec{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
}

@media screen and (max-width: 800px) {
   
  .content{
    
    grid-template-columns: repeat(1, 1fr);
    
}

    .loader h2{
      font-size: 17px;
    }
  
    .loader p{
      font-size: 14px;
    }


  }