/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Variables
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Hero Slider
# About Section
# Client Carousel
# Service Section
# Call To Action
# Feature Section
# Portfolio Section
# Testimonial Section
# Choose Section
# Funfact Section
# Google Map
# Footer
# Accrodion Section
# Contact Section
# Boxed Home
# Page Header
# Gallery
# Pricing
# Faq
# Login
# 404
# Service Details
# Portfolio Details
# Product Page
# Product Details
# Cart
# Checkout
# Custom Cursor
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--nisoz-base-rgb), 0.2),
      0 0 0 30px rgba(var(--nisoz-base-rgb), 0.2),
      0 0 0 50px rgba(var(--nisoz-base-rgb), 0.2);
  }

  100% {
    box-shadow: 0 0 0 30px rgba(var(--nisoz-base-rgb), 0.2),
      0 0 0 50px rgba(var(--nisoz-base-rgb), 0.2),
      0 0 0 70px rgba(var(--nisoz-base-rgb), 0);
  }
}

.team-one {
  position: relative;
  padding: 0 0 90px;
}

@media (max-width: 767px) {
  .team-one {
    padding-bottom: 50px;
  }
}

.team-one .container {
  max-width: 1600px;
}

/*-- Team Details --*/
.team-details {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .team-details {
    padding: 80px 0;
  }
}

/**-- Certificates --**/

/*-- Contact --*/

/*-- Sidebar --*/
.sidebar {
  position: relative;
}

@media (max-width: 991px) {
  .sidebar {
    margin: 50px 0 30px;
  }
}

/*-- Blog Details --*/
.blog-details {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --nisoz-font: "DM Sans", sans-serif;
  --heading-font: "DM Sans", sans-serif;
  --nisoz-color: #717175;
  --nisoz-color-rgb: 113, 113, 117;
  --nisoz-color2: #646466;
  --nisoz-color2-rgb: 100, 100, 102;
  --nisoz-color3: #f2f2f6;
  --nisoz-color3-rgb: 242, 242, 246;
  --nisoz-base: #027d4e;
  --nisoz-base-rgb: 182, 239, 0;
  --nisoz-black: #161617;
  --nisoz-black-rgb: 22, 22, 23;
  --nisoz-black2: #171717;
  --nisoz-black2-rgb: 23, 23, 23;
  --nisoz-black3: #18191c;
  --nisoz-black3-rgb: 24, 25, 28;
  --nisoz-black2-rgb: 23, 23, 23;
  --nisoz-black4: #000;
  --nisoz-black4-rgb: 0, 0, 0;
  --nisoz-black5: #0c0c0d;
  --nisoz-black5-rgb: 12, 12, 13;
  --nisoz-white: #ffffff;
  --nisoz-white-rgb: 255, 255, 255;
}

body {
  font-family: var(--nisoz-font);
  color: var(--nisoz-color);
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--nisoz-base);
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  color: var(--nisoz-black);
  font-weight: 600;
}

@media (max-width: 575px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  transition: filter 0.5s ease;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.nisoz-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--nisoz-base);
  color: var(--nisoz-black);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--heading-font);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 16px 48.5px 17px;
  transition: 500ms;
  overflow: hidden;
  z-index: 2;
  position: relative;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  -webkit-transition-delay: calc((var(--n) - 1) * 0.1s);
  -moz-transition-delay: calc((var(--n) - 1) * 0.1s);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.nisoz-btn__text {
  position: relative;
  z-index: 2;
}

.nisoz-btn__shape {
  display: inline-block;
  position: absolute;
  width: 25%;
  height: 100%;
  background: var(--nisoz-black);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--b) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--b) - 1) * 0.1s);
  z-index: 1;
}

.nisoz-btn__shape:nth-child(1) {
  --b: 1;
}

.nisoz-btn__shape:nth-child(2) {
  --b: 2;
}

.nisoz-btn__shape:nth-child(3) {
  --b: 3;
}

.nisoz-btn__shape:nth-child(4) {
  --b: 4;
}

.nisoz-btn:hover {
  color: var(--nisoz-white);
}

.nisoz-btn:hover .nisoz-btn__shape {
  transform: translateY(0) scale(2);
  -moz-transform: translateY(0) scale(2);
  -moz-transform: translateY(0) scale(2);
}

.preloader {
  position: fixed;
  background-color: var(--nisoz-black);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background-color: var(--nisoz-black);
  z-index: 99;
  opacity: 0;
  padding: 6px;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-top--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top::after {
  position: absolute;
  content: "\e910";
  font-family: "icomoon" !important;
  text-align: center;
  line-height: 50px;
  font-size: 17px;
  color: var(--nisoz-base);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-top__circle path {
  stroke: var(--nisoz-base);
  stroke-width: 4;
  fill: none;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* post paginations */

/* owl carousel overfllow */

/* owl carousel Dots */

/* section title */
.section-title {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}

.section-title__triangle {
  position: relative;
  display: flex;
  margin: 0 0 3px;
}

.section-title__triangle-left {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 10px;
  border-color: transparent transparent transparent var(--nisoz-base);
}

.section-title__triangle-right {
  margin: 5px 0 0 -4px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 10px 8.5px 0;
  border-color: transparent #f1f1f6 transparent transparent;
}

.section-title.text-center .section-title__triangle {
  justify-content: center;
}

.section-title.text-end .section-title__triangle {
  justify-content: flex-end;
}

.section-title__tagline {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--nisoz-color);
  font-weight: 400;
  margin: 0 0 6px;
  position: relative;
}

.section-title__title {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

@media (max-width: 767px) {
  .section-title__title {
    font-size: 10px;
    line-height: 40px;
  }

  .section-title__title br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.topbar {
  position: relative;
  background-color: var(--nisoz-black);
  padding: 7px 68px 9px;
}

@media (max-width: 1500px) {
  .topbar {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}

.topbar__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.topbar__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.topbar__list li {
  list-style: none;
  color: var(--nisoz-color2);
  font-size: 12px;
}

.topbar__list li span {
  position: relative;
  top: 1px;
  display: inline-block;
  color: var(--nisoz-base);
  font-size: 14px;
  margin-right: 7px;
}

.topbar__list li a {
  color: inherit;
}

.topbar__list li a:hover {
  color: var(--nisoz-base);
}

.topbar__list li+li {
  margin-left: 45px;
}

.topbar__menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.topbar__menu li {
  list-style: none;
  color: var(--nisoz-color2);
  font-size: 12px;
}

.topbar__menu li a {
  color: inherit;
  position: relative;
}

.topbar__menu li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -17px;
  width: 1px;
  height: 9px;
  background-color: var(--nisoz-color2);
  transform: rotate(10deg);
}

.topbar__menu li a:hover {
  color: var(--nisoz-base);
}

.topbar__menu li:last-of-type a::after {
  display: none;
}

.topbar__menu li+li {
  margin-left: 30px;
}

.topbar__social {
  position: relative;
  margin-left: 60px;
}

.topbar__social::after {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 24px;
  background-color: RGBA(var(--nisoz-white-rgb), 0.1);
  content: "";
}

.topbar__social a {
  display: inline-block;
  color: var(--nisoz-white);
  font-size: 14px;
}

.topbar__social a:hover {
  color: var(--nisoz-base);
}

.topbar__social a+a {
  margin-left: 24px;
}

.main-menu .container-fluid {
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
}

.main-menu {
  background-color: RGBA(var(--nisoz-black3-rgb), 0.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 91;
  padding: 0 68px;
}

@media (max-width: 1500px) {
  .main-menu {
    padding: 0 18px;
  }
}

@media (max-width: 1199px) {
  .main-menu {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .main-menu {
    top: 0;
  }
}

@media (min-width: 991px) and (max-width: 1360px) {
  .main-menu {
    padding: 0 12px;
  }
}

.main-menu__logo {
  display: flex;
  align-items: center;
  position: relative;
  padding: 33px 0;
}

@media (max-width: 767px) {
  .main-menu__logo {
    padding: 23px 0;
  }
}

.main-menu__nav {
  padding-left: 125px;
}

@media (max-width: 1620px) {
  .main-menu__nav {
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .main-menu__nav {
    display: none;
  }
}

.main-menu,
.stricky-header {
  /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 31px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  margin-left: 74px;
}

@media (max-width: 1500px) {

  .main-menu .main-menu__list>li,
  .stricky-header .main-menu__list>li {
    margin-left: 54px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {

  .main-menu .main-menu__list>li,
  .stricky-header .main-menu__list>li {
    margin-left: 48px;
  }
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
  color: var(--nisoz-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  position: relative;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--nisoz-base);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--nisoz-white);
  box-shadow: 0px 10px 60px 0px RGBA(var(--nisoz-white-rgb), 0.07);
  padding: 15px 20px 10px;
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu,
.stricky-header .main-menu__list>.megamenu {
  position: static;
}

.main-menu .main-menu__list>.megamenu>ul,
.stricky-header .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li>a,
.stricky-header .main-menu__list li ul li>a {
  font-size: 16px;
  line-height: 26px;
  color: var(--nisoz-color);
  font-weight: 500;
  font-family: var(--heading-font);
  text-transform: uppercase;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 10px;
  transition: 400ms;
  margin-bottom: 4px;
}

.main-menu .main-menu__list li ul li>a::after,
.stricky-header .main-menu__list li ul li>a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  color: var(--nisoz-base);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li.current>a,
.stricky-header .main-menu__list li ul li:hover>a {
  background-color: var(--nisoz-black);
  color: var(--nisoz-white);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after,
.stricky-header .main-menu__list li ul li.current>a::after,
.stricky-header .main-menu__list li ul li:hover>a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
  top: 0;
  left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .main-menu__list li:nth-last-child(1) ul li>ul,
  .main-menu__list li:nth-last-child(2) ul li>ul {
    left: auto;
    right: calc(100% + 20px);
  }
}

.main-menu__right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.main-menu__right .main-menu__search {
  padding-left: 30px;
  margin-left: 28px;
  border-left: 1px solid RGBA(var(--nisoz-white-rgb), 0.2);
}

@media (max-width: 1199px) {
  .main-menu__right .main-menu__search {
    padding-left: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu__right .main-menu__search {
    padding-left: 20px;
    margin-left: 18px;
  }
}

.main-menu__phone {
  display: flex;
  align-items: center;
  color: var(--nisoz-white);
  font-family: var(--heading-font);
  font-size: 18px;
  letter-spacing: 1.8px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu__phone {
    letter-spacing: 0;
  }
}

@media (max-width: 1199px) {
  .main-menu__phone {
    display: none;
  }
}

.main-menu__phone i {
  width: 50px;
  height: 50px;
  background-color: var(--nisoz-black);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: var(--nisoz-base);
  font-size: 22px;
  line-height: 50px;
  margin-right: 10px;
}

.main-menu__phone:hover {
  color: var(--nisoz-base);
}

.main-menu__search,
.main-menu__cart {
  position: relative;
  font-size: 24px;
  color: var(--nisoz-white);
  margin-left: 19px;
  display: flex;
  align-items: center;
  height: 50px;
  transition: all 500ms ease;
}

.main-menu__search:hover,
.main-menu__cart:hover {
  color: var(--nisoz-base);
}


.main-menu__cart__count {
  font-size: 10px;
  font-weight: 600;
  color: var(--nisoz-black);
  font-family: var(--heading-font);
  text-align: center;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-color: var(--nisoz-base);
  -webkit-border-radius: 16px;
  -khtml-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  position: absolute;
  top: 10px;
  right: -6px;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}


.main-menu__search:hover .main-menu__cart__count,
.main-menu__cart:hover .main-menu__cart__count {
  opacity: 1;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: var(--nisoz-black);
  box-shadow: 0px 10px 60px 0px RGBA(var(--nisoz-black-rgb), 0.07);
  width: 100%;
  transform: translateY(-120%);
  transition: transform 500ms ease;
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none;
  }
}

.stricky-header.stricky-fixed {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -20px;
  margin-bottom: -20px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__inner {
  padding: 40px 40px 36px;
  background-color: var(--nisoz-white);
  box-shadow: 0px 10px 60px 0px RGBA(var(--nisoz-white-rgb), 0.07);
}

.home-showcase__image {
  position: relative;
  background-color: var(--nisoz-black);
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  transition: 500ms ease;
  transform: scale(1);
}

.home-showcase__image:hover>img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom center;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 11px 20px 12px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 14px;
}

.mobile-nav__toggler {
  font-size: 24px;
  color: var(--nisoz-white);
  cursor: pointer;
  transition: 500ms;
}

.mobile-nav__toggler:hover {
  color: var(--nisoz-base);
}

@media (min-width: 1200px) {
  .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes scalings {
  from {
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    -ms-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes blinker {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.05, 1.05);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes animationFrames {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes movebounce {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  50% {
    transform: translateX(-10px) translateY(-10px);
  }

  100% {
    transform: translateX(0px) translateY(0px);
  }
}

@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-webkit-keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes iconTranslateY {
  49% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--nisoz-white-rgb), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--nisoz-white);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--nisoz-black);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--nisoz-black2);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--nisoz-white);
  cursor: pointer;
}

.mobile-nav__close:hover {
  color: var(--nisoz-base);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--nisoz-white-rgb), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--nisoz-white-rgb), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--nisoz-white);
  font-size: 16px;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: 1.6px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--nisoz-base);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--nisoz-base);
  border: none;
  outline: none;
  color: var(--nisoz-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--nisoz-white);
  color: var(--nisoz-black);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--nisoz-white);
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 20px;
}

.mobile-nav__social a:hover {
  color: var(--nisoz-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--nisoz-white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--nisoz-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--nisoz-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  color: var(--nisoz-black);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
    pointer-events: none;

  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: var(--nisoz-black4);
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type="search"],
.search-popup__form input[type="text"] {
  width: 100%;
  background-color: var(--nisoz-white);
  font-size: 15px;
  color: var(--nisoz-color);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__form .nisoz-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}

.search-popup__form .nisoz-btn::after {
  background-color: var(--nisoz-black);
}

.search-popup.active {
  z-index: 9999;
    pointer-events: none;

}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.8;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

body.locked .page-wrapper {
  filter: blur(3px);
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

/*-- Hero slider two --*/

/*-- Hero slider three --*/

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-size: 100% 100%;
  background-position: center;
  object-fit: contain;
  background-repeat: no-repeat;
  background-color: var(--nisoz-white);
  counter-reset: count;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .service-one {
    position: relative;
    padding: 80px 0;
    object-fit: contain;
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

.service-one .section-title__triangle-right {
  border-right-color: var(--nisoz-white);
}

.service-one .nisoz-btn {
  margin-left: 26px;
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 7px 19.5px 8px;
}

@media (max-width: 767px) {
  .service-one .nisoz-btn {
    margin-top: 10px;
  }
}

.service-one__item {
  position: relative;
  background-color: var(--nisoz-white);
  box-shadow: 0px 10px 60px 0px rgba(var(--nisoz-black4-rgb), 0.07);
  counter-increment: count;
  margin-bottom: 30px;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 300px;
  border-radius: 10px;
}

.service-one__item::after {
  transition: all 500ms ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--nisoz-black);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.service-one__item__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 40px 40px 37px;
  transition: all 500ms ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-one__item__wrapper {
    padding: 40px 30px 37px;
  }
}

.service-one__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: luminosity;
  background-position: center center;
  transition: all 500ms ease;
  transform: scale(1.3);
  z-index: 1;
  visibility: hidden;
}

.service-one__item__icon {

  font-size: 80px;
  line-height: 1;
  position: relative;
  z-index: 3;
  color: var(--nisoz-color);
  display: inline-block;
  margin: 0 0 30px;
  transition: 500ms ease;
}

.service-one__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}

.service-one__item:hover .service-one__item__icon {
  color: var(--nisoz-base);
}

.service-one__item:hover .service-one__item__icon span {
  transform: scale(0.9);
}

.service-one__item__title {
  font-size: 20px;
  text-transform: uppercase;
  max-width: 125px;
  transition: all 300ms ease;
  position: relative;
  z-index: 3;
  margin: 0 0 28px;
}

.service-one__item__title a {
  color: inherit;
}

.service-one__item__title a:hover {
  color: var(--nisoz-base);
}

.service-one__item__text {
  position: relative;
  z-index: 3;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  transition: all 500ms ease;
  margin: 0;
}

/*-- Service 2 --*/

/*-- Service 3 --*/

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  background-color: var(--nisoz-black);
  padding: 103px 0 176px;
  margin-bottom: 60px;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  background-blend-mode: luminosity;
  opacity: 0.3;
  background-color: var(--nisoz-black);
}

.cta-one .section-title__title {
  color: var(--nisoz-white);
  font-weight: 600;
  font-size: 60px;
}

@media (max-width: 991px) {
  .cta-one .section-title__title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .cta-one .section-title__title {
    font-size: 36px;
  }
}

.cta-one .nisoz-btn {
  margin: 44px 0 0;
}

@media (max-width: 767px) {
  .cta-one .nisoz-btn {
    margin: 0 0 40px;
  }
}

@media (max-width: 767px) {
  .cta-one .text-end {
    text-align: left !important;
  }
}

.cta-one .section-title__triangle-left {
  border-left-color: var(--nisoz-white);
}

.cta-one .section-title__triangle-right {
  border-right-color: #747475;
}

.cta-one__text {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 34px;
  color: var(--nisoz-white);
  border-top: 3px solid var(--nisoz-white);
  padding: 41px 0 0;
}

.cta-one__text p {
  margin: -6px 0 0 19px;
}

.cta-two {
  position: relative;
  background-color: var(--nisoz-white);
}

.cta-two__info-top {
  position: relative;
  background-color: var(--nisoz-base);
  padding: 66px 80px 70px;
}

@media (max-width: 767px) {
  .cta-two__info-top {
    padding: 50px 25px 90px;
  }
}

.cta-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  opacity: 0.3;
}

.cta-two .section-title {
  margin: 0;
}

.cta-two .section-title__title {
  color: var(--nisoz-black4);
}

@media (max-width: 991px) {
  .cta-two .section-title__title br {
    display: none;
  }
}

.cta-two__icon {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 256px;
  height: 256px;
  background-color: transparent;
  font-size: 85px;
  color: var(--nisoz-base);
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding: 0 19px 21px 0;
}

@media (max-width: 767px) {
  .cta-two__icon {
    width: 180px;
    height: 180px;
    font-size: 70px;
  }
}

.cta-two__icon::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-style: solid;
  border-width: 0 0 256px 256px;
  border-color: transparent transparent var(--nisoz-black) transparent;
  z-index: -1;
}

@media (max-width: 767px) {
  .cta-two__icon::after {
    border-width: 0 0 180px 180px;
  }
}

.cta-two__icon span {
  display: inline-block;
  transform: rotate(45deg);
}

.cta-two__icon:hover {
  color: var(--nisoz-white);
}

.cta-two__info-bottom {
  position: relative;
  padding: 15px 80px 16px;
  background-color: var(--nisoz-black);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: var(--nisoz-color2);
  margin: 0;
  margin-bottom: -50px;
  z-index: 2;
}

.cta-two__info-bottom a {
  color: var(--nisoz-white);
}

.cta-two__info-bottom a:hover {
  color: var(--nisoz-base);
}

@media (max-width: 767px) {
  .cta-two__info-bottom {
    padding: 15px 25px 16px;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  background-color: var(--nisoz-white);
}

.feature-one__wrapper {
  background: linear-gradient(135deg, #027d4e, #204332, #2c6449);
  box-shadow: 0px 10px 60px 0px rgba(var(--nisoz-black4-rgb), 0.07);
  padding: 52px 60px 53px;
  top: -60px;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
  color: var(--nisoz-white);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-one__grid_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature-one__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

.feature-one__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.icon {
  width: 50px;
  height: 50px;
  background: #00ff9f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  left: 20px;
  box-shadow: 0 0 10px #00ff9f;
  animation: pulse 2s infinite;
}

.card-title {
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #00ff9f;
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ff9f;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #00ff9f;
  }
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.6s;
}

.card:nth-child(4) {
  animation-delay: 0.8s;
}

.card:nth-child(5) {
  animation-delay: 1.0s;
}

.card:nth-child(6) {
  animation-delay: 1.2s;
}

@media screen and (max-width: 480px) {
  .feature-one__grid_container {
    grid-template-columns: 1fr;
  }
}


@media screen and (max-width: 360px) {
  .feature-one__wrapper {
    padding: 40px 20px 40px;
  }

  .feature-one__card {
    padding: 1.5rem;
  }

  .icon {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Choose Section
--------------------------------------------------------------*/
.choose-one {
  position: relative;
  overflow: hidden;
  margin-bottom: -140px;
  z-index: 2;
}

@media (max-width: 767px) {
  .choose-one {
    margin-bottom: -170px;
  }
}

.choose-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 56.8%;
  height: 83.7%;
  /* background-color: var(--nisoz-base); */
  background: linear-gradient(#027d4e, #204332, #2c6449);
  z-index: 2;
}

@media (max-width: 991px) {
  .choose-one__bg {
    width: 100%;
    height: 100%;
  }
}

.choose-one__bg__one {
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 28px;
  height: calc(100% - 120px);
  background-color: rgba(var(--nisoz-black-rgb), 0.1);
}

.choose-one__bg__two {
  position: absolute;
  right: 108px;
  bottom: 0;
  width: 28px;
  height: calc(100% - 250px);
  background-color: rgba(var(--nisoz-black-rgb), 0.1);
}

.choose-one__content {
  position: relative;
  z-index: 3;
  padding: 120px 0 0;
}

@media (max-width: 991px) {
  .choose-one__content {
    padding: 80px 0 35px;
  }
}

.choose-one__content .section-title__triangle-left {
  border-left-color: #151516;
}

.choose-one__content .section-title__triangle-right {
  border-right-color: #96c304;
}

.choose-one__content .section-title__tagline,
.choose-one__content .section-title__title {
  color: #fff;
}

.choose-one__content .section-title {
  margin-bottom: 30px;
}

.choose-one__fact {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: 3;
  max-width: 377px;
  border-bottom: 1px solid rgba(var(--nisoz-white-rgb), 0.2);
  padding-bottom: 32px;
}

@media (max-width: 991px) {
  .choose-one__fact {
    position: relative;
  }
}

.choose-one .nisoz-stretch__image {
  margin-left: -17px;
}

@media (max-width: 991px) {
  .choose-one .nisoz-stretch__image {
    z-index: 5;
  }
}

.nisoz-stretch-element-inside-column {
  height: 100%;
}

.nisoz-stretch__image {
  position: relative;
  margin-left: auto;
  background-color: var(--nisoz-black4);
  max-width: 1062px;
  height: 100%;
  overflow: hidden;
}

.nisoz-stretch__image img {
  width: 100%;
  height: 857px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .nisoz-stretch__image img {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Funfact Section
--------------------------------------------------------------*/
.fact-one {
  position: relative;
  background-color: var(--nisoz-black);
  padding: 320px 0 30px;
}

@media (max-width: 767px) {
  .fact-one {
    padding-bottom: 0;
  }
}

.fact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  opacity: 0.1;
}

.fact-one__item {
  position: relative;
  z-index: 2;
  padding: 0 15px 36px;
  background-color: var(--nisoz-black);
  border: 10px solid var(--nisoz-black5);
  height: 150px;
  transition: all 400ms ease;
  margin-bottom: 90px;
}

.fact-one__item::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  bottom: auto;
  background-color: var(--nisoz-base);
  transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
  -moz-transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
  -webkit-transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
}

.fact-one__item__icon {
  width: 116px;
  height: 116px;
  background-color: var(--nisoz-black5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 600ms ease;
  color: var(--nisoz-base);
  font-size: 62px;
  border-radius: 50%;
  margin-bottom: 7px;
  margin: -70px auto 10px;
}

.fact-one__item__icon span {
  display: inline-block;
}

.fact-one__item:hover::after {
  height: 100%;
  top: auto;
  bottom: 0;
}

.fact-one__item:hover .fact-one__item__icon {
  background-color: var(--nisoz-base);
  color: var(--nisoz-black);
}

.fact-one__item:hover .fact-one__item__icon span {
  animation: bounceIn 1s linear;
  animation-duration: 1s;
  animation-duration: 1s;
  animation-duration: 2s;
}


.fact-one__item:hover .fact-one__item__title {
  color: var(--nisoz-black);
}

.fact-one__item__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--nisoz-color2);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 300ms ease;
  margin: 0;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  background-color: var(--nisoz-black);
  position: relative;
  padding: 50px 0 68px;
}

.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  opacity: 0.06;
}

.main-footer__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid RGBA(var(--nisoz-white-rgb), 0.1);
  padding-bottom: 50px;
  margin-bottom: 67px;
}

@media (max-width: 767px) {
  .main-footer__top {
    display: block;
    margin-bottom: 35px;
  }
}

.main-footer__social {
  position: relative;
}

.main-footer__social a {
  display: inline-block;
  width: 55px;
  height: 55px;
  background-color: var(--nisoz-black5);
  color: var(--nisoz-white);
  line-height: 55px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  margin-left: 7px;
}

@media (max-width: 767px) {
  .main-footer__social a {
    margin: 30px 7px 0 0;
  }
}

.main-footer__social a:hover {
  background-color: var(--nisoz-base);
  color: var(--nisoz-black);
}

.main-footer__navmenu {
  position: relative;
}

@media (max-width: 767px) {
  .main-footer__navmenu {
    margin-top: 30px;
  }
}

.main-footer__navmenu ul {
  margin: 0;
  padding: 0;
}

.main-footer__navmenu ul li {
  list-style: none;
  display: block;
  line-height: 36px;
  color: var(--nisoz-color2);
  text-transform: capitalize;
}

.main-footer__navmenu ul li a {
  color: inherit;
  display: inline-block;
}

.main-footer__navmenu ul li a:hover {
  color: var(--nisoz-base);
  padding-left: 5px;
}

.main-footer__about {
  position: relative;
}

@media (max-width: 767px) {
  .main-footer__about {
    margin-top: 35px;
  }
}

.main-footer__about__text {
  color: var(--nisoz-color2);
  line-height: 26px;
  margin: 10px 0 9px;
}

.main-footer__about__info {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-footer__about__info li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 36px;
  color: var(--nisoz-white);
}

.main-footer__about__info li span {
  font-size: 16px;
  color: var(--nisoz-base);
  display: inline-block;
  margin-right: 14px;
}

.main-footer__about__info li a {
  color: inherit;
}

.main-footer__about__info li a:hover {
  color: var(--nisoz-base);
}

.main-footer__newsletter {
  position: relative;
}

@media (max-width: 991px) {
  .main-footer__newsletter {
    margin-top: 35px;
  }
}

.main-footer__newsletter__text {
  color: var(--nisoz-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 10px 0 28px;
}

.main-footer__newsletter .nisoz-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 64px;
  padding: 17px 40px 17px;
}

.main-footer__newsletter .nisoz-btn .nisoz-btn__shape {
  background-color: var(--nisoz-black5);
}

.main-footer__email-box {
  position: relative;
}

.main-footer__email-input-box {
  position: relative;
}

.main-footer__email-input-box input[type="email"] {
  width: 100%;
  height: 64px;
  border: none;
  outline: none;
  background-color: var(--nisoz-white);
  font-size: 14px;
  font-family: var(--nisoz-font);
  color: var(--nisoz-color);
  padding: 0 170px 0 30px;
  font-weight: 500;
}

/*-- Copyright --*/
.copyright {
  position: relative;
  background-color: var(--nisoz-black5);
  padding: 28px 0 30px;
}

.copyright__text {
  color: var(--nisoz-color2);
  margin: 0;
}

.copyright__text a {
  color: inherit;
}

.copyright__text a:hover {
  color: var(--nisoz-base);
}

/*--------------------------------------------------------------
# Accrodion Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  overflow: hidden;
  background-color: var(--nisoz-color3);
}

.contact-one__form-box {
  position: relative;
  display: block;
  padding: 0;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 63px;
  width: 100%;
  border: none;
  background-color: var(--nisoz-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--nisoz-color);
  font-family: var(--nisoz-font);
  display: block;
  font-weight: 500;
}

.contact-one__input-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--nisoz-font);
}

.contact-one__input-box textarea {
  font-size: 14px;
  font-weight: 500;
  color: var(--nisoz-color);
  height: 130px;
  width: 100%;
  background-color: var(--nisoz-white);
  font-family: var(--nisoz-font);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}

.contact {
  position: relative;
}

/*-- Contact Form --*/
.contact-page {
  padding: 120px 0;
  background-color: var(--nisoz-white);
}

@media (max-width: 767px) {
  .contact-page {
    padding: 80px 0;
  }
}

.contact-page .container {
  max-width: 800px;
}

.contact-page .contact-one__input-box textarea,
.contact-page .contact-one__input-box input[type="text"],
.contact-page .contact-one__input-box input[type="email"] {
  background-color: var(--nisoz-color3);
}


.contact-page .contact-one__input-box textarea {
  height: 180px;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--nisoz-black);
  position: relative;
}

.page-header__bg {
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left bottom;
  background-image: url(../images/shapes/page-header-bg-1-1.png);
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .page-header__bg {
    left: -15%;
    background-size: cover;
    background-position: right bottom;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-header__bg {
    left: -15%;
    background-size: cover;
    background-position: right bottom;
  }
}

.page-header__shape1 {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 45px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left top;
  background-image: url(../images/shapes/page-header-bg-shape-1.png);
  -webkit-animation: movebounce3 2s linear infinite;
  animation: movebounce3 2s linear infinite;
}

@media (max-width: 991px) {
  .page-header__shape1 {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .page-header__shape1 {
    left: -35px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-header__shape1 {
    left: -70px;
  }
}

.page-header__shape3 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right top;
  background-image: url(../images/backgrounds/page-header-bg.jpg);
  background-color: var(--nisoz-black);
  mix-blend-mode: luminosity;
  opacity: 0.6;
  z-index: 1;
}

@media (max-width: 991px) {
  .page-header__shape3 {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .page-header__shape3 {
    right: -15%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-header__shape3 {
    right: -24%;
  }
}

.page-header__shape2 {
  z-index: 2;
  position: absolute;
  left: 120px;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center;
  background-image: url(../images/shapes/page-header-bg-1-2.png);
  -webkit-animation: movebounce2 2s linear infinite;
  animation: movebounce2 2s linear infinite;
}

@media (max-width: 991px) {
  .page-header__shape2 {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-header__shape2 {
    left: -15px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .page-header__shape2 {
    left: 90px;
  }
}

.page-header .container {
  position: relative;
  z-index: 10;
  padding-top: 302px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .page-header .container {
    padding-top: 250px;
  }
}

@media (max-width: 767px) {
  .page-header .container {
    padding-top: 180px;
  }
}

.page-header__title {
  margin: 0;
  font-size: 50px;
  color: var(--nisoz-white);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .page-header__title {
    font-size: 40px;
  }
}

.page-header__breadcrumb {
  display: flex;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  font-family: var(--heading-font);
  margin: 0 0 4px;
  align-items: center;
}

.page-header__breadcrumb li {
  font-size: 16px;
  line-height: 1;
  color: var(--nisoz-color2);
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  position: relative;
}

.page-header__breadcrumb li:not(:last-of-type)::after {
  position: absolute;
  right: -17px;
  bottom: 0;
  content: "/";
  font-size: inherit;
  line-height: 1;
  color: currentColor;
}

.page-header__breadcrumb li:not(:last-of-type) {
  margin-right: 26px;
}

.page-header__breadcrumb li a {
  color: inherit;
}

.page-header__breadcrumb li a:hover {
  color: var(--nisoz-base);
}

.page-header__breadcrumb li span {
  display: block;
  line-height: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error-page {
  position: relative;
  padding: 95px 0 120px;
}

@media (max-width: 767px) {
  .error-page {
    padding: 80px 0 80px;
  }
}

.error-page__content {
  position: relative;
  text-align: center;
}

.error-page__404 {
  margin: 0;
  padding: 224px 0 204px;
}

.error-page__404 img {
  max-width: 100%;
}

.error-page__shape1 {
  position: absolute;
  z-index: 2;
  top: 22px;
  text-align: center;
  left: 40px;
  right: 0;
}

.error-page__shape1 img {
  max-width: 100%;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.error-page__shape2 {
  position: absolute;
  top: 0;
  text-align: center;
  left: -10px;
  right: 0;
}

.error-page__shape2 img {
  max-width: 100%;
  -webkit-animation: blinker 5s infinite linear;
  animation: blinker 3s infinite linear;
}

.error-page__title {
  font-size: 40px;
  color: #0d0d0f;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .error-page__title {
    font-size: 32px;
  }
}

.error-page__text {
  font-size: 18px;
  margin-bottom: 35px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 0 auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form-input input[type="search"] {
  height: 63px;
  width: 100%;
  border: none;
  background-color: var(--nisoz-color3);
  padding-left: 50px;
  padding-right: 50px;
  outline: none;
  font-size: 14px;
  color: var(--nisoz-color);
  display: block;
  font-weight: 500;
}

@media (max-width: 767px) {
  .error-page__form-input input[type="search"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.error-page__form-input button {
  background-color: transparent;
  color: var(--nisoz-black);
  font-size: 22px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 72px;
  outline: none;
  border: medium none;
  display: flex;
  align-items: center;
  padding: 0px;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .error-page__form-input button {
    width: 50px;
  }
}

.error-page__form-input button:hover {
  color: var(--nisoz-base);
}

.error-page .nisoz-btn {
  padding: 16px 44.5px 17px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/

.services-details__services {
  margin: 0;
  padding: 0 28px 28px;
  list-style: none;
}

.services-details__services li {
  display: block;
  position: relative;
  transition: all 500ms ease;
}

.services-details__services li a {
  background-color: var(--nisoz-color3);
  display: block;
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 600;
  color: var(--nisoz-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
  padding: 12px 40px 13px 24px;
  transition: all 500ms ease;
}

.services-details__services li a::after {
  position: absolute;
  right: 25px;
  top: 13px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  color: var(--nisoz-black);
  transition: all 500ms ease;
}

.services-details__services li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--nisoz-black);
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}

.services-details__services li.current a,
.services-details__services li:hover a {
  color: var(--nisoz-white);
}

.services-details__services li.current a::after,
.services-details__services li:hover a::after {
  color: var(--nisoz-base);
}

.services-details__services li.current a::before,
.services-details__services li:hover a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.services-details__services li+li {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .portfolio-details {
    padding: 80px 0;
  }
}

/*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Product Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/

.checkout-page__payment {
  background-color: var(--nisoz-color3);
  padding: 45px 50px 17px;
  min-height: 295px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.checkout-page__payment__item {
  position: relative;
}

.checkout-page__payment__title {
  display: flex;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  align-items: center;
  margin-bottom: 28px;
  cursor: pointer;
}

.checkout-page__payment__title::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: var(--nisoz-white);
  border: 2px solid #dedee5;
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}

.checkout-page__payment__title img {
  margin-left: 15px;
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: var(--nisoz-base);
  border-color: var(--nisoz-base);
  content: "\f00c";
  color: var(--nisoz-black);
}

.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 39px;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--nisoz-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--nisoz-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--nisoz-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/* Update */

.cta-one__objectives-table-wrapper {
  margin-top: 20px;
  overflow-x: auto;
  /* For horizontal scrolling on small screens */
}

.cta-one__objectives-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.cta-one__objectives-table th,
.cta-one__objectives-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-one__objectives-table th {
  font-size: 18px;
  font-weight: 600;
  color: var(--nisoz-black, #000);
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.2);
}

.cta-one__objectives-table td {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.cta-one__objectives-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 767px) {

  .cta-one__objectives-table th,
  .cta-one__objectives-table td {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .cta-one__objectives-table th {
    font-size: 16px;
  }
}

/* Next Section */

.feature-one__item__text {
  word-wrap: break-word;
}

.feature-one__item__title {
  min-height: 60px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .feature-one__item__title {
    min-height: auto;
  }
}

/* Next Section */

/* Next Section */

/* New Classes for fact-one Section */

/* Main Title */
/* New Classes for fact-one Section */

/* Main Title */
.fact-one__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffff;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Subtitle */

/* Icon Styling for Trophy */
.white-trophy-icon {
  color: #ffffff;
  font-size: 40px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .fact-one__title {
    font-size: 28px;
  }
}

/* Next Section */

/* Challenge Table Styles */

/* Responsive Adjustments */

.reform-list li {
  color: #fff;
}

.service-one__item__icon img {
  width: 80px;
}

/* New Section */

.container-fluid {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* New container to center the fact row */

/* Flex row for horizontal layout */

/* Individual fact items */

/* Styling for titles */

/* Responsive design */

/* Checkbox Wrapper */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Checkbox input */
.checkbox-wrapper input[type="checkbox"] {
  margin-top: 4px;
  min-width: 18px;
  min-height: 18px;
  accent-color: #2638a1;
  /* Match your theme */
  cursor: pointer;
}

/* Checkbox Label & Link */

/* Responsive Fix */
@media (max-width: 575px) {
  .checkbox-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkbox-wrapper input[type="checkbox"] {
    margin-top: 0;
  }
}

.mobile-register-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  display: none;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.reg-btn {
  background-color: var(--nisoz-base);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 1200px) {
  .mobile-register-btn {
    display: block;
  }
}

/* Overview Section */

.nw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px;
}

.nw-overview {
  background: #ffff;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.nw-overview__wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.nw-overview__image {
  flex: 1;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.nw-overview__image img {
  width: 100%;
  height: 85%;
  transition: transform 0.5s ease;
}

.nw-overview__image:hover img {
  transform: scale(1.05);
}

.nw-overview__content {
  flex: 1;
  min-width: 400px;
  padding: 20px;
}

.nw-overview__content__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 5px;
}

.nw-overview__content__text:last-child {
  margin-bottom: 0;
}

.nw-overview__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  font-family: "Arial", sans-serif;
}

/* animation relates css*/


/* Media Queries for Overview Section */
@media (max-width: 1200px) {
  .nw-overview__image {
    width: 500px;
    height: 450px;
  }
}

@media (max-width: 992px) {
  .nw-overview__wrapper {
    gap: 30px;
  }

  .nw-overview__image {
    width: 450px;
    height: 400px;
  }

  .nw-overview__title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .nw-overview__content__text {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .nw-overview {
    padding: 40px 0;
  }

  .nw-overview__wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .nw-overview__image {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin-bottom: 20px;
  }

  .nw-overview__image img {
    height: auto;
  }

  .nw-overview__content {
    padding: 0;
    min-width: auto;
  }

  .nw-overview__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .nw-container {
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .nw-overview {
    padding: 30px 0;
    min-height: auto;
  }

  .nw-overview__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .nw-overview__content__text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .nw-container {
    padding: 20px 15px;
  }

  .nw-overview__image {
    margin-top: -15vh;
    margin-bottom: -15vh;
  }
}

@media (max-width: 400px) {
  .nw-overview__title {
    font-size: 1.6rem;
  }

  .nw-overview__content__text {
    font-size: 0.85rem;
  }

  .nw-overview__image {
    margin-top: -20vh;
    margin-bottom: -20vh;
  }
}

/* Hero Section */

.nw-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'dm-sans', sans-serif;
}

.nw-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

.nw-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.005);
  z-index: 0;
}

.nw-hero__content {
  text-align: center;
  padding: 20px;
  max-width: 1000px;
  z-index: 1;
}

/* Endorsement container */
.nw-endorsement {
  margin-top: 3rem;
  text-align: center;
  max-width: 1400px;
  padding: 2rem 5rem;
  /* background: rgba(255, 255, 255, 0.23);  */
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Stronger border */
  border-radius: 16px;
  backdrop-filter: blur(8px);
  /* Slightly reduced blur for clarity */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  /* More pronounced shadow */
  animation: fadeInUp 1s ease forwards;
}


/* Endorsement title */
.nw-endorsement__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nisoz-black);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  /* text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;  */
  /* animation: pulseGlow 3s infinite alternate; */
  font-family: var(--heading-font);
}

/* Logos container */
.nw-endorsement__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

/* Individual logo */

/* Animations */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 8px #00ffe0;
  }

  100% {
    text-shadow: 0 0 20px #00ffe0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nw-endorsement {
    margin-top: 1.5rem;
  }

  .nw-endorsement__title {
    font-size: 1rem;
  }

  .nw-endorsement__logos {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nw-endorsement__logos {
    flex-direction: column;
    /* Stack logos vertically on small screens */
    gap: 1rem;
  }
}


/* Media Queries */

@media (max-width: 768px) {
  .nw-hero {
    min-height: 100vh;
  }
}

@media (max-width: 400px) {

  .nw-hero__content {
    padding: 10px;
  }
}

/* Challange section */


/* Speaker Pop Up */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.75);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideInUp 0.4s ease;
}

.modal-body {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.modal-body img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-body h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #111;
}

.modal-body h5 {
  margin-top: 5px;
  font-size: 16px;
  color: #666;
}

.modal-body p {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* Stat Section */

.fact-stats-section {
  width: 75%;
  margin: 60px auto;
  /* background-color: var(--nisoz-base); */
  background: linear-gradient(135deg, #027d4e, #204332, #2c6449);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Inner flex layout */
.fact-stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Stat box styling */
.fact-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0px;
  text-align: center;
  flex: 1 1 150px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

/* Hover effect */
.fact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Count number */
.fact-count {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Label text */
.fact-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
}


/* New Intergrity Section */

/* Section */
.integrity-section {
  padding: 4rem 1.5rem;
  background: #fff;
}

.integrity-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.integrity-main-title {
  font-size: 2.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #111;
}

.integrity-sub-text {
  font-size: 1.25rem;
  color: #555;
  max-width: 780px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* GRID (NO CARDS, JUST CELLS WITH BORDERS) */
.integrity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e7eb;
  border-bottom: none;
  border-right: none;
}

/* Each cell */
.integrity-cell {
  padding: 2rem;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.integrity-icon {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: #3446eb;
  /* optional brand colour */
}

.integrity-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #111;
}

.integrity-desc {
  font-size: .95rem;
  line-height: 1.65;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .integrity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .integrity-grid {
    grid-template-columns: 1fr;
  }
}



/* New Details Section */

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Media Queries */
@media (max-width: 1024px) {

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {

  .section-title {
    font-size: 20px;
  }
}

/* Speaker Section */

#speakers {
  padding: 50px 0;
  position: relative;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title__tagline {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--nisoz-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #121513;
}

.speaker-card {
  width: min(380px, 100%);
  height: 480px;
  margin: 20px auto;
  background-color: #f4f5f2;
  text-align: center;
  border-top-left-radius: 4rem;
  border: 2px solid #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-one .speaker-card::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 120px;
  /* background-color: var(--nisoz-base); */
  background: linear-gradient(110deg, #027d4e, #204332, #2c6449);
  top: 32px;
  right: -2.5px;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.speaker-card__title {
  font-weight: 800;
  color: #121513;
  font-size: 1.25rem;
  margin-block: 0.5rem;
}

@media (max-width: 768px) {
  .speaker-card {
    width: min(280px, 100%);
    height: 420px;
  }

  .speaker-card__title {
    font-size: 1.1rem;
  }

  #speakers {
    padding: 50px 0;
  }
}

.xai-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.xai-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.xai-carousel-card {
  flex: 0 0 23.333%;
  padding: 15px;
  box-sizing: border-box;
  min-width: 0;
}

@media (max-width: 768px) {
  .xai-carousel-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .xai-carousel-card {
    flex: 0 0 100%;
  }
}

/* ///////////////// */

.xai-audience-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.xai-audience-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.xai-audience-carousel-card {
  flex: 0 0 23.333%;
  padding: 15px;
  box-sizing: border-box;
  min-width: 0;
}

@media (max-width: 768px) {
  .xai-audience-carousel-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .xai-audience-carousel-card {
    flex: 0 0 100%;
  }
}


/* New Speaker Section */
.speakers__wrapper {
  margin: 0 auto;
  padding: 40px 20px;
  max-width: 1400px;
  /* Added max-width for better large screen control */
}

/* Tablet - 2 columns */

/* Small Desktop - 3 columns */

/* Medium Desktop - 4 columns */

/* Large Desktop - 5 columns */

/* Optional: Adjust for very small devices */

/* Optional: Adjust for very small mobile devices */

/* ----------- UNIFORM SPEAKER CARD HEIGHT ALIGNMENT ----------- */

/* Container: make every card stretch equally in each row */

/* Card: grid layout to lock title start position */

/* Fixed image height so all cards begin uniformly */


/* Speaker name (same height for all) */

/* Designation – full text visible, no truncation */

/* Responsive image adjustment */


/* New Speaker Section  End*/
/* ========================== new speaker card design start ========================== */
/* Federal Regulatory Committee – simple card layout */
.federal-committee {
  padding-top: 80px;
}

.federal-committee .section-title__title {
  color: var(--nisoz-black);
}

/* Centered row of cards */
.federal-committee__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* center all cards as a group */
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card shell */
.federal-card {
  position: relative;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  min-height: 520px;
  height: auto;

  flex: 0 1 380px;
  max-width: 480px;
}

.speakers-section .federal-card {
  flex: 0 1 300px !important;
  max-width: 300px !important;
}


.federal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

/* Top image – fixed height */
.federal-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.federal-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}

/* Body */
.federal-card__body {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.federal-card__name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  color: var(--nisoz-black);
}

.federal-card__role {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: var(--nisoz-color2);
}

/* Footer with company logo */
.federal-card__footer {
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.federal-card__org {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.federal-card__org-logo {
  width: auto;
  height: 60px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 112px;
}

.federal-card__org-logo img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.federal-card__org-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--nisoz-color2);
  text-align: left;
}

.federal-card__org-text strong {
  display: block;
  font-size: 14px;
  color: var(--nisoz-black);
}

/* Mobile tweaks */
@media (max-width: 575px) {
  .federal-card {
    min-height: 480px;
    flex: 0 1 100%;
    /* one per row on very small screens */
    max-width: 100%;
  }

  .federal-card__image {
    height: 240px;
  }

  .federal-card__body {
    padding: 16px 16px 14px;
  }

  .federal-card__name {
    font-size: 16px;
  }

  .federal-card__role {
    font-size: 12px;
  }
}

/* ========================== new speaker card design end ========================== */



/* ========================
   HERO WRAPPER
======================== */
.nw-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background video */
.nw-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.nw-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 9, 0.2);
  z-index: 1;
}

/* ========================
   MAIN HERO CONTENT
======================== */
.nw-hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  margin-top: 80px;
  /* Slightly higher so spacing is perfect */
}

/* Big Conference Logo */
.nw-hero__logo img {
  width: 480px;
  height: auto;
  margin-bottom: 25px;
}

/* ========================
   MAIN TITLE (BIG + WIDE)
======================== */
.nw-hero__title {
  color: #fff;
  /* text-transform: uppercase; */
  font-size: 40px;
  /* bigger */
  font-weight: 600;
  line-height: 1.18;
  /* tighter = fewer lines */
  letter-spacing: -0.5px;
  /* prevents breaking */
  max-width: 1600px;
  /* allows spreading = prevents 3 lines */
  margin: 0 auto 25px;
}

/* Venue + Date */
.nw-hero__info {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  font-family: dm-sans, sans-serif;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Each item (icon + text) */
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icons for location + calendar */
.info-icon {
  stroke: white;
  flex-shrink: 0;
}

/* Divider Line */
.info-divider {
  height: 28px;
  width: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
}

/* ===== STANDALONE ENDORSE SECTION ===== */
.nw-endorse-section {
  background: transparent;
  padding: 30px 0;
}

.nw-endorse-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.nw-endorse-section .endorse-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nw-endorse-section .endorse-card {
  background: white;
  border: 3px solid #1c5c3d;
  border-radius: 20px;
  padding: 18px 26px;
  width: 340px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nw-endorse-section .endorse-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 576px) {
  .nw-endorse-section .endorse-card {
    width: 250px;
    height: 90px;
  }
}

/* ========================
   CPD LOGO (BOTTOM RIGHT)
======================== */
.nw-cpd {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 10;
}

.nw-cpd img {
  height: 90px;
  width: auto;
}



/* ==========================
   NEW CLEAN NAVBAR STYLE
========================== */

.nw-nav-container {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

/* ===== Left Section (Logo) ===== */
.nw-nav-left img {
  height: 55px;
  width: auto;
}


/* ===== Center Nav Items ===== */
.nw-nav-center {
  flex: 1;
  /* expands so items stay centered */
  display: flex;
  justify-content: center;
}

.nw-nav-items {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nw-nav-items li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.3s;
}

.nw-nav-items li a:hover {
  color: #0b3c2e;
}


/* ===== Right Section (Register Button) ===== */
.nw-nav-right {
  display: flex;
}

/* Simple Register Button With Arrow */
.nw-register-btn {
  background: #0b3c2e;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  /* spacing between text & arrow */
  transition: 0.25s ease;
}

.nw-register-btn:hover {
  background: #01241b;
  color: #fff
}

/* Arrow styling */
.nw-register-btn .arrow {
  font-size: 20px;
  line-height: 1;
  margin-top: 1px;
}

/* Remove old template spacing */
.main-menu .container-fluid,
.main-menu__nav,
.main-menu__right {
  all: unset !important;
}


/* ================================
   MOBILE RESPONSIVE (Max 768px)
================================== */
@media (max-width: 768px) {
  .nw-hero{
    height: 110vh;
  }

  /* HERO CONTENT SPACING */
  .nw-hero__content {
    margin-top: 140px;
    padding: 0 15px;
  }

  /* LOGO */
  .nw-hero__logo img {
    width: 300px;
    margin-bottom: 20px;
  }

  /* TITLE */
  .nw-hero__title {
    font-size: 24px;
    line-height: 1.3;
    max-width: 90%;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
  }

  /* VENUE + DATE ROW */
  .nw-hero__info {
    flex-direction: column;
    /* stack vertically */
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Remove divider on mobile */
  .info-divider {
    display: none;
  }

  .info-item {
    gap: 8px;
  }

  .info-icon {
    width: 16px;
    height: 16px;
  }

  /* ENDORSED BY SECTION */

  /* STACK CARDS VERTICALLY */
  .endorse-cards {
    display: flex;
    flex-direction: column !important;
    gap: 12px;
  }

  .endorse-card {
    width: 80%;
    height: 90px;
    padding: 12px 16px;
    border-radius: 14px;
    margin: 0 auto;
  }

  .endorse-card img {
    width: 90%;
  }

  /* CPD LOGO */
  .nw-cpd {
    right: 0px;
    bottom: 60px;
  }

  .nw-cpd img {
    height: 75px;
  }
}

/* ===========================
   HAMBURGER BUTTON
=========================== */
.nw-hamburger {
  width: 32px;
  height: 22px;
  display: none;
  /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 99;
}

.nw-hamburger span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* When active → X animation */
.nw-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nw-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nw-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===========================
   MOBILE MENU
=========================== */
@media (max-width: 768px) {

  /* Show hamburger */
  .nw-hamburger {
    display: flex;
  }

  /* Hide desktop register */
  .nw-nav-right {
    display: none;
  }

  /* Mobile menu (hidden by default) */
  .nw-nav-center {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: rgba(0, 27, 9, 0.95);
    text-align: center;
    flex-direction: column;
    gap: 25px;

    display: none;
    transform: translateY(-20px);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 98;
  }

  /* Show when open */
  .nw-nav-center.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  /* Stack nav items */
  .nw-nav-items {
    flex-direction: column;
    gap: 20px;
  }

  .nw-nav-items li a {
    font-size: 20px;
    color: #fff;
  }

  /* Mobile Register button */
}

/* Desktop button shown, mobile hidden */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {

  /* Hide desktop button on mobile */
  .desktop-only {
    display: none !important;
  }

  /* Show mobile button inside menu */
  .mobile-only {
    display: flex !important;
    justify-content: center;
    width: fit-content;
    margin: 15px auto 0;
  }
}

/* ================================
   MOBILE SCROLL TOP OPTIMIZATION
================================ */
@media (max-width: 768px) {

  .scroll-top {
    right: 15px;
    /* closer to edge */
    bottom: 140px;
    /* higher from bottom */
    height: 65px;
    /* smaller */
    width: 65px;
    /* smaller */
    padding: 4px;
    /* reduced padding */
    border-radius: 50%;
    background-color: rgb(7, 56, 0);
    /* cleaner */
  }

  .scroll-top::after {
    font-size: 15px;
    /* icon smaller */
    line-height: 45px;
    /* perfectly centered */
    color: #fff;
    /* white icon (premium) */
  }

  .scroll-top__circle path {
    stroke-width: 3;
    stroke: #fff;
  }
}

/* Hide scroll-top on DESKTOP */
@media (min-width: 769px) {
  .scroll-top {
    display: none !important;
  }
}


.nw-overview__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nw-overview-img {
  width: 100%;
  max-width: 500px;
  /* adjust based on layout */
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .nw-overview-img {
    max-width: 100%;
    border-radius: 12px;
    margin-top: 150px;
    margin-bottom: 100px
  }
}

.nw-overview__content__text {
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
}

.inline-quote {
  display: inline-block;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 20px;
  color: #42984c;
}

.section-title_title_fact-stats-section {
  font-size: 36px;
  color: white;
}

@media (max-width: 768px) {
  .integrity-main-title {
    text-align: center;
  }

  .integrity-sub-text {
    text-align: center;
  }
}

/* ===== HERO BUTTONS ===== */
.nw-hero__buttons {
  margin-top: 20px;
  font-family: dm-sans, sans-serif;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nw-hero-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nw-hero-btn.reg {
  background: #1c5c3d;
  color: white;
}

.nw-hero-btn.reg:hover {
  background: #164c32;
}

.nw-hero-btn.agenda {
  background: white;
  color: #000000;
  border: 1px solid #1c5c3d;
}

.nw-hero-btn.agenda:hover {
  background: #1c5c3d;
  color: white;
}

@media (max-width: 576px) {

  .nw-hero-btn {
    width: auto;
    /* prevent full-width stretching */
    display: inline-block;
    text-align: center;
    padding: 12px 28px;
    /* slightly smaller padding */
  }

  .nw-hero__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center them */
    gap: 12px;
  }
}

.nw-hero__title {
  white-space: nowrap;
  font-size: 52px;
  /* Prevents line break */
}

.nw-hero__content {
  text-align: center;
  width: 100%;
  /* Ensure full width is available */
  max-width: none;
  /* Remove any max-width limits */
}

@media (max-width: 600px) {
  .nw-hero__title {
    white-space: normal;
    /* Enables wrapping */
    font-size: 28px;
    /* Adjust size for mobile */
    line-height: 1.2;
  }
}


/* 
.nw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 27, 9, 0.1) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
} */


/* =====================================================
   UNIVERSAL WHY CONFERENCE FLOATING CARD
   - Two-column message box layout
   - Fully responsive for all screen sizes
   - Copy-paste ready for any project
===================================================== */

.why-conference-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Trigger Button - Message Box Style with 2 Columns */
.why-conference-trigger {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #027d4e, #035a38);
  color: white;
  padding: 12px 18px;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(2, 125, 78, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  min-width: fit-content;
}

/* Message Box Tail/Pointer */
.why-conference-trigger::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #035a38;
  transition: border-top-color 0.3s ease;
}

/* Hover state */
.why-conference-float:hover .why-conference-trigger {
  box-shadow: 0 12px 32px rgba(2, 125, 78, 0.5);
  background: linear-gradient(135deg, #035a38, #027d4e);
}

.why-conference-float:hover .why-conference-trigger::after {
  border-top-color: #027d4e;
}

/* Text Column - Stacked */
.why-conference-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}

.line-1 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  white-space: nowrap;
}

.line-2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Icon Column */
.why-conference-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-conference-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.why-conference-float:hover .why-conference-icon svg {
  transform: rotate(-10deg) scale(1.1);
  animation: lightbulb-glow 1.5s ease-in-out infinite;
}

@keyframes lightbulb-glow {

  0%,
  100% {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  }
}

/* Expanded Card (Hidden by default) */
.why-conference-card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 420px;
  max-width: calc(100vw - 40px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(2, 125, 78, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* Show card on hover */
.why-conference-float:hover .why-conference-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Card Title */
.why-conference-title {
  font-size: 20px;
  font-weight: 700;
  color: #027d4e;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

/* Card Content */
.why-conference-content {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.why-conference-content p {
  margin: 0 0 14px 0;
}

.why-conference-content p:last-child {
  margin-bottom: 0;
}

.why-conference-content strong {
  color: #027d4e;
  font-weight: 700;
}

/* =====================================================
   TABLET RESPONSIVE (768px - 1024px)
===================================================== */
@media (max-width: 1024px) {
  .why-conference-float {
    bottom: 25px;
    right: 25px;
  }

  .why-conference-card {
    width: 380px;
    padding: 26px;
  }
}

/* =====================================================
   MOBILE LANDSCAPE & LARGE PHONES (768px)
===================================================== */
@media (max-width: 768px) {
  .why-conference-float {
    bottom: 50px;
    right: 20px;
  }

  .why-conference-trigger {
    padding: 11px 16px;
    gap: 8px;
    border-radius: 16px;
  }

  .why-conference-trigger::after {
    bottom: -7px;
    right: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #035a38;
  }

  .line-1 {
    font-size: 14px;
  }

  .line-2 {
    font-size: 16px;
  }

  .why-conference-icon svg {
    width: 32px;
    height: 32px;
  }

  .why-conference-card {
    width: calc(100vw - 40px);
    bottom: 65px;
    right: 0;
    padding: 24px;
  }

  .why-conference-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .why-conference-content {
    font-size: 13px;
    line-height: 1.65;
  }

  .why-conference-content p {
    margin-bottom: 12px;
  }
}

/* =====================================================
   SMALL PHONES (480px - 576px)
===================================================== */
@media (max-width: 576px) {
  .why-conference-float {
    bottom: 50px;
    right: 15px;
  }

  .why-conference-trigger {
    padding: 10px 14px;
    gap: 7px;
  }

  .line-1 {
    font-size: 13px;
  }

  .line-2 {
    font-size: 15px;
  }

  .why-conference-icon svg {
    width: 28px;
    height: 28px;
  }

  .why-conference-card {
    width: calc(100vw - 30px);
    bottom: 60px;
    padding: 22px;
    border-radius: 18px;
  }

  .why-conference-title {
    font-size: 17px;
  }

  .why-conference-content {
    font-size: 13px;
  }
}

/* =====================================================
   VERY SMALL PHONES (320px - 480px)
===================================================== */
@media (max-width: 480px) {
  .why-conference-float {
    bottom: 50px;
    right: 12px;
  }

  .why-conference-trigger {
    padding: 9px 13px;
    gap: 6px;
    border-radius: 14px;
  }

  .why-conference-trigger::after {
    bottom: -6px;
    right: 14px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #035a38;
  }

  .line-1 {
    font-size: 12px;
  }

  .line-2 {
    font-size: 14px;
    font-weight: 600;
  }

  .why-conference-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-conference-card {
    width: calc(100vw - 24px);
    bottom: 55px;
    padding: 20px;
    border-radius: 16px;
  }

  .why-conference-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .why-conference-content {
    font-size: 12px;
    line-height: 1.6;
  }

  .why-conference-content p {
    margin-bottom: 10px;
  }
}

/* =====================================================
   EXTRA SMALL PHONES (< 360px)
===================================================== */
@media (max-width: 360px) {
  .why-conference-float {
    bottom: 140px;
    right: 10px;
  }

  .why-conference-trigger {
    padding: 8px 12px;
    gap: 5px;
  }

  .line-1 {
    font-size: 11px;
  }

  .line-2 {
    font-size: 13px;
  }

  .why-conference-icon svg {
    width: 24px;
    height: 24px;
  }

  .why-conference-card {
    width: calc(100vw - 20px);
    padding: 18px;
  }

  .why-conference-title {
    font-size: 15px;
  }

  .why-conference-content {
    font-size: 11px;
    line-height: 1.55;
  }
}

/* =====================================================
   LANDSCAPE MODE FIX
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .why-conference-float {
    bottom: 15px;
    right: 15px;
  }

  .why-conference-trigger {
    padding: 8px 12px;
  }

  .why-conference-card {
    bottom: 50px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* =====================================================
   ACCESSIBILITY & INTERACTIONS
===================================================== */
.why-conference-trigger:focus {
  outline: 2px solid #027d4e;
  outline-offset: 2px;
}

/* Prevent text selection on trigger */
.why-conference-trigger * {
  user-select: none;
}

/* Keep card visible when hovering over it */
.why-conference-card:hover {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
  .why-conference-float:active .why-conference-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

/* Prevent animation on low-end devices */
@media (prefers-reduced-motion: reduce) {

  .why-conference-trigger,
  .why-conference-card,
  .why-conference-icon svg {
    transition: none !important;
    animation: none !important;
  }
}

/* =====================================================
   GIVEAWAY FLOATING CARD (LEFT CORNER)
===================================================== */
.giveaway-float {
  left: 30px;
  right: auto;
}

.giveaway-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  width: 64px;
  height: 64px;
  padding: 12px;
}

.giveaway-trigger .gift-icon {
  width: 34px;
  height: 34px;
}

.giveaway-float .why-conference-trigger::after {
  left: 20px;
  right: auto;
}

.giveaway-float .why-conference-card {
  left: 0;
  right: auto;
  width: min(340px, calc(100vw - 24px));
  padding: 12px;
}

.giveaway-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.giveaway-float:hover .why-conference-icon .gift-icon {
  transform: rotate(-6deg) scale(1.12);
  animation: gift-wiggle 0.9s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.65));
}

@keyframes gift-wiggle {

  0%,
  100% {
    transform: rotate(-6deg) scale(1.12);
  }

  25% {
    transform: rotate(6deg) scale(1.12);
  }

  50% {
    transform: rotate(-3deg) scale(1.12);
  }

  75% {
    transform: rotate(3deg) scale(1.12);
  }
}

@media (max-width: 1024px) {
  .giveaway-float {
    left: 25px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .giveaway-float {
    left: 20px;
    right: auto;
  }

  .giveaway-trigger {
    width: 56px;
    height: 56px;
    padding: 10px;
  }

  .giveaway-trigger .gift-icon {
    width: 30px;
    height: 30px;
  }

  .giveaway-float .why-conference-trigger::after {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 576px) {
  .giveaway-float {
    left: 15px;
    right: auto;
  }
}

@media (max-width: 480px) {
  .giveaway-float {
    left: 12px;
    right: auto;
  }

  .giveaway-float .why-conference-trigger::after {
    left: 14px;
    right: auto;
  }
}

@media (max-width: 360px) {
  .giveaway-float {
    left: 10px;
    right: auto;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .giveaway-float {
    left: 15px;
    right: auto;
  }
}
