:root {
  --primary-color: #8d2dda;
  --secondary-color: #ffffff; 
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

html {
  height: 100%;
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  position: relative;
  min-height: 100%;
  background: #2F3032;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(0, 0, 0, 0.08);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.5rem;
  letter-spacing: 4px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.375rem;
    line-height: 2.75rem;
  }
}


p:last-child {
  margin-bottom: 0;
}

code {
  font-size: 0.875rem;
}

nav.navbar {
  height: 70px;
  background: transparent;
  border: none;
  transition: background-color 0.3s;
  will-change: transform;
  background-color: #f3f3f357;
}

nav.navbar.show-color {
  background: var(--secondary-color);
  box-shadow: 0px 6px 16px -2px rgba(0, 0, 0, 0.3);
}

nav.navbar.show-color .navbar-home {
  visibility: visible;
  -webkit-transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate(100%, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate(100%, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 1;
}

.navbar-home {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 70px;
  width: 10%;
  -webkit-transform: translate(100%, -50%);
  -webkit-transform: translate3d(100%, -50%, 0);
  -ms-transform: translate(100%, -50%);
  -ms-transform: translate3d(100%, -50%, 0);
  transform: translate(100%, -50%);
  transform: translate3d(100%, -50%, 0);
  transition: transform 0.2s ease-in, opacity 0.2s ease-in, visibilit 0.2s ease-in;
  opacity: 0;
}

.navbar-home svg {
  width: 20px;
  height: 20px;
  fill: #111112;
}

.navbar-header .navbar-brand {
  position: relative;
  height: 70px;
  padding: 0 28px 0 15px;
  padding: 0 28px 0 45px;
  font-size: 20px;
  font-weight: 300;
  line-height: 80px;
  letter-spacing: 1px;
  color: var(--primary-color);
  vertical-align: middle;
}

.navbar-header .navbar-brand:hover,
.navbar-brand:focus {
  color: rgb(187, 187, 187);
}

.navbar-header .navbar-brand i.material-icons {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.navbar-toggle {
  height: 70px;
  margin: 0;
  padding: 0 20px;
  color: #333;
  border: none;
}

.navbar-toggle.collapsed {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .navbar-collapse {
    background: #e5e4ea;
  }
}

ul.navbar-nav {
  color: #333;
}

@media (min-width: 768px) {
  ul.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    float: none;
    text-align: center;
    color: #111112;
  }
}

@media (min-width: 768px) {
  ul.navbar-nav>li {
    float: none;
    display: inline-block;
  }
}

ul.navbar-nav>li>a {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 70px;
  letter-spacing: 1px;
  color: currentColor;
}

ul.navbar-nav>li>a:hover {
  background: rgba(0, 0, 0, 0.15);
}

ul.navbar-nav>li>a:focus {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  ul.navbar-nav>li.active {
    background: rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 768px) {
  ul.navbar-nav>li.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 -3px 0 0  var(--primary-color);
  }
}

ul.navbar-nav>li.active>a:hover,
ul.navbar-nav>li.active>a:focus {
  background: none;
}

#homepage {
  background-image: url(../../img/intro_bg.jpg);
  margin-top: 4%;
  padding: 88px;
}

section {
  position: relative;
  padding: 30px 0 50px;
  background: var(--secondary-color);
}

section:last-of-type {
  min-height: 20vh;
}

section.focus .page-header {
  color: var(--primary-color);
}

section.focus .page-header:after {
  visibility: visible;
  opacity: 1;
}

.section-header {
  position: relative;
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 400;
  color: #333;
  text-align: center;
  line-height: 60px;
  letter-spacing: 1px;
}

.section-header:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 2px;
  background: var(--primary-color);
  -webkit-transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate(-50%, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  transform: translate(-50%, 0);
  transform: translate3d(-50%, 0, 0);
}

.section-sub-header {
  position: relative;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  line-height: 60px;
  letter-spacing: 1px;
}

.banner .banner-child {
  padding: 25px 15px;
  height: 500px;
}

.banner .bc-left {
  color: var(--primary-color);
  background:  var(--primary-color);
}

.banner .bc-right {
  color: #333;
  background: #F3F4F8;
}

.page-header {
  position: relative;
  margin-top: 0;
  margin-bottom: 50px;
  letter-spacing: 1px;
  color: #333;
  transition: color 0.2s ease-in;
}

.page-header:after {
  visibility: hidden;
  display: block;
  content: "Boom!!! got your focus now ay :-)";
  position: absolute;
  top: 100%;
  padding-top: 25px;
  font-size: 16px;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
  opacity: 0;
}


a.tutorials-link {
  margin-top: 2%;
  display: block;
  position: relative;
  width: 180px;
  margin: 2% auto 25px;
  padding: 15px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  color:  var(--primary-color);
  border: 2px solid  var(--primary-color);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

a.tutorials-link:hover {
  color:  var(--primary-color);
  background:  var(--primary-color);
  box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
}

.scrollTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  text-decoration: none;
  padding: 0;
  color:  var(--primary-color);
  background:  var(--primary-color);
  border: none;
  border-radius: 100%;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(0, 80px);
  -webkit-transform: translate3d(0, 80px, 0);
  -ms-transform: translate(0, 80px);
  -ms-transform: translate3d(0, 80px, 0);
  transform: translate(0, 80px);
  transform: translate3d(0, 80px, 0);
  transition: transform 0.2s ease-in;
  opacity: 0.7;
}

.scrollTop:hover {
  color:  var(--primary-color);
  opacity: 1;
}

.scrollTop.show-button {
  -webkit-transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate(0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
}

.scrollTop svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  height: 60vh;
  padding: 50px 0;
  /* Layering due to Psuedo overlay */
}

@media (min-width: 768px) {
  #home {
    height: 80vh;
    min-height: 640px;
  }
}

#home:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 400px;
  height: 60vh;
  background-image: url("https://hd.unsplash.com/photo-1457365050282-c53d772ef8b2");
  background-image: url("https://images.unsplash.com/photo-1457365050282-c53d772ef8b2");
  background-size: cover;
  background-position: center bottom;
  will-change: transform;
  z-index: 0;
}

@media (min-width: 768px) {
  #home:before {
    height: 80vh;
    min-height: 640px;
  }
}

#home:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(transparent, rgba(0, 0, 0, 0.4));
  z-index: 0;
}

#home .container {
  z-index: 1;
}

#home .mouse {
  position: relative;
  width: calc(28px * 2);
  height: calc(44px * 2);
  margin: 0 auto 20px;
  background: none;
  border: 2px solid white;
  border-radius: calc(16px * 2);
  z-index: 1;
}

@media (min-width: 768px) {
  #home .mouse {
    width: calc(28px * 4);
    height: calc(44px * 4);
    margin: 0 auto 30px;
    background: none;
    border: 2px solid white;
    border-radius: calc(16px * 4);
  }
}

#home .mouse:after {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: calc(5px * 2);
  height: calc(5px * 2);
  background: none;
  border: 2px solid white;
  border-radius: 100%;
  animation-name: scrollWheel;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  will-change: transform;
}

@media (min-width: 768px) {
  #home .mouse:after {
    position: absolute;
    top: 25px;
    left: 50%;
    width: calc(5px * 4);
    height: calc(5px * 4);
  }
}

#home h1 {
  text-align: center;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  color:  var(--primary-color);
}

#home h4 {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  color:  var(--primary-color);
}

#home p {
  margin: 0;
  padding: 25px 0;
  text-align: center;
  text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 26px;
  color:  var(--primary-color);
}

#about p {
  text-align: center;
  color: #333;
}

#demo {
  background: #F3F4F8;
}

#demo h4 {
  margin-bottom: 20px;
  margin-bottom: 0px;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 1px;
  color: #111112;
}

#demo .video-roll--container {
  padding: 0;
}

@media only screen and (max-width: 768px) {
  #video-placeholder {
      height: 240px; /* Adjust height for smaller screens */
      width: 320px; /* Adjust width for smaller screens */
  }
}

@media (min-width: 768px) {
  #demo .video-roll--container {
    padding: 0 15px;
  }
}

#demo .video-roll {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 25px 0 0;
  list-style: none;
}

@media (min-width: 768px) {
  #demo .video-roll {
    margin: 0 auto 120px;
  }
}

#demo .video-roll:after {
  content: '';
  display: block;
  width: 30%;
  height: 14px;
  margin: -90px auto 0;
  margin: -20px auto 0;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 50px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  #demo .video-roll:after {
    margin: 0px auto 0;
  }
}

#demo .video-roll li {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 1;
  align-items: stretch;
  align-content: stretch;
  position: relative;
  background: transparent;
}

#demo .video-roll li:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

#demo .video-roll li:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 60%;
  height: 14px;
  margin: -90px auto 0;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 50px 40px rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate(-50%, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  transform: translate(-50%, 0);
  transform: translate3d(-50%, 0, 0);
}

#demo .video-roll li:first-child {
  visibility: hidden;
  flex-basis: 10%;
  -webkit-transform: translate(50%, 0);
  -webkit-transform: translate3d(50%, 0, 0);
  -ms-transform: translate(50%, 0);
  -ms-transform: translate3d(50%, 0, 0);
  transform: translate(50%, 0);
  transform: translate3d(50%, 0, 0);
  opacity: 0;
}

@media (min-width: 768px) {
  #demo .video-roll li:first-child {
    visibility: visible;
    flex-basis: 30%;
    opacity: 1;
  }
}

#demo .video-roll li:first-child a {
  background-image: url("https://i.ytimg.com/vi/kLiMpaMKal8/maxresdefault.jpg");
  transform-origin: left center;
}

#demo .video-roll li:nth-child(2) {
  flex-basis: 80%;
  z-index: 2;
}

@media (min-width: 768px) {
  #demo .video-roll li:nth-child(2) {
    flex-basis: 40%;
  }
}

#demo .video-roll li:nth-child(2):after {
  display: none;
}

#demo .video-roll li:nth-child(2) a {
  flex-grow: 1;
  background-image: url("https://i.ytimg.com/vi/aVFYHGtf6So/maxresdefault.jpg");
  transform-origin: center center;
}

#demo .video-roll li:last-child {
  visibility: hidden;
  flex-basis: 10%;
  -webkit-transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate(-50%, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  transform: translate(-50%, 0);
  transform: translate3d(-50%, 0, 0);
  opacity: 0;
}

@media (min-width: 768px) {
  #demo .video-roll li:last-child {
    visibility: visible;
    flex-basis: 30%;
    opacity: 1;
  }
}

#demo .video-roll li:last-child a {
  background-image: url("https://i.ytimg.com/vi/OKxASY7ABfs/maxresdefault.jpg");
  transform-origin: right center;
}

#demo .video-roll li a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate(0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

#demo .video-roll li a:hover {
  -webkit-transform: translate(0, -4px);
  -webkit-transform: translate3d(0, -4px, 0);
  -ms-transform: translate(0, -4px);
  -ms-transform: translate3d(0, -4px, 0);
  transform: translate(0, -4px);
  transform: translate3d(0, -4px, 0);
}

#features {
  padding-bottom: 0;
  color: #333;
}

#features .feature-container {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  #features .feature-container {
    margin-bottom: 80px;
  }
}

#features .feature {
  padding: 25px 0;
}

@media (min-width: 768px) {
  #features .feature {
    padding: 50px 0;
  }
}

#features .feature svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  fill: currentColor;
}

@media (min-width: 768px) {
  #features .feature svg {
    width: 60px;
    height: 60px;
  }
}

#features .feature h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 2px;
  color:  var(--primary-color);
}

#features .feature p {
  font-size: 14px;
  font-weight: 300;
  color: #111112;
  letter-spacing: 1px;
}

#features .animated-scroll {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 80%;
  max-width: 450px;
  height: 315px;
  margin: 0 auto;
  border: 4px solid var(--primary-color);
  border-bottom-color: transparent;
  border-radius: 6px;
  overflow: hidden;
}

#features .animated-scroll .scroll-header {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 60px;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
}

#features .animated-scroll .scroll-header .scroll-nav {
  width: 15%;
  height: 8px;
  margin-right: 5%;
  border-radius: 4px;
}

#features .animated-scroll .scroll-header .sn-1 {
  animation-name: scrollColor-1;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

#features .animated-scroll .scroll-header .sn-2 {
  animation-name: scrollColor-2;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

#features .animated-scroll .scroll-header .sn-3 {
  margin-right: 0;
  animation-name: scrollColor-3;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

#features .animated-scroll .scroll-header svg.cursor {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 20%;
  height: 20px;
  animation-name: scrollCursor;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  z-index: 2;
}

#features .animated-scroll .scroll-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  padding-top: 20px;
  overflow: hidden;
}

#features .animated-scroll .scroll-child {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 150px;
  width: 90%;
  margin: 0 auto 20px;
  fill: #404040;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  animation-name: scrollDemo;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

#features .animated-scroll .sc-back-to-top {
  flex-basis: 40px;
  width: 40px;
  margin: 0 auto;
  border-radius: 100%;
  animation-name: scrollBackToTop;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  z-index: 0;
}

#features .focus-events {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 80%;
  max-width: 450px;
  height: 315px;
  margin: 0 auto;
  border: 4px solid #e6e8f0;
  border-bottom-color: transparent;
  border-radius: 6px;
  overflow: hidden;
}

#features .focus-events .scroll-header {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 60px;
  align-items: center;
  justify-content: center;
  background: #e6e8f0;
}

#features .focus-events .scroll-header .scroll-nav {
  width: 15%;
  height: 8px;
  margin-right: 5%;
  border-radius: 4px;
}

#features .focus-events .scroll-header .sn-1 {
  animation-name: focusColor-1;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

#features .focus-events .scroll-header .sn-2 {
  animation-name: focusColor-2;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

#features .focus-events .scroll-header svg.cursor {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 20%;
  height: 20px;
  animation-name: focusCursor;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  z-index: 2;
}

#features .focus-events .scroll-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  padding-top: 20px;
  overflow: hidden;
}

#features .focus-events .scroll-child {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 150px;
  width: 90%;
  margin: 0 auto 20px;
  padding: 10% 5%;
  background: rgba(0, 0, 0, 0.05);
  background: #edeef4;
  border-radius: 4px;
  animation-name: focusDemo;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

#features .focus-events .scroll-child .header {
  height: 14px;
  width: 50%;
  margin: 0 auto 8px;
  border-radius: 8px;
  background: #dcdfeb;
}

#features .focus-events .scroll-child .sub-header {
  height: 10px;
  width: 40%;
  margin: 0 auto 22px;
  border-radius: 6px;
  background: #e3e5ef;
}

#features .focus-events .scroll-child .body {
  width: 70%;
  height: 8px;
  margin: 0 auto 8px;
  background: #e0e2ed;
}

#features .focus-events .sc-2 .header {
  animation-name: focusHeaderColor;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

@keyframes scrollWheel {
  from {
    -webkit-transform: translate(-50%, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate(-50%, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(-50%, 20px);
    -webkit-transform: translate3d(-50%, 20px, 0);
    -ms-transform: translate(-50%, 20px);
    -ms-transform: translate3d(-50%, 20px, 0);
    transform: translate(-50%, 20px);
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  from {
    -webkit-transform: translate(-50%, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate(-50%, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(-50%, 40px);
    -webkit-transform: translate3d(-50%, 40px, 0);
    -ms-transform: translate(-50%, 40px);
    -ms-transform: translate3d(-50%, 40px, 0);
    transform: translate(-50%, 40px);
    transform: translate3d(-50%, 40px, 0);
    opacity: 0;
  }

  @keyframes scrollDemo {

    from,
    30% {
      -webkit-transform: translate(0, 0px);
      -webkit-transform: translate3d(0, 0px, 0);
      -ms-transform: translate(0, 0px);
      -ms-transform: translate3d(0, 0px, 0);
      transform: translate(0, 0px);
      transform: translate3d(0, 0px, 0);
    }

    40%,
    60% {
      -webkit-transform: translate(0, -170px);
      -webkit-transform: translate3d(0, -170px, 0);
      -ms-transform: translate(0, -170px);
      -ms-transform: translate3d(0, -170px, 0);
      transform: translate(0, -170px);
      transform: translate3d(0, -170px, 0);
    }

    70%,
    90% {
      -webkit-transform: translate(0, -340px);
      -webkit-transform: translate3d(0, -340px, 0);
      -ms-transform: translate(0, -340px);
      -ms-transform: translate3d(0, -340px, 0);
      transform: translate(0, -340px);
      transform: translate3d(0, -340px, 0);
    }

    to {
      -webkit-transform: translate(0, 0px);
      -webkit-transform: translate3d(0, 0px, 0);
      -ms-transform: translate(0, 0px);
      -ms-transform: translate3d(0, 0px, 0);
      transform: translate(0, 0px);
      transform: translate3d(0, 0px, 0);
    }
  }

  @keyframes scrollColor-1 {

    from,
    39.9% {
      background: rgba(255, 255, 255, 0.7);
    }

    40%,
    to {
      background:  var(--primary-color);
    }
  }

  @keyframes scrollColor-2 {

    from,
    24% {
      background:  var(--primary-color);
    }

    24.2%,
    28% {
      background: #b2a5e5;
    }

    28.2%,
    39.9% {
      background:  var(--primary-color);
    }

    40%,
    69.9% {
      background: rgba(255, 255, 255, 0.7);
    }

    70%,
    to {
      background:  var(--primary-color);
    }
  }

  @keyframes scrollColor-3 {

    from,
    53.8% {
      background:  var(--primary-color);
    }

    54%,
    57.8% {
      background: #b2a5e5;
    }

    58%,
    69.9% {
      background:  var(--primary-color);
    }

    70%,
    99.9% {
      background: rgba(255, 255, 255, 0.7);
    }

    to {
      background:  var(--primary-color);
    }
  }

  @keyframes scrollBackToTop {

    from,
    30% {
      -webkit-transform: translate(0, 0px);
      -webkit-transform: translate3d(0, 0px, 0);
      -ms-transform: translate(0, 0px);
      -ms-transform: translate3d(0, 0px, 0);
      transform: translate(0, 0px);
      transform: translate3d(0, 0px, 0);
      background: rgba(255, 255, 255, 0.2);
    }

    40%,
    60% {
      -webkit-transform: translate(0, -170px);
      -webkit-transform: translate3d(0, -170px, 0);
      -ms-transform: translate(0, -170px);
      -ms-transform: translate3d(0, -170px, 0);
      transform: translate(0, -170px);
      transform: translate3d(0, -170px, 0);
    }

    70%,
    90% {
      -webkit-transform: translate(0, -340px);
      -webkit-transform: translate3d(0, -340px, 0);
      -ms-transform: translate(0, -340px);
      -ms-transform: translate3d(0, -340px, 0);
      transform: translate(0, -340px);
      transform: translate3d(0, -340px, 0);
    }

    84.8% {
      background: rgba(255, 255, 255, 0.2);
    }

    85%,
    88.8% {
      background: rgba(255, 255, 255, 0.5);
    }

    89% {
      background: rgba(255, 255, 255, 0.2);
    }

    to {
      -webkit-transform: translate(0, 0px);
      -webkit-transform: translate3d(0, 0px, 0);
      -ms-transform: translate(0, 0px);
      -ms-transform: translate3d(0, 0px, 0);
      transform: translate(0, 0px);
      transform: translate3d(0, 0px, 0);
      background: rgba(255, 255, 255, 0.2);
    }
  }

  @keyframes scrollCursor {
    from {
      -webkit-transform: translate(-50%, 236px);
      -webkit-transform: translate3d(-50%, 236px, 0);
      -ms-transform: translate(-50%, 236px);
      -ms-transform: translate3d(-50%, 236px, 0);
      transform: translate(-50%, 236px);
      transform: translate3d(-50%, 236px, 0);
    }

    15%,
    30% {
      -webkit-transform: translate(-50%, 0);
      -webkit-transform: translate3d(-50%, 0, 0);
      -ms-transform: translate(-50%, 0);
      -ms-transform: translate3d(-50%, 0, 0);
      transform: translate(-50%, 0);
      transform: translate3d(-50%, 0, 0);
    }

    35%,
    65% {
      -webkit-transform: translate(50%, 0);
      -webkit-transform: translate3d(50%, 0, 0);
      -ms-transform: translate(50%, 0);
      -ms-transform: translate3d(50%, 0, 0);
      transform: translate(50%, 0);
      transform: translate3d(50%, 0, 0);
    }

    78%,
    to {
      -webkit-transform: translate(-50%, 236px);
      -webkit-transform: translate3d(-50%, 236px, 0);
      -ms-transform: translate(-50%, 236px);
      -ms-transform: translate3d(-50%, 236px, 0);
      transform: translate(-50%, 236px);
      transform: translate3d(-50%, 236px, 0);
    }
  }

  @keyframes focusDemo {

    from,
    30% {
      -webkit-transform: translate(0, 0px);
      -webkit-transform: translate3d(0, 0px, 0);
      -ms-transform: translate(0, 0px);
      -ms-transform: translate3d(0, 0px, 0);
      transform: translate(0, 0px);
      transform: translate3d(0, 0px, 0);
    }

    40%,
    to {
      -webkit-transform: translate(0, -170px);
      -webkit-transform: translate3d(0, -170px, 0);
      -ms-transform: translate(0, -170px);
      -ms-transform: translate3d(0, -170px, 0);
      transform: translate(0, -170px);
      transform: translate3d(0, -170px, 0);
    }
  }

  @keyframes focusColor-1 {

    from,
    39.9% {
      background: #d3d6e5;
    }

    40%,
    to {
      background: #F3F4F8;
    }
  }

  @keyframes focusColor-2 {

    from,
    24% {
      background: #F3F4F8;
    }

    24.2%,
    28% {
      background: #dcdfeb;
    }

    28.2%,
    40% {
      background: #F3F4F8;
    }

    40.1%,
    to {
      background: #d3d6e5;
    }
  }

  @keyframes focusHeaderColor {

    from,
    40% {
      background: #dcdfeb;
    }

    40.2%,
    70% {
      background:  var(--primary-color);
    }

    75%,
    to {
      background: #dcdfeb;
    }
  }

  @keyframes focusCursor {
    from {
      -webkit-transform: translate(-50%, 200px);
      -webkit-transform: translate3d(-50%, 200px, 0);
      -ms-transform: translate(-50%, 200px);
      -ms-transform: translate3d(-50%, 200px, 0);
      transform: translate(-50%, 200px);
      transform: translate3d(-50%, 200px, 0);
      opacity: 0;
    }

    10% {
      opacity: 1;
    }

    15%,
    30% {
      opacity: 1;
      -webkit-transform: translate(-10%, 0);
      -webkit-transform: translate3d(-10%, 0, 0);
      -ms-transform: translate(-10%, 0);
      -ms-transform: translate3d(-10%, 0, 0);
      transform: translate(-10%, 0);
      transform: translate3d(-10%, 0, 0);
    }

    45%,
    to {
      opacity: 0;
    }
  }

  .highlight {
    padding: 9px 14px;
    margin-bottom: 14px;
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    border-radius: 4px;
  }

  .highlight pre {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    word-break: normal;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
  }

  .highlight pre code {
    font-size: inherit;
    color: #333;
  }

  .highlight pre code:first-child {
    display: inline-block;
    padding-right: 45px;
  }
}





.content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 140px; */
  /* min-height: calc(100vh - 80px); */
}

@media (max-width: 767px) {
  .content .container {
    gap: 0;
    min-height: calc(100vh - 101px);
    justify-content: center;
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .content .info {
    text-align: center;
    margin-bottom: 15px;
  }
}

.content .info h1 {
  color: #5d5d5d;
  font-size: 44px;
}

.content .info p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  color: #5d5d5d;
}

.content .info button {
  border: 0;
  border-radius: 20px;
  padding: 12px 30px;
  margin-top: 10px;
  cursor: pointer;
  color: #fff;
  background-color:  var(--primary-color);
}

.content .image img {
  max-width: 100%;
}


.phone {
  border: 2px dashed #5d5d5d;
  padding: 10px;
  display: inline-block;
}

.phone i {
  margin-right: 5px;
  /* Add margin to the right of the icon */
}





/* Basic Formatting  map animation */

:root {
  --purp: #6c38de;
  --lightpurp: #ac8dff;
}






@keyframes driving {
  0% {
    transform: translateY(-650px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Demo Styles */
/* Generic Hero */
.hero__title {
  padding: 3em 2rem 16rem;
  text-align: center;
  color: #ffffff;
  /* darken($purp, 50%) */
  position: relative;
  z-index: 1;
}

/* GPS Hero */
.gps-bg {
  background-color: #ac8dff;
  /* $lightpurp */
  position: relative;
  perspective: 500px;
  overflow: hidden;
}

.gps-bg:after {
  content: '';
  background-color: #ffff;
  position: absolute;
  width: 200%;
  height: 5em;
  bottom: 0;
  transform: skewY(-2deg);
}

.gps-bg__guts {
  position: absolute;
  transform: rotateX(45deg);
  width: calc(100% + 1000px);
  height: 100%;
  left: -500px;
}

.gps-bg__bg {
  height: 1300px;
  background-image: url(http://www.rastrac.com/hubfs/roads.svg);
  background-position: 50%;
  background-size: 25%;
  position: absolute;
  top: -162px;
  width: 100%;
  transform: translateY(-650px);
  animation: driving 10000ms linear 0ms infinite;
}

.gps-bg__route {
  width: 2em;
  background-color: #fff;
  position: absolute;
  top: -162px;
  bottom: -162px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 13px 5px rgba(55, 38, 96, 0.25);
  /* darken($purp, 30%) */
}

.gps-bg__route:after {
  content: '';
  width: 60%;
  background-color: #6c38de;
  /* $purp */
  position: absolute;
  top: 0;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
}

.gps-bg__fade {
  background-image: linear-gradient(to bottom, #ac8dff 10%, rgba(172, 141, 255, 0) 100%);
  /* $lightpurp */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
}

.gps-bg__marker {
  height: 6em;
  width: 6em;
  background-color: #fff;
  border-right: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
  border-left: 1px solid #ddd;
  border-radius: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0.125em 10px 3px rgba(55, 38, 96, 0.25);
  /* darken($purp, 30%) */
}

.gps-bg__marker:after {
  content: '';
  border-left: 1.5em solid transparent;
  border-right: 1.5em solid transparent;
  border-bottom: 3em solid #6c38de;
  /* $purp */
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

/* Basic Formatting  map animation */


.featuresIcons {
  font-size: 58px !important;
  color:  var(--primary-color);
}



/* // contact  */

#contact {
  overflow: hidden;
}
#contact button{
  border: 0;
  border-radius: 20px;
  padding: 12px 30px;
  cursor: pointer;
  color: #fff;
  background-color: var(--primary-color);
}
.contact {
  align-self: center;
}

.contact i {
  padding: 0 2px;
  font-size: 0.8em;
}

.contact h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5em;
  border: 1px solid #555;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 20px;
  height: 75px;
  color: #fff;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}

#contactform {
  height: 215px;
}

#contactform .right {
  float: right;
}

#contactform input,
#contactform textarea {
  margin-bottom: 14px;
  width: 100%;
  outline: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  border-radius: 0;
}

#contactform input {
  padding-left: 15px;
  height: 44px;
}

#contactform textarea {
  padding: 15px;
  height: 218px;
}

#contactform .btn {
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #333;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

#contactform .btn:hover {
  background: rgba(0, 0, 0, 0.84);
}

#map-canvas {
  width: 100%;
  height: 135px;
  margin-bottom: 15px;
  border: 2px solid #fff;
}

.icon-left {
  float: left;
  margin-right: 10px;
  /* Adjust as needed */
}

.info-text {
  margin-left: 25px;
  /* Adjust as needed */
}


/* we offer  */


#we-offer #we-offer a, #we-offer a:hover, #we-offer a:focus, #we-offer a:active {
  text-decoration: none;
  outline: none;
}
#we-offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#we-offer .bg-gray {
  background-color: #f9f9f9;
}

#we-offer.site-heading h2 {
display: block;
font-weight: 700;
margin-bottom: 10px;
text-transform: uppercase;
}

.site-heading h2 span {
color:  var(--primary-color);
}

.site-heading h4 {
display: inline-block;
padding-bottom: 20px;
position: relative;
text-transform: capitalize;
z-index: 1;
}

.site-heading h4::before {
background:  var(--primary-color) none repeat scroll 0 0;
bottom: 0;
content: "";
height: 2px;
left: 50%;
margin-left: -25px;
position: absolute;
width: 50px;
}

.site-heading {
margin-bottom: 60px;
overflow: hidden;
margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
margin: -15px -15px 0;
padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
background: #ffffff none repeat scroll 0 0;
border: 2px solid;
height: 15px;
margin: 0 5px;
width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
background:  var(--primary-color) none repeat scroll 0 0;
border-color:  var(--primary-color);
}

.we-offer-area .item {
background: #ffffff none repeat scroll 0 0;
border-left: 2px solid  var(--primary-color);
-moz-box-shadow: 0 0 10px #cccccc;
-webkit-box-shadow: 0 0 10px #cccccc;
-o-box-shadow: 0 0 10px #cccccc;
box-shadow: 0 0 10px #cccccc;
overflow: hidden;
padding: 30px;
position: relative;
z-index: 1;
}

.we-offer-area.text-center .item {
background: #ffffff none repeat scroll 0 0;
border: medium none;
padding: 67px 40px 64px;
}

.we-offer-area.text-center .item i {
background:  var(--primary-color) none repeat scroll 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color: #ffffff;
font-size: 40px;
height: 80px;
line-height: 80px;
position: relative;
text-align: center;
width: 80px;
z-index: 1;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
border: 2px solid  var(--primary-color);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content: "";
height: 90px;
left: -5px;
position: absolute;
top: -5px;
width: 90px;
z-index: -1;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
font-family: "Poppins",sans-serif;
font-size: 50px;
font-weight: 900;
opacity: 0.1;
position: absolute;
right: 30px;
top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
background:  var(--primary-color) none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
color: #ffffff;
}

.we-offer-area .item i {
color:  var(--primary-color);
display: inline-block;
font-size: 60px;
margin-bottom: 20px;
}

.we-offer-area .item h4 {
font-weight: 600;
text-transform: capitalize;
}

.we-offer-area .item p {
margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
background:  var(--primary-color) none repeat scroll 0 0;
content: "";
height: 100%;
left: -100%;
position: absolute;
top: 0;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
width: 100%;
z-index: -1;
}

.we-offer-area .item:hover::after {
left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
background-color: #ffffff !important;
color:  var(--primary-color) !important;
}

.we-offer-area.text-left .item i {
background:  var(--primary-color) none repeat scroll 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color: #ffffff;
display: inline-block;
font-size: 60px;
height: 100px;
line-height: 100px;
margin-bottom: 30px;
position: relative;
width: 100px;
z-index: 1;
text-align: center;
}

.we-offer-area.text-left .item i::after {
border: 2px solid  var(--primary-color);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content: "";
height: 120px;
left: -10px;
position: absolute;
top: -10px;
width: 120px;
}

.our-offer-items .item {
  margin-bottom: 20px;
}


/* we offer end  */


/* map tracking */

#mapTracking .card {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

#mapTracking .card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

#mapTracking .card-img-top {
  width: 52%;
  margin: 4% 23%;
  margin-right: 46px;
  border-radius: 5px 5px 0 0;
}

#mapTracking  .card-body {
  padding: 20px;
}

#mapTracking .top-half-div {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}





/* map tracking end */




/* footer  */

.footer-section ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
  
}

.footer-cta {
padding: 17px 0;
  
}


.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: var(--primary-color);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  padding: 21px 0;
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--primary-color);
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: var(--primary-color);
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: var(--primary-color);
    padding: 13px 20px;
    border: 1px solid var(--primary-color);
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: var(--primary-color);
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: var(--primary-color);
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* footer */

#map-container {
  height: 300px; /* Adjust height as needed */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
#map {
  width: 100%;
  height: 100%;
}
.address-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
}



/* Define animation speed variable */
:root {
  --animationSpeed: 40s;
}

/* Define scrolling animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

/* Slider styles */
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

/* Slide track styles */
.slider .slide-track {
  animation: scroll var(--animationSpeed) linear infinite;
  display: flex;
  width: calc(250px * 14);
}

/* Individual slide styles */
.slider .slide {
  height: 100px;
  width: 250px;
}



.calculator{
  margin-top: 4%;
}

.count-text{
color: #696969;
}


.timer{
color: #444444;
}
/*-=-=-=-=-=-=-=-=-=-=-=- */
/* Column Grids */
/*-=-=-=-=-=-=-=-=-=-=-=- */


/* Column Grids End */

/* Default styles */
/* Default styles */
#homepage .wrapper {
  margin: 76px 156px;
  position: relative;
}

#homepage .count-title {
  font-size: 40px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

#homepage .count-text {
  font-size: 13px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

#homepage .fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: var(--primary-color);
}

/* Mobile optimization */
@media (max-width: 767px) {
  #homepage .wrapper {
    margin: 20px 10px; /* Adjust margins for smaller screens */
  }

  #homepage .counter {
    margin-bottom: 20px; /* Add some space between counters */
    display: block; /* Display as block element */
    text-align: center; /* Center align the counters */
  }
}



/* // review  */

.reviews {
  
}

.reviews-slider {
  
  .slick-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 110px;
    border: none;
    z-index: 1;
    overflow: hidden;
    font-size: 0;
    outline: none;
    border-radius: 50%;
    background: rgba(#fff, 0.9);
    cursor: pointer;
    transition: filter 0.25s;
    
    &::before {
      content: "";
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: contain;
    }
    
    &:hover {
      filter: brightness(130%);
      opacity: 0.8;
    }
    
    &.slick-disabled {
      filter: brightness(150%) grayscale(100%);
      cursor: default;
    }
  }
  
  .slick-prev {
    left: 1rem;
    
    &::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23444' d='M150 191c-1.7 0-3.3-.5-4.6-1.7l-56.7-56.8c-2.5-2.5-2.5-6.5 0-9l56.7-56.8c2.5-2.5 6.6-2.5 9 0 2.6 2.5 2.6 6.6 0 9l-52 52.3 52 52.2c2.6 2.5 2.6 6.6 0 9-1.2 1.3-2.8 2-4.4 2zm106-63C256 57.4 198.6 0 128 0S0 57.4 0 128s57.4 128 128 128 128-57.4 128-128zm-12.8 0c0 63.5-51.7 115.2-115.2 115.2S12.8 191.5 12.8 128 64.5 12.8 128 12.8 243.2 64.5 243.2 128z'/%3E%3C/svg%3E");
    }
  }
  
  .slick-next {
    right: 1rem;
    
    &::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23444' d='M106 191c-1.6 0-3.2-.5-4.5-1.7-2.5-2.5-2.5-6.6 0-9l52.2-52.3-52.2-52.2c-2.5-2.5-2.5-6.6 0-9 2.5-2.6 6.6-2.6 9 0l56.8 56.7c2.5 2.5 2.5 6.5 0 9l-56.7 56.8c-1.3 1.2-3 1.8-4.6 1.8zm150-63C256 57.4 198.6 0 128 0S0 57.4 0 128s57.4 128 128 128 128-57.4 128-128zm-12.8 0c0 63.5-51.7 115.2-115.2 115.2S12.8 191.5 12.8 128 64.5 12.8 128 12.8 243.2 64.5 243.2 128z'/%3E%3C/svg%3E");
    }
  }
}

.reviews-slider__item {
  padding-top: 30px;
}

.reviews-slider__photo-wrapper {
  transform: scale(0.6);
  display: block;
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border: 20px solid transparent;
  border-radius: 50%;
  transition: transform 0.5s, filter 0.5s, border-color 0.5s;
  filter: grayscale(90%);
  
}

.slick-current .reviews-slider__photo-wrapper {
  transform: scale(1);
  border-color: var(--primary-color);
  filter: grayscale(0);
  will-change: transform, filter, border-color;
}

.reviews-slider__photo {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border: 4px solid #ffffff;
  border-radius: 50%;
}

.reviews-slider__text {
  position: relative;
  transform: scale(0.5);
  margin-top: 5px;
  margin-left: -15vw;
  margin-right: -15vw;
  padding: 20px;
  opacity: 0;
  border-radius: 8px;
  visibility: hidden;
  background-color: var(--primary-color);
  transition: opacity 0.2s, transform 0.5s, visibility 0s 0.25s;
  
  &::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 25px;
    height: 25px;
    margin: auto;
    border-radius: 5px 0 0;
    box-shadow: -2px -3px 0 #ffffff, -3px -2px 0 #ffffff;
    background-color: inherit;
  }
}

.slick-current .reviews-slider__text {
  transform: scale(1);
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s, transform 0.5s;
  will-change: transform, opacity, visibility;
}

.reviews-slider__message {
  margin-bottom: 15px;
  
  p:last-child {
    margin-bottom: 0;
  }
}

.reviews-slider__author-name {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  
  &::before {
    content: "";
    display: block;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    border-top: 1px solid;
  }
}

@media (max-width: 767px) {
  .reviews-slider__text {
    margin-left: auto;
    margin-right: auto;
  }
}


/* reviews */


