/* base */
@import '../base/base.css';
@import '../base/layout.css';

/* 3rd-party */
@import '../3rd-party/font-awesome.min.css';
/* components */
@import '../components/button.css';
@import '../components/carouselDots.css';
@import '../components/footer.css';
@import '../components/form.css';
@import '../components/header.css';

/* CUSTOM STYLE */

/* header start */
.head{
    padding: 0;
    height: 80px;
    width: 100%; 
    top: 0;
    left: 0;
    z-index: 2; 
}
.head-fixed{
    position: absolute;
    background-color: transparent; 
}
.head-sticky{
    position: fixed; 
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    transition: 0.3s;
}
.head-row{
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.navmenu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px; 
    margin-top: 15px !important;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    background: #fff;
  }
.menu{
    display: flex;
    gap: 1em;
    font-size: 14px; 
    position: relative;
}
.burgerCheck{
    display: none;
}

.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
   }
.droplist{
    position: relative;
}
.dropdown {
    background-color: #fff;
    padding: 1em 0;
    position: absolute; 
    display: none;
    border-radius: 4px;
    top: 40px;
    left: -5px;
}
.navmenu .mainlinks{
    text-decoration: none;
    color: #fff;
}
.droplist::after{
    box-sizing: border-box;
    border-top: 5px solid #d3d3d3;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
    content: "";
    display: inline-block;
    top: 4px;
    left: 0;
    width: 10px;
    height: 10px;
    position: relative;
}
.navmenu li{
    list-style: none;
    padding: 5px 12px;
}
.dropdown li + li {
    margin-top: 1px;
   }
.dropdown li {
    padding: 0.5em 1em;
    width: 12em;
}
.links-inside{
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 12px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}
.dropdown::before{
    box-sizing: border-box;
    border-bottom: 9px solid #fff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 0;
    content: "";
    display: inline-block;
    margin-left: 4px;
    top: -2em;
    left: 6px;
    width: 10px;
    height: 10px;
    position: relative;
}
.dropdown li:hover {
    background-color: lightgray;
}
   
.droplist:hover .dropdown {
    display: block;
}


@media (max-width: 975px){
    .menu { 
        display:none;
        position: absolute;
        width: 40%;
        height: 100vh;
        background-color:#fff;
        top: 0;
        right: 0;
        text-align: left;
        padding-top: 25px;
       }
       .menu > li {
        padding: 20px;
        border-bottom: 2px solid lightgray;
       }
       .menu > .droplist:hover::after {
        display: none;
       }
       .menu > .droplist:hover .dropdown{
        display:block;
        width: 100%;
        position: relative;
        border-radius: 0;
        top: 0;
        left: -20px;
       }
       .dropdown li:hover {
        background-color: #fff;
    }
       .dropdown li:hover a{
        color: grey;
    }
       .menu > .droplist > li {
        margin-top: 12px;
       }
       .burgerCheck:checked ~ .menu{
        display: block;
       }
       .burgerCheck:checked ~ .bg {
        visibility: visible;
        opacity: 0.7;
        transition: all 0.3s;
        }
        .hamburger{
        cursor: pointer;
        padding: 40px 20px;
        display: block;
        }
        .hamb-line {
        background: #fff;
        display: block;
        height: 2px;
        position: relative;
        width: 30px;
        } 
        .hamb-line::before,
        .hamb-line::after{
            background: #fff;
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            transition: all .2s ease-out;
            width: 100%;
        }
        .hamb-line::before{
            top: 10px;
        }
        .hamb-line::after{
            top: -10px;
        }
        .hamb-line-dark {
        background: grey;
        display: block;
        height: 2px;
        position: relative;
        width: 30px;
        } 
        .hamb-line-dark::before,
        .hamb-line-dark::after{
            background: grey;
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            transition: all .2s ease-out;
            width: 100%;
        }
        .hamb-line-dark::before{
            top: 10px;
        }
        .hamb-line-dark::after{
            top: -10px;
        }
        .burgerCheck:checked ~ .hamburger .hamb-line {
            background: transparent;
            width: 15px;
        }
        .burgerCheck:checked ~ .hamburger .hamb-line::before {
            transform: rotate(-45deg);
            top: -25px;
            right: 20px;
            background: gray;
            z-index: 54;
        }
        .burgerCheck:checked ~ .hamburger .hamb-line::after {
            transform: rotate(45deg);
            top: -25px;
            right: 20px;
            background: gray;
            z-index: 55;
        }
        .navmenu .mainlinks{
            color: gray;       
        }
        .navmenu{
            padding: 0;
            margin-top: 0 !important;
        }
        .dropdown::before{
            display: none;
        }
} 

/* header end */

/* hero start */

.bg-img {
    padding-top: 140px;
    padding-bottom: 140px;
    background-image: url(../../img/blog-4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
    position: relative;
    background: rgba(rgb(176, 43, 209, 0.3), green, blue, alpha);
}
.overlay {
    /* position: relative; */
    z-index: 0;
}
.overlay::after {
    content: '';
    background-color: #5F35DE;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.85;
    z-index: -1;
}
.bg-img::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 20%;
    background: url(../../img/wave1.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.container > .hero {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
}
/* .container > .hero > .intro {
} */
.container > .hero > .intro > .title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}
.container > .hero > .intro > .description {
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
    text-align: left;
}
.container > .hero > .intro > .button {
    color: #444444;
    background-color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.4s ease 0s;
}
.container > .hero > .intro > .button:hover {
    color: #fff;
    background-image: linear-gradient(to right,#5F35DE, #911491);
}
.container > .hero > .contact-box {
    padding: 40px 40px;
    display: block;
    justify-content: center;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
}
.container > .hero > .contact-box > .title {
    font-size: 26px;
    margin: 0 0 30px 0;
}
.container > .hero > .contact-box > .description {
    font-size: 16px;
    color: #4444447e;
}
.container > .hero > .contact-box > .btn {
    padding: 0;
    width: 100%;
    height: 50px;
    margin: 20px 0 10px 0;
    cursor: pointer;
}
.container > .hero > .contact-box > .conditions-text {
    color: #444444;
    font-size: 14px;
}
.container > .hero > .contact-box .terms {
    color: black;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container > .hero {
        display: inline-block;
    }
    .container > .hero > .intro {
        margin-bottom: 30px;
    }
}


/* hero end */

/* features start */
    .btn-imitation-block{
        width: 200px;
        padding: 10px 25px;
        border-radius: 25px;
        box-shadow: 0px 0px 5px 0 #0002;
        color:  #7c4fe0;
    }

    .btn-imitation{
        display: inline-block;
        font-size: 14px;
        font-family: Poppins-Regular;
        font-weight: 500;
    }


    .header3 { 
    text-align: center;
    }

    .featureimage{
        width: 50px;
        height: auto;
    }

    .features-header{
        font-size: 40px;
        font-family: Poppins-Bold;
        font-weight: 600;
    }

    .features-paragraph{
        font-size: 14px;
        font-family: Poppins-Regular;
        color: grey;
    }

    .divader{
        margin: 10px 0;
        width: 70px;
        height: 2px;
        border: none;
        background-color: #7c4fe0;
        

    }
    .futures{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 40px 20px;
        box-shadow: 0px 0px 15px 0 #0002;
        background-color: white;
        border-radius: 25px;
        position: relative;
        top: 0;
        transition: top ease 0.45s;
}
    .futures > .fa{
        text-align: center;
    }
    .futures > .title{
        font-size: 20px;
        font-family: Poppins-Regular;

    }
    .futures > .description{
        font-size: 14px;
        font-family: Poppins-Regular;
        margin: 0 10px;
    }

    .futures:hover{
        top: -10px;
        box-shadow: 0px 0px 30px 0 #0002;
    }

/* features end */

/* sApp start */
.pr-bg {
    background-color:#F6F9FE;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
}
.rt-img {
    float: right;
    width: 100%;
    height: 100%;   
}
.sApp-ul  {
    list-style: none;
}
.sApp-ul > li {
    line-height: 2.5em;
}
.sApp-ul > li:before {
    content:'\2714';
    color:#764FE0;
    padding-right: 0.7%;
}

.box {
    padding: 10px 0;
    font-size: 22   px;
}
.h2 {
    font-size: 40px;
    padding: 10px 0;
}

.txt-box {
    font-size: 0.8em;
    height: 100%;
}

.icon {
    color: #764FE0;
    border: 1px solid lightgrey;
    border-radius: 10%;
    background-color: #fff;
    padding: 10px;
    width: 38px;
    height: 38px;
    font-size: 15px;
}
/* sApp end */

/* Device start */
.device-manage-bg {
    background-color:#fff;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;

}
.box-h2 {
    padding: 20px 0;
    font-size: 40px;
}

.box-p {
    padding: 8px;
    font-weight: 400;
    line-height: 24px;
    color: #565656;
    margin-bottom: 0;
}
.device-manage-list {
    display: flex;
    align-items: flex-start;
    
}
.device-manage-icon {
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.btn.device-manage-btn {
    margin-top: 24px;
    font-size: 15px;
    padding: 18px 30px;
    display:inline-block;
    text-decoration: none;
}

.mobile2-img {
    width: 40%;
    object-position: center;
}

@media (max-width: 1536px) {
    .mobile2-img {
        float: right;
    }

}
@media (max-width: 1399px) {
    .mobile2-img {
        float: right;
        width: 55%;
    }
    .box-h2 {
        font-size: 30px;
    }
}

@media (max-width: 1000px) {
    .mobile2-img {
        width: 80%;
        float: right;
    }
    .box-h2 {
        font-size: 30px;
    }

}


@media (max-width: 785px) {
    .mobile2-img {
        width: 50%;
    }
    .box-h2 {
    font-size: 24px;
    }
    .imgMobile {
        justify-content: center;
        display: flex;
    }
    }

/* Device end */

/* how sApp works start */
.container.purple {
    background-color: #5F35DE;
}
.container.purple > .row {
    display: flex;
    justify-content: center;
}
.container.purple > .row > .heading > .title,
.container.purple > .row > .block > .title {
    color: #fff;
    font-size: 40px;
    text-align: center;
}
.container.purple > .row > .block > .title {
    font-size: 30px;
}
.container.purple > .row > .heading > .description,
.container.purple > .row > .block > .description {
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.container.purple > .row > .block {
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
.container.purple > .row > .block::after {
    content: '>';
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 110%;
}

/* Animation (2 hours spent on my own, with a little Google help - 2 minutes) */
.container.purple > .row > .block:hover:after {
    animation: shake 2s ease 0s 1 normal forwards;
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70% {
		transform: translateX(-10px);
	}

	20%,
	40%,
	60% {
		transform: translateX(10px);
	}

	80% {
		transform: translateX(8px);
	}

	90% {
		transform: translateX(-8px);
	}
}
.container.purple > .row > .block:last-child:after {
    display: none;
}
.container.purple > .row > .block > .avatar {
    width: 4rem;
    height: 4rem;
}
.container.purple > .row > .block > .title {
    font-size: 20px;
}

@media (max-width: 768px) {
    .container.purple > .row {
        display: block;
    }
    .container.purple > .row > .block::after {
        display: none;
    }
}
/* how sApp works end */

/* interface start */
.container-interface {
    display: flex;
    flex-direction: column;
    flex-wrap:wrap;
    text-align:center;
    margin:auto;
    width: 75%;
    margin-bottom: 5%;
}
.container-interface > .line-under {
    border-color: #7C4FE0;
    height: 2px;
    width: 90px;
    margin: 20px 0px 10px;
    align-self: center;
}
.container-interface > .paragraph {
    text-align: center;
    margin: 0% 20%;
}
@media (max-width: 768px) {
    .carousel-container {
      width: 80%;
    }
  }
  @media (max-width: 1024px) {
    .carousel-container {
    width: 85%;
    }
  }
.carousel-container {
    display: flex;
    align-items: center;
    min-height: 200px;
    position: relative;
    overflow: hidden !important;
    margin: 0 15%;
}
.carousel-container .carousel-inner {
    max-width: 100%;
  }
  .carousel-container .track {
    display: inline-flex;
  }
  .carousel-container .card-container {
    width: 259px;
    flex-shrink: 1;
    height: 350px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .carousel-container .card-container .card {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }
  .screenshot {
    height: 350px;
    background-size: cover;
    border-radius: 10px;
  }
.screenshot1 {
    background-image: url(/img/screenshot_1.jpg);
}
.screenshot2 {
    background-image: url(/img/screenshot_2.jpg);
}
.screenshot3 {
    background-image: url(/img/screenshot_3.jpg);
}
.screenshot4 {
    background-image: url(/img/screenshot_4.jpg);
}
.screenshot5 {
    background-image: url(/img/screenshot_5.jpg);
}
/* interface end */

/* Testimonials start */
.slideCenter{
    text-align: center; 
    display: flex;
    align-items: center;
    justify-content: center;
}
#testSlides{
    position: relative;
    overflow: hidden;
}
.testimonials-slide{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
} 

.testimonials-slide{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    animation-duration: 0.5s;
    animation-name: slidein;
  }
  
  @keyframes slidein {
    0% {
      margin-left: 100%;
      width: 100%;
    }
  
    100% {
      margin-right: 100%;
      width: 100%;
    }
  }

.testimonialsImg{
    display: inherit;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    animation-name: appearAvatar;
    animation-duration: 2s;
}
@keyframes appearAvatar {
    0%   {height: 10px;
        width: 10px;}
    25%  {height: 25px;
        width: 25px;}
    50%  {height: 50px;
        width: 50px;}
    100% {height: 100px;
        width: 100px;}
  }
.clientName{
    font-size: 22px;
    font-weight: bold;
}
.clientPlace{
    font-size: 18px;
}
.stars{
    height: 18px;
    color: orange;
    font-size: 18px;
    animation-name: starsAppear;
    animation-duration: 2s;
}
@keyframes starsAppear {
    0%   {font-size: 2px}
    25%  {font-size: 6px}
    50%  {font-size: 12px}
    100% {font-size: 18px}
  }
.testimonials-slide > p{
    color: #444444;
    line-height: 22px;
}
.dotsPlace{
    padding: 20px 10px;
}

/* Testimonials end */

/* purchase plans start */
.prices-section{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #f6f9fe;
}
.price-title{
    font-size: 40px;
}
.price-description{
    width: 70%;
    margin: auto;
}
.price-title-line {
    border: 2px #764FE0 solid;
    width: 80px;
    background-color: #764FE0;
    margin: 10px auto;
    border-radius: 20px;
}

.price-background{
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    position: relative;
    margin: 50px 20px;
    box-shadow: 0 4px  8px #0003;

}
.price-background > .packType{
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;

}
.price-background > .packPrice{
    font-size: 50px;
    margin-bottom: 10px;
}
.price-background > .list{
 list-style: none;
}
.price-background > .list > .element{
    border-top: gray solid 1px;
    padding: 20px 0;
    color: #565656;
    font-size: 14px;
    line-height: 24px;
    margin: 0 50px;
}
.price-background > .btn{
    width: 150px;
    height: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.price-background > .price-img{
    width: 150px;

}
.pricesFooter{
    color: black;
}

/* purchase plans end */

/* FAQ start */
.faq-heading {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.accordion {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow:  0 1px 5px #d9d9d9;
    background-color: white;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.5s;
    flex: auto;
}

.active, .accordion:hover {
    background-color: white;
    box-shadow: none;
  }
.panel {
    color: #565656;
    font-size: 14px;
    padding: 10px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  }
/* FAQ end */

/* Team experts start */
/* Team experts end */

/* Appstore section start */
.parallax-bg {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal; 
    text-align: center;
}

.parallax {
    background-image: url(../../img/parallax-bg.jpg);
    min-height: 70vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
}
.appsrote-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}
.overplay {
    position: relative;
    z-index: 0;
}
.overplay::after {
    content: '';
    background-color: #000;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.65;
    z-index: -1;
}
.parallax-p1 {
    margin-bottom: 25px;
}
.parallax-p2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-style: italic;
}

.appsStoreImg {
    height: 60px;
    width: 180px;
    margin-right: 5px;
    margin-left: 5px;
}
/* Appstore section end */

/* Subscribe start */
.sub-form{
    background-color: #fff;
}
.sub-form > .row {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
}
.sub-form .input-field::placeholder {
    text-align: center;
}
.sub-form > .row form > .btn {
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
}
.sub-form > .bg-img {
    background-image: url(../../img/subscribe-bg.png);
}
/* Subscribe end */

/* Stay tuned start */
.subsc-bg{
    background-color: #f6f9fe;
    z-index: 1;
    position: relative;
}
.stay-tuned-p{
    width: 60%;
}
.subsHead{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.line-under {
    border-color: #7C4FE0;
    height: 2px;
    width: 90px;
    margin: 0px 0px 10px;
    align-self: center;
}
.cust-tuned-form{
    padding: 0 15px;
}
.message-field{
    min-height: 60px;
    width: 100%;
    overflow: auto;
    resize: vertical;
}
.stuned-contc-list{
    list-style: none;
}
.stuned-contacts{
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    text-decoration: none;
    outline: none;
    text-align: left;
    font-size: 14px;
    padding: 5px 5px;
    color: #565656;
}
.stuned-contacts:hover{
    color: #5F35DE;
}
.stuned-icons{
    min-width: 46px;
    height: 46px;
    background-color: #5F35DE;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    padding-top: 11px;
}
.cust-btn{
    width: 100%;
    padding: 18px 30px;
    margin-top: 25px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.cust-plane{
    padding: 1px 5px;
}
@media (max-width: 768px){
    .stay-tuned-p{
        width: 100%;
    }
}
/* Stay tuned end */

/* Footer start */
.emulate{
    height: 500px;
    float: left;
}
.footer-sec{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}
.footer-cols{
    display: inline-block;
    /* flex-direction: row;
    justify-content:space-between; */
}
.foo-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foo-col > .footer-h3{
    font-size: 24px;
    padding-bottom: 5px;
}
.foo-col p,a{
    text-decoration: none;
    color: #565656;
}
.foo-app-img{
    max-width: 170px;
    padding-top: 7px;
}
.footer-socials{
    width: 50px;
    height: 50px;
    padding: 15px;
    margin-left: 5px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.foo-fb{
    background-color: #3b5999;
}
.foo-tw{
    background-color: #55acee;
}
.foo-gpl{
    background-color: #dd4b39;
}
.foo-vine{
    background-color: #00b489;
}
.soc-visi,
.soc-invi {
    color: #fff;
    font-size: 18px;
}
.footer-socials .soc-invi {
    transform: translateY(200%);
    transition: all 0.3s ease;
}
.footer-socials .soc-visi {
    transform: translateY(0);
    transition: all 0.3s ease;
}
.footer-socials:hover .soc-visi{
    transform: translateY(-200%);
    transition: all 0.3s ease;
}
.footer-socials:hover .soc-invi{
    transform: translateY(-150%);
    transition: all 0.3s ease;
}
.footer-line{
    border: 1px solid transparent;
    width: 100%;
    background-color: #565656;
    padding: 5px;
    margin-bottom: 5px;
}
.footer-underline{
    margin-top: 5px;
    color: #565656;
    padding: 5px;
    display: inline;
    line-height: 16px;
}
/* Footer end */

/* Scroll to top button start */
#btnScrollToTop {
    position: fixed;
    right: 2%;
    bottom: 3%;
    height: 45px;
    width: 40px;
    font-size: 20px;
    border-radius: 4px;
    background-color: rgba(35,35,35,0.65);
    text-align: center;
    cursor: pointer;
    z-index: 500;
    color: white;
    border: none;
    outline: none;
}
#btnScrollToTop:hover {
    background-color: #666
}
/* Scroll to top button end */
