@import url('../../css2');


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

Landing Page
------------------------------------------------------------------*/

html {

  scroll-behavior: smooth;
}

* {
  font-family: 'Be Vietnam Pro', sans-serif;
}


/* Hero */

.home-bg {
  height: 30rem;
  display: flex;
  align-items: center;
  background-color: #000000;
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.85)), url(bg.jpg);
}

.home-bg .home-content img {
  max-width: 100%;
  width: 250px;
}

.home-bg .home-content h3 {
  font-size: 20px;
  color: #ffffff;
  margin: 32px 0 8px 0;
  font-weight: 200;
}

.home-bg .home-content h2 {
  margin: 0px 0 40px 0px;
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
}

.home-bg .home-btn {
  border: 2px solid transparent;
  color: #ffffff;
  padding: 16px 34px;
  display: inline-block;
  font-weight: 400;
  background-color: #6495ed;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
}

.home-bg .home-btn:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
}


/* Demos */

.demos-bg {
  padding-bottom: 120px;
  background: rgb(100 149 237 / 10%);
}

.demos-bg .home-content {
  transition: 1s cubic-bezier(0, 3.15, 1, 1) 0.15s;
  box-shadow: 0 30px 25px -20px rgb(0 0 0 / 51%);

}

.demos-bg .home-content:hover {
  box-shadow: 0 30px 25px -20px rgb(0 0 0 / 51%);
  transform: scale(1.02);
}

.demos-bg .home-content img {
  transition: 0.5s ease-in-out;
  height: 450px;
  object-fit: cover;
  object-position: center top;
}

.demos-bg .home-content img.comming-soon{
  object-position: center;
}

.demos-bg .home-content:hover img {
  border-bottom: 4px solid transparent;
}

.demos-bg .home-content a h3 {
  transition: 0.5s ease-in-out;
  background-color: rgba(7, 12, 31, 0.99);
  border-radius: 0px 0px 8px 8px;
}

.demos-bg .home-content:hover a h3 {
  background-color: #6495ed;
  border-radius: 0px 0px 8px 8px;
}

.demos-bg .home-content a {
  text-decoration: none;
}

.demos-bg .home-content img {
  max-width: 100%;
  width: 100%;
  border-bottom: 4px solid #6495ed;
  border-radius: 8px 8px 0 0;
}

.demos-bg h2 {
  color: #222222;
  padding: 80px 0 56px 0px;
  font-size: 40px;
  font-weight: 200;
  margin: 0px;
}

.demos-bg .home-content h3 {
  font-weight: 300;
  padding: 32px 0;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #ffffffa3;
}