/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/  
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  background: #2b2d42;
  background-attachment: fixed;
  background-image: url("../img/hbg.svg");
  background-position: center center;
  background-size:cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: url(../img/mbbg.svg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	}
}
a {
  color: #b6cb9e;
  text-decoration: none;
}

a:hover {
  color: #d1f081;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Lexend", sans-serif;
   font-weight: 600;
                                                
}

.bg-container {
	border: #b6cb9e solid 3px;
	border-radius: 40px;
	background: rgb(43,45,66);
    background: -moz-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
    background: -webkit-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
    background: linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1);
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	-webkit-box-shadow: 0px 7px 15px 2px rgba(182,203,158,0.75);
    -moz-box-shadow: 0px 7px 15px 2px rgba(182,203,158,0.75);
    box-shadow: 0px 7px 15px 2px rgba(182,203,158,0.75);
	transition: all ease-in-out 0.5s;
}
.bg-container:hover {
	-webkit-box-shadow: 0px 7px 15px 2px rgba(209,240,129,0.75);
    -moz-box-shadow: 0px 7px 15px 2px rgba(209,240,129,0.75);
    box-shadow: 0px 7px 15px 2px rgba(209,240,129,0.75);
	transition: all ease-in-out 0.5s;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #2b2d42;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2b2d42;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b6cb9e;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #000000;
  line-height: 0;
}

.back-to-top:hover {
  background: #d1f081;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 5s;
  z-index: 997;
  padding: 30px 0;
  overflow: hidden;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(43, 45, 66, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# header-detail
--------------------------------------------------------------*/
#header-detail {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow-y: auto;
  z-index: 99;
  background: rgb(43,45,66);
  background: -moz-linear-gradient(142deg, rgba(43,45,66,1) 16%, rgba(43,45,66,1) 37%, rgba(31,33,48,1) 63%, rgba(0,0,0,1) 100%);
  background: -webkit-linear-gradient(142deg, rgba(43,45,66,1) 16%, rgba(43,45,66,1) 37%, rgba(31,33,48,1) 63%, rgba(0,0,0,1) 100%);
  background: linear-gradient(142deg, rgba(43,45,66,1) 16%, rgba(43,45,66,1) 37%, rgba(31,33,48,1) 63%, rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1); 
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
#header-detail .container {
  padding: 150px 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}
#header-detail .pages-nav-item {
  margin-bottom: 20px;
  list-style: none;
}
#header-detail .social-links {
  list-style: none;
}
#header-detail .pages-nav-item:last-child {
  margin-bottom: 0;
}
#header-detail .pages-nav-link {
  display: block;
  position: relative;
  z-index: 9;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
  color: #F2F5EA;
  line-height: 1.5;
  max-width: 290px;
  font-size: 1rem;
}
#header-detail .pages-nav-heading {
  font-weight: 700;
  font-size: 1.5rem;
  color: #b6cb9e;
  font-family: "Lexend", sans-serif;
}
#header-detail .pages-nav-link::after {
  content: "";
  color: #000;
  background: #d1f081;
  mix-blend-mode: exclusion;
  width: calc(100% + 20px);
  height: 0;
  position: absolute;
  bottom: -4px;
  left: -10px;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#header-detail .pages-nav-link:hover::after {
  height: calc(100% + 8px);
}
#header-detail.active {
  height: 100%;
}
#header-detail.active::after {
  position: fixed;
}
.header-detail-outer-box {
  width: 100%;
}
#header-detail .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #b6cb9e;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  transform: scale(2);
}

#header-detail .social-links a:hover {
  background: #d1f081;
  text-decoration: none;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}
@media (max-width: 767px) {
  #header .logo,
  #header .logo img {
    max-width: 225px;
	margin-top: 5px;
  }
}
@media (min-width: 768px) {
  #header-detail .col-md-3:last-child {
    border-left: 2px solid #fff;
    padding-left: 1rem;
  }
  /* width */
  #header-detail::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0; 
  font-family: "Poppins", sans-serif;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #b6cb9e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 6px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #b6cb9e;
  font-weight: 600;
  font-family: "Lexend", sans-serif; 
  transition: all ease-in-out 0.3s;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.btn-toggle {
  color: #fff;
  font-weight: bolder;
  font-size: 40px;
  border: none !important;
  box-shadow: unset !important;
}
.btn-toggle:hover {
  color: #fff;
}



.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #b6cb9e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 10000px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(43,45,66);
  background: -webkit-linear-gradient(left, rgba(43,45,66,1) 16%, rgba(43,45,66,1) 37%, rgba(31,33,48,1) 63%, rgba(0,0,0,1) 100%);
  background: -o-linear-gradient(left, rgba(43,45,66,1) 16%, rgba(43,45,66,1) 37%, rgba(31,33,48,1) 63%, rgba(0,0,0,1) 100%);
  background: linear-gradient(to right, rgba(43,45,66,1) 16%, rgba(43,45,66,1) 37%, rgba(31,33,48,1) 63%, rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1);
  transition: all ease-in-out 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.mobile-nav-toggle:hover {
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #f8f8f8;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f8f8f8;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #f8f8f8;
  font-family: "Lexend", sans-serif;  
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #b6cb9e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.hero .container {
  padding-top: 50px;
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 4rem;
  color: #f3f3f3;
  letter-spacing: 3px;
}

.hero .hero-animation {
	width: 80%;
	height: 80%;
}

.hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

.hero .btn-get-started {
  font-family: "Lexend", sans-serif;                                           
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 25px 75px 25px 75px;
  border-radius: 25px;
  transition: all ease-in-out 0.3s;
  margin: 10px 0 0 0;
  color: #fff;
  border: solid 2px #b6cb9e;
  background: rgb(43,45,66);
  background: -moz-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  background: -webkit-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  background: linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1);
}

.hero .btn-get-started:hover { 
  border: solid 2px #d1f081;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

.hero .hero-animation {
  opacity: 0.9;
}
.box{
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.box span{
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 2px solid #b6cb9e;
	border-right: 2px solid #b6cb9e;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}

.box span:nth-child(2)
{
	animation-delay: -0.2s;
}

.box span:nth-child(3)
{
	animation-delay: -0.4s;
}

@keyframes animate{
	
	0%{
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}


@media (max-width: 991px) {
  .hero h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-align: center;
  }
  
  .hero .container {
  padding: 30px 0 0 0;
}
  

  .hero .hero-animation {
    width: 100%;
    margin: 0 auto;
  }
   .hero .btn-get-started {
    font-size: 1.6rem;
    padding: 20px 50px 20px 50px;
  }
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.8rem;
    text-align: center;
  }
  
  .hero .container {
  padding: 30px 0 0 0;
}


  .hero .hero-animation {
    width: 85%;
	margin: 0 auto;
  }
   .hero .btn-get-started {
    font-size: 1.4rem;
    padding: 20px 40px 20px 40px;
  }
	.box {
		display: none;
	}
}

@media (max-width: 375px) {
  .hero .hero-animation {
    width: 85%;
	margin: 0 auto;
  }
 
  .hero .container {
  padding: 30px 0 0 0;
}
	.hero .row {
		padding: 0 5%;
	}
  
   .hero h1 {
    font-size: 1.4rem;
    line-height: 1.6rem;
	text-align: center;
  }

  .hero .btn-get-started {
    font-size: 1rem;
    padding: 20px 40px 20px 40px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  color: #f8f8f8;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  color: #f3f3f3;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #f3f3f3;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #d1f081;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  color: #f8f8f8;
  font-size: 22px;
}

@media (max-width: 768px) {
.section-title h2 {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #f3f3f3;
}
	
}

.section-title p {
  margin-bottom: 0;
  color: #f8f8f8;
  font-size: 1.2rem;
}

@media (max-width: 375px) {

.section-title {
  text-align: center;
  padding-bottom: 5px;
}
	
.rotating {
		width: 80%;
	}

section {
  padding: 30px 0;
}
	
.section-title p {
  margin-bottom: 25px;
  font-size: 18px;
}
	
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
  background: rgb(43,45,66);
  background: -moz-linear-gradient(142deg, rgba(43,45,66,0.8) 16%, rgba(43,45,66,0.8) 37%, rgba(31,33,48,0.8) 63%, rgba(0,0,0,0.8) 100%);
  background: -webkit-linear-gradient(142deg, rgba(43,45,66,0.8) 16%, rgba(43,45,66,0.8) 37%, rgba(31,33,48,0.8) 63%, rgba(0,0,0,0.8) 100%);
  background: linear-gradient(142deg, rgba(43,45,66,0.8) 16%, rgba(43,45,66,0.8) 37%, rgba(31,33,48,0.8) 63%, rgba(0,0,0,0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1); 
  border-top: solid 2px #b6cb9e;
  border-bottom: solid 2px #b6cb9e;
}

.clients img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h4 {
  font-weight: 800;
  font-size: 22px;
  color: #b6cb9e;
}

.about {
  padding-top: 0px!important;
}


@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 12s linear infinite;
  -moz-animation: rotating 12s linear infinite;
  -ms-animation: rotating 12s linear infinite;
  -o-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}

.about img {
 width: 90%;
}

.about .content p {
  color: #f8f8f8;
  font-size: 22px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 900px) {
	.about img {
 width: 60%;
 margin: 0 auto;
}
}
@media (max-width: 480px) {
	.about img {
 width: 80%;
 margin: 0 auto;
}
.about .content p {
  font-size: 18px;
}
.about .content h4 {
  font-size: 20px;
}
}

/*--------------------------------------------------------------
# Bespoke Services
--------------------------------------------------------------*/
#bespoke-services .bounding-box {
  padding: 30px 0;
  border-bottom: 1px solid #b2b2b2;
  transition: all 0.5s ease-in-out;
}
#bespoke-services .border-top {
  border-top: 1px solid #b2b2b2;
}
#bespoke-services .bounding-box .heading {
  font-size: 1.8rem;
  transition: all 0.5s ease-in-out;
  margin-right: 30px;
  font-family: "Poppins", sans-serif;
}

#bespoke-services .bounding-box .radius {
  border-radius: 99px;
  margin-right: 30px;
  transition: all 0.5s ease-in-out;
}

#bespoke-services .bounding-box:hover .heading {
  font-size: 1.8rem;
  color: #d1f081;
}

#bespoke-services .bounding-box:hover .radius {
  border-radius: 99px;
  margin-right: 60px;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

#bespoke-services .bounding-box:hover {
  padding: 30px 0;
  border-bottom: 1px solid #eeeeee;
}

#bespoke-services .bounding-box:hover i {
  display:inherit;
}

#bespoke-services i {
  font-size: 2.4rem;
  color: #d1f081;
  display: none;
  transition: all 0.2s ease-in-out;
}

#bespoke-services i:hover {
  transform: rotate(90deg);
}

#bespoke-services p {
  font-size: 18px;
}

@media (max-width: 991px) {
#bespoke-services .bounding-box .heading {
  font-size: 1.6rem;
  margin-right: 0px;
  width: 90%;
}
#bespoke-services .bounding-box:hover .heading {
  font-size: 1.6rem;
  color: #fff;
}
#bespoke-services .bounding-box .radius {
  border-radius: 99px;
  width: 75px;
  height: 75px;
  margin: 0 10px;
}
#bespoke-services i {
  display: inherit;
}
#bespoke-services .bounding-box:hover .radius {
box-shadow: none;
margin-right: 10px;
}
#bespoke-services p {
  font-size: 18px;
  margin: 0 15px;
}		
}
@media (max-width: 768px) {
#bespoke-services .bounding-box .heading {
  font-size: 1.2rem;
  margin-right: 0px;
  width: 55%;
  text-align: center;
}
#bespoke-services .bounding-box:hover .heading {
  font-size: 1.2rem;
}
#bespoke-services i {
  font-size: 1.8rem;
}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px 30px;
  transition: all ease-in-out 0.4s;
  border: solid 2px #b6cb9e;
  border-radius: 50px;
  background: rgb(43,45,66);
  background: -moz-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  background: -webkit-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  background: linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1);
}

.services .icon-box:hover{
  -webkit-box-shadow: 0px 12px 30px 10px rgba(209,240,129,0.5);
    -moz-box-shadow: 0px 12px 30px 10px rgba(209,240,129,0.5);
    box-shadow: 0px 0px 30px 10px rgba(209,240,129,0.5);
	transition: all ease-in-out 0.5s;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #b6cb9e;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #b6cb9e;
  font-family: "Poppins", sans-serif;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.services .icon-box .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: .5s ease;
  background-color: #2b2d42;
  border-radius: 50px;
}

.services .icon-box:hover .overlay {
  opacity: 1;
}

.services .text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: left;
}

.services .text p {
  color: #f8f8f8;
  font-size: 1rem;
}
@media (max-width: 991px) {
	.icon-box {
		margin-bottom: 30px;
	}
	.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: #b6cb9e;
}

.services .icon-box p {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

	.services .icon-box a {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
}
	
@media (max-width: 768px) {
	
.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #b6cb9e;
}

.services .icon-box p {
  font-size: 1rem;
  margin-bottom: 10px;
}

	.services .icon-box a {
  font-size: 1rem;
  margin-bottom: 10px;
}
	
}


/*--------------------------------------------------------------
# sliderSection
--------------------------------------------------------------*/
.slick-list {
  padding: 0 !important;
}

.slick-track {
  display: flex;
  column-gap: 30px;
  align-items: flex-end;
}

a {
  display: block;
  position: relative;
  z-index: 1;
}

.bxs-left-arrow,
.bxs-right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 2rem;
  cursor: pointer;
  color: #b6cb9e;
}

.bxs-left-arrow {
  left: 0;
}

.bxs-right-arrow {
  right: 0;
}

@media (min-width:1024px) {

  .bxs-left-arrow{
    left: -30px;
  }

  .bxs-right-arrow {
    right: -30px;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .btn-get-started {
  font-family: "Lexend", sans-serif;                                           
  font-weight: 500;
  font-size: 22px;
  display: inline-block;
  width: fit-content;
  text-align:center;
  letter-spacing: 1px;
  padding: 25px 100px 25px 100px;
  border-radius: 25px;
  transition: all ease-in-out 0.3s;
  margin: 10px 0 0 0;
  color: #fff;
  border: solid 2px #b6cb9e;
  background: rgb(43,45,66);
  background: -moz-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  background: -webkit-linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  background: linear-gradient(142deg, rgba(43,45,66,0.55) 16%, rgba(43,45,66,0.55) 37%, rgba(31,33,48,0.55) 63%, rgba(0,0,0,0.55) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2d42",endColorstr="#000000",GradientType=1);
}

.contact .btn-get-started:hover { 
  border: solid 2px #d1f081;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;

}

#footer .footer-newsletter {
  padding: 50px 0;
  text-align: center;
  font-size: 15px;
  color: #f8f8f8;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #f8f8f8;
}

.calendly-inline-widget {
	background-color: transparent!important;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border-radius: 50px 0 0 50px;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #b6cb9e;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #d1f081;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #f8f8f8;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #5e5e5e;
}

#footer .footer-logo img{
  width: 100%;
}

#footer .footer-top h4 a {
  font-size: 16px;
  font-weight: bold;
  color: #f8f8f8;
  position: relative;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-links {
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b6cb9e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #b6cb9e;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #b6cb9e;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
 
}

#footer .footer-top .social-links a:hover {
  background: #d1f081;
  text-decoration: none;
  -webkit-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  -moz-box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
  box-shadow: 0px 7px 25px 3px rgba(182,203,158,0.75);
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}