/*
@File: Peru Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

******************************************* 
** - Default Area Style
** - Preloader Area Style
** - Go Top Area Style
** - Page navigation Area Style
** - Video wave Style
** - Navbar Area Style
** - Main Banner Area Style 
** - Main Slider Area Style 
** - Service Area Style
** - Counter Area Style
** - Client Area Style
** - Project Area Style
** - Project Details Area Style
** - Blog Area Style
** - Blog Details Area Style
** - Blog Right Sidebar Area Style
** - Blog Left Sidebar Area Style
** - Blog Details Area Style
** - Footer Top Area Style
** - Footer Bottom Area Style
** - Blog Details Area Style
** - Contact Area Style
** - Log In Area Style
** - Sign Up Area Style
** - Recover Password Area Style
** - Coming Soon Area Style   
** - 404 Error Area Style
** - FAQ Area Style
*******************************************
/*

/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css?family=Muli:300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800&display=swap");
body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Muli", sans-serif;
  color: #4a4a4a;
}

a {
  display: inline-block;
  transition: all 0.5s;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #012068;
}
a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  box-shadow: none;
  border: none;
}
button:focus {
  box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #012068;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h3 {
  font-size: 18px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 15px;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: #6e6e6e;
  border: 1px solid #ebebeb;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 4px;
}
.form-control::-moz-placeholder {
  color: #6e6e6e;
}
.form-control::placeholder {
  color: #6e6e6e;
}
.form-control:focus {
  color: #000000;
  background-color: transparent;
  box-shadow: unset;
  outline: 0;
  border: 1px solid #3aae36;
}

.form-control:hover:focus, .form-control:focus {
  box-shadow: unset;
}

textarea.form-control {
  height: auto;
  height: 250px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

/*
Go Top Style
================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  background-color: #01a0c7;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  border-radius: 50%;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  transition: 0.5s;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #012068;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: 50%;
}
.go-top:hover {
  color: #ffffff;
  background-color: #012068;
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  top: 98%;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

/*
Page navigation Area Style
================================*/
.pagenavigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}
.pagenavigation-area .page-link {
  color: #3aae36;
  background-color: #ffffff;
  box-shadow: 0 0 15px #d0d0d0;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  line-height: 24px;
  transition: all 0.5s;
  font-weight: 700;
}
.pagenavigation-area .page-link i {
  margin-right: -4px;
}
.pagenavigation-area .page-link:hover {
  color: #ffffff;
  background-color: #3aae36;
  border: 1px solid #3aae36;
}
.pagenavigation-area .page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: none;
}
.pagenavigation-area .page-link.page-links i::before {
  margin-left: -4px;
}
.pagenavigation-area .page-item {
  padding: 0 8px 0;
}
.pagenavigation-area .page-item:first-child .page-link {
  border-radius: none;
}
.pagenavigation-area .page-item:last-child .page-link {
  border-radius: none;
}
.pagenavigation-area .page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #3aae36;
  border-color: #3aae36;
}

/*
Video wave Style
================================*/
.video-wrap .video-btn-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-wrap .video-play {
  position: absolute;
  top: 16px;
  left: 80px;
  text-transform: uppercase;
  width: 129px;
  line-height: 1;
}
.video-wrap .video-play p {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}

.video-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
  top: 3px;
  z-index: 1;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
}
.video-btn i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #ffffff;
}
.video-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 50%;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
}
.video-btn:hover {
  background-color: #121232;
  color: #ffffff;
}
/*
Default Btn Area Style
================================*/
.default-btn {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
  padding: 12px 25px;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #012068;
  z-index: -1;
  transition: all 0.5s;
  border-radius: 4px;
}
.default-btn:hover {
  color: #ffffff;
}
.default-btn:hover::before {
  width: 100%;
}

/*
Section Title Area Style
================================*/
.section-title {
  text-align: center;
  margin: -8px auto 60px;
  max-width: 600px;
}
.section-title span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3aae36;
  display: inline-block;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 38px;
  margin-bottom: 0;
}

/*
Preloader Area Style
================================*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: 0;
  z-index: 99999;
}
.preloader .lds-ripple {
  position: relative;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader .lds-ripple div {
  position: absolute;
  border: 4px solid #3aae36;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.preloader .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
/*===== DEFAULT STYLE END ======*/
/*
Peru Nav Area Style
================================*/
.peru-nav .main-nav {
  background-color: transparent;
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  padding: 5px 0;
}
.peru-nav .main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.7;
  z-index: -1;
}
.peru-nav .main-nav.peru-nav-style::before {
  opacity: 1;
}
.peru-nav .main-nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/shape/2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}
.peru-nav .main-nav nav .navbar-nav .nav-item a {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #012068;
  margin-left: 12px;
  margin-right: 12px;
}
.peru-nav .main-nav nav .navbar-nav .nav-item a.active {
  color: #0192b8;
}
.peru-nav .main-nav nav .navbar-nav .nav-item a:hover {
  color: #3aae36;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  width: 240px;
  background-color: #ffffff;
  border: none;
  padding: 8px 0;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  color: #012068;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 100%;
  border: none;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #233d63;
  text-transform: capitalize;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #3aae36;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
  color: #3aae36;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  padding: 5px 15px;
  font-size: 14px;
  color: #233d63;
  font-weight: 500;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::after {
  float: right;
  position: relative;
  top: 11px;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #3aae36;
}
.peru-nav .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #3aae36;
}
.peru-nav .others-option .contact-number {
  color: #012068;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.5s;
  margin-right: 20px;
}
.peru-nav .others-option .contact-number i {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #e8e8e7;
  text-align: center;
  border-radius: 50%;
  line-height: 26px;
  padding-right: 0;
  margin-right: 5px;
  color: #000;
  transition: all 0.5s;
}
.peru-nav .others-option .contact-number:hover {
  color: #3aae36;
}
.peru-nav .others-option .contact-number:hover i {
  color: #ffffff;
  background-color: #3aae36;
}
.peru-nav .others-option .default-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 25px;
}

.dropdown-style {
  position: relative;
}
.dropdown-style::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/shape/2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
}

.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  transition: all 0.5s;
  max-width: 100%;
  margin-top: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: -7px !important;
}

/*
Banner Area Style
================================*/
.banner-area {
  background-image: url(../img/home-one/slider/1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background-image: url(../img/shape/9.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}
.banner-area .banner-text {
  max-width: 700px;
  margin-top: 100px;
}
.banner-area .banner-text span {
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3aae36;
}
.banner-area .banner-text h1 {
  font-size: 60px;
  color: #012068;
  font-weight: 700;
  margin-bottom: 15px;
}
.banner-area .banner-text h1 span {
  font-size: 60px;
  color: #3aae36;
  font-weight: 700;
}
.banner-area .banner-text p {
  color: #747171;
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: 700;
}
.banner-area .video-wrap {
  text-align: center;
}
.banner-area .shape-1 {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: -1;
  width: 10%;
  animation: rotation 1s infinite linear;
}
.banner-area .shape-3 {
  position: absolute;
  top: 250px;
  left: 30px;
  z-index: -1;
  animation: mover 3s infinite alternate;
}
.banner-area .shape-4 {
  position: absolute;
  bottom: -150px;
  left: 100px;
  z-index: -1;
}
.banner-area .shape-5 {
  position: absolute;
  top: 400px;
  left: 200px;
  z-index: -1;
  animation: rotation 25s infinite linear;
}
.banner-area .shape-6 {
  position: absolute;
  top: 600px;
  left: 40px;
  z-index: -1;
  animation: rotation 25s infinite linear;
}
.banner-area .shape-7 {
  position: absolute;
  top: 120px;
  left: 325px;
  z-index: -1;
  animation: rotation 25s infinite linear;
}
.banner-area .shape-8 {
  position: absolute;
  top: 120px;
  right: 0;
  z-index: -1;
  width: 10%;
}
.banner-area .shape-9 {
  position: absolute;
  bottom: 150px;
  left: 800px;
  z-index: -1;
  animation: rotation 5s infinite linear;
}
.banner-area .shape-10 {
  position: absolute;
  bottom: 100px;
  left: 500px;
  z-index: -1;
  animation: rotation 5s infinite linear;
}
.banner-area .shape-11 {
  position: absolute;
  bottom: -55px;
  left: 800px;
  animation: rotation 25s infinite linear;
  z-index: -1;
}
.banner-area .col-lg-4 {
  position: relative;
}

/*
Hero Slider Area Style
================================*/
.hero-slider-area {
  position: relative;
  z-index: 1;
}
.hero-slider-area .hero-slider-item {
  width: 100%;
  height: 710px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.hero-slider-area .hero-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
  z-index: -1;
}
.hero-slider-area .hero-slider-item .hero-slider-text {
  max-width: 700px;
}
.hero-slider-area .hero-slider-item .hero-slider-text span {
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3aae36;
  color: #ffffff;
}
.hero-slider-area .hero-slider-item .hero-slider-text h1 {
  font-size: 60px;
  color: #012068;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
.hero-slider-area .hero-slider-item .hero-slider-text h1 span {
  font-size: 60px;
  color: #3aae36;
  font-weight: 700;
  color: #ffffff;
}
.hero-slider-area .hero-slider-item .hero-slider-text p {
  color: #747171;
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #ffffff;
}
.hero-slider-area .hero-slider-item .slider-item {
  width: 650px;
}
.hero-slider-area .owl-theme .owl-nav {
  margin-top: 0;
}
.hero-slider-area .owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 47%;
  left: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #7c867c !important;
  border-radius: 0 10px;
  background-color: #9aa0ae;
  transition: all 0.5s;
  margin: 0;
}
.hero-slider-area .owl-theme .owl-nav .owl-prev:hover {
  border: 2px solid #3aae36 !important;
  background-color: transparent;
}
.hero-slider-area .owl-theme .owl-nav .owl-prev:hover i {
  color: #3aae36;
}
.hero-slider-area .owl-theme .owl-nav .owl-prev i {
  color: #ffffff;
  font-size: 18px;
}
.hero-slider-area .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 47%;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 2px solid #7c867c  !important;
  border-radius: 0 10px;
  background-color: #9aa0ae;
  transition: all 0.5s;
  margin: 0;
}
.hero-slider-area .owl-theme .owl-nav .owl-next:hover {
  border: 2px solid #3aae36 !important;
  background-color: transparent;
}
.hero-slider-area .owl-theme .owl-nav .owl-next:hover i {
  color: #3aae36;
}
.hero-slider-area .owl-theme .owl-nav .owl-next i {
  color: #ffffff;
  font-size: 18px;
}
.hero-slider-area .shape-1 {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 1;
  width: 10%;
  animation: rotation 50s infinite linear;
  opacity: 0.4;
}
.hero-slider-area .shape-3 {
  position: absolute;
  top: 250px;
  left: 30px;
  z-index: 1;
  animation: mover 3s infinite alternate;
  opacity: 0.4;
}
.hero-slider-area .shape-4 {
  position: absolute;
  bottom: 0;
  left: 270px;
  z-index: 1;
  opacity: 0.4;
}
.hero-slider-area .shape-5 {
  position: absolute;
  top: 400px;
  left: 100px;
  z-index: 1;
  animation: rotation 25s infinite linear;
  opacity: 0.4;
}
.hero-slider-area .shape-6 {
  position: absolute;
  top: 500px;
  left: 40px;
  z-index: 1;
  animation: rotation 25s infinite linear;
  opacity: 0.4;
}
.hero-slider-area .shape-7 {
  position: absolute;
  top: 120px;
  left: 325px;
  z-index: 1;
  animation: rotation 25s infinite linear;
  opacity: 0.4;
}
.hero-slider-area .shape-8 {
  position: absolute;
  top: 120px;
  right: 0;
  z-index: 1;
  width: 10%;
  opacity: 0.4;
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.slider-item-bg-1 {
  background-image: url(../img/home-one/slider/2.jpg);
}

.slider-item-bg-2 {
  background-image: url(../img/home-one/slider/3.jpg);
}

/*
Box Area Style
================================*/
.box-area {
  margin-top: -100px;
}

.single-box {
  text-align: center;
  padding: 30px;
  border-radius: 0 30px 0 30px;
  margin-bottom: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.single-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012068;
  opacity: 1;
  z-index: -1;
  border-radius: 0 30px 0 30px;
  transition: all 0.5s;
}
.single-box:hover {
  border-radius: 0;
}
.single-box:hover::before {
  opacity: 0.5;
  border-radius: 0;
}
.single-box:hover i {
  color: #ffffff;
}
.single-box:hover i::after {
  transform: scale(1);
}
.single-box i {
  font-size: 25px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #ffffff;
  color: #3aae36;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.single-box i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: all 0.5s;
}
.single-box h3 {
  color: #ffffff;
  margin-bottom: 12px;
}
.single-box p {
  color: #e6e1e1;
  margin-bottom: -6px;
}
.single-box.bg-1 {
  background-image: url(../img/box/1.jpg);
}
.single-box.bg-2 {
  background-image: url(../img/box/2.jpg);
}
.single-box.bg-3 {
  background-image: url(../img/box/1.jpg);
}
.single-box.single-box-2 {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-box.single-box-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/2.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.1;
  transform: scale(0);
  transition: all 0.5s;
}
.single-box.single-box-2::before {
  display: none;
}
.single-box.single-box-2:hover::after {
  transform: scale(1);
}
.single-box.single-box-2 i {
  background-color: #e4f4c5;
}
.single-box.single-box-2 h3 {
  color: #012068;
  margin-bottom: 12px;
}
.single-box.single-box-2 p {
  color: #4a4a4a;
  margin-bottom: -6px;
}

/*
About Us Area Style
================================*/
.about-title {
  margin-top: -8px;
}
.about-title span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3aae36;
  display: inline-block;
  margin-bottom: 10px;
}
.about-title h2 {
  font-size: 38px;
  margin-bottom: 30px;
}
.about-title ul {
  margin-bottom: 40px;
}
.about-title ul li {
  margin-bottom: 10px;
  color: "Poppins", sans-serif;
  color: #012068;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.5s;
}
.about-title ul li:last-child {
  margin-bottom: 0;
}
.about-title ul li i {
  padding-right: 5px;
  transition: all 0.5s;
}
.about-title ul li:hover {
  color: #3aae36;
}
.about-title ul li:hover i {
  margin-right: 5px;
}

.about-us-img {
  position: relative;
}
.about-us-img img {
  border-radius: 4px;
}
.about-us-img .about-img-2 {
  position: absolute;
  top: 62px;
  right: 0;
}

.about-us-area-2 {
  background-color: #f2f2f9;
  position: relative;
  z-index: 1;
}

/*
Start Best Service Area Style
================================*/
.best-services-area {
  background-color: #f0f1f8;
}
.best-services-area .tab-content {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
}
.best-services-area .best-service-img img {
  border-radius: 4px;
}
.best-services-area .nav-pills {
  margin-bottom: 30px;
}
.best-services-area .nav-pills .nav-link {
  color: #292a2c;
  background-color: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  width: 200px;
  height: 100px;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
.best-services-area .nav-pills .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #012068, #012c92);
  z-index: -1;
  transform: scale(0);
  transition: all 0.5s;
  border-radius: 4px;
}
.best-services-area .nav-pills .nav-link i {
  display: block;
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
  color: #0791b6;
  transition: all 0.5s;
}
.best-services-area .nav-pills .nav-link:hover {
  color: #ffffff;
  box-shadow: none;
}
.best-services-area .nav-pills .nav-link:hover::before {
  transform: scale(1);
}
.best-services-area .nav-pills .nav-link:hover i {
  color: #ffffff;
}
.best-services-area .nav-pills .nav-link.active {
  color: #ffffff;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
  box-shadow: none;
}
.best-services-area .nav-pills .nav-link.active i {
  color: #ffffff;
}
.best-services-area .best-service-area h3 {
  margin-bottom: 20px;
}
.best-services-area .best-service-area ul {
  margin-bottom: 35px;
}
.best-services-area .best-service-area ul li {
  margin-bottom: 10px;
  color: #012068;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding-left: 35px;
  position: relative;
}
.best-services-area .best-service-area ul li:last-child {
  margin-bottom: 0;
}
.best-services-area .best-service-area ul li i {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #012068;
  text-align: center;
  color: #ffffff;
  margin-right: 5px;
  font-weight: normal;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

/*
Start Choose Area Style
================================*/
.choose-bg-area .single-box {
  border-radius: 0;
  margin-bottom: 0;
  border: 1px solid #203157;
  padding: 30px 28px;
  background-image: url(../img/shape/2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.choose-bg-area .single-box::before {
  border-radius: 0;
}
.choose-bg-area .single-box:hover::before {
  border-radius: 0;
  opacity: 0.9;
}
.choose-bg-area .pr-0 {
  padding-right: 0;
}
.choose-bg-area .pl-0 {
  padding-left: 0;
}
.choose-bg-area:hover .choose-1 {
  margin-right: 15px;
  margin-bottom: 15px;
}
.choose-bg-area:hover .choose-2 {
  margin-left: 15px;
  margin-bottom: 15px;
}
.choose-bg-area:hover .choose-3 {
  margin-top: 15px;
  margin-right: 15px;
}
.choose-bg-area:hover .choose-4 {
  margin-top: 15px;
  margin-left: 15px;
}

.choose-img {
  background-image: url(../img/choose-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.choose-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012068;
  opacity: 0.9;
  z-index: -1;
}
.choose-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/8.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}
.choose-img .video-wrap .video-btn-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.choose-img img {
  border-radius: 4px;
}

/*
Start Choose Area Style
================================*/
.financial-text-wrap {
  position: relative;
}
.financial-text-wrap .financial-text {
  position: absolute;
  top: 0;
  left: 0;
}

/*
Our financial Area CSS
=================================*/
.financial-area {
  background-color: #012068;
}

.financial-image {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}
.financial-image img {
  display: none !important;
}

.financial-image.bg-1 {
  background-image: url(../../assets/img/financial/1.jpg);
}

.financial-image.bg-2 {
  background-image: url(../../assets/img/financial/2.jpg);
}

.financial-text {
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}
.financial-text .icon {
  color: #3aae36;
  font-size: 25px;
  margin-bottom: 20px;
  line-height: 1;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 50%;
}
.financial-text h3 {
  color: #ffffff;
  margin-bottom: 18px;
}
.financial-text p {
  color: #ffffff;
  margin-bottom: 0;
}
.financial-text .default-btn {
  margin-top: 22px;
}
.financial-text .shape {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

/*
Partner Area Style
================================*/
.partner-area .owl-carousel .owl-item img {
  width: unset;
  margin: auto;
  opacity: 0.5;
  transition: all 0.5s;
}
.partner-area .owl-carousel .owl-item img:hover {
  opacity: 1;
}
.partner-area .single-logo {
  line-height: 1;
}

/*
Team Area Style
================================*/
.single-team {
  margin-bottom: 30px;
}
.single-team .team-text {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.5s;
}
.single-team .team-text h3 {
  margin-bottom: 5px;
  margin-top: -2px;
}
.single-team .team-text span {
  display: block;
  margin-bottom: -4px;
}
.single-team .team-img {
  position: relative;
  border-right: 10px solid #012068;
  border-top: 10px solid #012068;
}
.single-team .team-img .team-icon {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: all 0.5s;
}
.single-team .team-img .team-icon li {
  display: inline-block;
  padding: 0 10px;
}
.single-team .team-img .team-icon li a {
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
}
.single-team .team-img .team-icon li a i {
  line-height: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}
.single-team .team-img .team-icon li a:hover {
  color: #3aae36;
  background-color: #ffffff;
}
.single-team .team-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012068;
  opacity: 0;
  transition: all 0.5s;
}
.single-team:hover .team-img::before {
  opacity: 0.5;
}
.single-team:hover .team-img .team-icon {
  bottom: 0;
}
.single-team:hover .team-text {
  background-color: #012068;
}
.single-team:hover .team-text h3 {
  color: #ffffff;
}
.single-team:hover .team-text span {
  color: #ffffff;
}

/*
Client Area Style
================================*/
.client-area {
  background-image: url(../img/client-img/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}
.client-area .section-title span {
  color: #ffffff;
}
.client-area .section-title h2 {
  color: #ffffff;
}
.client-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  z-index: -1;
}

.client-details-wrap .owl-dots {
  margin-top: 0 !important;
  position: absolute;
  top: 44%;
  left: 0;
  display: grid;
}
.client-details-wrap .owl-dots .owl-dot span {
  width: 3px;
  height: 15px;
  background-color: #012068;
  border-radius: 0;
}
.client-details-wrap .owl-dots .owl-dot span:hover {
  background-color: #3aae36;
}
.client-details-wrap .owl-dots .owl-dot.active span {
  background: #3aae36 !important;
}

.client-bg {
  background-color: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}

.client-details {
  text-align: center;
  padding: 20px 55px;
}
.client-details img {
  margin: 0 auto 20px;
  border-radius: 50%;
  width: unset !important;
}
.client-details h3 {
  font-size: 15px;
  margin-bottom: 0;
}
.client-details span {
  display: block;
  margin-bottom: 10px;
}
.client-details ul li {
  display: inline-block;
}
.client-details ul li i {
  color: #e9cc0b;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
}
.client-details i {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  color: #012068;
}

/*
Blog Area CSS
=================================*/
.blog-wrap.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: 0.01;
  margin-top: 30px;
}
.blog-wrap.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: transparent;
  border: 1px solid #3aae36;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}
.blog-wrap.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #3aae36;
}
.blog-wrap.owl-theme .owl-dots .owl-dot:hover span::before {
  background-color: #3aae36;
}
.blog-wrap.owl-theme .owl-dots .owl-dot.active span {
  border-color: #3aae36;
  position: relative;
}
.blog-wrap.owl-theme .owl-dots .owl-dot.active span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #3aae36;
  transition: 0.5s;
  border-radius: 50%;
  margin: 3px;
}

.single-blog-post {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}
.single-blog-post .post-image {
  position: relative;
  overflow: hidden;
}
.single-blog-post .post-image a {
  display: block;
}
.single-blog-post .post-image a img {
  border-radius: 5px 5px 0 0;
  transition: 0.5s;
}
.single-blog-post .post-content {
  border: 1px solid #eeeeee;
  padding: 25px;
}
.single-blog-post .post-content .date {
  color: #3aae36;
  font-size: 12px;
  margin-bottom: 8px;
  margin-top: -4px;
}
.single-blog-post .post-content .date i {
  font-size: 12px;
}
.single-blog-post .post-content h3 a {
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 900;
  color: #012068;
}
.single-blog-post .post-content p {
  margin-bottom: 0;
}
.single-blog-post .post-content .default-btn {
  margin-top: 25px;
}
.single-blog-post:hover h3 a {
  color: #3aae36;
}
.single-blog-post:hover .post-image a img {
  transform: scale(1.3) rotate(4deg);
}

/*
FAQ Area Style
================================*/
.questions-area.two .section-title {
  text-align: left;
  max-width: unset;
  margin: 0 auto 60px;
}

.questions {
  background-image: url(../img/choose-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}
.questions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012068;
  opacity: 0.9;
  z-index: -1;
}
.questions::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/8.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}
.questions .contact-form {
  padding: 30px;
  background-color: #242527;
  margin-left: 30px;
  margin-right: 30px;
}
.questions .contact-form label {
  float: left;
  color: #ffffff;
}
.questions .contact-form .form-group {
  margin-bottom: 30px;
}
.questions .contact-form .form-group .form-control {
  color: #ffffff;
}
.questions .contact-form .form-group textarea.form-control {
  height: 200px;
}
.questions .contact-form .default-btn {
  cursor: pointer;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  padding: 12px 20px 12px 51px;
  color: #012068;
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #faf5f5;
  color: #3aae36;
  font-size: 14px;
  transition: 0.5s;
}
.faq-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.faq-accordion .accordion .accordion-title.active {
  border-bottom-color: #eeeeee;
}
.faq-accordion .accordion .accordion-title.active i {
  background-color: #3aae36;
  color: #fff;
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f063";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
  font-size: 15;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Footer Top Area Style
================================*/
.footer-top-area {
  background-color: #1d225d;
}

.single-widget {
  margin-bottom: 25px;
}
.single-widget h3 {
  color: #ffffff;
  margin-bottom: 20px;
}
.single-widget p {
  color: #fafafa;
  margin-top: 10px;
}
.single-widget .address {
  margin-top: 20px;
}
.single-widget .address li {
  color: #fafafa;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  transition: all 0.5s;
}
.single-widget .address li a {
  color: #fafafa;
  transition: all 0.5s;
}
.single-widget .address li i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #01a0c7;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}
.single-widget .address li:hover {
  color: #3aae36;
}
.single-widget .address li:hover a {
  color: #3aae36;
}
.single-widget .address li:last-child {
  margin-bottom: 0;
}
.single-widget .links li {
  margin-bottom: 16px;
}
.single-widget .links li a {
  color: #fafafa;
}
.single-widget .links li:last-child {
  margin-bottom: 0;
}
.single-widget .links li:hover {
  color: #3aae36;
}
.single-widget .links li:hover a {
  color: #3aae36;
}
.single-widget .instragram {
  margin-top: -10px;
}
.single-widget .instragram li {
  display: inline-block;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 17px;
}
.single-widget .instragram li a {
  color: #fafafa;
}
.single-widget .instragram li:hover {
  color: #3aae36;
}
.single-widget .instragram li:hover a {
  color: #3aae36;
}

/*
Footer Bottom Area Style
================================*/
.footer-bottom-area {
  background-color: #3d60b1;
  padding: 15px 0;
}
.footer-bottom-area p {
  color: #ffffff;
  margin-top: 4px;
}
.footer-bottom-area p a {
  color: #3aae36;
}
.footer-bottom-area p a:hover {
  color: #3aae36;
}
.footer-bottom-area .social-icon {
  text-align: right;
}
.footer-bottom-area .social-icon li {
  display: inline-block;
  padding-left: 5px;
}
.footer-bottom-area .social-icon li a i {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #01a0c7;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  transition: all 0.5s;
}
.footer-bottom-area .social-icon li a i:hover {
  background-color: #012068;
}

/*
Single Processing Area Style
================================*/
.single-processing {
  text-align: center;
}
.single-processing span {
  background-color: #3aae36;
  display: inline-block;
  line-height: 20px;
  height: 20px;
  width: 20px;
  color: #ffffff;
  border-radius: 50%;
  position: relative;
  left: -40px;
  top: 10px;
  transition: all 0.5s;
}
.single-processing .processing-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 36px;
  top: 8px;
}
.single-processing .processing-icon i {
  color: #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  line-height: 80px;
  background: #3aae36;
  z-index: 1;
  font-size: 35px;
  position: relative;
  transition: all 0.5s;
}
.single-processing .processing-icon i::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -7px;
  border: 2px dotted #3aae36;
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s;
  animation: rotation 50s infinite linear;
  transition: all 0.5s;
}
.single-processing h3 {
  margin-top: 25px;
  margin-bottom: 12px;
}
.single-processing:hover i {
  background-color: #3aae36;
  color: #ffffff;
}
.single-processing:hover i::after {
  border: 2px dotted #3aae36;
  animation: rotation 10s infinite linear;
}
.single-processing:hover span {
  background: #3aae36;
}
.single-processing::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 10%;
  top: 50px;
  right: 0;
  background-image: url(../img/shape/11.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.col-lg-3:last-child .single-processing::before {
  display: none;
}

.icon-color:nth-child(2) .single-processing {
  margin-top: 30px;
}
.icon-color:nth-child(4) .single-processing {
  margin-top: 30px;
}

/*
Service Area Style
================================*/
.services-area .default-btn {
  margin: auto;
  margin-top: 30px;
}
.services-area .owl-next {
  position: absolute;
  top: 38%;
  right: 0;
  margin: 0 !important;
  background-color: transparent !important;
}
.services-area .owl-next i {
  color: #dddddd;
  font-size: 30px;
  transition: all 0.5s;
}
.services-area .owl-prev {
  position: absolute;
  top: 38%;
  left: 0;
  margin: 0 !important;
  background-color: transparent !important;
}
.services-area .owl-prev i {
  color: #dddddd;
  font-size: 30px;
  transition: all 0.5s;
}
.services-area:hover .owl-next i {
  color: #3aae36;
}
.services-area:hover .owl-prev i {
  color: #3aae36;
}

.services-title {
  margin: -8px auto 60px;
}
.services-title span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3aae36;
  display: inline-block;
  margin-bottom: 10px;
}
.services-title h2 {
  font-size: 38px;
  margin-bottom: 0;
}
.services-title p {
  margin-bottom: 0;
}

.single-services {
  position: relative;
  z-index: 1;
}
.single-services img {
  border-radius: 4px;
}
.single-services .service-text {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.single-services .service-text h3 a {
  color: #ffffff;
}
.single-services .service-text h3 a i {
  color: #3aae36;
  font-weight: normal;
  margin-left: 20px;
  font-size: 30px;
}
.single-services:hover h3 a {
  color: #3aae36;
}
.single-services::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 1px -20px 15px #012068;
  opacity: 0.5;
  background-color: #012068;
  opacity: 0.5;
}

/*
Features Area Style
================================*/
.features-left-area {
  position: relative;
  overflow: hidden;
  background-image: url(../img/features-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.features-left-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: -248px;
  height: 100%;
  background-image: url(../img/shape/12.png);
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  background-size: contain;
}

.features-right-area .features-title {
  margin: 0 auto 50px;
}
.features-right-area .features-title span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3aae36;
  display: inline-block;
  margin-bottom: 10px;
}
.features-right-area .features-title h2 {
  font-size: 38px;
  margin-bottom: 0;
}
.features-right-area .features-title p {
  margin-bottom: 0;
}
.features-right-area .features-list {
  position: relative;
  margin-bottom: 60px;
}
.features-right-area .features-list i {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
}
.features-right-area .features-list .creative-text {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 70px;
}

/*
Pricing Area Style
================================*/
.single-pricing {
  text-align: center;
  border: 1px solid #ddd;
  transition: all 0.5s;
  border-radius: 4px;
  margin-bottom: 30px;
}
.single-pricing .pricing-wrap {
  padding: 0 80px;
}
.single-pricing h3 {
  padding: 30px 0 52px;
  border-bottom: 1px solid #ddd;
  transition: all 0.5s;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(../img/pricing-1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 1;
}
.single-pricing h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3aae36;
  opacity: 0.5;
  z-index: -1;
}
.single-pricing h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 1;
  z-index: -1;
  transition: all 0.5s;
}
.single-pricing .money-bag {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #ddd;
  border-radius: 50%;
  font-size: 30px;
  position: relative;
  top: -40px;
  color: #ffffff;
  background-image: linear-gradient(to right, #8fd913, #39ae38);
  z-index: 1;
}
.single-pricing span {
  display: block;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #012068;
  font-size: 30px;
  margin-top: -25px;
}
.single-pricing span sub {
  font-size: 14px;
  font-weight: normal;
  color: #b7b8bc;
}
.single-pricing ul li {
  line-height: 1;
  color: #0a4f9c;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
}
.single-pricing ul li:last-child {
  border-bottom: none;
}
.single-pricing ul li i {
  margin-right: 5px;
}
.single-pricing .default-btn {
  margin-top: 17px;
  margin-bottom: 30px;
}
.single-pricing:hover {
  transform: translateY(-5px);
  border: 1px solid #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-pricing:hover h3 {
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
.single-pricing:hover h3::after {
  opacity: 0;
}

.team-area-two .section-title {
  text-align: left;
  margin-bottom: 0;
}
.team-area-two .section-title h2 {
  margin-bottom: 20px;
}
.team-area-two .section-title p {
  margin-bottom: 30px;
}
.team-area-two .single-team {
  margin-left: 15px;
  margin-right: 15px;
}
.team-area-two .single-team .team-img {
  border: none;
}
.team-area-two .single-team .team-text {
  box-shadow: 0 2px 11px 6px rgba(0, 0, 0, 0.08);
}
.team-area-two .single-team:hover .team-text {
  background-color: #3aae36;
}

/*
Page Title Area Style
================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  padding-top: 170px;
  padding-bottom: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  background-image: url(../img/shape/2.png);
}
.page-title-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #012068;
  opacity: 0.9;
}
.page-title-area .page-title-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
}
.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.page-title-area .page-title-content ul li {
  display: inline-block;
  color: #3aae36;
  position: relative;
  font-size: 15px;
  font-weight: 700;
}
.page-title-area .page-title-content ul li i {
  font-size: 12px;
  margin: 0 10px;
}
.page-title-area .page-title-content ul li a {
  color: #bab0b0;
}
.page-title-area .page-title-content ul li a:hover {
  color: #3aae36;
}
.page-title-area .page-title-content ul li a i {
  font-size: 12px;
  margin: 0 10px;
}

.single-box.single-box-2 .default-btn {
  margin-top: 22px;
}

/*
Project Area Two Style
================================*/
.project-area .sorting-menu {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.project-area .sorting-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.project-area .sorting-menu ul li {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 30px;
  margin: 0 5px;
  transition: all 0.5s;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border-radius: 4px;
}
.project-area .sorting-menu ul li:hover {
  color: #ffffff;
  background-color: #012068;
}
.project-area .sorting-menu ul li.active {
  color: #ffffff;
  background-color: #3aae36;
}

.single-portfolio-item .portfolio-inner {
  border-radius: 4px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.single-portfolio-item .portfolio-inner .portfolio-img {
  width: 100%;
  border-radius: 4px;
  transition: all 0.5s;
}
.single-portfolio-item .portfolio-inner .portfolio-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 62, 121, 0.9);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.single-portfolio-item .portfolio-inner .portfolio-hover .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #012068;
  text-align: center;
}
.single-portfolio-item .portfolio-inner .portfolio-hover .hover-text a {
  display: block;
  color: #ffffff;
}
.single-portfolio-item .portfolio-inner .portfolio-hover .hover-text a h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.single-portfolio-item .portfolio-inner .portfolio-hover .hover-text a span {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #a0aec6;
}
.single-portfolio-item .portfolio-inner:hover h4 {
  color: #3aae36;
}
.single-portfolio-item .portfolio-inner:hover .portfolio-img {
  transform: scale(1.2);
}
.single-portfolio-item .portfolio-inner:hover .portfolio-hover {
  opacity: 1;
  visibility: visible;
}

.blog-page .single-blog-post {
  margin-left: 0;
  margin-right: 0;
}

/*
Pagenavigation Area Style
================================*/
.pagenavigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}
.pagenavigation-area .page-link {
  color: #3aae36;
  background-color: #ffffff;
  box-shadow: 0 0 15px #d0d0d0;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  line-height: 24px;
  transition: all 0.5s;
  font-weight: 700;
}
.pagenavigation-area .page-link i {
  margin-right: -4px;
  font-size: 18px;
}
.pagenavigation-area .page-link:hover {
  color: #ffffff;
  background-color: #3aae36;
  border: 1px solid #3aae36;
}
.pagenavigation-area .page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: none;
}
.pagenavigation-area .page-link.page-links i::before {
  margin-left: -4px;
}
.pagenavigation-area .page-item {
  padding: 0 8px 0;
}
.pagenavigation-area .page-item:first-child .page-link {
  border-radius: none;
}
.pagenavigation-area .page-item:last-child .page-link {
  border-radius: none;
}
.pagenavigation-area .page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #3aae36;
  border-color: #3aae36;
}

/*
Contact Area CSS
=======================*/
.contact-area .contact-form {
  box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
.contact-area .contact-form form {
  text-align: center;
}
.contact-area .contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
  color: #3aae36;
  border: 1px solid #ffffff;
}
.contact-area .contact-form form .form-control:focus {
  border: 1px solid #3aae36;
}
.contact-area .contact-form form .form-group {
  text-align: left;
  margin-bottom: 30px;
}
.contact-area .contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}
.contact-area .contact-form form .row .col-lg-12 {
  padding-left: 7px;
  padding-right: 7px;
}
.contact-area .contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}
.contact-area .contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}
.contact-area .contact-form .default-btn {
  cursor: pointer;
  margin-top: 10px;
}

.map iframe {
  width: 100%;
  height: 630px;
}

.single-contact-box {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}
.single-contact-box i {
  line-height: 50px;
  width: 50px;
  height: 50px;
  border: 1px dashed #3aae36;
  border-radius: 50%;
  font-size: 20px;
  display: inline-block;
  color: #3aae36;
  transition: all 0.5s;
  margin-bottom: 20px;
}
.single-contact-box:hover i {
  background-color: #3aae36;
  color: #ffffff;
}
.single-contact-box .content-title h3 {
  margin-bottom: 10px;
}
.single-contact-box .content-title a {
  display: block;
  font-size: 15px;
  color: #747171;
}
.single-contact-box .content-title a:hover {
  color: #3aae36;
}

/*
404 Error Area Style
================================*/
.error-area {
  padding: 50px 0;
  height: 100vh;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}
.error-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: -1;
}
.error-area .error-contant-wrap {
  z-index: 1;
  position: relative;
}
.error-area .error-contant-wrap img {
  max-width: 300px;
  width: 100%;
}
.error-area .error-contant-wrap h3 {
  margin: 30px 0 0;
  font-family: "Muli", sans-serif;
  position: relative;
  color: red;
}
.error-area .error-contant-wrap p {
  margin: 20px 0 30px;
  font-size: 19px;
}

/*
FAQ PAGE Area Style
================================*/
.faq-page .questions {
  padding: 0;
}
.faq-page .questions::before {
  display: none;
}
.faq-page .questions .contact-form {
  margin: 0;
  padding: 30px;
}
.faq-page .questions .contact-form h3 {
  color: #ffffff;
}

/*
Client PAGE Area Style
================================*/
.client-page {
  background-image: none;
}
.client-page .client-details {
  box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.5s;
  padding: 30px;
}
.client-page .client-details:hover {
  transform: translateY(-5px);
}

/*
Coming Soon Area Style
================================*/
.coming-soon-area {
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  background-image: url(../img/choose-img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.coming-soon-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012068;
  opacity: 0.9;
  z-index: 1;
}

.coming-soon-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.coming-soon-content h1 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 80px;
  font-weight: 700;
  margin-top: -18px;
}
.coming-soon-content p {
  color: #f3f3f3;
  line-height: 1.8;
  font-size: 14.5px;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-content #timer {
  margin-top: 30px;
}
.coming-soon-content #timer div {
  display: inline-block;
  color: #3aae36;
  position: relative;
  margin-left: 35px;
  margin-right: 35px;
  font-size: 65px;
  font-weight: 700;
}
.coming-soon-content #timer div span {
  display: block;
  text-transform: capitalize;
  margin-top: -15px;
  font-size: 16px;
  font-weight: normal;
}
.coming-soon-content #timer div:last-child {
  margin-right: 0;
}
.coming-soon-content #timer div:last-child::before {
  display: none;
}
.coming-soon-content #timer div:first-child {
  margin-left: 0;
}
.coming-soon-content #timer div::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -10px;
  font-size: 70px;
  color: #ffffff;
}
.coming-soon-content .newsletter-form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
.coming-soon-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  padding-left: 15px;
  color: #ffffff;
  outline: 0;
  transition: 0.5s;
}
.coming-soon-content .newsletter-form .input-newsletter::-moz-placeholder {
  color: #ffffff;
}
.coming-soon-content .newsletter-form .input-newsletter::placeholder {
  color: #ffffff;
}
.coming-soon-content .newsletter-form .input-newsletter:focus {
  border-color: #3aae36;
}
.coming-soon-content .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  outline: 0;
  color: #ffffff;
  background-color: #25283a;
  border: none;
  transition: 0.5s;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0 !important;
}
.coming-soon-content .newsletter-form button::after {
  border-radius: 0;
}
.coming-soon-content .newsletter-form button::before {
  border-radius: 0;
}
.coming-soon-content .newsletter-form #validator-newsletter {
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: 0 auto;
}

/*
Sign In  Area Style
================================*/
.sign-up-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sign-up-area .contact-form-action {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  padding: 40px;
  max-width: 570px;
  margin: auto;
}
.sign-up-area .contact-form-action .form-heading {
  margin-bottom: 33px;
}
.sign-up-area .contact-form-action .form-heading .form-title {
  font-size: 38px;
  color: #233d63;
  font-weight: 600;
  margin-bottom: 10px;
}
.sign-up-area .contact-form-action .form-heading .form-desc {
  font-size: 18px;
  color: #677286;
  font-weight: 500;
}
.sign-up-area .contact-form-action .form-heading .reset-desc {
  line-height: 30px;
  margin-top: 15px;
}
.sign-up-area .contact-form-action .form-heading .reset-desc a {
  color: #3aae36;
}
.sign-up-area .contact-form-action .form-heading .reset-desc {
  font-size: 16px;
}
.sign-up-area .contact-form-action .form-heading .reset-desc a {
  font-weight: 600;
}
.sign-up-area .contact-form-action form .submit-btn {
  margin-top: 24px;
}
.sign-up-area .contact-form-action form .default-btn {
  cursor: pointer;
  margin-bottom: 30px;
  padding: 12px 20px;
}
.sign-up-area .contact-form-action form .default-btn i {
  margin-right: 5px;
}
.sign-up-area .contact-form-action form .btn-facebook {
  background-color: #3b5998;
}
.sign-up-area .contact-form-action form .btn-twitter {
  background-color: #31a5ff;
}
.sign-up-area .contact-form-action form .reset-btn {
  margin-top: 0;
}
.sign-up-area .contact-form-action form .form-condition {
  margin-bottom: 20px;
}
.sign-up-area .contact-form-action form .form-condition .agree-label {
  font-weight: 600;
}
.sign-up-area .contact-form-action form .form-condition .agree-label a {
  color: #3aae36;
}
.sign-up-area .contact-form-action form .form-group {
  margin-bottom: 30px;
}
.sign-up-area .contact-form-action .account-desc {
  margin-top: -8px;
  font-weight: 600;
}
.sign-up-area .contact-form-action .account-desc a {
  color: #3aae36;
  margin-left: 10px;
  font-weight: 600;
}
.sign-up-area .contact-form-action #chb1 {
  position: relative;
  top: 1px;
}
.sign-up-area .contact-form-action #chb2 {
  position: relative;
  top: 1px;
}
.sign-up-area .contact-form-action .forget {
  float: right;
  color: #3aae36;
  font-weight: 600;
}
.sign-up-area .contact-form-action .now-register {
  font-weight: 600;
  float: right;
}
.sign-up-area .contact-form-action .now-register a {
  color: #3aae36;
}
.sign-up-area .contact-form-action .now-log-in {
  color: #3aae36;
  font-weight: 600;
}
.sign-up-area .contact-form-action .now-log-in .font-q {
  font-weight: 600;
}
.sign-up-area:before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 50%;
  height: 60%;
  top: 0;
  left: -30px;
  background-image: url("../img/shape/10.png");
  transform: rotate(-10deg);
  opacity: 0.1;
  background-position: center;
}
.sign-up-area:after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 50%;
  height: 60%;
  top: 0;
  left: -30px;
  background-image: url("../img/shape/10.png");
  transform: rotate(-10deg);
  opacity: 0.1;
  background-position: center;
  right: 0;
  left: auto;
  top: auto;
  bottom: 0;
}

/*
Blog Details Area Style
================================*/
.blog-details-desc .article-image img {
  width: 100%;
}
.blog-details-desc .article-content {
  margin-top: 30px;
}
.blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}
.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #3aae36;
  margin-right: 21px;
  font-size: 14px;
}
.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #3aae36;
  font-weight: 500;
}
.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #666666;
}
.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #3aae36;
}
.blog-details-desc .article-content .entry-meta ul li i {
  color: #3aae36;
  margin-right: 2px;
}
.blog-details-desc .article-content .entry-meta ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #3aae36;
}
.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}
.blog-details-desc .article-content h3 {
  margin-bottom: 13px;
  margin-top: 25px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}
.blog-details-desc .article-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.blog-details-desc .article-footer .article-tags {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #3aae36;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #666666;
}
.blog-details-desc .article-footer .article-tags a:hover {
  color: #3aae36;
}
.blog-details-desc .article-footer .article-share {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}
.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}
.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #666666;
}
.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #3aae36;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #faf5f5;
  text-align: center;
  font-size: 14px;
}
.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #3aae36;
  transform: translateY(-2px);
}
.blog-details-desc .post-navigation {
  margin-top: 30px;
}

blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}
blockquote p {
  color: #3aae36;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 18px !important;
}
blockquote cite {
  display: none;
}
blockquote::before {
  color: #efefef;
  content: "\f10e";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: "Font Awesome 5 Free";
  font-size: 140px;
  font-weight: 900;
}
blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #3aae36;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.post-navigation .navigation-links {
  display: flex;
  flex-wrap: wrap;
}
.post-navigation .navigation-links .nav-previous {
  flex: 0 0 50%;
  max-width: 50%;
}
.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
}
.post-navigation .navigation-links .nav-next {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}
.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
}
.post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
  color: #000;
}
.post-navigation .navigation-links div a:hover {
  color: #3aae36;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}
.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
  font-weight: 600;
}
.comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #3aae36;
  top: 50%;
  transform: translateY(-50%);
}
.comments-area ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .children {
  margin-left: 40px;
}
.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.comments-area .comment-body .reply {
  margin-top: 15px;
}
.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #012068;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}
.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #3aae36;
  border-color: #3aae36;
}
.comments-area .comment-meta {
  margin-bottom: 0.8em;
}
.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}
.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50%;
}
.comments-area .comment-author .fn {
  font-weight: 600;
  color: #3aae36;
}
.comments-area .comment-author .says {
  display: none;
}
.comments-area .comment-metadata {
  color: #666666;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}
.comments-area .comment-metadata a {
  color: #666666;
}
.comments-area .comment-metadata a:hover {
  color: #3aae36;
}
.comments-area .comment-content p {
  font-size: 14px;
}
.comments-area .comment-respond {
  margin-top: 30px;
}
.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 15px;
  position: relative;
  font-size: 22px;
  font-weight: 600;
}
.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #3aae36;
  top: 50%;
  transform: translateY(-50%);
}
.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}
.comments-area .comment-respond .comment-form {
  overflow: hidden;
}
.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}
.comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: #012068;
  margin-bottom: 5px;
}
.comments-area .comment-respond input[type=datetime-local] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=datetime-local]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=week] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=week]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=month] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=month]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=text] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=text]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=email] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=email]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=url] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=url]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=password] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=password]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=search] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=search]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=tel] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=tel]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond input[type=number] {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=number]:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond textarea:focus {
  border-color: #3aae36;
}
.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}
.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #666666;
  font-weight: normal;
}
.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}
.comments-area .comment-respond .form-submit input {
  background: #3aae36;
  border: none;
  color: #ffffff;
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}
.comments-area .comment-respond .form-submit input:hover {
  color: #ffffff;
  background-color: #3aae36;
}
.comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #3aae36;
}

/*
Sidebar Widget Area Style
================================*/
.widget-area .widget {
  margin-top: 35px;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
  padding: 25px;
}
.widget-area .widget:first-child {
  margin-top: 0;
}
.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}
.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  background: #3aae36;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.widget-area .widget_search form .screen-reader-text {
  display: none;
}
.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.widget-area .widget_search form .search-field:focus {
  border-color: #3aae36;
}
.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: #ffffff;
  background-color: #3aae36;
  transition: 0.5s;
  cursor: pointer;
}
.widget-area .widget_search form button:hover {
  background-color: #3aae36;
}
.widget-area .widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}
.widget-area .widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 20px;
}
.widget-area .widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}
.widget-area .widget-peru-posts-thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog-details/2.jpg);
}
.widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog-details/3.jpg);
}
.widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog-details/4.jpg);
}
.widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg4 {
  background-image: url(../img/blog-details/5.jpg);
}
.widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg5 {
  background-image: url(../img/blog-details/6.jpg);
}
.widget-area .widget-peru-posts-thumb .item .info {
  overflow: hidden;
}
.widget-area .widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}
.widget-area .widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}
.widget-area .widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #474c40;
}
.widget-area .widget-peru-posts-thumb .item .info .title a:hover {
  color: #3aae36;
}
.widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}
.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_recent_entries ul li::before {
  background: #3aae36;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}
.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}
.widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.widget-area .widget_categories ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #efefef;
}
.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.widget-area .widget_categories ul li::before {
  background: #3aae36;
  position: absolute;
  height: 10px;
  width: 10px;
  content: "";
  left: 0;
  top: 9px;
}
.widget-area .widget_categories ul li a {
  display: block;
  color: #666666;
}
.widget-area .widget_categories ul li a span {
  float: right;
}
.widget-area .widget_categories ul li a:hover {
  color: #3aae36;
}
.widget-area .widget_categories ul li .post-count {
  float: right;
}
.widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 600;
}
.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_meta ul li::before {
  background: #3aae36;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}
.widget-area .tagcloud a {
  display: inline-block;
  color: #666666;
  font-weight: 600;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #eeeeee;
  margin-top: 10px;
  margin-right: 10px;
}
.widget-area .tagcloud a:hover {
  background-color: #3aae36;
  color: #ffffff;
  border-color: #3aae36;
}
.widget-area .tagcloud a:focus {
  background-color: #3aae36;
  color: #ffffff;
  border-color: #3aae36;
}
.widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}
.widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}
.widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.widget-area .widget_services_list ul li a:hover {
  background-color: #3aae36;
  color: #ffffff;
  padding-left: 20px;
}
.widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}
.widget-area .widget_services_list ul li a.active {
  background-color: #3aae36;
  color: #ffffff;
  padding-left: 20px;
}
.widget-area .widget_services_list ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}
.widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}
.widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}
.widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}
.widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.widget-area .widget_download ul li a:hover {
  background-color: #3aae36;
  color: #ffffff;
  padding-left: 20px;
}
.widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}
.widget-area .widget_download ul li a.active {
  background-color: #3aae36;
  color: #ffffff;
  padding-left: 20px;
}
.widget-area .widget_download ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}
.widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

/*
Right Sidebar Area Style
================================*/
.blog-details-desc .single-blog-post {
  margin-left: 0;
  margin-right: 0;
}

/*
Service Details Area Style
================================*/
.service-pro {
  margin-top: 30px;
}

.service-list-pro ul li {
  font-size: 16px;
  font-weight: 500;
  color: #012068;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}
.service-list-pro ul li:last-child {
  margin-bottom: 0;
}
.service-list-pro ul li i {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #012068;
  text-align: center;
  border-radius: 4px;
}

/*
Project Details Area Style
================================*/
.project-slide-wrap .owl-nav.disabled + .owl-dots {
  line-height: 0.01;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.project-slide-wrap .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: transparent;
  border: 1px solid #3aae36;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}
.project-slide-wrap .owl-dots .owl-dot:hover span {
  border-color: #3aae36;
  background: transparent;
}
.project-slide-wrap .owl-dots .owl-dot:hover span::before {
  background-color: #3aae36;
}
.project-slide-wrap .owl-dots .owl-dot.active span {
  border-color: #3aae36;
  background: transparent;
  position: relative;
}
.project-slide-wrap .owl-dots .owl-dot.active span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #3aae36;
  transition: 0.5s;
  border-radius: 50%;
  margin: 3px;
}

/*Shop Area Style
=====================================================*/
.shop-area .woocommerce-topbar {
  margin-bottom: 40px;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering {
  text-align: right;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering .nice-select {
  background-color: #ffffff;
  color: #3aae36;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  float: unset;
  height: unset;
  line-height: initial;
  padding: 17px 35px 13px 20px;
  font-size: 16px;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option {
  transition: 0.6s;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option:hover {
  background-color: #3aae36 !important;
  color: #ffffff;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 700;
}
.shop-area .woocommerce-topbar .woocommerce-topbar-ordering .nice-select:after {
  right: 20px;
}
.shop-area .single-product-box {
  text-align: center;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}
.shop-area .single-product-box .product-image {
  overflow: hidden;
  position: relative;
  text-align: left;
}
.shop-area .single-product-box .product-image a img {
  transition: 0.6s;
}
.shop-area .single-product-box .product-image .add-to-cart-btn {
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
  background-color: #012068;
  color: #ffffff;
  padding: 18px 20px 13px;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.shop-area .single-product-box .product-image .add-to-cart-btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.shop-area .single-product-box .product-image .add-to-cart-btn:hover {
  background-color: #3aae36;
  color: #ffffff;
}
.shop-area .single-product-box .product-image .sale-btn {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #3aae36;
  color: #ffffff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.shop-area .single-product-box .product-content {
  padding: 30px 25px;
}
.shop-area .single-product-box .product-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}
.shop-area .single-product-box .product-content h3 a {
  display: inline-block;
  color: #3aae36;
  text-decoration: none;
}
.shop-area .single-product-box .product-content .price {
  color: #012068;
  font-weight: 600;
  font-size: 15px;
}
.shop-area .single-product-box .product-content .price span {
  padding: 0 5px;
}
.shop-area .single-product-box .product-content .price .old {
  text-decoration: line-through;
  color: #3aae36;
  font-size: 14px;
}
.shop-area .single-product-box .product-content .rating {
  margin-top: 12px;
  color: #ffb708;
  font-size: 15px;
}
.shop-area .single-product-box .product-content .rating i {
  margin-right: -1px;
}
.shop-area .single-product-box:hover .product-image .add-to-cart-btn {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.6s;
  text-decoration: none;
}

/*Cart Area CSS
=====================================================*/
.cart-area .cart-table table {
  margin-bottom: 0;
}
.cart-area .cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 0 0 15px;
  text-transform: uppercase;
  border: none;
  font-weight: 700;
  font-size: 16px;
}
.cart-area .cart-table table tbody tr td {
  vertical-align: middle;
  color: #666666;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}
.cart-area .cart-table table tbody tr td.product-thumbnail img {
  width: 60px;
  height: 60px;
}
.cart-area .cart-table table tbody tr td.product-thumbnail a {
  display: block;
}
.cart-area .cart-table table tbody tr td.product-name a {
  color: #666666;
  font-weight: 600;
  display: inline-block;
}
.cart-area .cart-table table tbody tr td.product-name a:hover {
  color: #012068;
}
.cart-area .cart-table table tbody tr td.product-price span {
  font-weight: 500;
}
.cart-area .cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}
.cart-area .cart-table table tbody tr td.product-subtotal .remove {
  color: #666666;
  float: right;
  position: relative;
  top: 1px;
  transition: all 0.5s;
}
.cart-area .cart-table table tbody tr td.product-subtotal .remove i {
  font-size: 22px;
}
.cart-area .cart-table table tbody tr td.product-subtotal .remove:hover {
  color: red;
}
.cart-area .cart-table table tbody tr td.product-subtotal span {
  font-weight: 500;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #012068;
  width: 40px;
  height: 100%;
  line-height: 48px;
  transition: 0.5s;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: #3aae36;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: #012068;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-moz-placeholder {
  color: #012068;
}
.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: #012068;
}
.cart-area .cart-buttons {
  margin-top: 30px;
}
.cart-area .cart-totals {
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  margin: auto;
  margin-top: 50px;
}
.cart-area .cart-totals h3 {
  margin-bottom: 25px;
  font-weight: 700;
}
.cart-area .cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}
.cart-area .cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: #323232;
  overflow: hidden;
  font-weight: 700;
}
.cart-area .cart-totals ul li:first-child {
  border-bottom: none;
}
.cart-area .cart-totals ul li:last-child {
  border-top: none;
}
.cart-area .cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}
.cart-area .cart-area .nice-select {
  height: 50px;
  line-height: 49px;
  border-radius: 0;
  width: 100%;
  margin-bottom: 18px;
}
.cart-area .cart-wraps {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 40px;
}
.cart-area .coupon-wrap {
  margin-top: 50px;
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.cart-area .coupon-wrap .nice-select .list {
  width: 100%;
}
.cart-area .coupon-wrap .nice-select .option {
  color: #012068 !important;
}
.cart-area .coupon-wrap .nice-select .option:hover {
  color: #ffffff !important;
  background-color: #3aae36 !important;
}
.cart-area .coupon-wrap select .option.focus, .cart-area .coupon-wrap .nice-select .option.selected.focus {
  background-color: #3aae36 !important;
  color: #ffffff !important;
}
.cart-area .coupon-wrap h3 {
  padding-bottom: 25px;
}
.cart-area .coupon-wrap .form-group {
  margin-bottom: 18px;
}
.cart-area .coupon-wrap .nice-select {
  height: 50px;
  width: 100%;
  margin-bottom: 19px;
  border-radius: 0;
}
.cart-area .coupon-wrap .nice-select .current {
  position: relative;
  top: 4px;
}
.cart-area .table-bordered > :not(caption) > * {
  border-width: 1px 0;
  border-top: none;
}
.cart-area .text-right {
  text-align: right;
}

/*Checkout Area Style 
=====================================================*/
.checkout-area .user-actions {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 18px 20px 15px;
  margin-bottom: 65px;
  border-top: 3px solid #3aae36;
  position: relative;
  color: #3aae36;
}
.checkout-area .user-actions::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
.checkout-area .user-actions i {
  color: #3aae36;
  margin-right: 2px;
  font-size: 20px;
  position: relative;
  top: 2px;
}
.checkout-area .user-actions span {
  display: inline-block;
  font-weight: 500;
  color: #012068;
}
.checkout-area .user-actions span a {
  display: inline-block;
  color: #3aae36;
  font-size: 15px;
}
.checkout-area .user-actions span a:hover {
  color: #3aae36;
}
.checkout-area .user-actions span a:focus {
  color: #3aae36;
}
.checkout-area .checkout-area .title {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}
.checkout-area .billing-details {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}
.checkout-area .billing-details .form-group {
  margin-bottom: 20px;
}
.checkout-area .billing-details .form-group label {
  display: block;
  color: #012068;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}
.checkout-area .billing-details .form-group label .required {
  color: red;
}
.checkout-area .billing-details .form-group .nice-select {
  float: unset;
  line-height: 45px;
  color: #012068;
  padding-top: 0;
  padding-bottom: 0;
}
.checkout-area .billing-details .form-group .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.checkout-area .billing-details .form-group .nice-select .list .option {
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}
.checkout-area .billing-details .form-group .nice-select .list .option:hover {
  background-color: #3aae36 !important;
  color: #ffffff;
}
.checkout-area .billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
}
.checkout-area .billing-details .form-group .nice-select:after {
  right: 20px;
}
.checkout-area .billing-details .form-group .nice-select .option:hover, .checkout-area .billing-details .form-group .nice-select .option.focus, .checkout-area .billing-details .form-group .nice-select .option.selected.focus {
  background-color: #3aae36 !important;
  color: #ffffff !important;
}
.checkout-area .billing-details .form-group textarea {
  padding-top: 13px;
}
.checkout-area .billing-details .form-check {
  margin-bottom: 20px;
}
.checkout-area .billing-details .form-check .form-check-label {
  color: #012068;
}
.checkout-area .billing-details .form-check label {
  position: relative;
  top: 1px;
  font-size: 14px;
  font-weight: 500;
}
.checkout-area .billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}
.checkout-area .order-details .order-table {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}
.checkout-area .order-details .order-table table {
  margin-bottom: 0;
}
.checkout-area .order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding-left: 20px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  font-weight: 700;
}
.checkout-area .order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #012068;
  border-color: #eaedff;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
}
.checkout-area .order-details .order-table table tbody tr td.product-name a {
  color: #012068;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
}
.checkout-area .order-details .order-table table tbody tr td.product-name a:hover {
  color: #012068;
}
.checkout-area .order-details .order-table table tbody tr td.order-subtotal span {
  color: #012068;
  font-weight: 600;
}
.checkout-area .order-details .order-table table tbody tr td.order-shipping span {
  color: #012068;
  font-weight: 600;
}
.checkout-area .order-details .order-table table tbody tr td.total-price span {
  color: #012068;
  font-weight: 600;
}
.checkout-area .order-details .order-table table tbody tr td.shipping-price {
  font-weight: 600;
}
.checkout-area .order-details .order-table table tbody tr td.order-subtotal-price {
  font-weight: 600;
}
.checkout-area .order-details .order-table table tbody tr td.product-subtotal {
  font-weight: 600;
}
.checkout-area .order-details .payment-box {
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:checked {
  display: none;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:checked + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: #3aae36;
  position: relative;
  margin-bottom: 8px;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:checked + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:checked + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3aae36;
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: #012068;
  position: relative;
  margin-bottom: 8px;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}
.checkout-area .order-details .payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3aae36;
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.checkout-area .order-details .payment-box .btn.order-btn {
  display: block;
  margin-top: 25px;
}
.checkout-area .order-details .payment-box .default-btn {
  margin-top: 20px;
  display: block;
  text-align: center;
}

/*
Shop Details Style
================================*/
.shop-details-area .product-details-desc h3 {
  margin-bottom: 12px;
  font-weight: 700;
}
.shop-details-area .product-details-desc p {
  margin-bottom: 0;
}
.shop-details-area .product-details-desc .price {
  margin-bottom: 10px;
  color: #333333;
  font-weight: 700;
}
.shop-details-area .product-details-desc .price span {
  padding: 0 5px;
}
.shop-details-area .product-details-desc .price .old-price {
  text-decoration: line-through;
  color: #828893;
  font-size: 13px;
}
.shop-details-area .product-details-desc .product-review {
  margin-bottom: 15px;
}
.shop-details-area .product-details-desc .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
}
.shop-details-area .product-details-desc .product-review .rating i {
  color: #ffba0a;
}
.shop-details-area .product-details-desc .product-review .rating-count {
  display: inline-block;
  color: #333333;
  border-bottom: 1px solid #333333;
  line-height: initial;
}
.shop-details-area .product-details-desc .product-review .rating-count:hover {
  color: #3aae36;
  border-color: #3aae36;
}
.shop-details-area .product-details-desc .product-add-to-cart {
  margin-top: 20px;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 48px;
  transition: 0.5s;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter span:hover {
  color: #012068;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter input {
  height: 45px;
  color: #333333;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter input::-moz-placeholder {
  color: #333333;
}
.shop-details-area .product-details-desc .product-add-to-cart .input-counter input::placeholder {
  color: #333333;
}
.shop-details-area .product-details-desc .product-add-to-cart .default-btn {
  border: none;
  cursor: pointer;
  float: right;
}
.shop-details-area .product-details-desc .product-add-to-cart .btn {
  height: 45px;
  top: -2px;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.shop-details-area .product-details-desc .product-add-to-cart .btn i {
  margin-right: 2px;
}
.shop-details-area .product-details-desc .buy-checkbox-btn {
  margin-top: 20px;
}
.shop-details-area .product-details-desc .buy-checkbox-btn input {
  display: none;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #ebebeb;
  transition: all 0.2s ease;
  transition: 0.5s;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
  transition: 0.5s;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition: 0.5s;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx span:last-child {
  padding-left: 4px;
  color: #57647c;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: #333333;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child {
  background: #333333;
  border-color: #333333;
  animation: wave 0.4s ease;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .btn {
  display: block;
  width: 100%;
}
.shop-details-area .product-details-desc .buy-checkbox-btn .default-btn {
  text-transform: uppercase;
  display: block;
  text-align: center;
}
.shop-details-area .product-details-desc .custom-payment-options {
  margin-top: 20px;
}
.shop-details-area .product-details-desc .custom-payment-options span {
  display: block;
  color: #57647c;
  margin-bottom: 15px;
}
.shop-details-area .product-details-desc .custom-payment-options .payment-methods a {
  display: inline-block;
}
.shop-details-area .product-details-desc .custom-payment-options .payment-methods a img {
  width: 40px;
  margin-right: 5px;
}
.shop-details-area .product-details-image {
  text-align: center;
  background-color: #f7f7f7;
}
.shop-details-area .tab .tabs_item {
  display: none;
}
.shop-details-area .tab .tabs_item:first-child {
  display: block;
}
.shop-details-area .products-details-tab {
  margin-top: 50px;
}
.shop-details-area .products-details-tab .tabs {
  list-style-type: none;
  margin-bottom: -1px;
  padding-left: 0;
}
.shop-details-area .products-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 5px;
}
.shop-details-area .products-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  color: #333333;
  border: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 30px;
  padding-left: 48px;
  font-weight: 700;
}
.shop-details-area .products-details-tab .tabs li a .dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 12px;
  height: 12px;
  border: 1px solid #333333;
  transition: 0.5s;
  border-radius: 50%;
}
.shop-details-area .products-details-tab .tabs li a .dot::before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: #333333;
  margin: 2px;
  border-radius: 50%;
  transition: 0.5s;
}
.shop-details-area .products-details-tab .tabs li a:hover {
  color: #ffffff;
  background-color: #3aae36;
  border-color: #3aae36;
}
.shop-details-area .products-details-tab .tabs li a:hover .dot {
  border-color: #ffffff;
}
.shop-details-area .products-details-tab .tabs li a:hover .dot::before {
  background: #ffffff;
}
.shop-details-area .products-details-tab .tabs li a:focus {
  color: #ffffff;
  background-color: #3aae36;
  border-color: #3aae36;
}
.shop-details-area .products-details-tab .tabs li a:focus .dot {
  border-color: #ffffff;
}
.shop-details-area .products-details-tab .tabs li a:focus .dot::before {
  background: #ffffff;
}
.shop-details-area .products-details-tab .tabs li:last-child {
  margin-right: 0;
}
.shop-details-area .products-details-tab .tabs li.current a {
  color: #ffffff;
  background-color: #3aae36;
  border-color: #3aae36;
}
.shop-details-area .products-details-tab .tabs li.current a .dot {
  border: 1px solid #ffffff;
}
.shop-details-area .products-details-tab .tabs li.current a .dot::before {
  background: #ffffff;
}
.shop-details-area .products-details-tab .tab_content {
  border: 1px solid #eeeeee;
  padding: 30px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content p {
  margin-bottom: 20px;
  font-size: 14px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content p:last-child {
  margin-bottom: 0;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li {
  border: 1px solid #eeeeee;
  border-bottom: none;
  padding: 10px 15px;
  color: #57647c;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li:last-child {
  border-bottom: 1px solid #eeeeee;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li span {
  display: inline-block;
  width: 30%;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title {
  position: relative;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating {
  display: inline-block;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
  color: #ffba0a;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating i {
  color: #ffba0a;
  font-size: 14px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .btn {
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 10px 11px;
  font-size: 11px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .btn:focus {
  border: none !important;
  box-shadow: none !important;
  border: 4px;
  background-color: #012068;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments {
  margin-top: 35px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
  color: #ffba0a;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating i {
  font-size: 14px;
  color: #ffba0a;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span strong {
  font-weight: 600;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item p {
  margin-bottom: 0;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 0;
  color: #57647c;
  top: 40px;
  text-decoration: underline;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
  color: #ff4800;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form {
  margin-top: 30px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group {
  margin-bottom: 20px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group label {
  color: #444444;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group textarea {
  padding-top: 15px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group .form-control {
  font-size: 14px;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .btn {
  border-radius: 0;
}
.shop-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .btn:focus {
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.help-block.with-errors {
  margin-top: 10px;
}

.list-unstyled li {
  color: #dc3545;
}

.text-danger {
  color: #dc3545 !important;
  margin-top: 10px;
}

.text-success {
  color: #28a745 !important;
  margin-top: 10px;
}

label {
  margin-bottom: 12px;
}/*# sourceMappingURL=style.css.map */




/*------------------------------------------------------------------------------------*/

/*
@File: Peru Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

******************************************* 
** - Default Area Style
** - Preloader Area Style
** - Go Top Area Style
** - Page navigation Area Style
** - Video wave Style
** - Navbar Area Style
** - Main Banner Area Style 
** - Main Slider Area Style 
** - Service Area Style
** - Counter Area Style
** - Client Area Style
** - Project Area Style
** - Project Details Area Style
** - Blog Area Style
** - Blog Details Area Style
** - Blog Right Sidebar Area Style
** - Blog Left Sidebar Area Style
** - Blog Details Area Style
** - Footer Top Area Style
** - Footer Bottom Area Style
** - Blog Details Area Style
** - Contact Area Style
** - Log In Area Style
** - Sign Up Area Style
** - Recover Password Area Style
** - Coming Soon Area Style   
** - 404 Error Area Style
** - FAQ Area Style
*******************************************
/*

/*
Default Style
============================*/
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800&display=swap'); 


$body-font-family: 'Muli', sans-serif;
$heading-font-family: 'Poppins', sans-serif;

$heading-color: #012068;
$green-color: #3aae36;
$body-color: #4a4a4a;
$white-color: #ffffff;

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    font-family: $body-font-family;
    color: $body-color;
}
a {
	display: inline-block;
    transition: all 0.5s;
    text-decoration: none;
	&:hover {
        text-decoration: none;
        color: $heading-color;
	}
	&:focus {
		text-decoration: none;
	}
}
button {
    outline: 0 !important;
	box-shadow: none;
	border: none;
    &:focus {
        box-shadow: none;
    }
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: $heading-color;
	font-weight: 400;
	font-family: $heading-font-family;
}
h3 {
	font-size: 18px;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
p {
    font-size: 15px;
	margin-bottom: 15px;
	&:last-child {
        margin-bottom: 0;
    }
} 
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-control {
    height: 50px;
    color: #6e6e6e;
	border: 1px solid #ebebeb;
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	font-size: 15px;
	padding: 10px 20px;
	width: 100%;
	border-radius: 4px;
	&::placeholder {
		color: #6e6e6e;
	}
	&:focus {
		color: #000000;
		background-color: transparent;
		box-shadow: unset;
		outline: 0;
		border: 1px solid $green-color;
	}
}
.form-control:hover, .form-control {
    &:focus {
        box-shadow: unset;
    }
}
textarea {   
    &.form-control {
        height: auto;
		height: 250px;
    }
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pb-70 {
    padding-bottom: 70px;
}

/*
Go Top Style
================================*/
.go-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 15px;
	background-color: $green-color;
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
	border-radius: 50%;
	i {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		color: $white-color;
		transition: 0.5s;
		&:last-child {
			opacity: 0;
			visibility: hidden;
			top: 60%;
		}
	}
	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-color: $heading-color;
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
		border-radius: 50%;
	}
	&:hover {
		color: $white-color;
		background-color: $heading-color;
		&::before {
			opacity: 1;
			visibility: visible;
		}
		i {
			&:first-child {
				opacity: 0;
				top: 0;
				visibility: hidden;
			}
			&:last-child {
				opacity: 1;
				visibility: visible;
				top: 50%;
			}
		}
	}
	&:focus {
		color: $white-color;
		&::before {
			opacity: 1;
			visibility: visible;
		}
		i {
			&:first-child {
				opacity: 0;
				top: 0;
				visibility: hidden;
			}
			&:last-child {
				opacity: 1;
				visibility: visible;
				top: 50%;
			}
		}
	}
}
.go-top.active {
	top: 98%;
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}

/*
Page navigation Area Style
================================*/
.pagenavigation-area {
	text-align: center;
	margin: 20px auto 0;
	display: table;
	.page-link {
		color: $green-color;
		background-color: $white-color;
		box-shadow: 0 0 15px #d0d0d0;
		width: 40px;
		height: 40px;
		border: 1px solid $white-color;
		line-height: 24px;
		transition: all 0.5s;
		font-weight: 700;
		i {
			margin-right: -4px;
		}
		&:hover {
			color: $white-color;
			background-color: $green-color;
			border: 1px solid $green-color;
		}
		&:focus {
			z-index: 2;
			outline: 0;
			box-shadow: none;
		}
		&.page-links {
			i {
				&::before {
					margin-left: -4px;
				}
			}
		}
	}
	.page-item {
		padding: 0 8px 0;
		&:first-child {
			.page-link {
				border-radius: none;
			}
		}
		&:last-child {
			.page-link {
				border-radius:none;   
			}
		}
		&.active {
			.page-link {
				z-index: 1;
				color: $white-color;
				background-color: $green-color;
				border-color: $green-color;
			}
		}
	}
}

/*
Video wave Style
================================*/
.video-wrap {
	.video-btn-wrap {
		position: absolute;  
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.video-play {
		position: absolute;
		top: 16px;
		left: 80px;
		text-transform: uppercase;
		width: 129px;
		line-height: 1;
		p {
			border-bottom: 1px solid $white-color;
			margin-bottom: 0;
		}
	}
}
.video-btn {
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 65px;
	text-align: center;
	border-radius: 50%;
	color: $white-color;
	position: relative;
	top: 3px;
	z-index: 1;
	background-image: linear-gradient(to right, #8fd913 , #39ae38);
	i {
		font-size: 20px;
		font-weight: 700;
		padding-left: 4px;
		color: $white-color;
	}
	&::after {
		z-index: -1;
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 60px;
		height: 60px;
		animation: ripple 1.6s ease-out infinite;
		opacity: 0;
		border-radius: 50%;
		background-image: linear-gradient(to right, #8fd913 , #39ae38);
	}
	&:hover {
		background-color: #121232;
		color: #ffffff;;
	}
}
@-webkit-keyframes ripple {
	0%, 35% {
		transform: scale(0);
	  	opacity: 1;
	}
	50% {
		transform: scale(1.5);
	  	opacity: 0.8;
	}
	100% {
	  	opacity: 0;
		transform: scale(2);
	}
}

/*
Default Btn Area Style
================================*/
.default-btn {
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	background-image: linear-gradient(to right, #009dc6, #045e75);
	padding: 12px 25px;
	line-height: 1;
	border-radius: 4px;
	transition: all 0.5s;
	position: relative;
	z-index: 1;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background-color: $heading-color;
		z-index: -1;
		transition: all 0.5s;
		border-radius: 4px;
	}
	&:hover {
		color: $white-color;
		&::before {
			width: 100%;
		}
	}
	
}
/*
Section Title Area Style
================================*/
.section-title {
    text-align: center;
    margin: -8px auto 60px;
    max-width: 600px;
	span {
		font-family: $heading-font-family;
		font-size: 15px;
		font-weight: 600;
		color: $green-color;
		display: inline-block;
		margin-bottom: 10px;
	}
	h2 {
		font-size: 38px;
		margin-bottom: 0;
	}
}

/*
Preloader Area Style
================================*/
.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: $white-color;
	top: 0;
	left: 0;
	z-index: 99999;
	.lds-ripple {
		position: relative;
		width: 64px;
		height: 64px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		div {
			position: absolute;
			border: 4px solid $green-color;
			opacity: 1;
			border-radius: 50%;
			animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
			&:nth-child(2) {
				animation-delay: -0.5s;
			}
		}
	}
}
@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0
    }
}

/*===== DEFAULT STYLE END ======*/


/*
Peru Nav Area Style
================================*/
.peru-nav {
	.main-nav {
		background-color: transparent;
		position: relative;
		z-index: 1;
		font-family: $heading-font-family;
		padding: 5px 0;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: $white-color;
			opacity: 0.7;
			z-index: -1;
		}
		&.peru-nav-style {
			&::before {
				opacity: 1;
			}
		}
		&::after {
			content: "";
			position: absolute;  
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			background-image: url(../img/shape/2.png);
			background-repeat: no-repeat;
			background-position: center center;
			background-size: cover;
			opacity: 0.1;
			z-index: -1;
		}
		nav {
			.navbar-nav {
				.nav-item {
					a {
						font-weight: 600;
						font-size: 18px;
						text-transform: capitalize;
						color: $heading-color;
						margin-left: 12px;
						margin-right: 12px;
						&.active {
							color: $green-color;
						}
						&:hover {
							color: $green-color;
						}
					}
					.dropdown-menu {
						width: 240px;
						background-color: $white-color;
						border: none;
						padding: 8px 0;
						li {
							a {
								color: $heading-color;
							}
							.dropdown-menu {
								left: 100%;
								border: none;
								li {
									a {
										color: #233d63;
										text-transform: capitalize;
										&.active {
											color: $green-color;
										}
										&:hover {
											color: $green-color;
										}
									}
								}
							}
						}
						li {
							a {
								padding: 5px 15px;
								font-size: 14px;
								color: #233d63;
								font-weight: 500;
								&::after {
									float: right;
									position: relative;
									top: 11px;
								}
								&.active {
									color: $green-color;
								}
								&:hover {
									color: $green-color;
								}
							}
						}
					}
					
				}
			}
		}
	}
	.others-option {
		.contact-number {
			color: $heading-color;
			font-size: 14px;
			font-weight: 600;
			transition: all 0.5s;
			margin-right: 20px;
			i {
				display: inline-block;
				width: 25px;
				height: 25px;
				background-color: #e8e8e7;
				text-align: center;
				border-radius: 50%;
				line-height: 26px;
				padding-right: 0;
				margin-right: 5px;
				color: $green-color;
				transition: all 0.5s;
			}
			&:hover {
				color: $green-color;
				i {
					color: $white-color;
					background-color: $green-color;
				}
			}
		}
		.default-btn {
			font-size: 14px;
			font-weight: 600;
			padding: 12px 25px;
		}
	}
}
.dropdown-style {
	position: relative;
	&::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-image: url(../img/shape/2.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		opacity: 0.1;
	}
}
.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #ffffff;
	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	transition: all .5s;
	max-width: 100%;
	margin-top: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    top: -7px!important;
}

/*
Banner Area Style
================================*/
.banner-area {
	background-image: url(../img/home-one/slider/1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 1;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 101%;
		background-image: url(../img/shape/9.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: bottom;
		z-index: -1;
	}
	.banner-text {
		max-width: 700px;
		margin-top: 100px;
		span {
			font-size: 15px;
			display: inline-block;
			margin-bottom: 10px;
			font-family: $heading-font-family;  
			font-weight: 600;
			color: $green-color;
		}
		h1 {
			font-size: 60px;
			color: $heading-color;
			font-weight: 700;
			margin-bottom: 15px;
			span {
				font-size: 60px;
				color: $green-color;
				font-weight: 700;
			}
		}
		p {
			color: #747171;
			font-size: 14px;
			margin-bottom: 40px;
			font-weight: 700;
		}
	}
	.video-wrap {
		text-align: center;
	}
	.shape-1 {
		position: absolute;
		top: 80px;
		left: 10px;
		z-index: -1;
		width: 10%;
		animation: rotation 1s infinite linear;
	}
	.shape-3 {
		position: absolute;
		top: 250px;
		left: 30px;
		z-index: -1;
		animation: mover 3s infinite alternate;
	}
	.shape-4 {
		position: absolute;
		bottom: -150px;   
		left: 100px;
		z-index: -1;
	}
	.shape-5 {
		position: absolute;
		top: 400px;
		left: 200px;
		z-index: -1;
		animation: rotation 25s infinite linear;
	}
	.shape-6 {
		position: absolute;
		top: 600px;
		left: 40px;
		z-index: -1;
		animation: rotation 25s infinite linear;
	}
	.shape-7 {
		position: absolute;
		top: 120px;
		left: 325px;
		z-index: -1;
		animation: rotation 25s infinite linear;
	}
	.shape-8 {
		position: absolute;
		top: 120px;
		right: 0;
		z-index: -1;
		width: 10%;
	}
	.shape-9 {
		position: absolute;
		bottom: 150px;
		left: 800px;
		z-index: -1;
		animation: rotation 5s infinite linear;
	}
	.shape-10 {
		position: absolute;
		bottom: 100px;
		left: 500px;
		z-index: -1;
		animation: rotation 5s infinite linear;
	}
	.shape-11 {
		position: absolute;
		bottom: -55px;
    	left: 800px;
		animation: rotation 25s infinite linear;
		z-index: -1;
	}
	.col-lg-4 {
		position: relative;
	}
}

/*
Hero Slider Area Style
================================*/
.hero-slider-area {
	position: relative;
	z-index: 1;
	.hero-slider-item {
		width: 100%;
		height: 710px;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		z-index: 1;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: #000000;
			opacity: 0.5;
			z-index: -1;
		}
		.hero-slider-text {
			max-width: 700px;
			span {
				font-size: 15px;
				display: inline-block;
				margin-bottom: 10px;
				font-family: $heading-font-family;
				font-weight: 600;
				color: $green-color;
				color: $white-color;
			}
			h1 {
				font-size: 60px;
				color: $heading-color;
				font-weight: 700;
				margin-bottom: 15px;
				color: $white-color;
				span {
					font-size: 60px;
					color: $green-color;
					font-weight: 700;
					color: $white-color;
				}
			}
			p {
				color: #747171;
				font-size: 14px;
				margin-bottom: 40px;
				font-weight: 700;
				color: $white-color;
			}
		}
		.slider-item {
			width: 650px;
		}
	}
	.owl-theme {
		.owl-nav {
			margin-top: 0;
			.owl-prev {
				position: absolute;
				top: 47%;
				left: 30px;
				width: 50px;
				height: 50px;
				border: 1px solid $green-color !important;
				border-radius: 0 10px;
				background-color: $green-color;
				transition: all 0.5s;
				margin: 0;
				&:hover {
					border: 2px solid $green-color !important;
					background-color: transparent;
					i {
						color: $green-color;
					}
				}
				i {
					color: $white-color;
					font-size: 18px;
				}
			}
			.owl-next {
				position: absolute;
				top: 47%;
				right: 30px;
				width: 50px;
				height: 50px;
				border: 2px solid $green-color !important;
				border-radius: 0 10px;
				background-color: $green-color;
				transition: all 0.5s;
				margin: 0;
				&:hover {
					border: 2px solid $green-color !important;
					background-color: transparent;
					i {
						color: $green-color;
					}
				}
				i {
					color: $white-color;
					font-size: 18px;
				}
			}
		}
	}
	.shape-1 {
		position: absolute;
		top: 80px;
		left: 10px;
		z-index: 1;
		width: 10%;
		animation: rotation 50s infinite linear;
		opacity: 0.4;
	}
	.shape-3 {
		position: absolute;
		top: 250px;
		left: 30px;
		z-index: 1;
		animation: mover 3s infinite alternate;
		opacity: 0.4;
	}
	.shape-4 {
		position: absolute;
		bottom: 0;
		left: 270px;
		z-index: 1;
		opacity: 0.4;
	}
	.shape-5 {
		position: absolute;
		top: 400px;
		left: 100px;
		z-index: 1;
		animation: rotation 25s infinite linear;
		opacity: 0.4;
	}
	.shape-6 {
		position: absolute;
		top: 500px;
		left: 40px;
		z-index: 1;
		animation: rotation 25s infinite linear;
		opacity: 0.4;
	}
	.shape-7 {
		position: absolute;
		top: 120px;
		left: 325px;
		z-index: 1;
		animation: rotation 25s infinite linear;
		opacity: 0.4;
	}
	.shape-8 {
		position: absolute;
		top: 120px;
		right: 0;
		z-index: 1;
		width: 10%;
		opacity: 0.4;
	}
}
@keyframes mover {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-15px);
	}
}
  
@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}

.slider-item-bg-1 {
background-image: url(../img/home-one/slider/2.jpg);
}
.slider-item-bg-2 {
background-image: url(../img/home-one/slider/3.jpg);
}

/*
Box Area Style
================================*/
.box-area {
    margin-top: -100px;
}
.single-box {
	text-align: center;
	padding: 30px;
	border-radius: 0 30px 0 30px;
	margin-bottom: 30px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #012068;
		opacity:1;
		z-index: -1;
		border-radius: 0 30px 0 30px;
		transition: all 0.5s;
	}
	&:hover {
		&::before {
			opacity: 0.5;
			border-radius: 0;
		}
		border-radius: 0;
		i {
			color: $white-color;
			&::after {
				transform: scale(1);
			}
		}
	}
	i {
		font-size: 25px;
		display: inline-block;
		width: 50px;
		height: 50px;
		line-height: 50px;
		background-color: $white-color;
		color: $green-color;
		border-radius: 50%;
		margin-bottom: 20px;
		position: relative;
		z-index: 1;
		&::after {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 50px;
			height: 50px;
			line-height: 50px;
			background-image: linear-gradient(to right, #8fd913 , #39ae38);
			border-radius: 50%;
			z-index: -1;
			transform: scale(0);
			transition: all 0.5s;
		}
	}
	h3 {
		color: $white-color;
		margin-bottom: 12px;
	}
	p {
		color: #e6e1e1;
		margin-bottom: -6px;
	}
	&.bg-1 {
		background-image: url(../img/box/1.jpg);
	}
	&.bg-2 {
		background-image: url(../img/box/2.jpg);
	}
	&.bg-3 {
		background-image: url(../img/box/1.jpg);
	}
	&.single-box-2 {
		position: relative;
		z-index: 1;
		background-color: $white-color;
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		&::after {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: url(../img/shape/2.png);
			background-size: cover;
			background-position: center center;
			background-repeat: no-repeat;
			z-index: -1;
			opacity: 0.1;
			transform: scale(0);
			transition: all 0.5s;
		}
		&::before {
			display: none;
		}
		&:hover {
			&::after {
				transform: scale(1);
			}
		}
		i {
			background-color: #e4f4c5;
		}
		h3 {
			color: $heading-color;
			margin-bottom: 12px;
		}
		p {
			color: #4a4a4a;
			margin-bottom: -6px;
		}
	}
}

/*
About Us Area Style
================================*/
.about-title {
	margin-top: -8px;
	span {
		font-family: $heading-font-family;
		font-size: 15px;
		font-weight: 600;
		color: $green-color;
		display: inline-block;
		margin-bottom: 10px;
	}
	h2 {
		font-size: 38px;
		margin-bottom: 30px;
	}
	ul {
		margin-bottom: 40px;
		li {
			margin-bottom: 10px;
			color: $heading-font-family;
			color: $heading-color;
			font-weight: 600;
			font-size: 15px;
			transition: all 0.5s;
			&:last-child {
				margin-bottom: 0;
			}
			i {
				padding-right: 5px;
				transition: all 0.5s;
			}
			&:hover {
				color: $green-color;
				i {
					margin-right: 5px;
				}
			}
		}
	}
}
.about-us-img {
	position: relative;
	img {
		border-radius: 4px;
	}
	.about-img-2 {
		position: absolute;
		top: 62px;
		right: 0;
	}
}
.about-us-area-2 {
	background-color: #f2f2f9;
	position: relative;
	z-index: 1;
}

/*
Start Best Service Area Style
================================*/
.best-services-area {
	background-color: #f0f1f8;
	.tab-content {
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		background-color: $white-color;
		padding: 30px;
		border-radius: 4px;
	}
	.best-service-img {
		img {
			border-radius: 4px;
		}
	}
	.nav-pills {
		margin-bottom: 30px;
		.nav-link {
			color:#292a2c ;
			background-color: $white-color;
			box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
			padding: 25px;
			border-radius: 4px;
			font-weight: 600;
			font-size: 14px;
			font-family: $heading-font-family;
			width: 200px;
			height: 100px;
			transition: all 0.5s;
			position: relative;
			z-index: 1;
			&::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background-image: linear-gradient(to right, $heading-color , #012c92);
				z-index: -1;
				transform: scale(0);
				transition: all 0.5s;
				border-radius: 4px;
			}
			i {
			display: block;
			font-size: 30px;
			font-weight: normal;
			line-height: 1;
			color: $green-color;
			transition: all 0.5s;
			}
			&:hover {
				color: $white-color;
				box-shadow: none;
				&::before {
					transform: scale(1);
				}
				i {
					color: $white-color;
				}
			}
			&.active {
				color: $white-color;
				background-image: linear-gradient(to right, #01a0c7, #2a4860);
				box-shadow: none;
				i {
					color: $white-color;
				}
			}
		}
	}
	.best-service-area {
		h3 {
			margin-bottom: 20px;
		}
		p {

		}
		ul {
			margin-bottom: 35px;
			li {
				margin-bottom: 10px;
				color: $heading-color;
				font-size: 13px;
				font-weight: 600;
				font-family: $heading-font-family;
				padding-left: 35px;
				position: relative;
				&:last-child {
					margin-bottom: 0;
				}
				i {
					display: inline-block;
					width: 25px;
					height: 25px;
					line-height: 25px;
					background-color: $heading-color;
					text-align: center;
					color: $white-color;
					margin-right: 5px;
					font-weight: normal;
					border-radius: 4px;
					position: absolute;
					top: 0;
					left: 0;
				}
			}
		}
	}
}

/*
Start Choose Area Style
================================*/
.choose-bg-area {
	.single-box {
		border-radius: 0;
		margin-bottom: 0;
		border: 1px solid #203157;
		padding: 30px 28px;
		background-image: url(../img/shape/2.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		&::before {
			border-radius: 0;
		}
		&:hover {
			&::before {
				border-radius: 0;
				opacity: 0.9;
			}
		}
	}
	.pr-0 {
		padding-right: 0;
	}
	.pl-0 {
		padding-left: 0;
	}
	&:hover {
		.choose-1 {
			margin-right: 15px;
			margin-bottom: 15px;
		}
		.choose-2 {
			margin-left: 15px;
			margin-bottom: 15px;
		}
		.choose-3 {
			margin-top: 15px;
			margin-right: 15px;
		}
		.choose-4 {
			margin-top: 15px;
			margin-left: 15px;
		}
	}
}
.choose-img {
	background-image: url(../img/choose-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 100%;
	height: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 40px 0;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #012068;
		opacity: 0.9;
		z-index: -1;
	}
	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(../img/shape/8.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		opacity: 0.1;
		z-index: -1;
	}
	.video-wrap .video-btn-wrap {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		display: flex;
	}
	img {
		border-radius: 4px;
	}
}

/*
Start Choose Area Style
================================*/
.financial-text-wrap {
	position: relative;
	.financial-text {
		position: absolute;
		top: 0;
		left: 0;
	}
}

/*
Our financial Area CSS
=================================*/
.financial-area {
	background-color: $heading-color;
}
.financial-image {
	width: 100%;
	height: 100%;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	color: $white-color;
	img {
		display: none !important;
	}
}
.financial-image.bg-1 {
	background-image: url(../../assets/img/financial/1.jpg);
}
.financial-image.bg-2 {
	background-image: url(../../assets/img/financial/2.jpg);
}
.financial-text {
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding-top: 70px;
	padding-bottom: 70px;
	padding-left: 30px;
	padding-right: 30px;
	.icon {
		color: $green-color;
		font-size: 25px;
		margin-bottom: 20px;
		line-height: 1;
		width: 50px;
		height: 50px;
		text-align: center;
		line-height: 50px;
		background-color: $white-color;
		display: inline-block;
		border-radius: 50%;
	}
	h3 {
		color: $white-color;
		margin-bottom: 18px;
	}
	p {
		color: $white-color;
		margin-bottom: 0;
	}
	.default-btn {
		margin-top: 22px;
	}
	.shape {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		margin: 0 auto;
		z-index: -1;
	}
}

/*
Partner Area Style
================================*/
.partner-area {
	.owl-carousel {
		.owl-item {
			img {
				width: unset;
				margin: auto;
				opacity: 0.5;
				-webkit-transition: all 0.5s;
				transition: all 0.5s;
				&:hover {
					opacity: 1;
				}
			}
		}
	}
	.single-logo {
		line-height: 1;
	}
}

/*
Team Area Style
================================*/
.single-team {
	margin-bottom: 30px;
	.team-text {
		text-align: center;
		background-color: $white-color;
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		padding: 20px;
		transition: all 0.5s;
		h3 {
			margin-bottom: 5px;
			margin-top: -2px;
		}
		span {
			display: block;
    		margin-bottom: -4px;
		}
	}
	.team-img {
		position: relative;
		border-right: 10px solid $heading-color;
		border-top: 10px solid $heading-color;
		.team-icon {
			position: absolute;
			bottom: -25px;
			left: 0;
			right: 0;
			justify-content: center;
			align-items: center;
			display: flex;
			transition: all 0.5s;
			li {
				display: inline-block;
				padding: 0 10px;
				a {
					color: $white-color;
					font-size: 17px;
					line-height: 1;
					i {
						line-height: 20px;
						width: 20px;
						height: 20px;
						text-align: center;
					}
					&:hover {
						color: $green-color;
						background-color: $white-color;
					}
				}
			}
		}
		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: #012068;
			opacity: 0;
			transition: all 0.5s;
		}
	}
	&:hover {
		.team-img {
			&::before {
				opacity: 0.5;
			}
			.team-icon {
				bottom: 0;
			}
		}
		.team-text {
			background-color: $heading-color;
			h3 {
				color: $white-color;
			}
			span {
				color: $white-color;
			}
		}
	}
}

/*
Client Area Style
================================*/
.client-area {
	.section-title {
		span {
			color: $white-color;
		}
		h2 {
			color: $white-color;
		}
	}
	background-image: url(../img/client-img/bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height:300px;
		background-color: $white-color;
		z-index: -1;
	}
}
.client-details-wrap {
	.owl-dots {
		margin-top: 0 !important;
		position: absolute;
		top: 44%;
		left: 0;
		display: grid;
		.owl-dot {
			span {
				width: 3px;
				height: 15px;
				background-color: $heading-color;
				border-radius: 0;
				&:hover {
					background-color: $green-color;
				}
			}
			&.active {
				span {
					background: $green-color !important;
				}
			}
		}
	}
}
.client-bg {
	background-color: $white-color;
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.client-details {
	text-align: center;
	padding: 20px 55px;
	img {
		margin: 0 auto 20px;
		border-radius: 50%;
		width: unset !important;
	}
	h3 {
		font-size: 15px;
		margin-bottom: 0;
	}
	span {
		display: block;
		margin-bottom: 10px;
	}
	ul {
		li {
			display: inline-block;
			i {
				color: #e9cc0b;
				font-size: 15px;
				line-height: 1;
				margin-bottom: 0;
			}
		}
	}
	i {
		font-size: 30px;
		line-height: 1;
		margin-bottom: 15px;
		display: inline-block;
		color: $heading-color;
	}
	
}

/*
Blog Area CSS
=================================*/
.blog-wrap.owl-theme {
	.owl-nav.disabled {
		&+.owl-dots {
			line-height: .01;
			margin-top: 30px;
		}
	}
	.owl-dots {
		.owl-dot {
			span {
				width: 16px;
				height: 16px;
				margin: 0 4px;
				background: transparent;
				border: 1px solid $green-color;
				border-radius: 50%;
				-webkit-transition: 0.5s;
				transition: 0.5s;
				position: relative;
			}
			&:hover {
				span {
					border-color: $green-color;
					&::before {
						background-color: $green-color;
					}
				}
			}
			&.active {
				span {
					border-color: $green-color;
					position: relative;
					&::before {
						content: '';
						position: absolute;
						left: 0;
						top: 0;
						right: 0;
						bottom: 0;
						background-color: $green-color;
						-webkit-transition: 0.5s;
						transition: 0.5s;
						border-radius: 50%;
						margin: 3px;
					}
				}
			}
		}
	}
}
.single-blog-post {
	margin-bottom: 30px;
	background-color: #ffffff;
	box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	.post-image {
		position: relative;
		overflow: hidden;
		a {
			display: block;
			img {
				border-radius: 5px 5px 0 0;
				transition: 0.5s;
			}
		}
	}
	.post-content {
		border: 1px solid #eeeeee;
		.date {
			color: $green-color;
			font-size: 12px;
			margin-bottom: 8px;
			margin-top: -4px;
			i {
				font-size: 12px;
			}
		}
		padding: 25px;
		h3 {
			a {
				margin-bottom: 8px;
				line-height: 1.4;
				font-size: 20px;
				font-weight: 900;
				color: $heading-color;
			}
		}
		p {
			margin-bottom: 0;
		}
		.default-btn {
			margin-top: 25px;
		}
	}
	&:hover {
		h3 {
			a {
				color: $green-color;
			}
		}
		.post-image {
			a {
				img {
					transform: scale(1.3) rotate(4deg);

				}
			}
		}
	}
}

/*
FAQ Area Style
================================*/
.questions-area {
	&.two {
		.section-title {
			text-align: left;
			max-width: unset;
			margin: 0 auto 60px;
		}
	}
}
.questions {
	background-image: url(../img/choose-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 100%;
	height: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
	padding-top: 30px;
	padding-bottom: 30px;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #012068;
		opacity: 0.9;
		z-index: -1;
	}
	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(../img/shape/8.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		opacity: 0.1;
		z-index: -1;
	}
	.contact-form {
		padding: 30px;
		background-color: #242527;
		margin-left: 30px;
		margin-right: 30px;
		label {
			float: left;
			color: $white-color;
		}
		.form-group {
			margin-bottom: 30px;
			.form-control {
				color: $white-color;
			}
			textarea.form-control {
				height: 200px;
			}
		}
		.default-btn {
			cursor: pointer;
		}
	}
}
.faq-accordion {
	.accordion {
		list-style-type: none;
		padding-left: 0;
		margin-bottom: 0;
		.accordion-item {
			display: block;
			box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
			background: #ffffff;
			margin-bottom: 10px;
			&:last-child {
				margin-bottom: 0;
			}
		}
		.accordion-title {
			padding: 12px 20px 12px 51px;
			color: $heading-color;
			position: relative;
			border-bottom: 1px solid transparent;
			margin-bottom: -1px;
			display: block;
			font-size: 18px;
			font-weight: 500;
			i {
				position: absolute;
				left: 0;
				top: 0;
				width: 40px;
				text-align: center;
				height: 100%;
				background: #faf5f5;
				color: $green-color;
				font-size: 14px;
				-webkit-transition: 0.5s;
				transition: 0.5s;
				&::before {
					position: absolute;
					left: 0;
					top: 50%;
					right: 0;
					transform: translateY(-50%);
				}
			}
		}
		.accordion-title.active {
			border-bottom-color: #eeeeee;
			i {
				background-color: $green-color;
				color: #fff;
				&::before {
					content: "\f063";
				}
			}
		}
		.accordion-content {
			display: none;
			position: relative;
			padding: 15px;
			font-size: 15;
		}
		.accordion-content.show {
			display: block;
		}
	}
}

/*
Footer Top Area Style
================================*/
.footer-top-area {
	background-color: #272942;
}
.single-widget {
	margin-bottom: 25px;
	h3 {
		color: $white-color;
		margin-bottom: 20px;
	}
	p {
		color: #fafafa;
		margin-top: 10px;
	}
	.address {
		margin-top: 20px;
		li {
			color: #fafafa;
			position: relative;
			padding-left: 40px;
			margin-bottom: 15px;
			transition: all 0.5s;
			a {
				color: #fafafa;
				transition: all 0.5s;
			}
			i {
				position: absolute;
				top: -4px;
				left: 0;
				width: 30px;
				height: 30px;
				line-height: 30px;
				background-color: $green-color;
				text-align: center;
				border-radius: 50%;
				color: $white-color;
			}
			&:hover {
				color: $green-color;
				a {
					color: $green-color;
				}
			}
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
	.links {
		li {
			margin-bottom: 16px;
			a {
				color: #fafafa;
			}
			&:last-child {
				margin-bottom: 0;
			}
			&:hover {
				color: $green-color;
				a {
					color: $green-color;
				}
			}
		}
	}
	.instragram {
		margin-top: -10px;
		li {
			display: inline-block;
			margin-left: 7px;
			margin-right: 7px;
			margin-top: 17px;
			a {
				color: #fafafa;
			}
			&:hover {
				color: $green-color;
				a {
					color: $green-color;
				}
			}
		}
	}
} 

/*
Footer Bottom Area Style
================================*/
.footer-bottom-area {
	background-color: #3d60b1;
	padding: 15px 0;
	p {
		color: $white-color;
		margin-top: 4px;
		a {
			color: $green-color;
			&:hover {
				color: $green-color;
			}
		}
	}
	.social-icon {
		text-align: right;
		li {
			display: inline-block;
			padding-left: 5px;
			a {
				i {
					display: inline-block;
					width: 30px;
					height: 30px;
					line-height: 30px;
					background-color: $green-color;
					color: $white-color;
					border-radius: 50%;
					text-align: center;
					transition: all 0.5s;
					&:hover {
						background-color: $heading-color;
					}
				}
			}
		}
	}
}

/*
Single Processing Area Style
================================*/
.single-processing {
	text-align: center;
	span {
		background-color: $green-color;
		display: inline-block;
		line-height: 20px;
		height: 20px;
		width: 20px;
		color: $white-color;
		border-radius: 50%;
		position: relative;
		left: -40px;
		top: 10px;
		transition: all 0.5s;
	}
	.processing-icon {
		position: relative;
		width: 80px;
		height: 80px;
		margin: 0 auto 36px;
		top: 8px;
		i {
			color: $white-color;
			border-radius: 50%;
			width: 80px;
			height: 80px;
			display: inline-block;
			text-align: center;
			line-height: 80px;
			background: $green-color;
			z-index: 1;
			font-size: 35px;
			position: relative;
			-webkit-transition: all 0.5s;
			transition: all 0.5s;
			&::after {
				position: absolute;
				content: "";
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				margin: -7px;
				border: 2px dotted $green-color;
				border-radius: 50%;
				z-index: -1;
				transition: 0.5s;
				animation: rotation 50s infinite linear;
				transition: all 0.5s;
			}
		}
	}
	h3 {
		margin-top: 25px;
		margin-bottom: 12px;
	}
	&:hover {
		i {
			background-color: $green-color;
			color: $white-color;
			&::after {
				border: 2px dotted $green-color;
				animation: rotation 10s infinite linear;
			}
		}
		span {
			background: $green-color;
		}
	}
	&::before {
		content: "";
		position: absolute;
		width: 10%;
		height: 10%;
		top: 50px;
		right: 0;
		background-image: url(../img/shape/11.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		z-index: 1;
	}
}
.col-lg-3  {
	&:last-child {
		.single-processing {
			&::before {
				display: none;
			}
		}
	}
}
.icon-color {
	&:nth-child(2) {
		.single-processing {
			margin-top: 30px;
			
		}
	}
	&:nth-child(4) {
		.single-processing {
			margin-top: 30px;
		}
	}
}

/*
Service Area Style
================================*/ 
.services-area {
	.default-btn {
		margin: auto;
		margin-top: 30px;
	}
	.owl-next {
		position: absolute;
		top: 38%;
    	right: 0;
		margin: 0 !important;
		background-color: transparent !important;
		i {
			color: #dddddd;
			font-size: 30px;
			transition: all 0.5s;
		}
	}
	.owl-prev {
		position: absolute;
		top: 38%;
    	left: 0;
		margin: 0 !important;
		background-color: transparent !important;
		i {
			color: #dddddd;
			font-size: 30px;
			transition: all 0.5s;
		}
	}
	&:hover {
		.owl-next  {
			i {
				color: $green-color;
			}
		}
		.owl-prev  {
			i {
				color: $green-color;
			}
		}
	}
}
.services-title {
    margin: -8px auto 60px;
	span {
		font-family: $heading-font-family;
		font-size: 15px;
		font-weight: 600;
		color: $green-color;
		display: inline-block;
		margin-bottom: 10px;
	}
	h2 {
		font-size: 38px;
		margin-bottom: 0; 
	}
	p {
		margin-bottom: 0;
	}
}
.single-services {
	position: relative;
	z-index: 1;
	img {
		border-radius: 4px;
	}
	.service-text {
		position: absolute;
		bottom: 0;
		left: 20px;
		h3 {
			a {
				color: $white-color;
				i {
					color: $green-color;
					font-weight: normal;
					margin-left: 20px;
					font-size: 30px;
				}
			}
		}
	}
	&:hover {
		h3 {
			a {
				color: $green-color;
			}
		}
	}
	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		box-shadow: 1px -20px 15px #012068;
		opacity: 0.5;
		background-color: #012068;
		opacity: 0.5;
	}
}

/*
Features Area Style
================================*/ 
.features-left-area {
	position: relative;
	overflow: hidden;
	background-image: url(../img/features-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		right: -248px;
		height: 100%;
		background-image: url(../img/shape/12.png);
		background-repeat: no-repeat;
		background-position: right;
		width:100%;
		background-size: contain;
	}
}	
.features-right-area {
	.features-title {
		margin: 0 auto 50px;
		span {
			font-family: $heading-font-family;
			font-size: 15px;
			font-weight: 600;
			color: $green-color;
			display: inline-block;
			margin-bottom: 10px;
		}
		h2 {
			font-size: 38px;
			margin-bottom: 0; 
		}
		p {
			margin-bottom: 0;
		}
	}
	.features-list {
		position: relative;
		margin-bottom: 60px;
		i {
			display: inline-block;
			width: 50px;
			height: 50px;
			background-image: linear-gradient(to right, #8fd913 , #39ae38);
			text-align: center;
			line-height: 50px;
			color: #fff;
			font-size: 30px;
			border-radius: 50%;
		}
		.creative-text {
			position: absolute;
			top: 0;
			left: 0;
			padding-left: 70px;
		}
	}
}

/*
Pricing Area Style
================================*/
.single-pricing {
	text-align: center;
	border: 1px solid #ddd;
	transition: all 0.5s;
	border-radius: 4px;
	margin-bottom: 30px;
	.pricing-wrap {
		padding: 0 80px;
	}
	h3 {
		padding: 30px 0 52px;
		border-bottom: 1px solid #ddd;
		transition: all 0.5s;
		position: relative;
		width: 100%;
		height: 100%;
		background-image: url(../img/pricing-1.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		border-radius: 4px 4px 0 0;
		position: relative;
		z-index: 1;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color:$green-color;
			opacity: 0.5;
			z-index: -1;
		}
		&::after {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color:$white-color;
			opacity: 1;
			z-index: -1;
			transition: all 0.5s;
		}
	}
	.money-bag  {
		display: inline-block;
		width: 60px;
		height: 60px;
		line-height: 60px;
		background-color: #ddd;
		border-radius: 50%;
		font-size: 30px;
		position: relative;
		top: -40px;
		color: $white-color;
		background-image: linear-gradient(to right, #8fd913 , #39ae38);
		z-index: 1;
	}
	span {
		display: block;
		font-weight: 700;
		font-family: $heading-font-family;
		color: $heading-color;
		font-size: 30px;
		margin-top: -25px;
		sub {
			font-size: 14px;
			font-weight: normal;
			color: #b7b8bc;
		}
	}
	ul {
		li {
			line-height: 1;
			color: #0a4f9c;
			font-family: $heading-font-family;
			font-weight: 500;
			border-bottom: 1px solid #ddd;
			padding-top: 20px;
			padding-bottom: 20px;
			&:last-child {
				border-bottom: none;
			}
			i {
				margin-right: 5px;
			}
		}
	}
	.default-btn {
		margin-top: 17px;
		margin-bottom: 30px;
	}
	&:hover {
		transform: translateY(-5px);
		border: 1px solid $white-color;
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		h3 {
			border-bottom: 1px solid $white-color;
			color: $white-color;
			&::after {
				opacity: 0;
			}
		}
	}
}

.team-area-two {
	.section-title {
		text-align: left;
		margin-bottom: 0;
		h2 {
			margin-bottom: 20px;
		}
		p {
			margin-bottom: 30px;
		}
	}
	.single-team {
		margin-left: 15px;
		margin-right: 15px;
		.team-img {
			border: none;
		}
		.team-text {
			box-shadow: 0 2px 11px 6px rgba(0, 0, 0, 0.08);
		}
		&:hover {
			.team-text {
				background-color: $green-color;
			}
		}
	}
}

/*
Page Title Area Style
================================*/
.page-title-area {
	position: relative;
	z-index: 1;
	padding-top: 170px;
	padding-bottom: 100px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	background-image: url(../img/shape/2.png);
	&::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-color: $heading-color;
		opacity: 0.9;
	}
	.page-title-content {
		h2 {
			margin-bottom: 0;
			color: $white-color;
			font-size: 45px;
			font-weight: 700;
		}
		ul {
			padding-left: 0;
			list-style-type: none;
			margin-top: 20px;
			margin-bottom: 0;
			li {
				display: inline-block;
				color: $green-color;
				position: relative;
				font-size: 15px;
				font-weight: 700;
				i {
					font-size: 12px;
					margin: 0 10px;
				}
				a {
					color: #bab0b0;
					&:hover {
						color: $green-color;
					}
					i {
						font-size: 12px;
						margin: 0 10px;
					}
				}
			}
		}
	}
}
.single-box {
	&.single-box-2 {
		.default-btn {
			margin-top: 22px;
		}
	}
}

/*
Project Area Two Style
================================*/
.project-area {
	.sorting-menu {
		margin-bottom: 30px;
		position: relative;
		z-index: 1;
		ul {
			padding: 0;
			margin: 0;
			list-style: none;
			text-align: center;
			li {
				display: inline-block;
				font-size: 15px;
				font-weight: 700;
				cursor: pointer;
				padding: 8px 30px;
				margin: 0 5px;
				transition: all 0.5s;
				box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
				background-color: $white-color;
				border-radius: 4px;
				&:hover {
					color: $white-color;
					background-color: $heading-color;
				}
			}
			li.active {
				color: $white-color;
				background-color: $green-color;
			}
		}
	}
}
.single-portfolio-item {
	.portfolio-inner {
		border-radius: 4px;
		margin-bottom: 30px;
		position: relative;
		overflow: hidden;
		
		.portfolio-img {
			width: 100%;
			border-radius: 4px;
			transition: all .5s;
		}
		.portfolio-hover {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(59, 62, 121, 0.9);
			border-radius: 4px;
			opacity: 0;
			visibility: hidden;
			transition: all .5s;
			.hover-text {
				position: absolute;
				top: 50%;
				left: 50%;
				width: 100%;
				transform: translate(-50%, -50%);
				color: $heading-color;
				text-align: center;
				a {
					display: block;
					color: $white-color;
					h4 {
						font-size: 20px;
						font-weight: 600;
						margin-bottom: 5px;
					}
					span {
						text-transform: capitalize;
						font-size: 16px;
						font-weight: 500;
						color: #a0aec6;
					}
				}
			}
		}
		&:hover {
			h4 {
				color: $green-color;
			}
			.portfolio-img {
				transform: scale(1.2);
			}
			.portfolio-hover {
				opacity: 1;
				visibility: visible;
			}
		}
	}
}
.blog-page {
	.single-blog-post {
		margin-left: 0;
		margin-right: 0;
	}
}

/*
Pagenavigation Area Style
================================*/
.pagenavigation-area {
	text-align: center;
	margin: 20px auto 0;
	display: table;
	.page-link {
		color: $green-color;
		background-color: $white-color;
		-webkit-box-shadow: 0 0 15px #d0d0d0;
		box-shadow: 0 0 15px #d0d0d0;
		width: 40px;
		height: 40px;
		border: 1px solid #ffffff;
		line-height: 24px;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		font-weight: 700;
		i {
			margin-right: -4px;
			font-size: 18px;
		}
		&:hover {
			color: $white-color;
			background-color: $green-color;
			border: 1px solid $green-color;
		}
		&:focus {
			z-index: 2;
			outline: 0;
			-webkit-box-shadow: none;
			box-shadow: none;
		}
	}
	.page-link.page-links {
		i {
			&::before {
				margin-left: -4px;
			}
		}
	}
	.page-item {
		padding: 0 8px 0;
		&:first-child {
			.page-link {
				border-radius: none;
			}
		}
		&:last-child {
			.page-link {
				border-radius: none;
			}
		}
	}
	.page-item.active {
		.page-link {
			z-index: 1;
			color: $white-color;
			background-color: $green-color;
			border-color: $green-color;
		}
	}
}

/*
Contact Area CSS
=======================*/
.contact-area {
	.contact-form {
		box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.05);
		padding: 30px;
		form {
			text-align: center;
			.form-control {
				background-color: $white-color;
				border: none;
				box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
				height: 57px;
				color: $green-color;
				border: 1px solid #ffffff;
				&:focus {
					border: 1px solid $green-color;
				}
			}
			.form-group {
				text-align: left;
				margin-bottom: 30px;
			}
			.row {
				margin-left: -7px;
				margin-right: -7px;
				.col-lg-12 {
					padding-left: 7px;
					padding-right: 7px;
				}
				.col-lg-6 {
					padding-left: 7px;
					padding-right: 7px;
				}
			}
			textarea.form-control {
				height: auto;
				padding-top: 15px;
			}
		}
		.default-btn {
			cursor: pointer;
			margin-top: 10px;
		}
	}
}
.map {
	iframe {
		width: 100%;
		height: 630px;
	}
}
.single-contact-box {
	text-align: center;
	background-color: $white-color;
	box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
	margin-bottom: 30px;
	i {
		line-height: 50px;
		width: 50px;
		height: 50px;
		border: 1px dashed $green-color;
		border-radius: 50%;
		font-size: 20px;
		display: inline-block;
		color: $green-color;
		transition: all 0.5s;
		margin-bottom: 20px;
	}
	&:hover {
		i {
			background-color: $green-color;
			color: $white-color;
		}
	}
	.content-title {
		h3 {
			margin-bottom: 10px;
		}
		a {
			display: block;
			font-size: 15px;
			color: #747171; 
			&:hover {
				color: $green-color;
			}
		}
	}
}

/*
404 Error Area Style
================================*/
.error-area {
	padding: 50px 0;
	height: 100vh;  
    text-align: center;
    position: relative;
    z-index: 1;
	background-color: $white-color;
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.9;
        z-index: -1;
    }
    .error-contant-wrap {
		img {
			max-width: 300px;
			width: 100%;
		}
        z-index: 1;
        position: relative;
        h3 {
            margin: 30px 0 0;
            font-family: $body-font-family;
			position: relative;
			color: red;
        }
        p {
			margin: 20px 0 30px;
			font-size: 19px;
        }
    }
}

/*
FAQ PAGE Area Style
================================*/
.faq-page {
	.questions {
		padding: 0;
		&::before {
			display: none;
		}
		.contact-form {
			margin: 0;
			padding: 30px;
			h3 {
				color: $white-color;
			}
		}
	}
}

/*
Client PAGE Area Style
================================*/
.client-page {
	background-image: none;
	.client-details {
		box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.05);
		margin-bottom: 30px;
		transition: all 0.5s;
		padding: 30px;
		&:hover {
			transform: translateY(-5px);
		}
	}
}

/*
Coming Soon Area Style
================================*/
.coming-soon-area {
	position: relative;
	height: 100vh;
	z-index: 1;
	overflow: hidden;
	background-image: url(../img/choose-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: $heading-color;
		opacity: 0.9;
		z-index: 1;
	}
}
.coming-soon-content {
	text-align: center;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
	h1 {
		margin-bottom: 0;
		color: $white-color;
		font-size: 80px;
		font-weight: 700;
		margin-top: -18px;
	}
	p {
		color: #f3f3f3;
		line-height: 1.8;
		font-size: 14.5px;
		max-width: 600px;
		margin-top: 15px;
		margin-bottom: 0;
		margin-left: auto;
		margin-right: auto;
	}
	#timer {
		margin-top: 30px;
		div {
			display: inline-block;
			color: $green-color;
			position: relative;
			margin-left: 35px;
			margin-right: 35px;
			font-size: 65px;
			font-weight: 700;
			span {
				display: block;
				text-transform: capitalize;
				margin-top: -15px;
				font-size: 16px;
				font-weight: normal;
			}
			&:last-child {
				margin-right: 0;
				&::before {
					display: none;
				}
			}
			&:first-child {
				margin-left: 0;
			}
			&::before {
				content: "";
				position: absolute;
				right: -50px;
				top: -10px;
				font-size: 70px;
				color: $white-color;
			}
		}
	}
	.newsletter-form {
		position: relative;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 60px;
		.input-newsletter {
			display: block;
			width: 100%;
			height: 60px;
			border: none;
			background-color: rgba(255, 255, 255, 0.3);
			padding-left: 15px;
			color: $white-color;
			outline: 0;
			-webkit-transition: 0.5s;
			transition: 0.5s;
			&::placeholder {
				color: $white-color;
			}
			&:focus {
				border-color: $green-color;
			}
		}
		button {
			position: absolute;
			right: 0;
			top: 0;
			height: 60px;
			padding: 0 30px;
			text-transform: uppercase;
			outline: 0;
			color: $white-color;
			background-color: #25283a;
			border: none;
			transition: 0.5s;
			font-weight: 600;
			font-size: 15px;
			cursor: pointer;
			border-radius: 0 !important;
			&::after {
				border-radius: 0;
			}
			&::before {
				border-radius: 0;
			}
		}
		#validator-newsletter {
			color: $white-color;
			font-size: 14px;
			position: absolute;
			left: 0;
			right: 0;
			bottom: -30px;
			margin: 0 auto;
		}
	}
}

/*
Sign In  Area Style
================================*/
.sign-up-area {
	position: relative;
	z-index: 1;
	overflow: hidden;
	.contact-form-action {
		background-color: $white-color;
		border-radius: 4px;
		box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
		padding: 40px;
		max-width: 570px;
		margin: auto;
		.form-heading {
			margin-bottom: 33px;
			.form-title {
				font-size: 38px;
				color: #233d63;
				font-weight: 600;
				margin-bottom: 10px;
			}
			.form-desc {
				font-size: 18px;
				color: #677286;
				font-weight: 500;
			}
			.reset-desc {
				line-height: 30px;
				margin-top: 15px;
				a {
					color: $green-color;
				}
			}
			.reset-desc {
				font-size: 16px;
				a {
					font-weight: 600;
				}
			}
		}
		form {
			.submit-btn {
				margin-top: 24px;
			}
			.default-btn {
				cursor: pointer;
				margin-bottom: 30px; 
				padding: 12px 20px; 
				i {
					margin-right: 5px;
				}
			}
			.btn-facebook {
				background-color: #3b5998;
			}
			.btn-twitter {
				background-color: #31a5ff;
			}
			.reset-btn {
				margin-top: 0;
			}
			.form-condition {
				margin-bottom: 20px;
				.agree-label {
					font-weight: 600;
					a {
						color: $green-color;
					}
				}
			}
			.form-group {
				margin-bottom: 30px;
			}
		}
		.account-desc {
			margin-top: -8px;
			font-weight: 600;
			a {
				color: $green-color;
				margin-left: 10px;
				font-weight: 600;
			}
		}
		#chb1 {
			position: relative;
			top: 1px;
		}
		#chb2 {
			position: relative;
			top: 1px;
			;
		}
		.forget {
			float: right;
			color: $green-color;
			font-weight: 600;
		}
		.now-register {
			font-weight: 600;
			float: right;
			a {
				color: $green-color;
			}
		}
		.now-log-in {
			color: $green-color;
			font-weight: 600;
			.font-q {
				font-weight: 600;
			}
		}
	}
	&:before {
		position: absolute;
		content: '';
		z-index: -1;
		width: 50%;
		height: 60%;
		top: 0;
		left: -30px;
		background-image: url("../img/shape/10.png");
		transform: rotate(-10deg);
		opacity: .1;
		background-position: center;
	}
	&:after {
		position: absolute;
		content: '';
		z-index: -1;
		width: 50%;
		height: 60%;
		top: 0;
		left: -30px;
		background-image: url("../img/shape/10.png");
		transform: rotate(-10deg);
		opacity: .1;
		background-position: center;
		right: 0;
		left: auto;
		top: auto;
		bottom: 0;
	}
}

/*
Blog Details Area Style
================================*/
.blog-details-desc {
	.article-image {
		img {
			width: 100%;
		}
	}
	.article-content {
		margin-top: 30px;
		.entry-meta {
			margin-bottom: -10px;
			ul {
				padding-left: 0;
				margin-bottom: 0;
				list-style-type: none;
				li {
					position: relative;
					display: inline-block;
					color: $green-color;
					margin-right: 21px;
					font-size: 14px;
					span {
						display: inline-block;
						color: $green-color;
						font-weight: 500;
					}
					a {
						display: inline-block;
						color: #666666;
						&:hover {
							color: $green-color;
						}
					}
					i {
						color: $green-color;
						margin-right: 2px;
					}
					&::before {
						content: '';
						position: absolute;
						top: 11px;
						right: -15px;
						width: 6px;
						height: 1px;
						background: $green-color;
					}
					&:last-child {
						margin-right: 0;
						&::before {
							display: none;
						}
					}
				}
			}
		}
		h3 {
			margin-bottom: 13px;
			margin-top: 25px;
		}
		.wp-block-gallery.columns-3 {
			padding-left: 0;
			list-style-type: none;
			display: flex;
			flex-wrap: wrap;
			margin-right: -10px;
			margin-left: -10px;
			margin-bottom: 30px;
			margin-top: 30px;
			li {
				flex: 0 0 33.3333%;
				max-width: 33.3333%;
				padding-right: 10px;
				padding-left: 10px;
				figure {
					margin-bottom: 0;
				}
			}
		}
	}
	.article-footer {
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
		.article-tags {
			flex: 0 0 50%;
			max-width: 50%;
			span {
				display: inline-block;
				color: $green-color;
				font-size: 20px;
				margin-right: 5px;
				position: relative;
				top: 2px;
			}
			a {
				display: inline-block;
				color: #666666;
				&:hover {
					color: $green-color;
				}
			}
		}
		.article-share {
			flex: 0 0 50%;
			max-width: 50%;
			.social {
				padding-left: 0;
				list-style-type: none;
				text-align: right;
				margin-bottom: 0;
				li {
					display: inline-block;
					span {
						display: inline-block;
						margin-right: 2px;
						font-weight: 500;
						color: #666666;
					}
					a {
						display: block;
						color: $green-color;
						width: 32px;
						height: 32px;
						line-height: 32px;
						border-radius: 50%;
						background-color: #faf5f5;
						text-align: center;
						font-size: 14px;
						&:hover {
							color: $white-color;
							background-color: $green-color;
							transform: translateY(-2px);
						}
					}
				}
			}
		}
	}
	.post-navigation {
		margin-top: 30px;
	}
}
blockquote {
	overflow: hidden;
	background-color: #fafafa;
	padding: 50px !important;
	position: relative;
	text-align: center;
	z-index: 1;
	margin-bottom: 20px;
	margin-top: 20px;
	p {
		color: $green-color;
		line-height: 1.6;
		margin-bottom: 0;
		font-style: italic;
		font-weight: 600;
		font-size: 18px !important;
	}
	cite {
		display: none;
	}
	&::before {
		color: #efefef;
		content: "\f10e";
		position: absolute;
		left: 50px;
		top: -50px;
		z-index: -1;
		font-family: "Font Awesome 5 Free";
		font-size: 140px;
		font-weight: 900;
	}
	&::after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 3px;
		background-color: $green-color;
		margin-top: 20px;
		margin-bottom: 20px;
	}
}
.post-navigation {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	padding-top: 20px;
	padding-bottom: 20px;
	.navigation-links {
		display: flex;
		flex-wrap: wrap;
		.nav-previous {
			flex: 0 0 50%;
			max-width: 50%;
			a {
				i {
					margin-right: 2px;
				}
			}
		}
		.nav-next {
			flex: 0 0 50%;
			max-width: 50%;
			text-align: right;
			a {
				i {
					margin-left: 2px;
				}
			}
		}
		div {
			a {
				display: inline-block;
				font-weight: 600;
				color: #000;
				&:hover {
					color: $green-color;
				}
			}
		}
	}
}
.comments-area {
	padding: 25px;
	margin-top: 30px;
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
	background-color: $white-color;
	.comments-title {
		position: relative;
		margin-bottom: 30px;
		line-height: initial;
		font-size: 22px;
		font-weight: 600;
		&::before {
			content: '';
			height: 25px;
			width: 3px;
			left: -25px;
			position: absolute;
			background: $green-color;
			top: 50%;
			transform: translateY(-50%);
		}
	}
	ol {
		padding: 0;
		margin: 0;
		list-style-type: none;
	}
	ul {
		padding: 0;
		margin: 0;
		list-style-type: none;
	}
	.comment-list {
		padding: 0;
		margin: 0;
		list-style-type: none;
	}
	.children {
		margin-left: 40px;
	}
	.comment-body {
		border-bottom: 1px solid #eeeeee;
		padding-left: 65px;
		font-size: 14px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		.reply {
			margin-top: 15px;
			a {
				border: 1px solid #ded9d9;
				color: $heading-color;
				display: inline-block;
				padding: 5px 20px;
				border-radius: 30px;
				text-transform: uppercase;
				position: relative;
				z-index: 1;
				font-size: 13px;
				font-weight: 600;
				&:hover {
					color: $white-color;
					background-color: $green-color;
					border-color: $green-color;
				}
			}
		}
	}
	.comment-meta {
		margin-bottom: .8em;
	}
	.comment-author {
		font-size: 16px;
		margin-bottom: 0.4em;
		position: relative;
		z-index: 2;
		.avatar {
			height: 50px;
			left: -65px;
			position: absolute;
			width: 50px;
			border-radius: 50%;
		}
		.fn {
			font-weight: 600;
			color: $green-color;
		}
		.says {
			display: none;
		}
	}
	.comment-metadata {
		color: #666666;
		letter-spacing: 0.01em;
		text-transform: uppercase;
		font-size: 13px;
		font-weight: 500;
		a {
			color: #666666;
			&:hover {
				color: $green-color;
			}
		}
	}
	.comment-content {
		p {
			font-size: 14px;
		}
	}
	.comment-respond {
		margin-top: 30px;
		.comment-reply-title {
			margin-bottom: 15px;
			position: relative;
			font-size: 22px;
			font-weight: 600;
			&::before {
				content: '';
				height: 25px;
				width: 3px;
				left: -25px;
				position: absolute;
				background: $green-color;
				top: 50%;
				transform: translateY(-50%);
			}
			#cancel-comment-reply-link {
				display: inline-block;
			}
		}
		.comment-form {
			overflow: hidden;
		}
		.comment-form-comment {
			margin-top: 15px;
			float: left;
			width: 100%;
		}
		label {
			display: block;
			font-weight: 500;
			color: $heading-color;
			margin-bottom: 5px;
		}
		
		input[type="datetime-local"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="week"] {
			display: block;
			width: 100%;
			background-color: $white-color;  
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="month"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="text"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="email"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="url"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="password"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="search"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="tel"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		input[type="number"] {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		textarea {
			display: block;
			width: 100%;
			background-color: $white-color;
			border: 1px solid #eeeeee;
			padding: 0.625em 0.7375em;
			outline: 0;
			transition: 0.5s;
			&:focus {
				border-color: $green-color;
			}
		}
		.comment-form-author {
			float: left;
			width: 50%;
			padding-right: 10px;
			margin-bottom: 20px;
		}
		.comment-form-email {
			float: left;
			width: 50%;
			padding-left: 12px;
			margin-bottom: 20px;
		}
		.comment-form-url {
			float: left;
			width: 100%;
			margin-bottom: 20px;
		}
		.comment-form-cookies-consent {
			width: 100%;
			float: left;
			position: relative;
			padding-left: 20px;
			margin-bottom: 20px;
			input {
				position: absolute;
				left: 0;
				top: 6px;
			}
			label {
				display: inline-block;
				margin: 0;
				color: #666666;
				font-weight: normal;
			}
		}
		.form-submit {
			float: left;
			width: 100%;
			input {
				background: $green-color;
				border: none;
				color: $white-color;
				padding: 14px 30px 12px;
				display: inline-block;
				cursor: pointer;
				outline: 0;
				border-radius: 0;
				text-transform: uppercase;
				transition: 0.5s;
				font-weight: 500;
				font-size: 14px;
				&:hover {
					color: $white-color;
					background-color: $green-color;
				}
				&:focus {
					color: $white-color;
					background-color: $green-color;  
				}
			}
		}
	}
}

/*
Sidebar Widget Area Style
================================*/
.widget-area {
	.widget {
		margin-top: 35px;
		box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
		background-color: $white-color;
		padding: 25px;
		&:first-child {
			margin-top: 0;
		}
		.widget-title {
			border-bottom: 1px solid #eeeeee;
			padding-bottom: 10px;
			margin-bottom: 20px;
			text-transform: capitalize;
			position: relative;
			font-weight: 600;
			font-size: 20px;
			&::before {
				content: '';
				position: absolute;
				background: $green-color;
				bottom: -1px;
				left: 0;
				width: 50px;
				height: 1px;
			}
		}
	}
	.widget_search {
		form {
			position: relative;
			label {
				display: block;
				margin-bottom: 0;
			}
			.screen-reader-text {
				display: none;
			}
			.search-field {
				background-color: transparent;
				height: 50px;
				padding: 6px 15px;
				border: 1px solid #eeeeee;
				width: 100%;
				display: block;
				outline: 0;
				transition: 0.5s;
				&:focus {
					border-color:$green-color;
				}
			}
			button {
				position: absolute;
				right: 0;
				outline: 0;
				bottom: 0;
				height: 50px;
				width: 50px;
				border: none;
				color: $white-color;
				background-color: $green-color;
				transition: 0.5s;
				cursor: pointer;
				&:hover {
					background-color: $green-color;
				}
			}
		}
	}
	.widget-peru-posts-thumb {
		position: relative;
		overflow: hidden;
		.item {
			overflow: hidden;
			margin-bottom: 20px;
			&:last-child {
				margin-bottom: 0;
			}
			.thumb {
				float: left;
				height: 80px;
				overflow: hidden;
				position: relative;
				width: 80px;
				margin-right: 15px;
				.fullimage {
					width: 80px;
					height: 80px;
					display: inline-block;
					background-size: cover !important;
					background-repeat: no-repeat;
					background-position: center center !important;
				}
				.fullimage.bg1 {
					background-image: url(../img/blog-details/2.jpg);
				}
				.fullimage.bg2 {
					background-image: url(../img/blog-details/3.jpg);
				}
				.fullimage.bg3 {
					background-image: url(../img/blog-details/4.jpg);
				}
				.fullimage.bg4 {
					background-image: url(../img/blog-details/5.jpg);
				}
				.fullimage.bg5 {
					background-image: url(../img/blog-details/6.jpg);
				}
			}
			.info {
				overflow: hidden;
				span {
					display: block;
					color: #666666;
					text-transform: uppercase;
					margin-top: 5px;
					margin-bottom: 5px;
					font-size: 12px;
					font-weight: 500;
				}
				.title {
					margin-bottom: 0;
					line-height: 1.5;
					font-size: 15px;
					font-weight: 600;
					a {
						display: inline-block;
						color: #474c40;
						&:hover {
							color: $green-color;
						}
					}
				}
			}
		}
	}
	.widget_recent_entries {
		ul {
			padding: 0;
			margin: 0;
			list-style-type: none;
			li {
				position: relative;
				margin-bottom: 12px;
				color: #666666;
				padding-left: 17px;
				line-height: 1.5;
				font-size: 15px;
				font-weight: 600;
				&:last-child {
					margin-bottom: 0;
				}
				&::before {
					background: $green-color;
					position: absolute;
					height: 7px;
					width: 7px;
					content: '';
					left: 0;
					top: 7px;
				}
				.post-date {
					display: block;
					font-size: 13px;
					color: #666666;
					margin-top: 4px;
				}
			}
		}
	}
	.widget_categories {
		ul {
			padding: 0;
			margin: 0;
			list-style-type: none;
			li {
				position: relative;
				padding-bottom: 10px;
				margin-bottom: 10px;
				color: #666666;
				padding-left: 17px;
				font-size: 15px;
				font-weight: 600;
				border-bottom: 1px solid #efefef;
				&:last-child {
					margin-bottom: 0;
					border-bottom: none;
				}
				&::before {
					background: $green-color;
					position: absolute;
					height: 10px;
					width: 10px;
					content: '';
					left: 0;
					top: 9px;
				}
				a {
					display: block;
					color: #666666;
					span {
						float: right;
					}
					&:hover {
						color: $green-color;
					}
				}
				.post-count {
					float: right;
				}
			}
		}
	}
	.widget_meta {
		ul {
			padding: 0;
			margin: 0;
			list-style-type: none;
			li {
				position: relative;
				margin-bottom: 12px;
				color: #666666;
				padding-left: 17px;
				font-size: 15px;
				font-weight: 600;
				&:last-child {
					margin-bottom: 0;
				}
				&::before {
					background: $green-color;
					position: absolute;
					height: 7px;
					width: 7px;
					content: '';
					left: 0;
					top: 7px;
				}
			}
		}
	}
	.widget_tag_cloud {
		.widget-title {
			margin-bottom: 12px;
		}
	}
	.tagcloud {
		a {
			display: inline-block;
			color: #666666;
			font-weight: 600;
			font-size: 14px !important;
			padding: 7px 10px;
			border: 1px dashed #eeeeee;
			margin-top: 10px;
			margin-right: 10px;
			&:hover {
				background-color: $green-color;
				color: $white-color;
				border-color: $green-color;
			}
			&:focus {
				background-color: $green-color;
				color: $white-color;
				border-color: $green-color;
			}
		}
	}
	.widget_services_list {
		ul {
			padding-left: 0;
			list-style-type: none;
			margin-bottom: 0;
			box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
			background-color: $white-color;
			li {
				a {
					display: block;
					position: relative;
					border-bottom: 1px solid #eeeeee;
					padding-top: 15px;
					padding-bottom: 15px;
					padding-left: 15px;
					padding-right: 35px;
					color: #5d6576;
					z-index: 1;
					font-weight: 500;
					&::before {
						content: "";
						position: absolute;
						left: 0;
						top: 0;
						width: 0;
						height: 100%;
						background: #252920;
						transition: 0.5s;
						opacity: 0;
						visibility: hidden;
					}
					i {
						position: absolute;
						right: 15px;
						top: 50%;
						transform: translateY(-50%);
					}
					&:hover {
						background-color: $green-color;
						color: $white-color;
						padding-left: 20px;
						&::before {
							opacity: 1;
							visibility: visible;
							width: 5px;
						}
					}
				}
				a.active {
					background-color: $green-color;
					color: $white-color;
					padding-left: 20px;
					&::before {
						opacity: 1;
						visibility: visible;
						width: 5px;
					}
				}
				&:last-child {
					a {
						border-bottom: none;
					}
				}
			}
		}
	}
	.widget_download {
		ul {
			padding-left: 0;
			list-style-type: none;
			margin-bottom: 0;
			box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
			background-color: $white-color;
			li {
				a {
					display: block;
					position: relative;
					border-bottom: 1px solid #eeeeee;
					padding-top: 15px;
					padding-bottom: 15px;
					padding-left: 15px;
					padding-right: 35px;
					color: #5d6576;
					z-index: 1;
					font-weight: 500;
					&::before {
						content: "";
						position: absolute;
						left: 0;
						top: 0;
						width: 0;
						height: 100%;
						background: #252920;
						transition: 0.5s;
						opacity: 0;
						visibility: hidden;
					}
					i {
						position: absolute;
						right: 15px;
						top: 50%;
						transform: translateY(-50%);
					}
					&:hover {
						background-color: $green-color;
						color: $white-color;
						padding-left: 20px;
						&::before {
							opacity: 1;
							visibility: visible;
							width: 5px;
						}
					}
				}
				a.active {
					background-color: $green-color;
					color: $white-color;
					padding-left: 20px;
					&::before {
						opacity: 1;
						visibility: visible;
						width: 5px;
					}
				}
				&:last-child {
					a {
						border-bottom: none;
					}
				}
			}
		}
	}
} 

/*
Right Sidebar Area Style
================================*/
.blog-details-desc {
	.single-blog-post {
		margin-left: 0;
		margin-right: 0;
	}
}

/*
Service Details Area Style
================================*/
.service-pro {
	margin-top: 30px;
}
.service-list-pro {
	ul {
		li {
			font-size: 16px;
			font-weight: 500;
			color: $heading-color;
			margin-bottom: 10px;
			position: relative;
			padding-left: 40px;
			&:last-child {
				margin-bottom: 0;
			}
			i {
				position: absolute;
				top: 0;
				left: 0;
				color: $white-color;
				display: inline-block;
				width: 25px;
				height: 25px;
				line-height: 25px;
				background-color: $heading-color;
				text-align: center;
				border-radius: 4px;
			}
		}
	}
}

/*
Project Details Area Style
================================*/
.project-slide-wrap {
	.owl-nav.disabled {
		&+.owl-dots {
			line-height: .01;
			position: absolute;
			bottom: 20px;
			left: 0;
			right: 0;
		}
	}
	.owl-dots {
		.owl-dot {
			span {
				width: 16px;
				height: 16px;
				margin: 0 4px;
				background: transparent;
				border: 1px solid $green-color;
				border-radius: 50%;
				-webkit-transition: 0.5s;
				transition: 0.5s;
				position: relative;
			}
			&:hover {
				span {
					border-color: $green-color;
					background: transparent;
					&::before {
						background-color: $green-color;
					}
				}
			}
			&.active {
				span {
					border-color: $green-color;
					background: transparent;
					position: relative;
					&::before {
						content: '';
						position: absolute;
						left: 0;
						top: 0;
						right: 0;
						bottom: 0;
						background-color: $green-color;
						-webkit-transition: 0.5s;
						transition: 0.5s;
						border-radius: 50%;
						margin: 3px;
					}
				}
			}
		}
	}
}

/*Shop Area Style
=====================================================*/
.shop-area {
	.woocommerce-topbar {
		margin-bottom: 40px;
		.woocommerce-topbar-ordering {
			text-align: right;
			.nice-select {
				background-color: $white-color;
				color: $green-color;
				border-radius: 0;
				border: none;
				box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
				float: unset;
				height: unset;
				line-height: initial;
				padding: 17px 35px 13px 20px;
				font-size: 16px;
				.list {
					background-color: $white-color;
					box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
					border-radius: 0;
					margin-top: 0;
					width: 100%;
					padding-top: 10px;
					padding-bottom: 10px;
					.option {
						-webkit-transition: .6s;
						transition: .6s;
						font-size: 16px;
						padding-left: 20px;
						padding-right: 20px;
						&:hover {
							background-color: $green-color !important;
							color: $white-color;
						}
					}
					.option.selected {
						background-color: transparent;
						font-weight: 700;
					}
				}
				&:after {
					right: 20px;
				}
			}
		}
	}
	.single-product-box {
		text-align: center;
		margin-bottom: 30px;
		background-color: $white-color;
		box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
		.product-image {
			overflow: hidden;
			position: relative;
			text-align: left;
			a {
				img {
					-webkit-transition: .6s;
					transition: .6s;
				}
			}
			.add-to-cart-btn {
				position: absolute;
				bottom: -46px;
				left: 0;
				width: 100%;
				background-color: $heading-color;
				color: $white-color;
				padding: 18px 20px 13px;
				text-transform: uppercase;
				opacity: 0;
				visibility: hidden;
				text-align: center;
				font-size: 15px;
				font-weight: 700;
				i {
					position: absolute;
					right: 20px;
					top: 50%;
					transform: translateY(-50%);
				}
				&:hover {
					background-color: $green-color;
					color: $white-color;
				}
			}
			.sale-btn {
				position: absolute;
				left: 20px;
				top: 20px;
				background-color: $green-color;
				color: $white-color;
				width: 55px;
				height: 55px;
				line-height: 55px;
				text-align: center;
				border-radius: 50%;
				text-transform: uppercase;
				font-weight: 700;
				font-size: 14px;
			}
		}
		.product-content {
			padding: 30px 25px;
			h3 {
				margin-bottom: 12px;
				font-size: 20px;
				font-weight: 700;
				a {
					display: inline-block;
					color: $green-color;
					text-decoration: none;
				}
			}
			.price {
				color: $heading-color;
				font-weight: 600;
				font-size: 15px;
				span {
					padding: 0 5px;
				}
				.old {
					text-decoration: line-through;
					color: $green-color;
					font-size: 14px;
				}
			}
			.rating {
				margin-top: 12px;
				color: #ffb708;
				font-size: 15px;
				i {
					margin-right: -1px;
				}
			}
		}
		&:hover {
			.product-image {
				.add-to-cart-btn {
					bottom: 0;
					opacity: 1;
					visibility: visible;
					-webkit-transition: .6s;
					transition: .6s;
					text-decoration: none;
				}
			}
		}
	}
}

/*Cart Area CSS
=====================================================*/
.cart-area {
	.cart-table {
		table {
			margin-bottom: 0;
			thead {
				tr {
					th {
						border-bottom-width: 0px;
						vertical-align: middle;
						padding: 0 0 15px;
						text-transform: uppercase;
						border: none;
						font-weight: 700;
						font-size: 16px;
					}
				}
			}
			tbody {
				tr {
					td {
						vertical-align: middle;
						color: #666666;
						padding-left: 0;
						padding-right: 0;
						font-size: 14px;
						border-color: #eaedff;
						border-left: none;
						border-right: none;

					}
					td.product-thumbnail {
						img {
							width: 60px;
							height: 60px;
						}
						a {
							display: block;
						}
					}
					td.product-name {
						a {
							color: #666666;
							font-weight: 600;
							display: inline-block;
							&:hover {
								color: $heading-color;
							}
						}
					}
					td.product-price {
						span {
							font-weight: 500;
						}
					}
					td.product-subtotal {
						.remove {
							color: #666666;
							float: right;
							position: relative;
							top: 1px;
							transition: all 0.5s;
							i {
								font-size: 22px;
							}
							&:hover {
								color: red;
							}
						}
						overflow: hidden;
						span {
							font-weight: 500;
						}
					}
					td.product-quantity {
						.input-counter {
							max-width: 130px;
							min-width: 130px;
							text-align: center;
							display: inline-block;
							position: relative;
							span {
								position: absolute;
								top: 0;
								background-color: transparent;
								cursor: pointer;
								color: $heading-color;
								width: 40px;
								height: 100%;
								line-height: 48px;
								transition: 0.5s;
								&:hover {
									color: $green-color;
								}
							}
							span.minus-btn {
								left: 0;
							}
							span.plus-btn {
								right: 0;
							}
							input {
								height: 45px;
								color: $heading-color;
								outline: 0;
								display: block;
								border: none;
								background-color: #f8f8f8;
								text-align: center;
								width: 100%;
								font-size: 17px;
								font-weight: 600;
								&::placeholder {
									color: $heading-color;
								}
							}
						}
					}
				}
			}
		}
	}
	.cart-buttons {
		margin-top: 30px;
	}
	.cart-totals {
		background: #ffffff;
		padding: 40px;
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		border-radius: 0;
		margin: auto;
		margin-top: 50px;
		h3 {
			margin-bottom: 25px;
			font-weight: 700;
		}
		ul {
			padding: 0;
			margin: 0 0 25px;
			list-style-type: none;
			li {
				border: 1px solid #eaedff;
				padding: 10px 15px;
				color: #323232;
				overflow: hidden;
				font-weight: 700;
				&:first-child {
					border-bottom: none;
				}
				&:last-child {
					border-top: none;
				}
				span {
					float: right;
					color: #666666;
					font-weight: normal;
				}
			}
		}
	}
	.cart-area {
		.nice-select {
			height: 50px;
			line-height: 49px;
			border-radius: 0;
			width: 100%;
			margin-bottom: 18px;
		}  
	}
	.cart-wraps {
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		background-color: #fff;
		padding: 40px;
	}
	.coupon-wrap {
		margin-top: 50px;
		background-color: $white-color;
		padding: 40px;
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		.nice-select {
			.list {
				width: 100%;
			}
		}
		.nice-select .option {
			color: $heading-color !important;
			&:hover {
				color: $white-color !important;
				background-color: $green-color !important;
			}
		}
		select .option.focus, .nice-select .option.selected.focus {
			background-color: $green-color !important;
			color: $white-color !important;
		}
		h3 {
			padding-bottom: 25px;
		}
		.form-group {
			margin-bottom: 18px; 
		}
		.nice-select {
			height: 50px;
			width: 100%;
			margin-bottom: 19px;
			border-radius: 0;
			.current {
				position: relative;
				top: 4px;
			}
		}
	}
	.table-bordered>:not(caption)>* {
		border-width: 1px 0;
		border-top: none;
	}
	.text-right {
		text-align: right;
	}
}

/*Checkout Area Style 
=====================================================*/
.checkout-area {
	.user-actions {
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		background: $white-color;
		padding: 18px 20px 15px;
		margin-bottom: 65px;
		border-top: 3px solid $green-color;
		position: relative;
		color: $green-color;
		&::before {
			content: '';
			position: absolute;
			right: 0;
			bottom: -35px;
			width: 100%;
			height: 1px;
			background: #eeeeee;
		}
		i {
			color: $green-color;
			margin-right: 2px;
			font-size: 20px;
			position: relative;
			top: 2px;
		}
		span {
			display: inline-block;
			font-weight: 500;
			color: $heading-color;
			a {
				display: inline-block;
				color: $green-color;
				font-size: 15px;
				&:hover {
					color: $green-color;
				}
				&:focus {
					color: $green-color;
				}
			}
		}
	}
	.checkout-area {
		.title {
			margin-bottom: 25px;
			font-size: 20px;
			font-weight: 700;  
		}
	}
	.billing-details {
		background-color: $white-color;
		padding: 30px;
		box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
		.form-group {
			margin-bottom: 20px;
			label {
				display: block;
				color: $heading-color;
				margin-bottom: 10px;
				font-size: 15px;
				font-weight: 500;
				.required {
					color: red;
				}
			}
			.nice-select {
				float: unset;
				line-height: 45px;
				color: $heading-color;
				padding-top: 0;
				padding-bottom: 0;
				.list {
					background-color: $white-color;
					box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
					border-radius: 0;
					margin-top: 0;
					width: 100%;
					padding-top: 10px;
					padding-bottom: 10px;
					.option {
						transition: 0.5s;
						padding-left: 20px;
						padding-right: 20px;
						&:hover {
							background-color: $green-color !important;
							color: $white-color;
						}
					}
					.option.selected {
						background-color: transparent;
					}
				}
				&:after {
					right: 20px;
				}
			}
			.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
				background-color: $green-color !important;
				color: $white-color !important;
			}
			textarea {
				padding-top: 13px;
			}
		}
		.form-check {
			margin-bottom: 20px;
			.form-check-label {
				color: $heading-color;
			}
			label {
				position: relative;
				top: 1px;
				font-size: 14px;
				font-weight: 500;
			}
		}
		.col-lg-12 {
			&:last-child {
				.form-group {
					margin-bottom: 0;
				}
			}
		}
	}
	.order-details {
		.order-table {
			background-color: $white-color;
			padding: 30px;
			box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
			table {
				margin-bottom: 0;
				thead {
					tr {
						th {
							border-bottom-width: 0;
							vertical-align: middle;
							border-color: #eaedff;
							padding-left: 20px;
							padding-top: 15px;
							padding-right: 20px;
							padding-bottom: 15px;
							font-weight: 700;
						}
					}
				}
				tbody {
					tr {
						td {
							vertical-align: middle;
							color: $heading-color;
							border-color: #eaedff;
							font-size: 14px;
							padding-left: 20px;
							padding-right: 20px;
						}
						td.product-name {
							a {
								color: $heading-color;
								display: inline-block;
								font-weight: 500;
								font-size: 15px;
								&:hover {
									color: $heading-color;
								}
							}
						}
						td.order-subtotal {
							span {
								color: $heading-color;
								font-weight: 600;
							}
						}
						td.order-shipping {
							span {
								color: $heading-color;
								font-weight: 600;
							}
						}
						td.total-price {
							span {
								color: $heading-color;
								font-weight: 600;
							}
						}
						td.shipping-price {
							font-weight: 600;
						}
						td.order-subtotal-price {
							font-weight: 600;
						}
						td.product-subtotal {
							font-weight: 600;
						}
					}
				}
			}
		}
		.payment-box {
			background-color: $white-color;
			box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
			margin-top: 30px;
			padding: 30px;
			.payment-method {
				p {
					[type="radio"] {
						&:checked {
							display: none;
							&+label {
								padding-left: 27px;
								cursor: pointer;
								display: block;
								font-weight: 600;
								color: $green-color;
								position: relative;
								margin-bottom: 8px;
								&::before {
									content: '';
									position: absolute;
									left: 0;
									top: 3px;
									width: 18px;
									height: 18px;
									border: 1px solid #dddddd;
									border-radius: 50%;
									background: $white-color;
								}
								&::after {
									content: '';
									width: 12px;
									height: 12px;
									background: $green-color;
									position: absolute;
									top: 6px;
									left: 3px;
									border-radius: 50%;
									transition: 0.5s;
									opacity: 1;
									visibility: visible;
									transform: scale(1);
								}
							}
						}
						&:not(:checked) {
							display: none;
							&+label {
								padding-left: 27px;
								cursor: pointer;
								display: block;
								font-weight: 600;
								color: $heading-color;
								position: relative;
								margin-bottom: 8px;
								&::before {
									content: '';
									position: absolute;
									left: 0;
									top: 3px;
									width: 18px;
									height: 18px;
									border: 1px solid #dddddd;
									border-radius: 50%;
									background: $white-color;
								}
								&::after {
									content: '';
									width: 12px;
									height: 12px;
									background: $green-color;  
									position: absolute;
									top: 6px;
									left: 3px;
									border-radius: 50%;
									transition: 0.5s;
									opacity: 0;
									visibility: hidden;
									transform: scale(0);
								}
							}
						}
					}
				}
			}
			.btn.order-btn {
				display: block;
				margin-top: 25px;
			}
			.default-btn {
				margin-top: 20px;
				display: block;
				text-align: center;
			}
		}
	}
}

/*
Shop Details Style
================================*/
.shop-details-area {
	.product-details-desc {
		h3 {
			margin-bottom: 12px;
			font-weight: 700;
		}
		p {
			margin-bottom: 0;
		}
		.price {
			margin-bottom: 10px;
			color: #333333;
			font-weight: 700;
			span {
				padding: 0 5px;
			}
			.old-price {
				text-decoration: line-through;
				color: #828893;
				font-size: 13px;
			}
		}
		.product-review {
			margin-bottom: 15px;
			.rating {
				display: inline-block;
				padding-right: 5px;
				font-size: 14px;
				i {
					color: #ffba0a;
				}
			}
			.rating-count {
				display: inline-block;
				color: #333333;
				border-bottom: 1px solid #333333;
				line-height: initial;
				&:hover {
					color: $green-color;
					border-color: $green-color;
				}
			}
		}
		.product-add-to-cart {
			margin-top: 20px;
			.input-counter {
				max-width: 130px;
				min-width: 130px;
				margin-right: 10px;
				text-align: center;
				display: inline-block;
				position: relative;
				span {
					position: absolute;
					top: 0;
					background-color: transparent;
					cursor: pointer;
					color: #d0d0d0;
					width: 40px;
					height: 100%;
					line-height: 48px;
					transition: 0.5s;
					&:hover {
						color: $heading-color;
					}
				}
				span.minus-btn {
					left: 0;
				}
				span.plus-btn {
					right: 0;
				}
				input {
					height: 45px;
					color: #333333;
					outline: 0;
					display: block;
					border: none;
					background-color: #f8f8f8;
					text-align: center;
					width: 100%;
					font-size: 17px;
					font-weight: 600;
					&::placeholder {
						color: #333333;
					}
				}
			}
			.default-btn {
				border: none;
				cursor: pointer;
				float: right;
			}
			.btn {
				height: 45px;
				top: -2px;
				position: relative;
				padding-top: 0;
				padding-bottom: 0;
				i {
					margin-right: 2px;
				}
			}
		}
		.buy-checkbox-btn {
			margin-top: 20px;
			input {
				display: none;
			}
			.cbx {
				margin: auto;
				user-select: none;
				cursor: pointer;
				span {
					display: inline-block;
					vertical-align: middle;
					transform: translate3d(0, 0, 0);
					&:first-child {
						position: relative;
						width: 18px;
						height: 18px;
						border-radius: 3px;
						transform: scale(1);
						vertical-align: middle;
						border: 1px solid #ebebeb;
						transition: all 0.2s ease;
						transition: 0.5s;
						svg {
							position: absolute;
							top: 3px;
							left: 2px;
							fill: none;
							stroke: #ffffff;
							stroke-width: 2;
							stroke-linecap: round;
							stroke-linejoin: round;
							stroke-dasharray: 16px;
							stroke-dashoffset: 16px;
							transition: all 0.3s ease;
							transition-delay: 0.1s;
							transform: translate3d(0, 0, 0);
							transition: 0.5s;
						}
						&:before {
							content: "";
							width: 100%;
							height: 100%;
							background: #333333;
							display: block;
							transform: scale(0);
							opacity: 1;
							border-radius: 50%;
							transition: 0.5s;
						}
					}
					&:last-child {
						padding-left: 4px;
						color: #57647c;
					}
				}
				&:hover {
					span {
						&:first-child {
							border-color: #333333;
						}
					}
				}
			}
			.inp-cbx {
				&:checked {
					&+.cbx {
						span {
							&:first-child {
								background: #333333;
								border-color: #333333;
								animation: wave 0.4s ease;
								svg {
									stroke-dashoffset: 0;
								}
								&:before {
									transform: scale(3.5);
									opacity: 0;
									transition: all 0.6s ease;
								}
							}
						}
					}
				}
			}
			.item {
				&:not(:first-child) {
					margin-top: 15px;
				}
			}
			.btn {
				display: block;
				width: 100%;
			}
			.default-btn {
				text-transform: uppercase;
				display: block;
				text-align: center;
			}
		}
		.custom-payment-options {
			margin-top: 20px;
			span {
				display: block;
				color: #57647c;
				margin-bottom: 15px;
			}
			.payment-methods {
				a {
					display: inline-block;
					img {
						width: 40px;
						margin-right: 5px;
					}
				}
			}
		}
	}
	.product-details-image {
		text-align: center;
		background-color: #f7f7f7;
	}
	.tab {
		.tabs_item {
			display: none;
			&:first-child {
				display: block;
			}
		}
	}
	.products-details-tab {
		margin-top: 50px;
		.tabs {
			list-style-type: none;
			margin-bottom: -1px;
			padding-left: 0;
			li {
				display: inline-block;
				line-height: initial;
				margin-right: 5px;
				a {
					display: inline-block;
					position: relative;
					text-transform: uppercase;
					color: #333333;
					border: 1px solid #eeeeee;
					padding-top: 15px;
					padding-bottom: 15px;
					padding-right: 30px;
					padding-left: 48px;
					font-weight: 700;
					.dot {
						position: absolute;
						top: 50%;
						transform: translateY(-50%);
						left: 30px;
						width: 12px;
						height: 12px;
						border: 1px solid #333333;
						transition: 0.5s;
						border-radius: 50%;
						&::before {
							position: absolute;
							top: 0;
							content: '';
							left: 0;
							right: 0;
							bottom: 0;
							background: #333333;
							margin: 2px;
							border-radius: 50%;
							transition: 0.5s;
						}
					}
					&:hover {
						color: #ffffff;
						background-color: $green-color;
						border-color: $green-color;
						.dot {
							border-color: #ffffff;
							&::before {
								background: #ffffff;
							}
						}
					}
					&:focus {
						color: #ffffff;
						background-color: $green-color;
						border-color: $green-color;
						.dot {
							border-color: #ffffff;
							&::before {
								background: #ffffff;
							}
						}
					}
				}
				&:last-child {
					margin-right: 0;
				}
			}
			li.current {
				a {
					color: #ffffff;
					background-color: $green-color;
					border-color: $green-color;
					.dot {
						border: 1px solid $white-color;
						&::before {
							background: #ffffff;
						}
					}
				}
			}
		}
		.tab_content {
			border: 1px solid #eeeeee;
			padding: 30px;
			.tabs_item {
				.products-details-tab-content {

					p {
						margin-bottom: 20px;
						font-size: 14px;
						&:last-child {
							margin-bottom: 0;
						}
					}
					.additional-information {
						padding-left: 0;
						margin-bottom: 0;
						list-style-type: none;
						text-align: left;
						li {
							border: 1px solid #eeeeee;
							border-bottom: none;
							padding: 10px 15px;
							color: #57647c;
							&:last-child {
								border-bottom: 1px solid #eeeeee;
							}
							span {
								display: inline-block;
								width: 30%;
								color: #333333;
								font-size: 16px;
								font-weight: 600;
							}
						}
					}
					h3 {
						margin-bottom: 15px;
						font-weight: 700;
					}
					.product-review-form {
						.review-title {
							position: relative;
							.rating {
								display: inline-block;
								.fas.fa-star {
									color: #ffba0a;
								}
								i {
									color: #ffba0a;
									font-size: 14px;
								}
							}
							p {
								margin-bottom: 0;
								display: inline-block;
								padding-left: 5px;
								line-height: initial;
							}
							.btn {
								position: absolute;
								right: 0;
								bottom: 10px;
								padding: 10px 11px;
								font-size: 11px;
								&:focus {
									border: none !important;
									box-shadow: none !important;
									border: 4px;
									background-color: $heading-color;
								}
							}
						}
						.review-comments {
							margin-top: 35px;
							.review-item {
								margin-top: 30px;
								position: relative;
								padding-right: 200px;
								border-top: 1px dashed #eeeeee;
								padding-top: 30px;
								.rating {
									.fas.fa-star {
										color: #ffba0a;
									}
									i {
										font-size: 14px;
										color: #ffba0a;
									}
								}
								h3 {
									margin-top: 10px;
									margin-bottom: 10px;
								}
								span {
									margin-bottom: 10px;
									font-size: 13px;
									display: block;
									strong {
										font-weight: 600;
									}
								}
								p {
									margin-bottom: 0;
								}
								.review-report-link {
									position: absolute;
									right: 0;
									color: #57647c;
									top: 40px;
									text-decoration: underline;
									&:hover {
										color: #ff4800;
									}
								}
							}
						}
						.review-form {
							margin-top: 30px;
							form {
								.form-group {
									margin-bottom: 20px;
									label {
										color: #444444;
										text-transform: uppercase; 
										font-size: 13px;
										font-weight: 600;
									}
									textarea {
										padding-top: 15px;
									}
									.form-control {
										font-size: 14px;
									}
								}
								.btn {
									border-radius: 0;
									&:focus {
										box-shadow: none;
										border: none;
										border-radius: 0;
									}
								}
							}
						}
					}
				}
			}
		}
	}
}
.help-block.with-errors {
    margin-top: 10px;
}

.list-unstyled li {
	color: #dc3545;
}
.text-danger {
	color: #dc3545!important;
	margin-top: 10px;
}
.text-success {
	color: #28a745!important;
	margin-top: 10px;
}
label {
	margin-bottom: 12px;
}




      .experts-section{
        padding:4rem 1rem;
      }

      .experts-heading{
        text-align:center;
        margin-bottom:1rem;
      }

      .experts-heading h2{
        font-weight:800;
        font-size:2.25rem;
      }

      .experts-heading p{
        color:rgba(255,255,255,0.85);
        max-width:760px;
        margin:0 auto 2.25rem auto;
      }

      /* Card area */
      .expert-card{
        background:var(--card-bg);
        color:#10203a;
        border-radius:12px;
        padding:22px 20px 90px 20px; /* leave space at bottom for avatar overlap */
        position:relative;
        box-shadow: 0 8px 20px rgba(6,20,50,0.25);
        min-height:320px;
        overflow:visible;
      }

      .expert-card h5{font-weight:700; margin-bottom:0.15rem}
      .expert-card .role{color:#3b5471; font-size:0.9rem}
      .experience{font-weight:700; margin-top:1rem; color:#18385a}

      .btn-counsel{
        margin-top:1rem;
        background:#12315a;
        color:#fff;
        border-radius:6px;
        padding:8px 16px;
      }

      /* Avatar block that overlaps the card bottom */
      .avatar-wrap{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        bottom:-48px; /* pulls avatar down */
        width:160px;
        text-align:center;
      }

      .avatar{
        width:160px;
        height:160px;
        border-radius:18px;
        object-fit:cover;
        border:10px solid #e9eef6; /* pale frame */
        box-shadow:0 6px 18px rgba(2,12,40,0.25);
        background:#fff;
      }

      .rating-badge{
        position:absolute;
        top:8px;
        left:8px;
        background:#fff;
        color:#1f2b3a;
        padding:4px 8px;
        border-radius:12px;
        font-weight:700;
        box-shadow:0 4px 10px rgba(2,12,40,0.12);
        font-size:0.9rem;
      }

      /* nav arrows */
      .carousel-nav{
        position:relative;
        margin-top:2.5rem;
      }

      .nav-arrow{
        position:absolute;
        top:40%;
        transform:translateY(-50%);
        width:36px;
        height:36px;
        border-radius:50%;
        background:rgba(255,255,255,0.12);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        cursor:pointer;
      }
      .nav-arrow.left{left:-12px}
      .nav-arrow.right{right:-12px}

      /* chat bubble */
      .chat-widget{
        position:fixed;
        right:22px;
        bottom:22px;
        z-index:1050;
        display:flex;
        gap:12px;
        align-items:center;
      }

      .chat-bubble{
        background:#fff;
        color:#0b2a44;
        padding:12px 14px;
        border-radius:10px;
        box-shadow:0 8px 24px rgba(2,12,40,0.2);
        max-width:220px;
        font-weight:600;
      }

      .chat-icon{
        width:56px;
        height:56px;
        border-radius:50%;
        background:linear-gradient(135deg,#0d6efd,#6610f2);
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-weight:800;
        box-shadow:0 8px 20px rgba(6,20,50,0.25);
      }

      /* small screens tweak */
      @media (max-width:575px){
        .avatar{width:120px;height:120px}
        .avatar-wrap{width:120px;bottom:-40px}
        .expert-card{padding-bottom:80px}
      }


.process-section{
        padding:4rem 1rem;
        text-align:center;
      }
     
      .process-section h2 span{color:#e63946}

      .process-card{
        background:#e6f2ff;
        border-radius:12px;
        padding:2rem 1.5rem;
        box-shadow:0 6px 16px rgba(6,20,50,0.08);
        transition:all .3s ease;
      }
      .process-card:hover{
        transform:translateY(-6px);
        box-shadow:0 10px 24px rgba(6,20,50,0.15);
      }
      .step-header{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:.75rem;
        margin-bottom:1rem;
		background-color:#f9f9f9;
		padding:10px;
		border: solid 1px #999999;
      }
      .step-icon{
        width:40px;
        height:40px;
        border-radius:50%;
        background:#0d6efd;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:1.25rem;
        flex-shrink:0;
      }
      .step-number{
        font-weight:700;
        color:#0d3559;
      }
      .process-card h5{
        font-weight:700;
        margin-bottom:.5rem;
        color:#0b2a44;
      }
      .process-card p{
        font-size:.95rem;
        color:#4a5c72;
        margin-bottom:0;
      }


  /* Section header */
    .section-head{
      text-align: left;
      max-width: 1100px;
      margin: 0 auto 30px;
      padding-left: 18px;
    }
    .section-head h1{
      font-size: 44px;
      font-weight: 800;
      letter-spacing: -0.6px;
      color: var(--title-black);
      margin-bottom: 6px;
    }
    .section-head h1 .highlight{
      color: var(--accent-red);
    }
    .section-head p{
      margin: 0 0 28px 0;
      font-size: 20px;
      color: #111;
      opacity: .9;
      font-weight: 500;
    }

    /* Pills grid */
    .pills-wrap{
      max-width: 1200px;
      margin: 0 auto 36px;
      padding: 0 18px;
    }
    .course-pill{
      position: relative;
      background:#eff7fe;
      border-radius: 60px;
      padding: 24px 28px;
      text-align: center;
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 0 rgba(0,0,0,0.02) inset;
      transition: transform .15s ease;
      overflow: visible;
    }
    .course-pill h5{
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      color: #111;
      line-height: 1.1;
      padding: 0 6px;
    }

    .course-pill:hover{
      transform: translateY(-4px);
    }

    /* decorative arcs on left and right (outer arc) */
    .course-pill::before,
    .course-pill::after{
      content: "";
      position: absolute;
      width: 46px;
      height: 86%;
      top: 6%;
      border: 4px solid var(--pill-border);
      border-left-color: transparent;
      border-right-color: transparent;
      border-top-left-radius: 60px;
      border-bottom-left-radius: 60px;
      pointer-events: none;
      background: transparent;
    }
    .course-pill::after{
      left: auto;
      right: -22px;
      transform: scaleX(-1);
      border-left-color: transparent;
      border-right-color: transparent;
    }
    .course-pill::before{
      left: -22px;
    }

    /* inner thin arc (closer to pill) */
    .course-pill .inner-arc-left,
    .course-pill .inner-arc-right{
      position: absolute;
      top: 10%;
      width: 36px;
      height: 80%;
      border: 3px solid rgba(72,86,110,0.12);
      border-left-color: transparent;
      border-right-color: transparent;
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
      pointer-events: none;
    }
    .course-pill .inner-arc-left{ left: -12px; transform: translateX(0); }
    .course-pill .inner-arc-right{ right: -12px; transform: scaleX(-1); }

    /* dotted separator at bottom inside the pill */
    .course-pill .dotted-bottom{
      position: absolute;
      bottom: 8px;
      left: 14%;
      right: 14%;
      height: 6px;
      background-image: linear-gradient(90deg, rgba(0,0,0,0.18) 33%, rgba(255,255,255,0) 0%);
      background-size: 12px 6px;
      opacity: .6;
      border-radius: 4px;
    }

    /* make pills responsive - spacing */
    .pill-col{
      padding: 18px;
    }

    /* Red CTA button */
    .cta-row{
      text-align: center;
      margin-top: 14px;
    }
    .btn-cta{
      background: var(--accent-red);
      color: #fff;
      padding: 14px 36px;
      border-radius: 40px;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(217,24,24,0.22);
      border: none;
      font-size: 18px;
    }
    .btn-cta:active{ transform: translateY(1px); box-shadow: 0 6px 12px rgba(0,0,0,0.12); }

    /* Chat bubble bottom right */
    .chat-bubble{
      position: fixed;
      right: 22px;
      bottom: 18px;
      max-width: 250px;
      background: #f1f3f5;
      color: #111;
      padding: 12px 14px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      font-size: 14px;
      line-height: 1.25;
      z-index: 9999;
    }
    .chat-icon{
      position: fixed;
      right: 18px;
      bottom: 12px;
      width: 54px;
      height: 54px;
      background: #08327a;
      border-radius: 50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color: #fff;
      font-weight:700;
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
      z-index: 10000;
      border: 4px solid #fff;
    }

    /* smaller screens adjustments */
    @media (max-width: 767.98px){
      .section-head h1{ font-size: 28px; }
      .section-head p{ font-size: 16px; }
      .course-pill{ padding: 18px 18px; min-height: 72px; }
      .course-pill::before, .course-pill::after { display: none; }
      .course-pill .inner-arc-left, .course-pill .inner-arc-right { display: none; }
      .pills-wrap{ padding: 0 14px; }
      .pill-col{ padding: 8px; }
      .btn-cta{ width: 70%; max-width: 320px; }
    }


 .hero-section {
      padding: 60px 0;
    }
    .hero-title {
      font-size: 34px;
      font-weight: 400;
      margin-bottom: 16px;
      color: #111;
    }
    .hero-title .highlight {
      color: #d91818; /* red word */
    }
    .hero-text {
      font-size: 16px;
      color: #333;
      margin-bottom: 24px;
    }
    .hero-list {
      list-style: none;
      padding: 0;
      margin-bottom: 28px;
    }
    .hero-list li {
      margin-bottom: 12px;
      font-size: 16px;
      color: #222;
    }
    .hero-list li i {
      color: #0d6efd;
      margin-right: 8px;
    }
    .btn-cta {
      background: #d91818;
      color: #fff;
      font-weight: 600;
      border-radius: 6px;
      padding: 12px 28px;
      font-size: 17px;
      box-shadow: 0 4px 12px rgba(217,24,24,0.25);
      border: none;
    }
    .image-box {
      background: #0d3c91; /* dark blue */
      border: 2px dashed #ff3b3b; /* red dashed border */
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .image-box i {
      font-size: 64px;
      color: #fff;
    }
	
	
	
    /* Highlight big card */
    .highlight-card {
      background: #fff;
      border-radius: 8px;
      padding: 40px 24px 30px;
      position: relative;
      text-align: left;
      height: 100%;
    }
    .highlight-card img.person {
      position: absolute;
      top: -127px;
      right: 20px;
      width: 140px;
      border-radius: 12px;
    }
    .highlight-icon {
      position: absolute;
      top: -28px;
      left: 30px;
      background: #153366;
      color: #fff;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      border: 4px solid #fff;
    }
    .highlight-card h4 {
      font-weight: 700;
      margin-top: 30px;
      margin-bottom: 12px;
      color: #153366;
    }
    .highlight-card p {
      margin: 0;
      font-size: 15px;
      color: #333;
    }
    @media (max-width: 991.98px) {
      .highlight-card img.person {
        position: static;
        margin: 0 auto 20px;
        display: block;
      }
      .highlight-icon {
        left: 50%;
        transform: translateX(-50%);
      }
      .highlight-card h4 {
        text-align: center;
        margin-top: 60px;
      }
      .highlight-card p {
        text-align: center;
      }
    }
