/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS 
2- Button CSS
3- Logo CSS
4- Header Area CSS
5- Home Area CSS
6- About Area CSS
7- Counter Area CSS
8- Services Area CSS
9- Projects Area CSS
10- Team Area CSS
11- Testimonials Area CSS
12- Blogs Area CSS
13- Contact Area CSS 
14- Footer Area CSS
15- Scroll-Top Area CSS

*/



/*--------------------- 0- Global CSS (Start) ---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
  --lightpurple : #D69AC4;
  --purple : #9F4183;
  --black : #000;
  --white : #fff;
  --grey: #666;
  --box-shadow : 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

*{
  font-family: 'Poppins', sans-serif;
  margin:0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline:none;
  border:none;
  text-transform: capitalize;
  text-decoration: none;
}

*:not(.project-item){
  -webkit-transition: all 0.2s linear;
          transition: all 0.2s linear;
}

html{
 font-size: 62.6%;
 overflow-x:hidden;
 scroll-padding-top: 6rem;
 scroll-behavior: smooth;
}

html::-webkit-scrollbar{
 width: 0.8rem;
}

html::-webkit-scrollbar-track{
 background: var(--purple);
}

html::-webkit-scrollbar-thumb{
 background: var(--black);
 border-radius: 0.5rem;
}

body{
 background: #f9f9f9;
}

section{
  padding : 2rem 5%;
}

p{
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--grey);
}

img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet{
  height: 1rem;
  width: 3rem;
  border-radius : 50rem;
  background: var(--lightpurple);
  opacity: 0.7;
}

.swiper-pagination-bullet-active{
  width: 6rem;
  background-color: var(--purple);
  opacity: 0.9;
}

/*--------------------- 0- Global CSS (End) ---------------------*/



/*--------------------- 1- Heading CSS (Start) ---------------------*/
.heading h2{
  color: var(--black);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.heading span{
  text-transform: uppercase;
  color: var(--purple);
}
/*--------------------- 1- Heading CSS (End) ---------------------*/



/*--------------------- 2- Button CSS (Start) ---------------------*/
.btn {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  color: var(--purple);
  border: 0.2rem solid var(--purple);
  text-decoration: none;
  padding: 0.7rem 2rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn:after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(.1);
          transform: scale(.1);
}

.btn:hover:after {
  background: var(--purple);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn:hover{
  color: var(--white);
  cursor: pointer;
}

/*--------------------- 2- Button Area CSS (End) ---------------------*/



/*--------------------- 3- Logo Area CSS (Start) ---------------------*/
.logo{
  color:var(--purple);
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo img{
  height: 5rem;
  width: 3.5rem;
}

.logo .text{
  padding-left: 1rem;
}

.logo h3{
  letter-spacing: 0.2rem;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.logo p{
  text-transform: uppercase;
}

/*--------------------- 3- Logo Area CSS(End) ---------------------*/



/*--------------------- 4- Header Area CSS (Start) ---------------------*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
       transition: all 0.5s linear;
  z-index: 1100;
  border-bottom: 0.1rem solid var(--lightpurple);
}

.header.sticky{
  padding: 1rem 5%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.header .navbar a{
  display: inline-block;
  font-size: 1.7rem;
  color: var(--black);
  margin: 0 0.5rem;
  font-weight: 600;
}

.header .navbar a:hover,
.header .navbar a.active{
  color:var(--purple);
}

.header #menu-btn{
  font-size: 3rem;
  color: var(--black);
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
     -moz-transition: all 0.5s linear;
       -o-transition: all 0.5s linear;
          transition: all 0.5s linear;
  display: none;
}

.header .fa-times{
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header #menu-btn:hover{
  color: var(--purple);
}

.header .btn{
  border-radius: 50rem;
}

/*--------------------- 4- Header Area CSS (End) ---------------------*/



/*--------------------- 5- Home Area CSS (Start) ---------------------*/
.home{
  padding: 0;
  position: relative;
}

.home-slider{
  position: relative;
  overflow: hidden;
}

.home-item{
  height: 70rem;
}

.home-item .content{
  padding: 10rem 5%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-item .content .text{
  width: 75rem;
  padding-top: 7rem;
}

.home-item .content .text h2{
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: 0.1rem;
  line-height: 1.15;
}

.home-item .content .text p{
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 1px;
  padding-bottom: 2rem;
}

.home-item .content .text .btn{
  border-color: var(--white);
  color: var(--white);
  z-index: 2;
  margin-top: 1rem;
}

.home-item .content .text .btn:hover{
  border-color: var(--purple);
}

/*--------------------- 5- Home Area CSS (End) ---------------------*/



/*--------------------- 6- About Area CSS (Start) ---------------------*/
.about .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  gap: 2rem;
}

.about .content{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
}

.about .content h3{
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.about .content p{
  padding-bottom: 1.5rem;
}

.about .about-info{
  margin-bottom: 1rem;
}

.about .about-info h4{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about .about-info i{
  font-size: 1.5rem;
  color: var(--purple);
  margin: 0.1rem;
  padding: 0.5rem;
  border-radius: 50%;
}

.about .about-info span{
  font-size: 1.5rem;
  padding-left: 1rem;
  font-weight: 500;
}

.about .image{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
  height: 50rem;
  overflow: hidden;
}

/*--------------------- 6- About Area CSS (End) ---------------------*/



/*--------------------- 7- Counter Area CSS (Start) ---------------------*/
.counting{
  width: 100%;
  padding: 2rem 5%;
  margin: 1rem 0;
  min-height: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/Counter/Counter.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/Counter/Counter.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.counting .box{
  -webkit-box-flex: 1;
  -ms-flex:1 1 25rem;
      flex:1 1 25rem;
  text-align: center;
  padding: 2rem;
}

.counting .box i{
  color: var(--white);
  font-size: 6rem;
  width: 6rem;
  padding-bottom: 1rem;
  text-align: center;
}

.counting .box .count{
  color: #fff;
  font-size: 3rem;
  padding-bottom: 0.5rem;
}

.counting .box h3{
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
}

/*--------------------- 7- Counter Area CSS (End) ---------------------*/



/*--------------------- 8- Services Area CSS (Start) ---------------------*/
.service .box-container{
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}

.service-item{
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  text-align: center;
  padding: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.service-item .image{
  height: 25rem;
}

.service-item h3{
  margin-top: 3rem;
  font-size: 2rem;
}

.service-item p{
  margin: 1rem 0;
}
/*--------------------- 8- Services Area CSS (End) ---------------------*/



/*--------------------- 9- Projects Area CSS (Start) ---------------------*/
.projects .controls{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.projects .controls .button{
  cursor: pointer;
  margin: 0.5rem;
}

.projects .controls .button.active{
  cursor: pointer;
  background-color: var(--purple);
  color: var(--white);
}

.project-item:hover img{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.project-item{
  width: 33.3%;
  padding: 0.8rem;
}

.project-content{
  height: 30rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.project-item .content{
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0rem;
  left: 0rem;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.project-item .content::before{
  content: '';
  position: absolute;
  height: 90%;
  width: 90%;
  border: 0.1rem solid var(--white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.project-item .text,
.project-item a{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color:  var(--white);
  opacity: 0;
}

.project-item .text{
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}

.project-item .text p{
  color: var(--white);
  font-size: 3rem;
  font-weight: 500;
}

.project-item a{
  margin-top: 13rem;
}

.project-item:hover .content{
  -webkit-transform: scale(1);
          transform: scale(1);
}

.project-item:hover .text{
  margin-top: -1.5rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
  transition-delay: 0.3s;
}

.project-item:hover a{
  margin-top: 2rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
  transition-delay: 0.3s;
}

.project-item a{
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
  font-size: 3rem;
}


/*--------------------- 9- Projects Area CSS (End) ---------------------*/



/*--------------------- 10- Team Area CSS (Start) ---------------------*/
.team .box-container{
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1rem;
}

.team-item .image{
  position: relative;
  height: 35rem;
  overflow: hidden;
  border-bottom: 4px solid var(--lightpurple);
}

.team-item .image img{
  z-index: 3;
}

.team-item .icon-container{
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: -webkit-linear-gradient(rgba(35, 43, 48, 0.6), rgba(35, 43, 56, 0.6));
  background: linear-gradient(rgba(35, 43, 48, 0.6), rgba(35, 43, 56, 0.6));
  z-index: 2;
}

.team-item:hover .icon-container{
  bottom: 0%;
}

.team-item .icon-container a{
  color: var(--white);
  font-size: 2rem;
}

.team-item .icon-container a:hover{
  color: var(--purple);
}

.team-item .content{
  text-align: center;
  padding: 1.5rem;
}

.team-item .content h3{
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
}

.team-item .content p{
  color: var(--purple);
  font-weight: 500;
}

/*--------------------- 10- Team Area CSS (End) ---------------------*/



/*--------------------- 11- Testimonials Area CSS (Start) ---------------------*/
.testimonial-slider{
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
}

.testi-item{
  text-align: center;
}

.testi-item .des{
  position: relative;
  background: var(--purple);
  padding: 1rem 0.5rem;
  margin-bottom: 4.5rem;
}

.testi-item .des i{
  font-size: 2.5rem;
  color: var(--white);
}

.testi-item .des p{
  font-size: 1.2rem;
  padding: 1rem;
  color: var(--white);
}

.testi-item .des::before{
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  height: 3rem;
  width: 3em;
  background: var(--purple);
  z-index: -1;
}

.testi-item .intro{
  margin: 2rem 0;
}

.testi-item .intro img{
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
}

.testi-item .intro h3{
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  padding-top: 1rem;
}

.testi-item .intro .rating{
  font-size: 1.6rem;
  color: gold;
}
/*--------------------- 11- Testimonials Area CSS (End) ---------------------*/



/*--------------------- 12- Blogs Area CSS (Start) ---------------------*/
.blogs .box-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 1rem;
}

.blog-item{
  overflow: hidden;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.blog-item .image{
  height: 25rem;
  overflow: hidden;
}

.blog-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-item:hover .image img{
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.blog-item .content{
  padding: 2rem 1rem;
}

.blog-item .content .main-heading{
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--black);
}

.blog-item .content .main-heading:hover{
  color: var(--purple);
}

.blog-item .content p {
  padding: 1rem 0.5rem;
  line-height: 1.5;
}

/*--------------------- 12- Blogs Area CSS (End) ---------------------*/



/*--------------------- 13- Contact Area CSS (Start) ---------------------*/
.contact .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.contact-form{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
      padding: 1rem 2rem;
  background-color: var(--lightpurple);
}

.contact-form h3{
  text-align: center;
  color: var(--black);
  font-size: 3rem;
  font-weight: 500;
  padding: 1rem 0;
}

.contact iframe{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
}

.contact-form .input-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact .contact-form .box{
  width: 100%;
  font-size: 1.6rem;
  color: var(--black);
  background-color: var(--white);
  text-transform: none;
  border: 0.1rem solid var(--black);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.contact-form .input-box .box{
  width: 49%;
}

.contact .contact-form .box::placeholder{
  text-transform: capitalize;
  color: var(--grey);
}

.contact .contact-form .box:focus{
  border-color: var(--purple);
}

.contact .contact-form textarea.box{
  width: 100%;
  height: 17rem;
  resize: none;
}

.contact .contact-form .btn{
  z-index: 2;
}

.contact .contact-form .alert{
  font-size: 2rem;
  color: var(--purple);
  padding-left: 1rem;
}

.contact .contact-info{
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);

}

.contact .contact-info .info-item{
  -webkit-box-flex: 1;
  -ms-flex:1 1 25rem;
      flex:1 1 25rem;
  height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    padding: 2rem;
}

.contact .contact-info .info-item i{
  height: 5rem;
  width: 5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--purple);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact .contact-info .info-item h3{
  font-size: 2rem;
  color: var(--black);
  padding: 1rem 0rem;
}

.contact .contact-info .info-item p.gmail{
  text-transform: none;
}

/*--------------------- 13- Contact Area CSS (End) ---------------------*/



/*--------------------- 14- Footer Area CSS (Start) ---------------------*/
.footer {
  background-color: var(--black);
  padding: 0rem 5%;
}

.footer .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-item{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25rem;
      flex: 1 1 25rem;
}

.footer-item .logo{
  padding-bottom: 2rem;
}

.footer-item .logo h3{
  color: var(--white);
}

.footer-item p{
  color: var(--white);
}

.footer-item h2{
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding-bottom: 2rem;
}

.footer-item .info p{
  display: block;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-item .info i{
  color: var(--purple);
    padding-right: 1rem;
}

.footer-item .info .gmail{
  text-transform: none;
}

.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-item .social a{
    display: inline-block;
    height: 4rem;
    width: 4rem;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-item .social a i{
    color: var(--purple);
    font-size: 2rem;
}

.footer-item .social a:hover{
    background-color: var(--purple);
}

.footer-item .social a:hover i{
    color: var(--white);
}

.footer-item .timing h3{
  color: var(--purple);
  font-size: 2rem;
}

.footer-item .timing p{
  margin: 0.5rem 0;
}

.footer-item .links a,
.footer-item .iinks p{
  display: block;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-item .links a i,
.footer-item .links p i{
    padding-right: 0.5rem;
    color: var(--purple);
}

.footer-item .links a:hover{
  color: var(--purple);
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    border-top: 0.2rem solid var(--white);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

.footer .content p span{
    color: var(--purple);
}

/*--------------------- 14- Footer Area CSS (End) ---------------------*/



/*--------------------- 15- Scroll-Top Area CSS (Start) ---------------------*/
.scroll-top{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  height: 5rem;
  width: 5rem;
  font-size: 3rem;
  font-weight: lighter;
  background: var(--white);
  color: var(--purple);
  border: 0.2rem solid var(--purple);
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.scroll-top:hover{
  background: var(--purple);
  color:var(--white);
}

/*--------------------- 15- Scroll-Top Area CSS (End) ---------------------*/


















