/*Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*global variable*/
/*global area*/
/*----------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 18px;
  color: #717171;
  font-family: "Jost", serif;
  background-color: #fff;
  line-height: 1.5;
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1170px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", serif;
  font-size: 38px;
  color: #000000;
  font-weight: 700;
  margin: 0;
}

p {
  font-size: 18px;
  margin: 0;
}

ol,
ul {
  padding-left: 0;
}

.ul-li ul {
  margin: 0;
  padding: 0;
}
.ul-li ul li {
  list-style: none;
  display: inline-block;
}

[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.scroll-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #35CC95;
  width: 50px;
  height: 50px;
  color: #fff;
  bottom: 50px;
  right: 50px;
  box-shadow: 0 24px 36px 0 rgba(54, 4, 185, 0.18);
  border-radius: 7px;
  cursor: pointer;
  z-index: 10;
}
.scroll-top i {
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 10%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
/* Start Sticky */
.main-header {
  position: relative;
}
.main-header.sticky-on {
  top: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  animation-duration: 0.7s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-timing-function: ease;
  transition: 0.3s all ease-in-out;
  background-color: #fff;
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  padding: 10px 0;
}
.main-header.sticky-on .menu-header {
  padding: 0;
}

/* End Sticky */
/*** Start Main Header ***/
.menu-header {
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.0117647059);
  padding: 25px 0;
}

/* Start Navigation area */
.navigation-main-area ul {
  display: flex;
  column-gap: 32px;
  justify-content: center;
}

.navigation-main-area .dropdown a {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.navigation-main-area .dropdown a:hover {
  color: #161616;
}

.navigation-main-area .dropdown {
  position: relative;
}

.navigation-main-area .dropdown .dropdown-menu {
  top: 76px;
  left: 0;
  opacity: 0;
  z-index: 5;
  margin: 0;
  padding: 0;
  height: auto;
  width: 250px;
  border: none;
  display: block;
  border-radius: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  background-clip: inherit;
  background-color: #fff;
  transform: translateY(50px);
  transition: all 0.3s ease-in-out 0.3s;
  box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
}

.navigation-main-area .dropdown .dropdown-menu li {
  width: 100%;
  margin-left: 0;
  border-bottom: 1px solid #e5e5e5;
}
.navigation-main-area .dropdown .dropdown-menu li:hover a {
  padding-left: 40px;
}
.navigation-main-area .dropdown .dropdown-menu li:hover a::before {
  opacity: 1;
  transform: translateX(25px);
}

.navigation-main-area .dropdown .dropdown-menu li a {
  width: 100%;
  color: #000000;
  display: block;
  font-size: 18px;
  padding: 10px 25px;
  position: relative;
  transition: 0.3s all ease-in-out;
}

.navigation-main-area .dropdown .dropdown-menu li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  opacity: 0;
  background-color: #35CC95;
  transform: translateX(15px);
  transition: all 0.3s ease-in-out;
}

.navigation-main-area .dropdown .dropdown-menu li a:hover {
  background-color: #161616;
  color: #000000;
}

.navigation-main-area .dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

.navigation-main-area .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*Mobile Menu */
/*-------------------*/
.mobile_menu_content {
  top: 0;
  bottom: 0;
  left: -350px;
  height: 100vh;
  z-index: 101;
  position: fixed;
  width: 310px;
  overflow-y: scroll;
  background-color: #464647;
  padding: 20px 35px 35px 35px;
  box-shadow: 0 3px 5px rgba(100, 100, 100, 0.19);
  transition: all 0.5s ease-in;
}

.mobile_menu_content .mobile-main-navigation {
  width: 100%;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav {
  width: 100%;
}

.mobile_menu_content .dropdown:after {
  display: none;
}

.mobile_menu_content2 .dropdown:after {
  display: block;
}

.mobile_menu_content .navbar-nav .dropdown-menu {
  position: static !important;
  transform: none !important;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li {
  width: 100%;
  display: block;
  transition: 0.3s all ease-in-out;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li a {
  width: 100%;
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  padding: 10px 30px 10px 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.17);
}

.mobile_menu_content .m-brand-logo {
  width: 150px;
  margin-bottom: 50px;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_content {
  left: 0;
  transition: all 0.7s ease-out;
}

.mobile_menu_overlay {
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 100;
  right: 0;
  height: 120vh;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.5s ease-in-out;
}

.mobile_menu_overlay_on {
  overflow: hidden;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_button {
  color: #000;
  display: none;
  cursor: pointer;
  font-size: 30px;
  line-height: 0px;
  text-align: right;
}

.mobile_menu .mobile-main-navigation .navbar-nav li a:after {
  display: none;
}

.mobile_menu .mobile-main-navigation .dropdown > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu {
  border: none;
  display: none;
  transition: none;
  box-shadow: none;
  padding: 5px 0px;
  width: 100%;
  background-color: transparent;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li {
  border: none;
  padding: 0 10px;
  line-height: 1;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li:hover {
  background-color: transparent;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a {
  color: #fff !important;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a:hover {
  color: #e25645;
  background-color: transparent;
}

.mobile_menu .dropdown {
  position: relative;
}

.mobile_menu .dropdown .dropdown-btn {
  color: #9397a7;
  position: absolute;
  top: 3px;
  right: 0;
  height: 30px;
  padding: 5px 10px;
}

.mobile_menu .dropdown .dropdown-btn.toggle-open {
  transform: rotate(90deg);
}

.mobile_menu .mobile_menu_close {
  color: #d60606;
  cursor: pointer;
  top: 25px;
  right: 25px;
  font-size: 20px;
  position: absolute;
}

/* 
===============================
Start Button Design
===============================
*/
.menu_btn {
  font-family: "Jost", serif;
  font-size: 16px;
  color: #fff !important;
  width: 182px;
  height: 60px;
  font-weight: 600;
  background-color: #35CC95;
  border: 1px solid #35CC95;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 60px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.menu_btn img {
  width: 18px;
  margin-top: -5px;
}
.menu_btn:hover {
  background-color: #161616;
  color: #fff;
  border: 1px solid #161616;
}

.page_btn {
  font-family: "Jost", serif;
  font-size: 16px;
  color: #fff !important;
  width: 180px;
  height: 65px;
  font-weight: 600;
  background-color: #35CC95;
  border: 1px solid #35CC95;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 65px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  margin-top: 30px;
}
.page_btn:hover {
  background-color: #161616;
  color: #fff;
  border: 1px solid #161616;
}

.preview_btn {
  font-family: "Jost", serif;
  font-size: 16px;
  color: #fff;
  width: 110px;
  height: 40px;
  font-weight: 600;
  background-color: #35CC95;
  display: inline-block;
  text-align: center;
  border: 0;
  border-radius: 5px;
  line-height: 40px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.preview_btn:hover {
  color: #fff !important;
}

/* 
===============================
End Button Design
===============================
*/
/* ===================================
        Preloader
   ====================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: linear-gradient(#03a562 0%, #07cf72 100%);
  z-index: 999;
}

.center {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.spinner {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.spinner .blob {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  background: linear-gradient(to right, #ffffff 50%, #ffffff 100%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.spinner .blob.top {
  top: 0;
  -webkit-animation: blob-top 1s infinite ease-in;
  animation: blob-top 1s infinite ease-in;
}

.spinner .blob.bottom {
  top: 100%;
  -webkit-animation: blob-bottom 1s infinite ease-in;
  animation: blob-bottom 1s infinite ease-in;
}

.spinner .blob.left {
  left: 0;
  -webkit-animation: blob-left 1s infinite ease-in;
  animation: blob-left 1s infinite ease-in;
}

.spinner .move-blob {
  border-color: #35CC95;
  background: linear-gradient(to right, #35CC95 50%, #35CC95 100%);
  top: 0;
  -webkit-animation: blob-spinner-mover 1s infinite ease-in;
  animation: blob-spinner-mover 1s infinite ease-in;
}

@-webkit-keyframes blob-bottom {
  25%, 50%, 75% {
    top: 50%;
    left: 100%;
  }
  100% {
    top: 0;
    left: 50%;
  }
}
@keyframes blob-bottom {
  25%, 50%, 75% {
    top: 50%;
    left: 100%;
  }
  100% {
    top: 0;
    left: 50%;
  }
}
@-webkit-keyframes blob-left {
  25% {
    top: 50%;
    left: 0;
  }
  50%, 100% {
    top: 100%;
    left: 50%;
  }
}
@keyframes blob-left {
  25% {
    top: 50%;
    left: 0;
  }
  50%, 100% {
    top: 100%;
    left: 50%;
  }
}
@-webkit-keyframes blob-top {
  50% {
    top: 0;
    left: 50%;
  }
  75%, 100% {
    top: 50%;
    left: 0;
  }
}
@keyframes blob-top {
  50% {
    top: 0;
    left: 50%;
  }
  75%, 100% {
    top: 50%;
    left: 0;
  }
}
@-webkit-keyframes blob-spinner-mover {
  0%, 100% {
    top: 0;
    left: 50%;
  }
  25% {
    top: 50%;
    left: 100%;
  }
  50% {
    top: 100%;
    left: 50%;
  }
  75% {
    top: 50%;
    left: 0;
  }
}
@keyframes blob-spinner-mover {
  0%, 100% {
    top: 0;
    left: 50%;
  }
  25% {
    top: 50%;
    left: 100%;
  }
  50% {
    top: 100%;
    left: 50%;
  }
  75% {
    top: 50%;
    left: 0;
  }
}
/*effect*/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-top-gap-120 {
  padding-top: 120px;
}

.section-bottom-gap-80 {
  padding-bottom: 80px;
}

.section-title {
  padding-bottom: 70px;
  text-align: center;
}

.sTitle-head {
  font-size: 65px;
  font-weight: 700;
  color: #35CC95;
}

.sTitle-sub-head {
  font-size: 34px;
  font-weight: 600;
  padding-bottom: 20px;
}

.demo .container {
  max-width: 1720px;
}

.box-content {
  text-align: center;
  padding-bottom: 40px;
}

.box-img {
  display: block;
  max-height: 450px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.062745098);
  position: relative;
}
.box-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(130, 155, 133);
  background: linear-gradient(180deg, rgba(95, 68, 255, 0) 0%, rgb(2, 197, 35) 100%);
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
}
.box-img:hover::before {
  transform: translateY(0);
  z-index: 1;
}
.box-img:hover img {
  transform: translateY(calc(-100% + 650px));
}
.box-img:hover .preview_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.box-img img {
  transition: all 3s ease-in-out;
}
.box-img .preview_btn {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.box-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.box-title:hover {
  color: #35CC95;
}

.opacity-0 {
  opacity: 0;
}

.box-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1254901961);
}

.hero_banner {
  background: linear-gradient(to right, #00945e 50%, #35CC95 100%);
  position: relative;
  padding-bottom: 130px;
}

.hero-banner-bg {
  padding-top: 45px;
  background: linear-gradient(to right, #00945e 50%, #35CC95 100%);
}

.hero-banner-img-1 {
  position: absolute;
  top: 5%;
  right: 12%;
  border-radius: 5px;
  overflow: hidden;
}

.hero-banner-img-2 {
  position: absolute;
  top: 5%;
  left: 30%;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.hero-banner-img-3 {
  position: absolute;
  bottom: 10%;
  right: 2%;
  border-radius: 5px;
  overflow: hidden;
}

.hero-banner-img-4 {
  position: absolute;
  top: 30%;
  left: 5%;
  border-radius: 5px;
  overflow: hidden;
}

.banner-1-graphic {
  position: absolute;
  left: 109px;
  bottom: 20px;
  z-index: 1;
}
.banner-1-graphic .union-1 {
  position: relative;
  left: 35px;
  z-index: 2;
  animation: bannerOne 5s ease-in-out infinite;
}
.banner-1-graphic .graphic-1 {
  position: relative;
  bottom: 100px;
}

@keyframes bannerOne {
  0% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
.banner-2-graphic {
  position: absolute;
  top: 5%;
  right: 2%;
  z-index: 1;
}
.banner-2-graphic .union-bg-2 {
  width: 25px;
  height: 25px;
  background-color: #161616;
  position: relative;
  top: -30px;
  left: 100px;
  z-index: -1;
  animation: bannerTwo 5s ease-in-out infinite;
}

@keyframes bannerTwo {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
.banner-content {
  position: relative;
}
.banner-content h4 {
  font-size: 56px;
  font-weight: 700;
  padding-bottom: 30px;
}

.choose-box {
  background-color: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.062745098);
  border: 1px dashed transparent;
  border-radius: 5px;
  text-align: center;
  padding: 40px 23px;
  margin-bottom: 30px;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.choose-box:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1254901961);
  border: 1px dashed #35CC95;
}
.choose-box:hover .choose-box-icon {
  background-color: transparent;
  border: 1px dashed #35CC95;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3137254902);
}
.choose-box:hover .choose-box-icon i {
  color: #35CC95;
}
.choose-box-icon {
  width: 78px;
  height: 78px;
  background-color: #35CC95;
  border: 1px solid #35CC95;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  transform: translateZ(30px);
}
.choose-box-icon i {
  font-size: 32px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.choose-box-title {
  font-size: 24px;
  padding: 30px 0 20px;
  transform: translateZ(30px);
}
.choose-box-text {
  font-size: 16px;
}

.coming-soon {
  position: relative;
}
.coming-soon::before {
  position: absolute;
  content: "Coming Soon!";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: #35CC95;
  padding: 20px;
  color: #fff;
  font-size: 36px;
  border-radius: 5px;
}
.coming-soon .box-img,
.coming-soon .card-img {
  filter: blur(10px);
}

.preview {
  position: relative;
}

.link {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}
.link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1254901961);
  padding: 15px 10px;
}
.link a i {
  font-size: 24px;
  color: #35CC95;
}

.demo-canvas .card {
  margin-bottom: 20px;
}
.demo-canvas .card.coming-soon::before {
  font-size: 24px;
}
.demo-canvas .card:last-child {
  margin-bottom: 0;
}
.demo-canvas .card .card-img {
  max-height: 200px;
  overflow: hidden;
}
.demo-canvas .card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

/*
************
*************************
22. footer
******************************************************* 
*************************************************************** */
.footer {
  text-align: center;
  background-color: #161616;
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(../img/World_icon.png) no-repeat;
  background-position: center top;
  opacity: 0.2;
}
.footer h4 {
  font-size: 34px;
  font-weight: 700;
  padding: 30px 0px 45px;
  color: #fff;
}

.footer-text {
  position: relative;
  color: #fff;
}
.footer-text a {
  text-decoration: underline;
  cursor: pointer;
}

/*********** Responsive CSS **************/
@media screen and (min-width: 1600px) and (max-width: 1800px) {
  .hero-banner-img-1 {
    top: 3%;
    right: 10%;
  }
  .hero-banner-img-2 {
    left: 25%;
  }
  .hero-banner-img-3 {
    bottom: 24%;
    right: 1%;
  }
  .banner-1-graphic,
  .banner-1-graphic {
    left: 60px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1599px) {
  .hero-banner-img-1 {
    top: 3%;
    right: 5%;
  }
  .hero-banner-img-2 {
    left: 20%;
  }
  .hero-banner-img-3 {
    bottom: 24%;
  }
  .hero-banner-img-4 {
    left: 2%;
  }
  .banner-1-graphic,
  .banner-1-graphic {
    left: 10px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .hero-banner-img-1 {
    top: 3%;
    right: 8%;
    width: 40%;
  }
  .hero-banner-img-2 {
    left: 18%;
  }
  .hero-banner-img-3 {
    bottom: 28%;
  }
  .hero-banner-img-4 {
    top: 33%;
    left: 2%;
    width: 40%;
  }
  .banner-1-graphic,
  .banner-1-graphic {
    left: 5px;
  }
}
@media screen and (min-width: 1167px) and (max-width: 1199px) {
  .hero-banner-img-1 {
    top: 3%;
    right: 8%;
    width: 40%;
  }
  .hero-banner-img-2 {
    left: 18%;
  }
  .hero-banner-img-3 {
    bottom: 28%;
  }
  .hero-banner-img-4 {
    top: 33%;
    left: 2%;
    width: 40%;
  }
}
@media screen and (max-width: 1166px) {
  .navigation-main-area ul {
    display: flex;
  }
  .navigation-main-area li {
    margin-left: 30px;
  }
  .hero-banner-img-1 {
    top: 3%;
    right: 8%;
    width: 40%;
  }
  .hero-banner-img-2 {
    left: 18%;
  }
  .hero-banner-img-3 {
    bottom: 28%;
  }
  .hero-banner-img-4 {
    top: 33%;
    left: 2%;
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .hero-banner-img-1 {
    right: 5%;
  }
  .hero-banner-img-2 {
    left: 15%;
  }
  .hero-banner-img-3 {
    bottom: 32%;
    right: 10%;
    width: 35%;
  }
}
@media screen and (max-width: 991px) {
  .main-header.sticky-on {
    padding: 10px 15px;
  }
  .menu-header {
    padding: 0;
  }
  .menu-header .container {
    padding: 0;
  }
  .menu-header .main-menu {
    position: relative;
    top: 0;
    padding: 15px 40px;
  }
  .mobile_menu_button {
    display: block;
  }
  .navigation-main-area {
    display: none;
  }
  .navigation-main-area ul {
    display: flex;
    justify-content: center;
  }
  .display-none {
    display: none;
  }
  .hero-banner-img-1,
  .hero-banner-img-2,
  .hero-banner-img-3,
  .hero-banner-img-4 {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 80%;
  }
  .hero-banner-img-1 img,
  .hero-banner-img-2 img,
  .hero-banner-img-3 img,
  .hero-banner-img-4 img {
    width: 100%;
  }
  .hero-banner-img-2 {
    left: 0;
  }
  .hero-banner-img-3 {
    left: -5%;
  }
  .banner-content h4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .logo-col {
    flex: 0 0 auto;
    width: 80%;
  }
  .menu-col {
    flex: 0 0 auto;
    width: 20%;
  }
}
/* Page title banner */

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