/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Big+Shoulders+Text:wght@100..900&display=swap");
:root {
  --font-heading: "Big Shoulders Text", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-size: 16px;
  --font-size-sm: 12px;
  --color-primary: #FF3561;
  --color-secondary: #FF3561;
  --color-tertiary: #20fd75;
  --color-danger: #EB4C4C;
  --color-white: #ffffff;
  --color-dark: #121212;
  --color-medium: #666666;
  --color-light: #F2F2F2;
  --color-primary-rgb: 249, 114, 95;
  --color-secondary-rgb: 249, 114, 95;
  --color-white-rgb: 255, 255, 255;
  --color-dark-rgb: 18, 18, 18;
  --text-dark: var(--color-dark);
  --text-white: var(--color-white);
  --text-medium: var(--color-medium);
  --text-light: var(--color-light);
  --btn-color: var(--color-white);
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --gradient-bg: linear-gradient(113.54deg, var(--color-primary) 15.17%, var(--color-secondary) 84.83%);
}

/* Reset CSS */
body {
  font-family: var(--font-body);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 28px;
  color: var(--text-medium);
}

a {
  color: var(--text-dark);
  text-decoration: none;
  outline: 0 !important;
  transition: color 0.1s linear;
}
a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
}

h1 {
  font-size: 78px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Padding CSS */
.pt-120 {
  padding-top: 120px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-50 {
  padding-top: 50px;
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-50 {
  padding-bottom: 50px;
}

/* Margin CSS */
.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.w-ft-c {
  max-width: fit-content !important;
}

.bg-none {
  background: unset !important;
}

.drop-shadow {
  filter: drop-shadow(0px 10px 34px rgba(43, 43, 43, 0.1));
}

.overflow-unset {
  overflow: unset !important;
}

/* Button CSS */
.btn {
  padding: 14px 28px;
  outline: 0 !important;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.25px;
  text-transform: capitalize;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease-out;
}
.btn:hover {
  transform: translateY(-3px);
}

.primary-btn {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  box-shadow: 0px 18px 54px rgba(var(--color-primary-rgb), 0.24);
  transition: all 0.3s ease;
}
.primary-btn:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background: transparent;
}

.btn-style-2 {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-primary);
  box-shadow: 0px 18px 54px rgba(var(--color-primary-rgb), 0.24);
  transition: all 0.3s ease;
}
.btn-style-2:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.btn-style-2 i {
  margin-left: 5px;
}

.secondary-btn {
  color: var(--color-primary);
  background-color: var(--color-white);
}

.section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.section-title .title {
  position: relative;
}
.section-title .title img {
  max-width: 120px;
  position: absolute;
}
.section-title .title.arrow-right img {
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
}
.section-title .title.arrow-left img {
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
}
.section-title ul li {
  position: relative;
  font-weight: 500;
  padding-right: 20px;
  padding-left: 20px;
  color: var(--color-primary);
}
.section-title ul li:not(:last-child):after {
  position: absolute;
  content: "";
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  background-image: var(--gradient-bg);
}

.subtitle {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--color-primary);
  background-image: var(--gradient-bg);
  color: var(--btn-color);
  font-weight: 400;
  font-family: var(--font-heading);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* Card CSS */
.card {
  border: none;
  border-radius: 0;
}
.card .card-title {
  margin-bottom: 20px;
}
.card .card-text {
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .no-wrap {
    flex-wrap: nowrap;
  }
}
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--color-white);
  box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
}
.header-area.is-sticky {
  animation: slideDown 0.5s ease-out 1;
}
.header-area.header-transparent {
  background-color: transparent;
  box-shadow: unset;
}
.header-area.header-transparent .navbar .nav-link {
  color: var(--text-white);
}
.header-area.header-transparent.is-sticky {
  background-color: rgba(var(--color-dark-rgb), 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(40px);
}
.header-area .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}
.header-area .navbar .navbar-toggler {
  padding: 0;
}
.header-area .navbar .navbar-toggler:focus {
  box-shadow: none !important;
}
.header-area .navbar .navbar-toggler span {
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  display: block;
  margin: 5px auto;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.header-area .navbar .navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.header-area .navbar .navbar-toggler.active span:nth-child(2) {
  transform: scale(0);
}
.header-area .navbar .navbar-toggler.active span:nth-child(3) {
  transform: rotate(135deg);
  top: -7px;
}
.header-area .navbar .nav-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: var(--text-dark);
  padding-left: 20px;
  padding-right: 20px;
}
.header-area .navbar .nav-link.active, .header-area .navbar .nav-link:hover {
  color: var(--color-primary);
}

.rtl-content {
  position: fixed;
  right: 6%;
  top: 20%;
  z-index: 999;
}
.rtl-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.rtl-content .rtl-btn {
  display: inline-block;
  width: 90px;
  height: 90px;
  background: var(--gradient-bg);
  border-radius: 50%;
  color: var(--btn-color);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}
.rtl-content .rtl-btn span {
  font-size: 22px;
  position: absolute;
  left: 0;
  text-align: center;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
.rtl-content .rtl-btn span small {
  display: block;
  font-size: 12px;
}
.rtl-content .rtl-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(var(--color-primary-rgb), 0.09);
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}
.rtl-content .rtl-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(var(--color-primary-rgb), 0.09);
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}
.rtl-content .rtl-btn .rtl-content .rtl-btn:focus {
  background-color: var(--gradient-bg);
  color: #fff;
}
.rtl-content .rtl-btn:hover {
  background-color: var(--gradient-bg);
  color: var(--btn-color);
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.bg-primary-light {
  background-color: rgba(var(--color-primary-rgb), 0.04);
}

.home-banner {
  padding-top: 220px;
  padding-bottom: 180px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-banner .hero-images .img {
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  animation: moveLeftRight 5s linear infinite;
  max-width: 20%;
}
.home-banner .hero-images .img:first-child {
  top: 30%;
  left: 10%;
}
.home-banner .hero-images .img:last-child {
  top: 28%;
  right: 12%;
}
.home-banner .hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 68.9655172414%;
  border-radius: 0 0 30px 30px;
  z-index: -3;
}
.home-banner .title {
  color: var(--text-white);
}
.home-banner .bg-img {
  background-size: cover;
  background-position: center bottom;
}
.home-banner .hero-content {
  max-width: 740px;
}
.home-banner .hero-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}
.home-banner .bottom-image {
  position: relative;
  margin-inline: auto;
  margin-top: 130px;
  transform: rotateZ(-5deg) scale(1.2);
}
.home-banner .bottom-image img {
  animation: move 12s linear infinite alternate;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5%);
  }
}
.home-banner .shape img {
  position: absolute;
  z-index: -1;
}
.home-banner .shape img.shape-1 {
  top: 18%;
  left: 18%;
  animation: moveUpDown 5s linear infinite;
}
.home-banner .shape img.shape-2 {
  top: 12%;
  right: 5%;
  animation: moveUpDown 5s linear infinite;
}

.home-demo-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-demo-area .section-title {
  margin-bottom: 0;
}
.home-demo-area .card {
  z-index: 1;
}
.home-demo-area .card .card-image {
  position: relative;
  overflow: hidden;
  height: 660px;
  padding: 20px;
  border-radius: 20px;
  background: #F9F9F9;
  z-index: 1;
}
.home-demo-area .card .card-image .lazy-container {
  border-radius: 14px;
  border: 1px solid #EAEAEA;
}
.home-demo-area .card .card-image img {
  width: 100%;
  transition: transform 10s ease-out;
}
.home-demo-area .card .card-image:hover img {
  transform: translateY(calc(-100% + 660px));
}
.home-demo-area .card .card-bg {
  position: absolute;
  width: 120%;
  top: 0;
  left: -10%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.home-demo-area .card .card-bg img {
  width: 120%;
  max-width: unset;
}
.home-demo-area .card .card-title {
  margin-top: 25px;
  margin-bottom: 0;
}
.home-demo-area .item .card {
  margin-top: 40px;
}

.demo-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.demo-area .image img {
  box-shadow: 0 20px 34px -10px rgba(43, 43, 43, 0.2);
}
.demo-area .shape img {
  position: absolute;
  z-index: -1;
}
.demo-area .shape img.shape-1 {
  top: 15%;
  left: 35%;
  animation: moveUpDown 5s linear infinite;
}
.demo-area .light img {
  position: absolute;
  z-index: -2;
}
.demo-area .light img.light-1 {
  top: 0;
  left: 0;
  animation: moveUpDown 8s linear infinite;
}
.demo-area .light img.light-2 {
  top: 0;
  right: 0;
  animation: moveUpDown 8s linear infinite;
}

.features-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-area .grid {
  display: grid;
  grid-auto-columns: 1fr;
  gap: 20px 20px;
}
.features-area .i1 {
  display: grid;
  grid-template-columns: calc(45% - 10px) calc(55% - 10px);
  gap: 0px 20px;
}
.features-area .i2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 20px;
}
.features-area .i2-2,
.features-area .i2-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-area .i3 .card .card:nth-child(1) {
  margin-bottom: 20px;
}
.features-area .i3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 20px;
}
@media only screen and (max-width: 992.99px) {
  .features-area .i3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 768.99px) {
  .features-area .i3 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
.features-area .card {
  height: 100%;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid #EAEAEA;
  background: #F9F9F9;
  z-index: 1;
  overflow: hidden;
}
.features-area .card .card-image {
  position: relative;
  overflow: hidden;
  width: fit-content;
  margin-inline: auto;
  z-index: 1;
}
.features-area .card .card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.features-area .card .card-bg img {
  width: 100%;
  max-width: unset;
}
.features-area .card .card-title {
  margin-top: 25px;
  margin-bottom: 0;
}

.elite-author-area {
  position: relative;
  overflow: hidden;
}
.elite-author-area .content .title {
  margin-bottom: 30px;
}
.elite-author-area .content .title * {
  display: inline;
}
.elite-author-area .content p {
  max-width: 410px;
  margin-bottom: 30px;
}
.elite-author-area .image {
  animation: moveUpDown 12s linear infinite;
}
.elite-author-area .shape img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 20%;
  width: fit-content;
  display: flex;
  align-items: center;
  z-index: -2;
  animation: moveAround 12s linear infinite;
}

.footer-area {
  position: relative;
  background-size: cover;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--color-primary);
  clip-path: polygon(50% 0%, 100% 18%, 100% 100%, 0 100%, 0% 18%);
  z-index: 1;
}
.footer-area .content {
  max-width: 767px;
}
.footer-area .content .title {
  color: var(--text-white);
  margin-bottom: 40px;
}
.footer-area .shape img {
  position: absolute;
  z-index: -1;
}
.footer-area .shape img.shape-1 {
  bottom: 8%;
  left: 30%;
  animation: moveUpDown 5s linear infinite;
}
.footer-area .shape img.shape-2 {
  top: 25%;
  left: 10%;
  animation: moveLeftRight 8s linear infinite;
}
.footer-area .shape img.shape-3 {
  bottom: 20%;
  right: 10%;
  animation: moveUpDown 10s linear infinite;
}
#innerPageDemo {
    background-size: cover;
}

/* -----------------------------------------
  	Go top CSS
----------------------------------------- */
.go-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--btn-color);
  font-size: 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-light);
  background-color: var(--color-primary);
  background-image: var(--gradient-bg);
  transition: 0.3s;
  transform: translateY(15%);
  z-index: 100;
}
.go-top.active {
  opacity: 1;
  transform: none;
}
.go-top:hover {
  transform: translateY(-3px);
}

/* -----------------------------------------
  	Preloader CSS
----------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1500;
}
#preloader .loader {
  position: relative;
  margin: 0 auto 20px;
  width: 40px;
  height: 40px;
  z-index: 1;
}
#preloader .loader::before, #preloader .loader::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-primary);
  z-index: -1;
  animation: rotate 5s linear infinite both;
}
#preloader .loader::after {
  animation-direction: reverse;
}

/* -----------------------------------------
Lazyload CSS
----------------------------------------- */
.lazy-container {
  position: relative;
  overflow: hidden;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: auto;
  background-color: #e7e9eb;
}
.lazy-container:before {
  position: absolute;
  content: "\f03e";
  font-family: "Font Awesome 5 Pro";
  top: 50%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  color: #c0c0c0;
}
.lazy-container::after {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.lazy-container.ratio-1-1::after {
  padding-bottom: 100%;
}
.lazy-container.ratio-1-2::after {
  padding-bottom: 114%;
}
.lazy-container.ratio-1-3::after {
  padding-bottom: 126.14%;
}
.lazy-container.ratio-2-3::after {
  padding-bottom: 66.67%;
}
.lazy-container.ratio-3-4::after {
  padding-bottom: 75%;
}
.lazy-container.ratio-4-3::after {
  padding-bottom: 133.3333333333%;
}
.lazy-container.ratio-5-3::after {
  padding-bottom: 60%;
}
.lazy-container.ratio-5-4::after {
  padding-bottom: 80%;
}
.lazy-container.ratio-16-11::after {
  padding-bottom: 53.57%;
}
.lazy-container.ratio-16-8::after {
  padding-bottom: 50%;
}
.lazy-container.ratio-21-10::after {
  padding-bottom: 35%;
}
.lazy-container.ratio-21-9::after {
  padding-bottom: 42.85%;
}
.lazy-container.ratio-21-8::after {
  padding-bottom: 38.0952380952%;
}
.lazy-container.ratio-vertical::after {
  padding-bottom: 152%;
}
.lazy-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}
.lazy-container img.lazy-image {
  opacity: 0.02;
  transition: opacity 0.5s;
}
.lazy-container img.lazyloaded {
  opacity: 1;
}

/* -----------------------------------------
  	Responsive CSS
----------------------------------------- */
/* Medium devices (tablets, less than 1200px) */
@media (min-width: 1200px) and (max-width: 1400px) {
  .home-banner .hero-wrapper .hero-images .img {
    max-width: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .home-banner .hero-wrapper .hero-images .img {
    max-width: 22%;
  }
  .home-banner .hero-wrapper .hero-images .img:first-child {
    left: -5%;
  }
  .home-banner .hero-wrapper .hero-images .img:last-child {
    right: -5%;
  }
}
/* Medium devices (tablets, less than 992px) */
@media only screen and (max-width: 991.98px) {
  /* Reset CSS */
  .hero-images,
  .shape {
    display: none;
  }
  .header-area {
    background-color: var(--color-white) !important;
  }
  .header-area .navbar {
    padding: 0;
  }
  .header-area .navbar .navbar-collapse {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--color-light);
    border-radius: 5px;
    padding: 10px 0;
  }
  .header-area .navbar .nav-link {
    font-size: 16px;
    color: var(--text-dark) !important;
  }
  .header-area .navbar .nav-link.active, .header-area .navbar .nav-link:hover {
    color: var(--color-primary) !important;
  }
  .header-area .navbar .side-options {
    padding: 10px 20px;
  }
}
/* Medium devices (tablets, Between 768px to 992px) */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  /* Reset CSS */
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 20px;
  }
  .ptb-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pt-120 {
    padding-top: 100px;
  }
  .pb-120 {
    padding-bottom: 100px;
  }
  .ptb-90 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pt-90 {
    padding-top: 70px;
  }
  .pb-90 {
    padding-bottom: 70px;
  }
  .pb-50 {
    padding-bottom: 0;
  }
  /* Section Title CSS */
  .home-banner {
    padding-top: 145px;
  }
  .home-banner .hero-overlay {
    height: 80%;
  }
  .features-area .container {
    max-width: 840px;
  }
  .footer-area {
    clip-path: polygon(50% 0%, 100% 10%, 100% 100%, 0 100%, 0% 10%);
  }
}
/* Small devices (landscape phones, less than 768px) */
@media only screen and (max-width: 767.98px) {
  /* Reset CSS */
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
  }
  .ptb-120 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pt-120 {
    padding-top: 70px;
  }
  .pb-120 {
    padding-bottom: 70px;
  }
  .pt-90 {
    padding-top: 40px;
  }
  .pb-90 {
    padding-bottom: 40px;
  }
  .pb-50 {
    padding-bottom: 10px;
  }
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  /* Section Title CSS */
  .section-title .title {
    flex-direction: column;
  }
  .section-title .title img {
    display: none;
  }
  .shape {
    display: none;
  }
  .subtitle {
    font-size: 15px;
    padding: 4px 12px;
  }
  .home-banner {
    padding-top: 135px;
    padding-bottom: 70px;
  }
  .home-banner .bottom-image {
    display: none;
  }
  .home-banner .hero-overlay {
    height: 100%;
  }
  .home-demo-area {
    padding-top: 70px;
  }
  .features-area {
    padding-top: 0;
    margin-top: 0;
  }
  .features-area .bg-title {
    position: relative;
    margin-bottom: 30px;
  }
  .features-area .bg-title .title {
    font-size: 38px;
    line-height: 30px;
  }
  .home-demo-area .card .card-image {
    height: 500px;
  }
  .features-area .i2-2,
  .features-area .i2-1-1,
  .features-area .i2-1,
  .features-area .i2,
  .features-area .i1,
  .features-area .grid {
    display: block;
  }
  .features-area .section-title {
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .features-area .card {
    margin-top: 30px;
  }
  .elite-author-area .content p {
    margin-inline: auto;
  }
  .elite-author-area {
    text-align: center;
  }
  .elite-author-area .content-top .subtitle {
    margin: 0;
    margin-bottom: 40px;
  }
  .elite-author-area .content-top img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-area {
    clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
  }
  .go-top {
    width: 40px;
    height: 40px;
  }
}
/* -----------------------------------------
  	Animation CSS
----------------------------------------- */
@keyframes loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveAround {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=style.css.map */
