@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;
}

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

.containerindex .title{
 width: 100%;
 display: flex;
 align-items: center; 
 justify-content: center;
 text-transform: uppercase;
 font-size: 22px;
 color: black;
 padding: 20vh 0;
 padding-bottom: 3vh;
}

.containerindex h2{
  font-weight: 500;
  text-align: center;
}


.containerindex .title h1::after{
  content: "";
  height: 6px;
  width: 180px;
  background-color: black;
  border-radius: 6px;
  position: relative;
  display: block;
  margin: auto;
}

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

.content .desc{
  /*box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);*/
  background-color: white;
  border-radius: 10px;
  height: 50vh;
  padding: 25px 25px;
  opacity: 0.95;
  margin-top: 2vh;
  text-align: center;
}


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

.content .desc .ttext{
color: gray;
margin-top: -1vh;
font-size: 0.8em;
}

.emailinput{

   width: 100%;
   margin-top: 10px;
   display: inline-block;
   text-align: center;
}

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

.btn-trial{
  width: 15vw;
  font-weight: 400;
  background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
  color: white;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  padding: 7px;
  font-size: 90%;
  margin: 0 auto;
  margin-bottom: 3vh;
  text-decoration: none;
  text-align: center;
  
}

.image-sec img{
  width: 90%;
  height: 70vh;
  margin-left: 5vw;
  margin-top: -5vh;
  
}

/*---------------------------------------Headings------------------------------------------------------*/

.headings .row h2{
  font-weight: 500;
  padding: 15px;
  text-transform: uppercase;
}

.headings{
  color: black;
  margin-top: 5vh;
}

.wavy, .wavy2, .wavy3, .wavy4, .wavy5{
  position: relative;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  
}

.wavy h2{
  position: relative;
  display: inline-block;
  color: black;
  text-transform: uppercase;
  animation: animate 2.1s ease-in-out infinite;
  animation-delay: calc(0.3s);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

.wavy2 h2{
  position: relative;
  display: inline-block;
  color: black;
  text-transform: uppercase;
  animation: animate 2.13s ease-in-out infinite;
  animation-delay: calc(0.3s);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

.wavy3 h2{
  position: relative;
  display: inline-block;
  color: black;
  text-transform: uppercase;
  animation: animate 2.15s ease-in-out infinite;
  animation-delay: calc(0.31s);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

.wavy4 h2{
  position: relative;
  display: inline-block;
  color: black;
  text-transform: uppercase;
  animation: animate 2.17s ease-in-out infinite;
  animation-delay: calc(0.32s);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

.wavy5 h2{
  position: relative;
  display: inline-block;
  color: black;
  text-transform: uppercase;
  animation: animate 2.19s ease-in-out infinite;
  animation-delay: calc(0.32s);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}

@keyframes animate{

  0%{
    transform: translateY(0px);
    background:  linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
    color: white;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
  }
  20%{
    transform: translateY(-20px);
  }
  40%, 100%{
    transform: translateY(0px);
  }

}

/*------------------------------------------------Templates Section-----------------------------------------*/

.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;
	}
}


 /*------------------------------------------SELL ANYWHERE-----------------------------------------------------*/
  .containersell{
    height: 25vh;
    background: white;
    margin-bottom: 5vh;
    margin-top: -5vh;
  }

 .containersell .heading{
  width: 100%;
  display: flex;
  align-items: center; 
  justify-content: center;
  text-transform: uppercase;
  font-size: 22px;
  color: black;
  background: white;
  padding: 10vh 0;
 
}

.containersell h2{
  text-align: center;
  margin-top: -5vh;
  text-transform: uppercase;
  font-weight: 500;
}

.containersell p{
  color: black;
  font-size: 16px;
  margin-top: -10vh;
  text-align: center;
  margin-bottom: 5vh;
}

.card-sec{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1vh;

  background-size: cover;
  margin-bottom: -15vh;
  padding-bottom: 10vh;
}

.card {
  display: grid;
  grid-template-columns: 270px;
  grid-template-rows: 210px 210px;
  grid-template-areas: "image" "text";
  border-radius: 18px;
  background: white;
  color:black;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
  font-family: roboto;
  text-align: justify;
  margin:40px;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  margin-bottom: 10vh;
  margin-top: -3.5vh;
  height: 55vh;
}

.js-tilt-glare {
  border-radius: 18px;
}

.card-text {
  grid-area: text;
  margin: 25px;
  transform: translateZ(30px);
  text-align: center;
}

.card-text h2 {
  margin-top: -6vh;
  font-size:22px;
  text-align: center;
  text-transform: capitalize;
}

.card-text a {
  color: black;
  text-decoration: none;
  font-size:15px;
  font-weight: 400;
  position: absolute;
  bottom: 10vh;
  left: 3.5vw;
}

.card-text a:hover{
  color: green;
}


.card-image.card1 {
  background: url("../images/spiral.png") no-repeat;
  background-size: 40%;
  background-position: center;
  overflow: hidden;
}

/*card2*/
.card-image.card2 {
  background: url("../images/Shopespot-homepage-icon2.png") no-repeat;
  background-size: 70%;
  background-position: center;
  overflow: hidden;
}


/*card3*/
.card-image.card3 {
  background: url("../images/Shopespot-homepage-icon3.png") no-repeat;
  background-size: 70%;
  background-position: center;
  overflow: hidden;
}

/*card4*/
.card-image.card4 {
  background: url("../images/Shopespot-homepage-icon4.png") no-repeat;
  background-size: 70%;
  background-position: center;
  overflow: hidden;
}

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

.containerload{
  width: 100%;
  min-height: 40vh;
  display: flex;
  background-color: white;
  justify-content: center;
  align-items: center;
}

.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;
}

.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: black;
  border-right: 1px solid #111;
}
@keyframes typing{
  0%, 90%, 100%
  {
      width: 0px;
  }
  30%, 60%
  {
      width: 200px;
  }
}

/*------------------------------------------------DASHBOARD-----------------------------------------*/
.containermanage{
  width: 100%;
  min-height: 100vh;
  background-color: white;
  margin-top: -25vh;
}

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

.containermanage .title h1::after{
  content: "";
  height: 6px;
  width: 180px;
  background-color: black;
  border-radius: 6px;
  position: relative;
  display: block;
  margin: auto;
}

.containermanage h2{
  font-weight: 500;
}

.content .desc2{
  background-color: white;
  border-radius: 10px;
  height: 30vh;
  padding: 25px 25px;
  opacity: 0.95;
  margin-top: 2vh;
  text-align: left;
}

.content .desc2 p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: black;
  font-weight: 500;
}

.containermanage img{
  height: 60vh;
  width: 70vw;
  margin-left: -2vw;
}

.containermanage p{
  margin-bottom: 5vh;
}

.btn-exp{
  width: 23vw;
  font-weight: 400;
  background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);;
  color: white;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px;
  font-size: 90%;
  margin: 0 auto;
  margin-bottom: 3vh;
  text-decoration: none;
  text-align: center;
}


/*------------------------------------------------POS-----------------------------------------*/

.containerpos{
  width: 100%;
  min-height: 100vh;
  background-color: white;
  margin-top: -15vh;
}

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

.containerpos h2{
  font-weight: 500;
}

.containerpos .title h1::after{
  content: "";
  height: 6px;
  width: 180px;
  background-color: black;
  border-radius: 6px;
  position: relative;
  display: block;
  margin: auto;
  font-weight: 500;
}

.containerpos img{
  height: 70vh;
  margin-top: -8vh;
}

.btn-pos{
  width: 20vw;
  font-weight: 400;
  background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);;
  color: white;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px;
  font-size: 90%;
  margin: 0 auto;
  margin-bottom: 3vh;
  text-decoration: none;
  text-align: center;
}

/*-----------------------------------------------PLATFORM OFFERINGS------------------------------------------------*/
.containerplat{
  height: 30vh;
  background: white;
  margin-top: 5vh;
}

.containerplat .pheading{
  width: 100%;
  display: flex;
  align-items: center; 
  justify-content: center;
  text-transform: uppercase;
  font-size: 22px;
  color: black;
  background: white;
  padding: 10vh 0;
}

.containerplat h2{
  text-align: center;
  margin-top: -8vh;
  text-transform: uppercase;
  font-weight: 500;
}

.containerplat p{
  color: black;
  font-size: 16px;
  margin-top: -10vh;
  text-align: center;
}

.platsec{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -2vh;
  
  background-size: cover;
  margin-bottom: -2vh;
}

.pcard{
  display: grid;
  grid-template-columns: 200px;
  grid-template-rows: 210px 210px;
  grid-template-areas: "image" "text";
  border-radius: 18px;
  background: white;
  color: black;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
  font-family: roboto;
  text-align: justify;
  height: 55vh;
  margin:20px;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  margin-bottom: 10vh;
  margin-top: -3.5vh;
}


.js-tilt-glare {
  border-radius: 18px;
}

.pcard-text {
  grid-area: text;
  margin: 25px;
  transform: translateZ(30px);
  text-align: center;
}

.pcard-text h2 {
  margin-top: -6vh;
  font-size:20px;
  text-align: center;
  text-transform: capitalize;
}

.pcard-text a {
  color: black;
  text-decoration: none;
  font-size:14px;
  font-weight: 400;
  position: absolute;
  bottom: 10vh;
  left: 1vw;
}

.pcard-text a:hover{
  color: green;
}

.pcard-image.pcard1 {
  background: url("../images/Shopespot-homepage-icon5.png") no-repeat;
  background-size: 80%;
  background-position: center;
  overflow: hidden;
}

/*card2*/
.pcard-image.pcard2 {
  background: url("../images/Shopespot-homepage-icon6.png") no-repeat;
  background-size: 80%;
  background-position: center;
  overflow: hidden;
}


/*card3*/
.pcard-image.pcard3 {
  background: url("../images/Shopespot-homepage-icon7.png") no-repeat;
  background-size: 80%;
  background-position: center;
  overflow: hidden;
}

.pcard-image.pcard4 {
  background: url("../images/Shopespot-homepage-icon8.png") no-repeat;
  background-size: 80%;
  background-position: center;
  overflow: hidden;
}

.pcard-image.pcard5 {
  background: url("../images/Shopespot-homepage-icon9.png") no-repeat;
  background-size: 80%;
  background-position: center;
  overflow: hidden;
}

.pcard-image.pcard6 {
  background: url("../images/Shopespot-homepage-icon10.png") no-repeat;
  background-size: 80%;
  background-position: center;
  overflow: hidden;
}


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


#join{
  background-color: white;
  padding-top: 4vh;
  padding-bottom: 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: 5px;
  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 -----------------------------------------*/

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

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

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

    .btn-pos{
      min-width: 30vw;
      padding-left: 10px;
      padding-right: 10px;
      margin: 10px;
      margin-bottom: 15px;
    }

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

    .desc{
       text-align: center; 
       min-height: 50vh;
       margin-bottom: 5vh;
    }

    .heading{
      text-align: center;
    }

    .card{
      margin-left: 30px;
      margin-right: 30px;
    }

    .platsec{
      margin-top: 0.5vh;
      margin-bottom: -1vh;
    }

    #join h1{
      margin-top: 1vh;
    }

    .desc2{
      min-height: 30vh;
      margin-bottom: -10vh;
      
    }

  .image-sec{
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .containerpos .title{
    margin-bottom: -10vh;
  }

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

  .containerpos .image-sec img{
    height: 50vh;
    width: 50vw;
  }

  .containermanage .image-sec img{
    margin-bottom: -10vh;
  }


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

  .loader p{
    font-size: 15px;
  }
}


 
  @media screen and (max-width: 800px) {
    .containerpos .image-sec {
      margin-top: 20vh;
    }

    .btn-exp{
      margin-bottom: 5vh;
    }

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


    

  }

  
@media screen and (max-width: 720px) {
 

  button{
    margin-bottom: 5vh;
  }


  .platsec .pcard:nth-child(1){
    margin-top: 8vh;
  }


  .containerindex .image-sec img{
    height: 50vh;
    margin-top: -15vh;
  }

  .containerindex .title{
    margin-bottom: -10vh;
  }

  .containerindex .desc p{
    font-size: 13px;
  }

  .containersell {
    display: contents;
  }

  .containersell p{
    margin-bottom: 10vh;
    font-size: 13px;
  }

 .headings{
   margin-top: 10vh;
 }
 
  .containertem{
    margin-bottom: -8vh;
  }

   .containermanage{
   
    margin-top: -25vh;
  }

  .containermanage .desc2{
    margin-top: 5vh;
  }

  .containermanage .desc2 p{
    margin-top: -2vh;
    font-size: 13px;
  }

  .containerpos .desc2 p{
    font-size: 13px;
  }

  .containerplat p{
    font-size: 13px;
  }

  
  h2{
    font-size: 85%;
  }

 

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

}



@media screen and (max-width: 600px) {

  .desc{
    min-height: 65vh;
    
  }

  .containerpos .title{
    margin-bottom: -10vh;
  }

  .containerpos .desc2{
    text-align: center;
  }

  .containermanage .desc2{
    text-align: center;
  }

  .containermanage .image-sec img{
    height: 35vh;
    width: 70vw;
    margin-bottom: -10vh;
   
  }

  .containerpos .image-sec img{
    height: 40vh;
    width: 60vw;
  }

  .btn-exp{
    margin-bottom: 5vh;
  }

  .containersell{
    margin-bottom: 8vh;
  }

  .btn-trial{
    min-width: 30vh;
    margin: 10px;
    margin-bottom: 15px;
  }

  .btn-trial2{
    min-width: 30vh;
    margin: 10px;
    margin-bottom: 15px;
  }

  .btn-exp{
    min-width: 50vw;
    margin: 10px;
    margin-bottom: 15px;
  }

  .btn-pos{
    min-width: 30vh;
    margin: 10px;
    margin-bottom: 15px;
  }

  .containerpos .title{
     margin-top: -10vh;
  }

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

  .platsec .pcard:nth-child(1){
    margin-top: -3vh;
  }

}


