/*============================================================
Template Name   : Template Preview
Description     : Template Preview HTML5 Template
Author          : Themewild
Version         : 1.0
==============================================================*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --body-font: "Roboto", sans-serif;
  --theme-color: #18b0a3;
  --theme-bg-light: #f6f6f6;
  --body-text-color: #757f95;
  --color-white: #ffffff;
  --color-dark: #000d83;
  --box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --footer-bg: #070753;
  --footer-text-color: #f5faff;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  background: var(--theme-bg-light);
}

img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0px;
}

/* padding */
.pt-70 {
  padding-top: 70px;
}

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

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

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

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

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

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

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

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

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

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

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

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

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

/* preloader css */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-ripple div {
  position: absolute;
  border: 4px solid var(--color-white);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/* site-heading css */
.site-heading {
  margin-bottom: 45px;
}

.site-sub-title {
  color: var(--theme-color);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.site-title {
  color: var(--color-dark);
  font-size: 45px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 767px) {
  .site-title {
    font-size: 35px;
  }
}

/* theme btn css */
.theme-btn {
  background: var(--theme-color);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 2px solid var(--theme-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.theme-btn:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--theme-color);
}

.theme-btn i {
  font-size: 17px;
  font-weight: 600;
}

.theme-btn.btn-text:hover {
  color: var(--theme-color);
}

/* navbar css */
.navbar {
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 99;
}

.navbar-brand img {
  width: 170px;
}

@media all and (min-width: 992px) {
  .navbar-nav .nav-link {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 0px;
    margin: 0 25px;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
  }
}

.navbar.fixed-top {
  position: fixed;
  background: var(--footer-bg);
  padding: 12px 0;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* navbar mobile and offcanvas */
@media all and (max-width: 991px) {
  .navbar .navbar-toggler {
    border: 1.6px solid var(--color-white);
    border-radius: 8px;
  }

  .navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  .navbar .offcanvas {
    padding: 15px;
  }

  .navbar .offcanvas .btn-close {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--theme-color);
    border-radius: 50px;
    font-size: 30px;
    color: var(--color-white);
    opacity: 1;
  }

  .navbar .offcanvas-brand img {
    width: 150px;
  }

  .navbar-nav .nav-link {
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 500;
    transition: var(--transition);
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--theme-color);
  }

  .navbar .navbar-right {
    margin-top: 25px;
  }

  .navbar .navbar-right .theme-btn:hover {
    color: var(--theme-color);
  }
}

@media all and (max-width: 767px) {
  .navbar .offcanvas {
    width: 80%;
  }
}

/* hero-area css */
.hero-area {
  position: relative;
  background: var(--footer-bg);
  z-index: 1;
}

.hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/01.png);
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.hero-area.ng-mt {
  margin-top: -7rem;
}

.hero-content {
  text-align: center;
  padding-top: 250px;
  padding-bottom: 160px;
}

.hero-title {
  color: var(--color-white);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-text {
  color: var(--color-white);
  font-size: 24px;
  text-transform: capitalize;
  margin-top: 25px;
}

.hero-btn .theme-btn {
  margin-top: 40px;
}

@media all and (max-width: 767px) {
  .hero-title {
    font-size: 35px;
  }

  .hero-text {
    font-size: 20px;
  }
}

/* demo-area css */
.demo-area {
  position: relative;
}

.demo-item {
  text-align: center;
  position: relative;
}

.demo-status {
  position: absolute;
  right: -8px;
  top: 25px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
  padding: 2px 15px;
  border-radius: 50px;
  z-index: 2;
}

.demo-img {
  border-radius: 14px;
  background: var(--color-white);
  padding: 5px;
}

.demo-img .img {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.demo-img .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 0, 52, 0.65);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1;
}

.demo-item:hover .demo-img .img::after {
  opacity: 1;
  visibility: visible;
}

.demo-img .img.blur-overlay {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.demo-img .img.blur-overlay::after {
  display: none;
}

.demo-img .img.blur-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(3, 0, 52, 0.4);
  z-index: 2;
}

.demo-img img {
  border-radius: 10px;
  transition: all 0.9s ease-in-out;
}

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

.demo-view-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  transform: translateY(-52%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2;
}

.demo-item:hover .demo-view-btn {
  top: 50%;
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.demo-view-btn .theme-btn {
  background: var(--color-white);
  padding: 10px 18px;
  color: var(--theme-color);
  font-size: 16px;
  border: none;
  gap: 2px;
  box-shadow: 0 10px 30px 0 rgba(118, 187, 170, 0.25);
}

.demo-title {
  background: var(--color-white);
  width: fit-content;
  margin: -10px auto 0 auto;
  padding: 8px 20px;
  border-radius: 50em;
  position: relative;
  border: 10px solid var(--theme-bg-light);
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.demo-title a {
  color: var(--color-dark);
}

.demo-title a:hover {
  color: var(--theme-color);
}

/* feature-area css */
.feature-area {
  position: relative;
}

.feature-item {
  background: var(--color-white);
  text-align: center;
  border-radius: 15px;
  padding: 20px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-img {
  margin-bottom: 20px;
}

.feature-img img {
  width: 65px;
}

.feature-title {
  font-size: 16px;
  color: var(--color-dark);
}

/* footer-area css */
.footer-area {
  position: relative;
  background: var(--footer-bg);
  z-index: 1;
}

.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/02.png);
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.footer-content {
  text-align: center;
}

.footer-info {
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer-sub-title {
  color: var(--footer-text-color);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 65px;
  color: var(--footer-text-color);
  font-weight: 700;
  text-transform: capitalize;
}

.footer-btn {
  margin-top: 40px;
}

.footer-copyright {
  border-top: 1px solid var(--border-white-color);
  border-radius: 10px;
  padding: 30px 20px;
}

.footer-copyright-text {
  color: var(--footer-text-color);
}

.footer-copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-copyright-text a:hover {
  color: var(--theme-color);
}

@media all and (max-width: 767px) {
  .footer-sub-title {
    font-size: 20px;
  }

  .footer-title {
    font-size: 35px;
  }
}
