@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --fontFamily: "Poppins", sans-serif;
  /* --primaryColor: #3b8d83; */
  --primaryColor: #3b8c82;

  --secondaryColor: #c6ca4f;
  --bodyColor: #555555;
  --headingColor: #010101;
  --transition: all ease 0.7s;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --fontSize: 16px;
}

@media (max-width: 576px) {
  .row {
    padding: 15px; 
  }
}

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

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 500 !important;
  color: var(--blackColor);
  font-family: var(--fontFamily);
  margin-bottom: 0;
}

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

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

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

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

a {
  text-decoration: none;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  color: var(--bodyColor);
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 28px;
}
p:last-child {
  margin-bottom: 0;
}

/* default-btn 
==========================*/
.default-btn {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  padding: 15px 30px;
  display: inline-block;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fontFamily);
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.default-btn::after {
  content: "";
  position: absolute;
  background-color: var(--secondaryColor);
  width: 100%;
  height: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: var(--transition);
}
.default-btn i {
  position: relative;
  top: 3px;
  right: -3px;
}
.default-btn:hover {
  color: var(--whiteColor);
}
.default-btn:hover::after {
  height: 100%;
  top: 0;
}

/* section-title 
==========================*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.section-title.left-title {
  margin-left: unset;
  text-align: left;
}
.section-title .top-title {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 15px;
  color: var(--primaryColor);
  display: inline-block;
  margin-bottom: 15px;
}
.section-title h2 {
  font-size: 44px;
}

/* topnav Area 
==========================*/
.header-area {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000fa !important;
}
.header-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.top-left {
  padding-left: 0;
  margin: 0;
}
.top-left li {
  list-style-type: none;
  display: inline-block;
  padding-left: 25px;
  position: relative;
  margin-right: 15px;
}
.top-left li:last-child {
  padding-left: 0;
}
.top-left li a {
  font-size: 15px;
  font-family: var(--fontFamily);
  font-weight: 400;
  color: var(--whiteColor);
  transition: var(--transition);
}
.top-left li a:hover {
  color: var(--primaryColor);
}
.top-left li i {
  color: #46505d;
  position: absolute;
  left: 0;
  top: 57%;
  transform: translateY(-50%);
}
.top-left li .dropdown-toggle {
  border: none;
  background: transparent;
  color: #fff;
}
.top-left li .dropdown-toggle::after {
  border: none;
  content: "\f113";
  font-family: flaticon !important;
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
}
.top-left li .dropdown-toggle img {
  position: relative;
  top: -2.5px;
  margin-right: 5px;
}
.top-left li .dropdown-menu {
  padding: 0;
  color: var(--whiteColor);
  background-color: var(--secondaryColor);
}
.top-left li .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}

.top-right {
  text-align: right;
  padding-left: 0;
  margin: 0;
}
.top-right.top-right-two li a {
  border-radius: 50px;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.top-right li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.top-right li:last-child {
  margin-right: 0;
}
.top-right li a {
  background-color: #464f5c;
  width: 35px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  color: var(--whiteColor);
  transition: var(--transition);
}
.top-right li a:hover {
  background-color: var(--primaryColor);
}
.top-right li a:hover i {
  color: var(--whiteColor);
}
.top-right li a i {
  font-size: 17px;
}

/* Start Navbar Area
=============================*/
.navbar-area.is-sticky {
  position: -webkit-sticky !important;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--whiteColor);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transition: var(--transition);
  z-index: 9999;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.main-nav {
  background-color: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: unset;
}
.main-nav .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
.main-nav .white-logo {
  display: none;
}
.main-nav .navbar {
  padding-top: 0;
  padding-bottom: 0;
}
.main-nav nav .navbar-nav .nav-item .nav-link {
  color: var(--blackColor) !important;
  text-transform: unset;
  font-size: 16px;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.main-nav nav .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border: none;
  content: "\f113";
  font-family: flaticon !important;
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 14px;
}
.main-nav nav .navbar-nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.main-nav nav .navbar-nav .nav-item .nav-link.active::before {
  opacity: 1;
}
.main-nav nav .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  background-color: var(--primaryColor);
  width: 0;
  height: 3px;
  border-radius: 5px;
  left: 0;
  right: 0;
  bottom: -2px;
  transition: var(--transition);
  opacity: 0;
}
.main-nav nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--primaryColor);
}
.main-nav nav .navbar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
  width: 60%;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  background-color: var(--whiteColor);
  width: 250px;
  border: none;
  top: 68px;
  border-radius: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 8px;
  padding-left: 8px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item {
  position: relative;
  transition: var(--transition);
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
  padding: 10px;
  position: relative;
  transition: var(--transition);
  position: relative;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::after {
  content: "\f1af";
  font-family: "remixicon";
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  font-size: 15px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::before {
  display: none;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
  padding-left: 20px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover::after {
  opacity: 1;
  visibility: visible;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active {
  color: var(--primaryColor);
  padding-left: 20px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active::after {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.main-nav nav .navbar-nav .nav-item:hover ul {
  top: 127%;
}
.main-nav .others-options-vgs {
  margin-left: 35px;
}
.main-nav .others-options-vgs .option-item {
  display: inline-flex;
}
.main-nav .others-options-vgs .option-item .log-in {
  padding-left: 25px;
  position: relative;
}
.main-nav .others-options-vgs .option-item .log-in i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: var(--primaryColor);
}
.main-nav .others-options-vgs .option-item .log-in a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
  color: var(--secondaryColor);
  transition: var(--transition);
}
.main-nav .others-options-vgs .option-item .log-in a:hover {
  color: var(--primaryColor);
}
.main-nav .others-options-vgs .option-item .search-box {
  background-color: #f5f5f5;
  position: relative;
  margin-left: 18px;
  border-radius: 5px;
}
.main-nav .others-options-vgs .option-item .search-box .search-button {
  position: absolute;
  border: none;
  right: 8px;
  top: 51%;
  transform: translateY(-50%);
  background-color: transparent;
}
.main-nav .others-options-vgs .option-item .search-box .search-button i {
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 700;
}
.main-nav .others-options-vgs .option-item .search-box .input-search {
  border: none;
  background-color: transparent;
  padding: 15px 40px 15px 15px;
  color: var(--bodyColor);
  outline: 0;
}
.main-nav .others-options-vgs .option-item .search-box .input-search::-moz-placeholder {
  color: var(--bodyColor);
}
.main-nav .others-options-vgs .option-item .search-box .input-search:-ms-input-placeholder {
  color: var(--bodyColor);
}
.main-nav .others-options-vgs .option-item .search-box .input-search::placeholder {
  color: var(--bodyColor);
}
.main-nav .others-options-vgs .option-item .search-box .input-search:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.main-nav .others-options-vgs .option-item .search-box .input-search:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.main-nav .others-options-vgs .option-item .search-box .input-search:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.main-nav .others-options-vgs .option-item .default-btn {
  padding: 15px 25px;
  margin-left: 20px;
}

/* Start banner Area  
===============================*/
.banner-area {
  padding-top: 100px;
  padding-bottom: 177px;
  overflow: hidden;
}
.banner-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.single-banner-images {
  position: relative;
  text-align: center;
}
.single-banner-images img {
  border-radius: 10px;
}
.single-banner-images .banner-video-play {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-banner-images .banner-video-play a {
  background-color: var(--primaryColor);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50px;
  color: var(--whiteColor);
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.single-banner-images .banner-video-play a:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.single-banner-images .banner-video-play a::before {
  content: "";
  position: absolute;
  border: 3px solid #fff;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 50px;
  -webkit-animation: ripple 4s linear infinite;
          animation: ripple 4s linear infinite;
  z-index: -1;
}
.single-banner-images .banner-video-play a i {
  font-size: 20px;
  position: relative;
  top: 1.5px;
}

.single-banner-content {
  background-color: #f5f5f5;
  padding: 80px 320px 80px 80px;
  position: relative;
  margin-right: -285px;
  margin-bottom: -77px;
}
.single-banner-content ul {
  padding-left: 0;
  margin: 0;
}
.single-banner-content ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.single-banner-content ul li:last-child {
  margin-right: 0;
}
.single-banner-content ul li .default-btn.banner-btn {
  background-color: var(--secondaryColor);
}
.single-banner-content ul li .default-btn.banner-btn::after {
  background-color: var(--primaryColor);
}
.single-banner-content span {
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}
.single-banner-content h1 {
  font-size: 48px;
  margin-bottom: 13px;
}
.single-banner-content p {
  margin-bottom: 25px;
}

/* banner-three-area 
================================*/
.banner-three-area {
  padding-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.banner-three-area::before {
  content: "";
  position: absolute;
  background-image: url(../images/banner/banner-three-bg-image.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: heartBeat 20s infinite linear;
          animation: heartBeat 20s infinite linear;
}
.banner-three-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.banner-three-images {
  position: relative;
  padding-left: 50px;
}
.banner-three-images .banner-three-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
}

.single-banner-three-content {
  padding-left: 50px;
}
.single-banner-three-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.single-banner-three-content span {
  color: var(--primaryColor);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.single-banner-three-content p {
  margin-bottom: 25px;
  max-width: 650px;
}
.single-banner-three-content ul {
  padding-left: 0;
  margin: 0;
}
.single-banner-three-content ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
}
.single-banner-three-content ul li:last-child {
  margin-right: 0;
}

/* working process
====================*/
.single-working-content {
  text-align: center;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-working-content .booking {
  position: relative;
  width: 85px;
  height: 85px;
  line-height: 95px;
  border: 1px dashed var(--secondaryColor);
  border-radius: 50px;
  z-index: 1;
  color: var(--whiteColor);
  font-size: 28px;
  margin-bottom: 25px;
  display: inline-block;
}
.single-working-content .booking::after {
  content: "";
  position: absolute;
  background-color: var(--secondaryColor);
  width: 90%;
  height: 89%;
  left: 5px;
  right: 0;
  top: 5px;
  bottom: 0;
  border-radius: 50px;
  z-index: -1;
  transition: var(--transition);
}
.single-working-content .booking i {
  position: relative;
  top: -3px;
}
.single-working-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  transition: var(--transition);
}
.single-working-content h3 a {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.single-working-content p {
  max-width: 240px;
  margin: auto;
}
.single-working-content:hover {
  transform: translateY(-10px);
}
.single-working-content:hover h3 a {
  color: var(--primaryColor);
}
.single-working-content:hover .booking::after {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

/* Start Company Feature Area 
=======================*/
.single-feature-card {
  background-color: #ffffff;
  border: 1px solid #9e9c9c;
  padding: 30px;
  height: 468px !important;
  border-radius: 5px;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.single-feature-card .feature-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.2;
}
.single-feature-card .feature-shape-2 {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.2;
}
.single-feature-card .feature-shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
}
.single-feature-card .analysis-icon {
  background-color: #46505d;
  margin-bottom: 25px;
  width: 50px;
  height: 50px;
  line-height: 54px;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  text-align: center;
  transition: var(--transition);
  font-size: 27px;
}
.single-feature-card h3 {
  font-size: 20px;
  margin-bottom: 13px;
  transition: var(--transition);
}
.single-feature-card h3 a {
  color: var(--headingColor);
  transition: var(--transition);
}
.single-feature-card p {
  margin-bottom: 19px;
}
.single-feature-card .feature-btn {
  background-color: #46505d;
  width: 30px;
  height: 25px;
  line-height: 28px;
  text-align: center;
  border-radius: 5px;
  transition: var(--transition);
}
.single-feature-card .feature-btn a {
  color: var(--whiteColor);
}
.single-feature-card:hover h3 a {
  color: var(--primaryColor);
}
.single-feature-card:hover .analysis-icon {
  background-color: var(--primaryColor);
}
.single-feature-card:hover .feature-btn {
  background-color: var(--primaryColor);
}

/* Start About area 
===============================*/
.single-about-img {
  padding-right: 20px;
}

.single-about-content {
  padding-left: 20px;
}
.single-about-content span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
  color: var(--primaryColor);
  margin-bottom: 10px;
  display: inline-block;
}
.single-about-content h2 {
  font-size: 44px;
  margin-bottom: 18px;
}
.single-about-content p {
  margin-bottom: 20px;
}
.single-about-content .about-card {
  padding-left: 80px;
  position: relative;
}
.single-about-content .about-card .about-icon {
  background-color: var(--primaryColor);
  width: 60px;
  height: 60px;
  line-height: 67px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 5px;
  transition: var(--transition);
}
.single-about-content .about-card .about-icon i {
  color: var(--whiteColor);
  font-size: 30px;
}
.single-about-content .about-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.single-about-content .about-card:hover .about-icon {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.single-about-content .default-btn {
  margin-top: 10px;
}

/*  Start Partners area 
===============================*/
.partners-are-two.bg-color-6 {
  position: relative;
  z-index: 1;
}
.partners-are-two.bg-color-6::after {
  content: "";
  position: absolute;
  background-color: #f5f5f5;
  width: 100%;
  height: 72%;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.partners-logo {
  background-color: #f5f5f5;
  padding: 30px;
  transition: var(--transition);
}
.partners-logo.about-logo-image {
  background-color: transparent;
  padding: 0;
}
.partners-logo.partners-logo-two {
  border: 1px solid #f5f5f5;
  background-color: var(--whiteColor);
  transition: var(--transition);
  border-radius: 5px;
}
.partners-logo.partners-logo-two img {
  opacity: 1;
}
.partners-logo.partners-logo-two:hover {
  border: 1px solid var(--primaryColor);
}
.partners-logo img {
  width: auto !important;
  height: 130px !important;
  margin: 0;
  transition: var(--transition);
  margin-left: auto;
  margin-right: auto;
}

/* Page-navigation Area Style
===================================*/
.pagination-area {
  text-align: center;
  margin-top: 0;
}
.pagination-area.blog-pagination-area {
  text-align: start;
}
.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(17, 17, 17, 0.08);
  color: var(--secondaryColor);
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  font-family: var(--fontFamily);
  border-radius: 5px;
  transition: var(--transition);
}
.pagination-area .page-numbers:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.pagination-area .page-numbers:hover i {
  color: var(--whiteColor);
}
.pagination-area .page-numbers i {
  font-size: 18px;
  font-weight: 900;
  position: relative;
  top: 2.5px;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.pagination-area .page-numbers.current {
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.pagination-area .page-numbers.current:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

/* Start services slider area 
===================================*/
.company-feature-area.bg-color-7 {
  background-color: #f5f5f5;
}
.company-feature-area.bg-color-7 .single-feature-card {
  background-color: var(--whiteColor);
}

.services-area {
  background-color: #f5f5f5;
  overflow: hidden;
}

.provided-content {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.provided-content .section-title-left span {
  color: var(--primaryColor);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
  display: inline-block;
  margin-bottom: 8px;
}
.provided-content .section-title-left h2 {
  font-size: 48px;
}
.provided-content .button {
  text-align: right;
}

.services-slider-content {
  background-color: var(--whiteColor);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition);
}
.services-slider-content.services-pages-content {
  margin-bottom: 30px;
}
.services-slider-content .services-slider-img {
  overflow: hidden;
}
.services-slider-content .services-slider-img img {
  border-radius: 5px 5px 0px 0px;
  transition: var(--transition);
}
.services-slider-content .single-feature-card {
  background-color: transparent;
  margin-bottom: 0;
}
.services-slider-content:hover .services-slider-img img {
  transform: scale(1.2);
}
.services-slider-content:hover .single-feature-card .analysis-icon {
  background-color: var(--primaryColor);
}
.services-slider-content:hover .single-feature-card h3 a {
  color: var(--primaryColor);
}
.services-slider-content:hover .single-feature-card .feature-btn {
  background-color: var(--primaryColor);
}

.services-slider.owl-theme .owl-nav [class*=owl-] {
  padding: 0;
  background: var(--primaryColor);
  border-radius: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  left: 100px;
  color: var(--whiteColor);
  transition: var(--transition);
}
.services-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.services-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 100px;
}

/* portfolios-area-two 
===========================*/
.portfolios-area-two {
  background-color: #f5f5f5;
}
.portfolios-area-two.bg-color-4 {
  background-color: transparent;
}

.single-gallery-item-two {
  position: relative;
  transition: var(--transition);
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
}
.single-gallery-item-two.portfolios-three-card {
  position: relative;
}
.single-gallery-item-two.portfolios-three-card::after {
  content: "";
  position: absolute;
  background-color: var(--secondaryColor);
  width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  transition: var(--transition);
  opacity: 0.7;
}
.single-gallery-item-two.portfolios-three-card:hover::after {
  height: 100%;
  bottom: 0;
}
.single-gallery-item-two.portfolios-three-card:hover .portfolios-text {
  z-index: 1;
}
.single-gallery-item-two.portfolios-three-card:hover .portfolios {
  z-index: 2;
}
.single-gallery-item-two .portfolios-img {
  overflow: hidden;
  border-radius: 5px;
}
.single-gallery-item-two .portfolios-img img {
  transition: var(--transition);
  border-radius: 5px;
}
.single-gallery-item-two .portfolios a {
  color: var(--secondaryColor);
}
.single-gallery-item-two .portfolios a i {
  background-color: var(--primaryColor);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--whiteColor);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 50px;
  bottom: 58px;
  opacity: 0;
  z-index: 2;
  transition: var(--transition);
}
.single-gallery-item-two .portfolios a i:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.single-gallery-item-two .portfolios-text {
  background-color: var(--whiteColor);
  padding: 20px;
  transform: translateY(-159%);
  border-radius: 5px;
  position: absolute;
  transition: var(--transition);
  margin: 30px;
  left: 0;
  right: 0;
  opacity: 0;
}
.single-gallery-item-two .portfolios-text h3 {
  font-size: 22px;
  transition: var(--transition);
  margin-bottom: 10px;
}
.single-gallery-item-two .portfolios-text h3 a {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.single-gallery-item-two .portfolios-text h3:hover a {
  color: var(--primaryColor);
}
.single-gallery-item-two:hover .portfolios a i {
  opacity: 1;
}
.single-gallery-item-two:hover .portfolios-text {
  opacity: 1;
}
.single-gallery-item-two:hover .portfolios-img img {
  transform: scale(1.1);
}

.portfolios-three-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: -55px;
  font-size: 18px;
  padding: 0 !important;
  background-color: var(--primaryColor);
  display: inline-block;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.portfolios-three-slider.owl-theme .owl-nav [class*=owl-] i {
  position: relative;
  top: 2px;
}
.portfolios-three-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.portfolios-three-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -55px;
}

/* Start partners area
=============================*/
.partners-logo-three a img {
  width: auto !important;
  margin: 0;
}

.video-play-img {
  margin-top: 100px;
  text-align: center;
  position: relative;
}
.video-play-img .video-play-three {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.video-play-img .video-play-three a {
  width: 70px;
  height: 70px;
  line-height: 63px;
  display: inline-block;
  background-color: var(--primaryColor);
  border: 5px solid #ffffff;
  border-radius: 50px;
  color: var(--whiteColor);
  transition: var(--transition);
  position: relative;
}
.video-play-img .video-play-three a::after {
  content: "";
  position: absolute;
  background-color: #e5a9a9;
  width: 140%;
  height: 140%;
  left: -12px;
  top: -12px;
  right: 0;
  text-align: center;
  z-index: -1;
  border-radius: 50px;
  opacity: 0.4;
  -webkit-animation: ripple 7s linear infinite;
          animation: ripple 7s linear infinite;
}
.video-play-img .video-play-three a:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}

/* choose-area 
============================*/
.choose-area {
  position: relative;
  background-color: #182333;
  z-index: 1;
}
.choose-area .section-title {
  margin-bottom: 80px;
}
.choose-area .section-title h2 {
  color: var(--whiteColor);
}
.choose-area .choose-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.choose-area .choose-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.single-choose-card {
  background-color: rgba(70, 79, 92, 0.4);
  padding: 50px 30px 25px 30px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.single-choose-card::after {
  background-color: var(--whiteColor);
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}
.single-choose-card .choose-icon {
  background-color: var(--primaryColor);
  width: 55px;
  height: 55px;
  line-height: 60px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: -28px;
  transition: var(--transition);
}
.single-choose-card .choose-icon i {
  color: var(--whiteColor);
  font-size: 25px;
  transition: var(--transition);
}
.single-choose-card h3 {
  color: var(--whiteColor);
  font-size: 22px;
  margin-bottom: 13px;
  transition: var(--transition);
}
.single-choose-card p {
  color: var(--whiteColor);
  margin-bottom: 0;
  transition: var(--transition);
}
.single-choose-card:hover h3 {
  color: var(--headingColor);
}
.single-choose-card:hover p {
  color: var(--headingColor);
}
.single-choose-card:hover::after {
  height: 100%;
  opacity: 1;
  top: 0;
}

/* team area 
==================*/
.single-team-member-content {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 5px;
}
.single-team-member-content .team-img {
  overflow: hidden;
}
.single-team-member-content .team-img img {
  border-radius: 5px 5px 0px 0px;
  transition: var(--transition);
}
.single-team-member-content .single-team-item {
  background-color: #f5f5f5;
  padding: 25px;
}
.single-team-member-content .single-team-item .team-content-bg .alex {
  font-size: 22px;
  margin-bottom: 10px;
}
.single-team-member-content .single-team-item .team-icon {
  transition: var(--transition);
}
.single-team-member-content .single-team-item .team-icon .share {
  background-color: var(--primaryColor);
  width: 40px;
  height: 40px;
  line-height: 43px;
  border-radius: 5px;
  color: var(--whiteColor);
  text-align: center;
  font-size: 20px;
  display: inline-block;
  transition: var(--transition);
}
.single-team-member-content .single-team-item .team-icon ul {
  padding-left: 0;
  margin: 0;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: 30px;
  opacity: 0;
  transition: var(--transition);
}
.single-team-member-content .single-team-item .team-icon ul li {
  list-style-type: none;
  margin-bottom: 10px;
  transition: var(--transition);
}
.single-team-member-content .single-team-item .team-icon ul li:last-child {
  margin-bottom: 0;
}
.single-team-member-content .single-team-item .team-icon ul li a {
  background-color: var(--whiteColor);
  width: 35px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}
.single-team-member-content .single-team-item .team-icon ul li a i {
  color: var(--headingColor);
  font-size: 15px;
  transition: var(--transition);
}
.single-team-member-content .single-team-item .team-icon ul li a:hover {
  background-color: var(--primaryColor);
}
.single-team-member-content .single-team-item .team-icon ul li a:hover i {
  color: var(--whiteColor);
}
.single-team-member-content .single-team-item .team-icon:hover .share {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.single-team-member-content .single-team-item .team-icon:hover ul {
  opacity: 1;
}
.single-team-member-content:hover .team-img img {
  transform: scale(1.2) rotate(3deg);
}

.team-two-item {
  transition: var(--transition);
}
.team-two-item.bg-color-5 {
  margin-bottom: 30px;
}
.team-two-item.bg-color-5 .team-two-images {
  margin-bottom: 20px;
  text-align: center;
}
.team-two-item.bg-color-5 .team-two-images.team-three {
  position: relative;
}
.team-two-item.bg-color-5 .team-two-images.team-three::before {
  background-color: var(--secondaryColor);
  border-radius: 50%;
  width: 400px;
  height: 4000px;
  left: 6px;
  right: 0;
  top: 37px;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: -1;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
}
.team-two-item.bg-color-5 .team-two-images.team-three.team-three-bg-1::before {
  left: -5px;
  top: 33px;
}
.team-two-item.bg-color-5 .team-two-images.team-three.team-three-bg-2::before {
  left: -4px;
  top: 34px;
}
.team-two-item.bg-color-5 .team-two-images.team-three.team-three-bg-3::before {
  top: 36px;
  left: -12px;
}
.team-two-item.bg-color-5:hover .team-two-images.team-three::before {
  background-color: var(--primaryColor);
}
.team-two-item .team-three-text {
  text-align: center;
}
.team-two-item .team-three-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.team-two-item .team-three-text p {
  margin-bottom: 15px;
}
.team-two-item .team-three-text ul {
  padding-left: 0;
  margin: 0;
}
.team-two-item .team-three-text ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.team-two-item .team-three-text ul li:last-child {
  margin-right: 0;
}
.team-two-item .team-three-text ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  color: var(--secondaryColor);
  font-size: 15px;
  display: inline-block;
  border: 1px solid #f5f5f5;
  transition: var(--transition);
}
.team-two-item .team-three-text ul li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.team-two-item:hover {
  transform: translateY(-10px);
}

/* Privacy Policy
====================================*/
.privacy-policy-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.privacy-policy-content p {
  margin-bottom: 20px;
}
.privacy-policy-content p:last-child {
  margin-bottom: 0;
}

/* Start Error area  
====================**/
.error-content {
  text-align: center;
}
.error-content img {
  margin-bottom: 30px !important;
  width: auto !important;
  margin: 0;
}
.error-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.error-content p {
  max-width: 550px;
  margin: auto;
}
.error-content .default-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: flex;
  margin-top: 25px;
}

/* Start My Account area  
================================*/
.login-account-content {
  background-color: #F7F7F7;
  padding: 30px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.login-account-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
.login-account-content .form-control {
  padding: 15px;
  border: none;
  background-color: var(--whiteColor);
  border-radius: 0px;
  margin-bottom: 20px;
  color: var(--bodyColor);
}
.login-account-content .form-control::-moz-placeholder {
  color: var(--bodyColor);
  font-size: 16px;
  font-weight: 400;
}
.login-account-content .form-control:-ms-input-placeholder {
  color: var(--bodyColor);
  font-size: 16px;
  font-weight: 400;
}
.login-account-content .form-control::placeholder {
  color: var(--bodyColor);
  font-size: 16px;
  font-weight: 400;
}
.login-account-content .form-control:focus {
  box-shadow: none;
}
.login-account-content .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.login-account-content .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.login-account-content .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.login-account-content .form-check {
  margin-bottom: 20px;
}
.login-account-content .form-check .form-check-input {
  border-radius: 50px;
}
.login-account-content .form-check .form-check-input:focus {
  box-shadow: none;
}
.login-account-content .form-check .form-check-label {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fontFamily);
  color: var(--bodyColor);
}
.login-account-content .text-account {
  text-align: end;
  margin-bottom: 20px;
}
.login-account-content .text-account p {
  text-align: end;
}
.login-account-content .text-account a {
  font-weight: 400;
  font-family: var(--fontFamily);
  font-size: 16px;
  color: var(--primaryColor);
  position: relative;
}
.login-account-content .text-account a::after {
  content: "";
  position: absolute;
  background-color: var(--primaryColor);
  height: 1px;
  width: 0;
  left: 0;
}
.login-account-content .default-btn {
  width: 100%;
  border: none;
  border-radius: 0px;
  margin-bottom: 20px;
}
.login-account-content .border-or {
  text-align: center;
  position: relative;
}
.login-account-content .border-or::after {
  content: "";
  position: absolute;
  background-color: #E1E1E1;
  width: 45%;
  height: 1px;
  left: 0;
  top: 50%;
}
.login-account-content .border-or::before {
  content: "";
  position: absolute;
  background-color: #E1E1E1;
  width: 45%;
  height: 1px;
  right: 0;
  top: 50%;
}
.login-account-content .border-or span {
  font-weight: 400;
  font-family: var(--fontFamily);
  font-size: 16px;
  color: var(--bodyColor);
}
.login-account-content .facebook-button {
  text-align: center;
}
.login-account-content .facebook-button .login-button {
  background-color: #3B5998;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  transition: var(--transition);
}
.login-account-content .facebook-button .login-button:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.login-account-content .facebook-button .google-button {
  background-color: #219685;
  transition: var(--transition);
}
.login-account-content .facebook-button .google-button:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.login-account-content p {
  text-align: center;
}
.login-account-content p a {
  font-size: 15px;
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--primaryColor);
  margin-left: 5px;
}

/* Coming Soon Area CSS
====================================*/
.coming-soon-area {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.coming-soon-area::before {
  background-image: url(../images/banner/banner-two-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  position: absolute;
  -webkit-animation: heartBeat 25s infinite linear;
          animation: heartBeat 25s infinite linear;
}

.coming-soon-content {
  max-width: 650px;
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 45px;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin: 0 auto 0 0;
}
.coming-soon-content .logo {
  display: inline-block;
}
.coming-soon-content .logo .white-logo {
  display: none;
}
.coming-soon-content h2 {
  font-size: 45px;
  margin-top: 30px;
  margin-bottom: 0;
}
.coming-soon-content #timer {
  margin-top: 35px;
}
.coming-soon-content #timer div {
  background: var(--primaryColor);
  color: var(--whiteColor);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
  transition: var(--transition);
}
.coming-soon-content #timer div:hover {
  transform: translateY(-5px);
}
.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 500;
}
.coming-soon-content form {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
}
.coming-soon-content form .form-group {
  margin-bottom: 15px;
}
.coming-soon-content form .form-group .form-control {
  height: 55px;
  padding: 15px 20px;
  line-height: initial;
  color: var(--bodyColor);
  background-color: var(--whiteColor);
  border: 1px solid #E5E7EC;
  box-shadow: -12px 8px 25px rgba(217, 35, 12, 0.03);
  border-radius: 5px;
  transition: var(--transition);
  font-size: 16px;
  font-weight: 400;
}
.coming-soon-content form .form-group .form-control::-moz-placeholder {
  color: var(--bodyColor);
}
.coming-soon-content form .form-group .form-control:-ms-input-placeholder {
  color: var(--bodyColor);
}
.coming-soon-content form .form-group .form-control::placeholder {
  color: var(--bodyColor);
}
.coming-soon-content form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.coming-soon-content form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.coming-soon-content form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.coming-soon-content form .default-btn {
  width: 100%;
  border: none;
}
.coming-soon-content form .default-btn::before {
  width: 850px;
  height: 850px;
}
.coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: red;
}
.coming-soon-content form .validation-success {
  margin-top: 15px;
}

/* Testimonials Area 
==============================*/
.testimonials-area {
  background-color: #f5f5f5;
}
.testimonials-area .section-title-left {
  margin-bottom: 50px;
  padding-left: 30px;
}
.testimonials-area .section-title-left span {
  color: var(--primaryColor);
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
}
.testimonials-area .section-title-left h2 {
  font-size: 40px;
  font-weight: bold;
}

.testimonials-img img {
  border-radius: 5px;
}

.testimonials-text {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
.testimonials-text .testimonials-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
}
.testimonials-text .testimonials-shape img {
  width: auto !important;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-text i {
  background-color: #e06565;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--whiteColor);
  border-radius: 5px;
  margin-bottom: 20px;
  display: inline-block;
  text-align: center;
  font-size: 30px;
}
.testimonials-text p {
  font-size: 14px;
  color: var(--headingColor);
  font-family: var(--fontFamily);
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 565px;
}
.testimonials-text .senior h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.testimonials-text .senior p {
  margin-bottom: 0;
}

.testimonials-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--whiteColor);
  font-size: 20px;
  padding: 0 !important;
  background: var(--primaryColor);
  display: inline-block;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  position: absolute;
  top: 22%;
  transform: translateY(-50%);
  left: -112%;
  transition: var(--transition);
}
.testimonials-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.testimonials-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -30px;
}

/* Counter - Area 
==============================*/
.counter-area {
  position: relative;
  background-image: url(../images/choose.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.counter-area.bg-images-1 {
  background-image: var(--transition);
}
.counter-area.bg-images-1 .counter {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.counter-area.bg-images-1 .counter.about-counter {
  margin-bottom: -100px;
  position: relative;
  z-index: 2;
}
.counter-area.counter-two {
  background-image: url(../images/counter-two-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-color: transparent;
}
.counter-area.counter-two.counter-three-area {
  padding-top: 360px;
  margin-top: -260px;
  z-index: -1;
}

.counter {
  background-color: var(--whiteColor);
  padding: 50px;
  border-radius: 5px;
}
.counter.bg-color-2 {
  background-color: transparent;
  padding: 0;
}

.counter-content {
  text-align: center;
}
.counter-content.content-two {
  position: relative;
  z-index: 2;
  margin-bottom: 35px;
  margin-top: 30px;
}
.counter-content.content-two::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 100%;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;
  border: 2px solid #9e9c9c;
  z-index: -1;
}
.counter-content.content-two::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50px;
  right: 40px;
  top: 28px;
  z-index: 1;
  background-color: var(--primaryColor);
}
.counter-content.content-two h2 {
  color: var(--whiteColor);
  position: relative;
  top: -4px;
}
.counter-content.content-two h2 .target {
  margin-left: -4px;
  position: relative;
}
.counter-content.content-two p {
  color: var(--whiteColor);
}
.counter-content i {
  color: var(--primaryColor);
  font-size: 55px;
  margin-bottom: 0;
}
.counter-content h2 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 0;
}
.counter-content h2 .target {
  position: relative;
  top: 0;
  left: -7px;
  font-size: 34px;
  font-weight: bold;
}

/* our news articles
=============================*/
.articles-area {
  background-color: #f5f5f5;
}
.articles-area.bg-color-3 {
  background-color: transparent;
}

.articles-content {
  margin-bottom: 30px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
}
.articles-content.blog-content-two {
  background-color: var(--whiteColor);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.articles-content.blog-content-two ul {
  padding-left: 0;
  margin: 0;
  margin-bottom: 15px;
}
.articles-content.blog-content-two ul li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--bodyColor);
  font-family: var(--fontFamily);
  margin-right: 20px;
  padding-left: 25px;
  position: relative;
}
.articles-content.blog-content-two ul li:last-child {
  margin-right: 0;
}
.articles-content.blog-content-two ul li i {
  color: var(--primaryColor);
  position: absolute;
  font-size: 15px;
  left: 0;
  top: 2px;
}
.articles-content.blog-content-two .articles-text p {
  margin-bottom: 15px;
}
.articles-content.blog-content-two .articles-text .read-more-btn {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.articles-content.blog-content-two .articles-text .read-more-btn a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
  color: var(--secondaryColor);
  transition: var(--transition);
}
.articles-content.blog-content-two .articles-text .read-more-btn a i {
  position: relative;
  top: 4px;
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 800;
  left: 3px;
}
.articles-content .blog-image {
  overflow: hidden;
}
.articles-content .blog-image img {
  border-radius: 5px 5px 0px 0px;
  transition: var(--transition);
}
.articles-content .articles-text {
  background-color: var(--whiteColor);
  padding: 33px;
  position: relative;
  transition: var(--transition);
  border-radius: 0px 0px 5px 5px;
}
.articles-content .articles-text h3 {
  font-size: 21px;
  font-weight: bold;
  font-family: var(--fontFamily);
  margin-bottom: 15px;
  line-height: 30px;
  transition: var(--transition);
}
.articles-content .articles-text p {
  margin-bottom: 25px;
}
.articles-content .articles-text .blog-btn-two {
  background-color: var(--headingColor);
  width: 35px;
  height: 29px;
  line-height: 29px;
  display: flex;
  font-size: 20px;
  color: var(--whiteColor);
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: var(--transition);
}
.articles-content .articles-text .blog-btn-two a {
  color: var(--whiteColor);
}
.articles-content .articles-text .blog-btn-two a i {
  position: relative;
  top: 1.5px;
}
.articles-content .articles-text .latest-blog {
  margin-bottom: 15px;
}
.articles-content .articles-text .latest-blog i {
  color: var(--primaryColor);
  margin-right: 5px;
  font-size: 12px;
}
.articles-content .articles-text .latest-blog span {
  font-size: 16px;
  color: var(--bodyColor);
}
.articles-content:hover .articles-text h3 {
  color: var(--primaryColor);
}
.articles-content:hover .articles-text .blog-btn-two {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.articles-content:hover .articles-text .read-more-btn a {
  color: var(--primaryColor);
}
.articles-content:hover .articles-text .read-more-btn a i {
  color: var(--whiteColor);
}
.articles-content:hover .blog-image img {
  transform: scale(1.1);
}
.articles-content .blog-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.4;
}

/* make an appointment 
======================================*/
.appointment-item {
  background-color: var(--whiteColor);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 10px;
  position: relative;
  margin-bottom: -160px;
}
.appointment-item .appointment-images {
  border-radius: 10px 0px 0px 10px;
  background-image: url(../images/appointment.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 615px;
}
.appointment-item.appointment-two {
  padding: 30px;
}
.appointment-item.appointment-two .appointment-img {
  text-align: center;
}
.appointment-item.appointment-two .appointment-form {
  padding: 20px 20px 20px 0px;
}
.appointment-item .appointment-img {
  text-align: center;
}

.appointment-form {
  padding: 50px 50px 50px 30px;
}
.appointment-form .section-title {
  text-align: left;
  margin-bottom: 30px;
}
.appointment-form .section-title h2 {
  margin-bottom: 15px;
  font-size: 40px;
}
.appointment-form .make-from.make-from-three .default-btn {
  width: unset;
  border: none;
}
.appointment-form .make-from .form-control {
  padding: 15px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: var(--bodyColor);
}
.appointment-form .make-from .form-control::-moz-placeholder {
  color: var(--bodyColor);
}
.appointment-form .make-from .form-control:-ms-input-placeholder {
  color: var(--bodyColor);
}
.appointment-form .make-from .form-control::placeholder {
  color: var(--bodyColor);
}
.appointment-form .make-from .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primaryColor);
}
.appointment-form .make-from .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.appointment-form .make-from .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.appointment-form .make-from .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.appointment-form .make-from .default-btn {
  width: 100%;
  border: none;
}

/* services three 
======================*/
.our-services-area {
  background-color: #f5f5f5;
}

.our-best-services-area .default-btn {
  margin: auto;
  margin-bottom: 30px;
}

.our-best-services-slider.owl-theme .owl-nav .owl-prev, .our-best-services-slider.owl-theme .owl-nav .owl-next {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: var(--primaryColor);
  border-radius: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  transition: var(--transition);
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.our-best-services-slider.owl-theme .owl-nav .owl-prev i, .our-best-services-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 1px;
}
.our-best-services-slider.owl-theme .owl-nav .owl-prev:hover, .our-best-services-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--secondaryColor);
}
.our-best-services-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -55px;
}

.best-services-card {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  transition: var(--transition);
  border: 1px solid rgba(217, 214, 214, 0.5);
  margin-left: 1px;
  margin-right: 1px;
  border-radius: 5px;
}
.best-services-card .best-icon {
  position: absolute;
  right: 10px;
  font-size: 80px;
  opacity: 0.5;
  opacity: 0.1;
  top: 15px;
  margin-bottom: 0;
}
.best-services-card i {
  font-size: 50px;
  transition: var(--transition);
  color: var(--secondaryColor);
  display: inline-flex;
  margin-bottom: 22px;
}
.best-services-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.best-services-card h3 a {
  color: var(--secondaryColor);
}
.best-services-card p {
  margin-bottom: 10px;
  transition: var(--transition);
}
.best-services-card .read-more a {
  color: var(--secondaryColor);
  font-size: 16px;
  font-weight: 600;
}
.best-services-card .read-more a i {
  position: relative;
  left: 5px;
  top: 5.4px;
  font-size: 18px;
  transition: var(--transition);
  margin-bottom: 0;
}
.best-services-card:hover {
  border: 1px solid var(--primaryColor);
}
.best-services-card:hover i {
  color: var(--primaryColor);
}
.best-services-card:hover h3 {
  color: var(--primaryColor);
}
.best-services-card:hover a {
  color: var(--primaryColor);
}
.best-services-card:hover a i {
  color: var(--primaryColor);
}

.services-btn {
  text-align: center;
}

/* Start Choose-three 
=========================*/
.choose-three {
  background-color: #f5f5f5;
  overflow: hidden;
}
.choose-three .choose-three-img {
  margin-bottom: 30px;
}

.choose-three-content .section-title {
  margin-bottom: 35px;
}
.choose-three-content .section-title h2 {
  font-size: 44px;
}

.faq-accordion .accordion {
  margin: 0;
  padding-left: 0;
}
.faq-accordion .accordion .accordion-item {
  list-style-type: none;
  display: block;
  margin-bottom: 0px;
  border: none;
  border-radius: 0px !important;
  background-color: transparent;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item .accordion-title {
  padding: 15px 15px 15px 50px;
  color: var(--secondaryColor);
  text-decoration: none;
  position: relative;
  border-radius: 5px !important;
  display: block;
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: bold;
}
.faq-accordion .accordion .accordion-item .accordion-title.active {
  color: var(--primaryColor);
}
.faq-accordion .accordion .accordion-item .accordion-title.active .add {
  display: none !important;
}
.faq-accordion .accordion .accordion-item .accordion-title.active .subtract {
  display: block;
  color: #e47f7f;
  width: 35px;
  height: 35px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  top: 54%;
  transform: translateY(-50%) rotate(29deg);
}
.faq-accordion .accordion .accordion-item .accordion-title.active .accordion-content {
  padding: 20px;
}
.faq-accordion .accordion .accordion-item .accordion-title .add {
  position: absolute;
  left: 10px;
  top: 46%;
  transform: translateY(-50%) rotate(209deg);
  font-size: 18px;
  color: var(--secondaryColor);
  width: 35px;
  height: 35px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
}
.faq-accordion .accordion .accordion-item .accordion-title .subtract {
  position: absolute;
  left: 10px;
  top: 10px;
  display: none;
  font-size: 18px;
}
.faq-accordion .accordion .accordion-item .accordion-content {
  display: none;
  padding: 0px 20px 20px 20px;
}
.faq-accordion .accordion .accordion-item .accordion-content p {
  font-size: 16px;
}
.faq-accordion .accordion .accordion-item .accordion-content.show {
  display: block;
}
.faq-accordion .accordion .accordion-item .accordion-content.show .add {
  display: none;
}

/* Start Faqs Area
=====================================*/
.single-faqs-content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.single-faqs-content .faq-accordion .accordion .accordion-item {
  background-color: var(--whiteColor);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  margin-bottom: 30px;
  border-radius: 5px !important;
}
.single-faqs-content .faq-accordion .accordion .accordion-item .accordion-title {
  padding: 18px;
}
.single-faqs-content .faq-accordion .accordion .accordion-item .accordion-title .add {
  left: auto;
  right: 10px;
  color: #555555;
  font-size: 16px;
  transform: translateY(-50%) rotate(0deg);
}
.single-faqs-content .faq-accordion .accordion .accordion-item .accordion-title .subtract {
  left: auto;
  right: 10px;
  color: #555555;
  font-size: 16px;
}
.single-faqs-content .faq-accordion .accordion .accordion-item .accordion-title.active .subtract {
  transform: translateY(-50%) rotate(0deg);
}
.single-faqs-content .faq-accordion .accordion .accordion-item .accordion-content {
  padding: 0px 20px 20px 20px;
}

/* About Three Area
=====================================*/
.about-three-area {
  background-color: #f5f5f5;
  overflow: hidden;
}

.about-three-img {
  position: relative;
}
.about-three-img .about-shape-three {
  position: absolute;
  bottom: 11px;
  right: 0;
}

.about-three-content {
  margin-right: 35px;
  margin-bottom: 30px;
}
.about-three-content .section-title {
  margin-bottom: 20px;
}
.about-three-content .top-title {
  margin-bottom: 10px;
  display: block;
}
.about-three-content h2 {
  margin-bottom: 20px;
}
.about-three-content p {
  margin-bottom: 30px;
}

.about-three-card {
  border: 1px solid rgba(158, 156, 156, 0.5);
  padding: 20px 20px 20px 70px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
  transition: var(--transition);
}
.about-three-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.about-three-card i {
  font-size: 30px;
  position: absolute;
  left: 20px;
  color: var(--primaryColor);
}
.about-three-card p {
  margin-bottom: 0;
}
.about-three-card:hover {
  border: 1px solid var(--primaryColor);
}

/* Start Services Details Area
=======================================*/
.services-details-area {
  position: relative;
  overflow: hidden;
}

.services-details-content .services-details-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 25px;
}
.services-details-content .services-details-img img {
  transition: var(--transition);
}
.services-details-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.services-details-content p {
  margin-bottom: 20px;
}
.services-details-content .details-list {
  padding-left: 0;
  margin: 0;
  margin-bottom: 25px;
}
.services-details-content .details-list li {
  list-style-type: none;
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 16px;
  color: var(--blackColor);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.services-details-content .details-list li i {
  position: absolute;
  left: 0;
  color: var(--primaryColor);
  top: 60%;
  transform: translateY(-50%);
}
.services-details-content .details-list li:last-child {
  margin-bottom: 0;
}

.services-details-left {
  padding-right: 30px;
}

.categories-card {
  background-color: #f5f5f5;
  padding: 30px;
  margin-bottom: 30px;
}
.categories-card h2 {
  font-size: 25px;
  margin-bottom: 30px;
}
.categories-card .business {
  padding-left: 0;
  margin: 0;
}
.categories-card .business li {
  margin-bottom: 20px;
  list-style-type: none;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.categories-card .business li::before {
  content: "";
  position: absolute;
  background-color: #5a626d;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.categories-card .business li:last-child {
  margin-bottom: 0;
}
.categories-card .business li a {
  font-size: 16px;
  font-weight: bold;
  padding: 15px 20px 15px 40px;
  border: 1px solid #d9d6d6;
  display: block;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.categories-card .business li:hover::before {
  background-color: var(--whiteColor);
}
.categories-card .business li:hover a {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.details-contact {
  background-color: #f5f5f5;
  padding: 30px;
  margin-bottom: 30px;
}
.details-contact h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.details-contact .contact-details-bg {
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.details-contact .contact-details-bg p {
  color: var(--blackColor);
  font-weight: 500;
}
.details-contact .contact-details-bg:last-child {
  margin-bottom: 0;
}
.details-contact .contact-details-bg h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.details-contact .contact-details-bg a {
  color: var(--blackColor);
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 16px;
}
.details-contact .contact-details-bg i {
  position: absolute;
  left: 0;
  color: var(--primaryColor);
}

.brochures {
  background-color: #f5f5f5;
  padding: 30px;
}
.brochures h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.brochures p {
  margin-bottom: 20px;
}
.brochures .default-btn {
  width: 100%;
  border-radius: 0px;
  border: 1px solid #dee0e1;
  margin-bottom: 20px;
  text-align: center;
  background-color: var(--whiteColor);
  color: var(--secondaryColor);
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 500;
}
.brochures .default-btn::after {
  background-color: var(--primaryColor);
}
.brochures .default-btn i {
  position: relative;
  left: -10px;
  color: var(--primaryColor);
  font-size: 25px;
  transition: var(--transition);
}
.brochures .default-btn:last-child {
  margin-bottom: 0;
}
.brochures .default-btn:hover {
  color: var(--whiteColor);
}
.brochures .default-btn:hover i {
  color: var(--whiteColor);
}

.services-partners-logo {
  background-color: #f5f5f5;
  padding: 50px 30px;
  margin-top: 70px;
}
.services-partners-logo .partners-logo.about-logo-image {
  opacity: 0.5;
  transition: var(--transition);
}
.services-partners-logo .partners-logo.about-logo-image:hover {
  opacity: 1;
}

/* Start Our Blog Area 
======================================*/
.our-blog-content {
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.our-blog-content .blog-post-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.3;
}
.our-blog-content .blog-details-image {
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 0px 0px;
}
.our-blog-content .blog-details-image img {
  transition: var(--transition);
}
.our-blog-content .blog-details-image:hover img {
  transform: scale(1.2);
}
.our-blog-content .our-blog-card {
  padding: 30px;
}
.our-blog-content .our-blog-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.our-blog-content .our-blog-card p {
  margin-bottom: 15px;
}
.our-blog-content .our-blog-card .d-flex span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fontFamily);
  color: var(--bodyColor);
  position: relative;
  padding-left: 25px;
}
.our-blog-content .our-blog-card .d-flex span i {
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  color: var(--primaryColor);
}
.our-blog-content .our-blog-card .d-flex span .bg-color-10 {
  width: 35px;
  height: 28px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  line-height: 33px;
  transition: var(--transition);
  border-radius: 5px;
  text-align: center;
}
.our-blog-content:hover .our-blog-card h2 {
  color: var(--primaryColor);
}
.our-blog-content:hover .our-blog-card .d-flex span .bg-color-10 {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.single-blog-left-content {
  padding-right: 30px;
}

.search-2 {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.search-2 .newsletter-form {
  position: relative;
}
.search-2 .newsletter-form .form-control {
  padding: 15px;
  background-color: transparent;
  color: var(--bodyColor);
}
.search-2 .newsletter-form .form-control::-moz-placeholder {
  color: var(--bodyColor);
}
.search-2 .newsletter-form .form-control:-ms-input-placeholder {
  color: var(--bodyColor);
}
.search-2 .newsletter-form .form-control::placeholder {
  color: var(--bodyColor);
}
.search-2 .newsletter-form .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primaryColor);
}
.search-2 .newsletter-form .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.search-2 .newsletter-form .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.search-2 .newsletter-form .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.search-2 .newsletter-form .default-btn {
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  bottom: 0;
}
.search-2 .newsletter-form .default-btn i {
  font-size: 22px;
  top: -3px;
  right: 0;
}

.tags {
  background-color: #f5f5f5;
  padding: 30px;
  margin-top: 30px;
}
.tags h2 {
  font-size: 22px;
  margin-bottom: 5px;
}
.tags ul {
  padding-left: 0;
  margin: 0;
}
.tags ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.tags ul li:last-child {
  margin-right: 0;
}
.tags ul li a {
  border: 1px solid #d9d6d6;
  padding: 10px 28px;
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--bodyColor);
  position: relative;
  transition: var(--transition);
  background-color: var(--whiteColor);
  z-index: 1;
}
.tags ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  transition: var(--transition);
}
.tags ul li a:hover {
  color: var(--whiteColor);
}
.tags ul li a:hover::after {
  height: 100%;
  bottom: 0;
}

/* Start Contact Area 
======================================*/
.contact-card {
  background-color: #f5f5f5;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
}
.contact-card i {
  width: 70px;
  height: 60px;
  line-height: 65px;
  border-radius: 5px;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  display: inline-block;
  font-size: 25px;
  margin-bottom: 28px;
  transition: var(--transition);
}
.contact-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}
.contact-card p {
  font-size: 15px;
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--blackColor);
}
.contact-card p a {
  color: var(--blackColor);
  transition: var(--transition);
  font-weight: 400;
}
.contact-card p a:hover {
  color: var(--primaryColor);
}
.contact-card:hover i {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}

.maps {
  width: 100%;
  height: 100%;
}
.maps .map {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
}

.contact-group-from .section-title.left-title {
  margin-bottom: 25px;
}
.contact-group-from .section-title.left-title h2 {
  margin-bottom: 6px;
  font-size: 36px;
  position: relative;
  top: -7px;
}
.contact-group-from .form-group .form-control {
  padding: 15px;
  margin-bottom: 20px;
  color: var(--bodyColor);
}
.contact-group-from .form-group .form-control::-moz-placeholder {
  color: var(--bodyColor);
}
.contact-group-from .form-group .form-control:-ms-input-placeholder {
  color: var(--bodyColor);
}
.contact-group-from .form-group .form-control::placeholder {
  color: var(--bodyColor);
}
.contact-group-from .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primaryColor);
}
.contact-group-from .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-group-from .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.contact-group-from .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.contact-group-from .default-btn {
  width: 100%;
  border: none;
}
.contact-group-from .help-block.with-errors {
  color: var(--primaryColor);
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 400;
}
.contact-group-from div#msgSubmit {
  font-size: 18px;
  position: relative;
  top: 8px;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area {
  margin-left: 10px;
}
.widget-area .widget {
  margin-bottom: 30px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget .widget-title {
  margin-bottom: 25px;
  font-size: 22px;
}
.widget-area .widget_search {
  background-color: #f5f5f5;
  padding: 30px;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form .search-field {
  background-color: transparent;
  border: 1px solid #E5E7EC;
  height: 50px;
  padding: 16px 65px 15px 15px;
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
  border-radius: 0;
  color: var(--bodyColor);
  border-radius: 5px;
}
.widget-area .widget_search form .search-field::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--bodyColor);
}
.widget-area .widget_search form .search-field:-ms-input-placeholder {
  -ms-transition: var(--transition);
  transition: var(--transition);
  color: var(--bodyColor);
}
.widget-area .widget_search form .search-field::placeholder {
  transition: var(--transition);
  color: var(--bodyColor);
}
.widget-area .widget_search form .search-field:focus {
  border-color: var(--primaryColor);
}
.widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.widget-area .widget_search form .search-field:focus:-ms-input-placeholder {
  color: transparent;
}
.widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.widget-area .widget_search form button {
  border: none;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  height: 50px;
  width: 50px;
  position: absolute;
  right: 0;
  padding: 0;
  transition: var(--transition);
  top: 0;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.widget-area .widget_pixab_posts_thumb {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  padding: 30px;
  box-shadow: -12px 8px 25px rgba(217, 35, 12, 0.03);
  padding: 25px;
}
.widget-area .widget_pixab_posts_thumb .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border-bottom: 1px solid #E5E7EC;
  padding-bottom: 25px;
}
.widget-area .widget_pixab_posts_thumb .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget-area .widget_pixab_posts_thumb .item .thumb {
  float: left;
  overflow: hidden;
  display: block;
  position: relative;
  width: 90px;
  height: 90px;
  margin-right: 15px;
  z-index: 1;
  border-radius: 5px;
}
.widget-area .widget_pixab_posts_thumb .item .thumb .fullimage {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget_pixab_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../images/blog/blog-post-1.png);
}
.widget-area .widget_pixab_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../images/blog/blog-post-2.png);
}
.widget-area .widget_pixab_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../images/blog/blog-post-3.png);
}
.widget-area .widget_pixab_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: url(../images/blog/blog-post-4.png);
}
.widget-area .widget_pixab_posts_thumb .item .thumb::before, .widget-area .widget_pixab_posts_thumb .item .thumb::after {
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: "";
  background-color: var(--whiteColor);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.widget-area .widget_pixab_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.widget-area .widget_pixab_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}
.widget-area .widget_pixab_posts_thumb .item .info {
  overflow: hidden;
}
.widget-area .widget_pixab_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: bold;
  vertical-align: middle;
  transition: var(--transition);
}
.widget-area .widget_pixab_posts_thumb .item .info .title a {
  display: inline-block;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.widget-area .widget_pixab_posts_thumb .item .info span {
  display: block;
  color: var(--bodyColor);
  margin-top: 8px;
  font-size: 15px;
}
.widget-area .widget_pixab_posts_thumb .item .info .d-flex span {
  margin-top: 10px;
  font-size: 14px;
  color: var(--bodyColor);
  font-family: var(--fontFamily);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}
.widget-area .widget_pixab_posts_thumb .item .info .d-flex span i {
  position: absolute;
  left: 0;
  top: 2px;
}
.widget-area .widget_pixab_posts_thumb .item:hover .info .title a {
  color: var(--primaryColor);
}
.widget-area .widget_pixab_posts_thumb .item:hover .thumb::before, .widget-area .widget_pixab_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.widget-area .widget_pixab_posts_thumb .item .number {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50px;
  background: var(--primaryColor);
  z-index: 1;
  font-size: 16px;
  color: var(--whiteColor);
}

/* Start Our Blog Details Area 
=======================================*/
.our-blog-area {
  position: relative;
  overflow: hidden;
}

.blog-details-area {
  position: relative;
  overflow: hidden;
}

.blog-details-content {
  padding-right: 30px;
}
.blog-details-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.blog-details-content h2 a {
  color: var(--secondaryColor);
}
.blog-details-content .blog-date-list {
  padding-left: 0;
  margin: 0;
  margin-bottom: 20px;
}
.blog-details-content .blog-date-list li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  position: relative;
  padding-left: 25px;
  margin-right: 30px;
}
.blog-details-content .blog-date-list li:last-child {
  margin-right: 0;
}
.blog-details-content .blog-date-list li i {
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  left: 0;
  color: var(--primaryColor);
}
.blog-details-content .blog-date-list li span {
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 400;
  color: var(--bodyColor);
}
.blog-details-content .blog-details-img-two {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin-bottom: 20px;
}
.blog-details-content .blog-details-img-two img {
  transition: var(--transition);
}
.blog-details-content p {
  margin-bottom: 18px;
}
.blog-details-content .details-img {
  background-image: url(../images/blog/blog-details-image-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  height: 228px;
  overflow: hidden;
  border-radius: 5px;
  transition: var(--transition);
}
.blog-details-content .details-images {
  background-image: url(../images/blog/blog-details-image-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  height: 228px;
  overflow: hidden;
  border-radius: 5px;
  transition: var(--transition);
}
.blog-details-content .blog-details-bg-img {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin-bottom: 15px;
}
.blog-details-content .d-flex {
  margin-bottom: 25px;
  margin-top: 30px;
  border-bottom: 1px solid #dee0e1;
  padding-bottom: 30px;
}
.blog-details-content .d-flex .tag-list {
  padding-left: 0;
  margin: 0;
}
.blog-details-content .d-flex .tag-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.blog-details-content .d-flex .tag-list li:last-child {
  margin-right: 0;
}
.blog-details-content .d-flex .tag-list li span {
  font-size: 16px;
  font-family: var(--fontFamily);
  color: var(--secondaryColor);
  font-weight: 600;
}
.blog-details-content .d-flex .tag-list li a {
  border: 1px solid #d9d6d6;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  color: var(--bodyColor);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
.blog-details-content .d-flex .tag-list li a::before {
  content: "";
  position: absolute;
  background-color: var(--primaryColor);
  width: 0;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: var(--transition);
  border-radius: 5px;
}
.blog-details-content .d-flex .tag-list li a:hover {
  color: var(--whiteColor);
}
.blog-details-content .d-flex .tag-list li a:hover::before {
  width: 100%;
}
.blog-details-content .d-flex .details-list ul {
  padding-left: 0;
  margin: 0;
}
.blog-details-content .d-flex .details-list ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 8px;
}
.blog-details-content .d-flex .details-list ul li:last-child {
  margin-right: 0;
}
.blog-details-content .d-flex .details-list ul li span {
  font-size: 16px;
  font-family: var(--fontFamily);
  color: var(--secondaryColor);
  font-weight: 600;
  margin-right: 10px;
}
.blog-details-content .d-flex .details-list ul li a {
  background-color: var(--secondaryColor);
  width: 40px;
  height: 35px;
  line-height: 35px;
  border-radius: 5px;
  color: var(--whiteColor);
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}
.blog-details-content .d-flex .details-list ul li a i {
  font-size: 13px;
}
.blog-details-content .d-flex .details-list ul li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.blog-details-content .details-comments {
  border-bottom: 1px solid #dee0e1;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.blog-details-content .details-comments h2 {
  margin-bottom: 30px;
}
.blog-details-content .details-comments .details-text {
  padding-left: 135px;
  position: relative;
  margin-bottom: 30px;
}
.blog-details-content .details-comments .details-text.details-text-tan {
  padding-left: 270px;
}
.blog-details-content .details-comments .details-text.details-text-tan .details-images-three {
  left: 130px;
}
.blog-details-content .details-comments .details-text .details-images-three {
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
}
.blog-details-content .details-comments .details-text h3 {
  font-size: 18px;
}
.blog-details-content .details-comments .details-text .d-flex {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: none;
  padding-bottom: 0;
}
.blog-details-content .details-comments .details-text .d-flex span {
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  position: relative;
  padding-left: 25px;
}
.blog-details-content .details-comments .details-text .d-flex span i {
  position: absolute;
  left: 0;
  top: 56%;
  color: var(--primaryColor);
  transform: translateY(-50%);
}
.blog-details-content .details-comments .details-text .d-flex span .reply {
  font-size: 15px;
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.blog-details-content .details-comments .details-text .d-flex span .reply:hover {
  color: var(--primaryColor);
}
.blog-details-content .details-from h2 {
  margin-bottom: 25px;
}
.blog-details-content .details-from .make-from .form-control {
  padding: 15px;
  color: var(--bodyColor);
  margin-bottom: 20px;
}
.blog-details-content .details-from .make-from .form-control::-moz-placeholder {
  color: var(--bodyColor);
}
.blog-details-content .details-from .make-from .form-control:-ms-input-placeholder {
  color: var(--bodyColor);
}
.blog-details-content .details-from .make-from .form-control::placeholder {
  color: var(--bodyColor);
}
.blog-details-content .details-from .make-from .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primaryColor);
}
.blog-details-content .details-from .make-from .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-content .details-from .make-from .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-content .details-from .make-from .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.blog-details-content .details-from .make-from .form-check {
  margin-bottom: 20px;
}
.blog-details-content .details-from .make-from .form-check .form-check-input {
  border-radius: 0px;
}
.blog-details-content .details-from .make-from .form-check .form-check-input:focus {
  box-shadow: none;
}
.blog-details-content .details-from .make-from .form-check .form-check-label {
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 400;
  color: var(--bodyColor);
}
.blog-details-content .details-from .make-from .default-btn {
  border: none;
}

/* Start Corporate Website Area 
======================================*/
.corporate-website-area {
  position: relative;
  overflow: hidden;
}

.corporate-image {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.corporate-image img {
  border-radius: 10px;
  transition: var(--transition);
}

.corporate-website-content {
  padding-left: 30px;
}
.corporate-website-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.corporate-website-content p {
  margin-bottom: 15px;
}
.corporate-website-content ul {
  padding-left: 0;
  margin: 0;
}
.corporate-website-content ul li {
  list-style-type: none;
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.corporate-website-content ul li:last-child {
  margin-bottom: 0;
}
.corporate-website-content ul li a {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.corporate-website-content ul li i {
  color: var(--primaryColor);
  position: absolute;
  left: 0;
  top: 1.5px;
}
.corporate-website-content ul li span {
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: bold;
  color: #000000 !important;
  margin: 0 5px;
}

.corporate-website-slider.owl-theme .owl-nav .owl-prev, .corporate-website-slider.owl-theme .owl-nav .owl-next {
  width: 35px;
  height: 35px;
  line-height: 37px;
  padding: 0 !important;
  text-align: center;
  background-color: var(--primaryColor);
  border-radius: 5px;
  font-size: 20px;
  color: var(--whiteColor);
  transition: var(--transition);
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50px);
}
.corporate-website-slider.owl-theme .owl-nav .owl-prev i, .corporate-website-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 1px;
}
.corporate-website-slider.owl-theme .owl-nav .owl-prev:hover, .corporate-website-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--secondaryColor);
}
.corporate-website-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -60px;
}

/** Explore recent portfolios  
======================================**/
.portfolios-slider.owl-theme .owl-nav .owl-prev, .portfolios-slider.owl-theme .owl-nav .owl-next {
  width: 35px;
  height: 35px;
  line-height: 37px;
  padding: 0 !important;
  text-align: center;
  background-color: var(--primaryColor);
  border-radius: 5px;
  font-size: 20px;
  color: var(--whiteColor);
  transition: var(--transition);
  position: absolute;
  left: 200px;
  top: 50%;
  transform: translateY(-40px);
}
.portfolios-slider.owl-theme .owl-nav .owl-prev i, .portfolios-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 1px;
}
.portfolios-slider.owl-theme .owl-nav .owl-prev:hover, .portfolios-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--secondaryColor);
}
.portfolios-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 200px;
}

.portfolios-provided-content {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.portfolios-provided-content span {
  color: var(--primaryColor);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
  display: inline-block;
  margin-bottom: 5px;
}
.portfolios-provided-content h2 {
  font-size: 44px;
  margin-bottom: 0;
  font-weight: bold;
}
.portfolios-provided-content .button {
  text-align: end;
  display: flex;
  justify-content: end;
}

.portfolios-item {
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 20px;
}
.portfolios-item.portfolios-image {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
}
.portfolios-item::before {
  content: "";
  position: absolute;
  background-color: #333b47;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  transition: var(--transition);
  opacity: 0.5;
}
.portfolios-item.provided {
  position: relative;
}
.portfolios-item.provided::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
  background-color: var(--whiteColor);
}
.portfolios-item.provided i {
  display: none;
}
.portfolios-item.provided .portfolios-content {
  display: none;
}
.portfolios-item .portfolios {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  transition: var(--transition);
  opacity: 0;
}
.portfolios-item .portfolios a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.portfolios-item .portfolios a:hover {
  color: var(--primaryColor);
}
.portfolios-item .portfolios-content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}
.portfolios-item .portfolios-content p {
  margin-bottom: 0;
  transition: var(--transition);
  margin-bottom: 10px;
}
.portfolios-item .portfolios-content h3 {
  font-size: 20px;
  transition: var(--transition);
}
.portfolios-item .portfolios-content h3 a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.portfolios-item:hover::before {
  top: 0;
}
.portfolios-item:hover .portfolios {
  opacity: 1;
}
.portfolios-item:hover .portfolios-content {
  opacity: 1;
}
.portfolios-item:hover .portfolios-content p {
  color: var(--whiteColor);
}
.portfolios-item:hover .portfolios-content h3 a {
  color: var(--whiteColor);
}

/* banner-two-area 
=======================================*/
.banner-two-area {
  background-image: url(../images/banner/bg-main-1.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}
.banner-two-area::after {
  position: absolute;
  content: "";
  background-color:rgb(255 255 255 / 95%) !important;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.banner-two-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.banner-two-image {
  position: relative;
  z-index: 1;
}
.banner-two-image img {
  width: auto !important;
}
.banner-two-image .banner-two-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
}

.banner-two-content {
  position: relative;
  margin-bottom: 56px;
}
.banner-two-content span {
  color: #333b47;
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 15px;
}
.banner-two-content h1 {
  color: #3c8d80;
  font-size: 48px;
  margin-bottom: 15px;
  max-width: 700px;
  line-height: 65px;
}
.banner-two-content p {
  color: #333b47;
  margin-bottom: 30px;
  max-width: 600px;
}
.banner-two-content .banner-two-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.banner-two-content .banner-two-btn .default-btn {
  margin-right: 35px;
}
.banner-two-content .banner-two-btn .banner-two-video-play .play-button {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-bottom: 0;
  text-align: center;
  margin-right: 15px;
  background-color: var(--secondaryColor);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.banner-two-content .banner-two-btn .banner-two-video-play .play-button i {
  position: relative;
  top: 3px;
}
.banner-two-content .banner-two-btn .banner-two-video-play .play-button::before {
  content: "";
  position: absolute;
  border: 3px solid #685f5f;
  width: 58px;
  height: 58px;
  bottom: 0;
  top: -6px;
  left: -6px;
  right: 0;
  line-height: 60px;
  border-radius: 50px;
  z-index: -1;
  text-align: center;
}
.banner-two-content .banner-two-btn .banner-two-video-play .play-text {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--fontFamily);
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.owl-item.active .banner-two-content span {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.owl-item.active .banner-two-content h1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.owl-item.active .banner-two-content p {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.owl-item.active .banner-two-content .banner-two-btn {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.banner-two-slider.owl-theme .owl-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  margin-top: 0 !important;
}
.banner-two-slider.owl-theme .owl-dots .owl-dot.active span {
  background-color:#3c8d80;
}
.banner-two-slider.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: transparent;
  display: block;
  transition: opacity 0.2s ease;
  border-radius: 30px;
  border: 1px solid #3c8d80;
  transition: var(--transition);
}
.banner-two-slider.owl-theme .owl-dots .owl-dot span:hover {
  background-color: var(--whiteColor);
}

/** working process 
======================**/
.working-process {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  margin-top: 44px;
  transition: var(--transition);
  z-index: 1;
}
.working-process::before {
  content: "";
  position: absolute;
  background-color: var(--whiteColor);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  width: 225px;
  height: 225px;
  left: -6px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 50%;
}
.working-process span {
  background-color: var(--blackColor);
  width: 40px;
  height: 40px;
  line-height: 40px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  border-radius: 50px;
  right: 40px;
  top: -22px;
  transition: var(--transition);
}
.working-process span:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.working-process i {
  font-size: 30px;
  color: var(--primaryColor);
  margin-bottom: 10px;
  display: block;
}
.working-process h3 {
  font-size: 22px;
  color: var(--blackColor);
  margin-bottom: 10px;
}
.working-process p {
  color: var(--bodyColor);
  margin: auto;
  max-width: 155px;
}
.working-process .shape-three {
  position: absolute;
  top: -41px;
  right: -74px;
  left: -19px;
  opacity: 0.2;
  z-index: -1;
}
.working-process .working-shape-bg {
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  top: -39px;
  left: 27px;
}
.working-process:hover {
  transform: translateY(-10px);
}

/** page banner area
====================**/
.page-banner-area {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}
.page-banner-area::after {
  content: "";
  position: absolute;
  background-image: url(../images/allbg-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: heartBeat 15s infinite linear;
          animation: heartBeat 15s infinite linear;
}
.page-banner-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #419389;
  z-index: 1;
  opacity: 0.9;
}

.page-banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-banner-content h1 {
  color: var(--whiteColor);
  margin-bottom: 20px;
  font-size: 48px;
}
.page-banner-content p {
  color: var(--whiteColor);
}
.page-banner-content p a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fontFamily);
  margin-right: 30px;
  color: var(--whiteColor);
  position: relative;
  transition: var(--transition);
}
.page-banner-content p a:hover {
  color: #b8bf3b;
}
.page-banner-content p a::before {
  content: "";
  position: absolute;
  background-color: var(--whiteColor);
  width: 1px;
  height: 15px;
  right: -15px;
  top: 4px;
  bottom: 0;
  transform: rotate(15deg);
}

/* Start Our Plan 
=========================*/
.pricing-plan-area {
  position: relative;
  overflow: hidden;
}

.pricing-card {
  text-align: center;
  border: 1px solid #f5f5f5;
  padding: 50px;
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
  margin-right: 30px;
  transition: var(--transition);
}
.pricing-card.pricing-border {
  position: relative;
  border-top: 15px solid #f5f5f5;
  border-radius: 0;
  transition: var(--transition);
}
.pricing-card.pricing-border::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 95%;
  left: -15px;
  top: -15px;
  bottom: 0;
  background-color: #f5f5f5;
  border-radius: 3px;
  transition: var(--transition);
}
.pricing-card.pricing-border::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 95%;
  right: -15px;
  top: -15px;
  bottom: 0;
  background-color: #f5f5f5;
  border-radius: 3px;
  transition: var(--transition);
}
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.pricing-card h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
  transition: var(--transition);
}
.pricing-card h4 span {
  font-size: 16px;
  color: var(--blackColor);
  font-weight: 400;
}
.pricing-card .pricing-card-list {
  margin-bottom: 30px !important;
  padding-left: 0;
  margin: 0;
}
.pricing-card .pricing-card-list li {
  margin-bottom: 10px;
  list-style-type: none;
}
.pricing-card .pricing-card-list li p i {
  font-size: 12px;
  color: var(--primaryColor);
  position: relative;
  right: 5px;
}
.pricing-card .default-btn.pricing-btn {
  background-color: transparent;
  border: 1px solid #555555;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.pricing-card:hover {
  border-top: 15px solid #f7d6d6;
}
.pricing-card:hover .default-btn.pricing-btn {
  background-color: var(--primaryColor);
  color: var(--whiteColor) !important;
  border: 1px solid var(--primaryColor);
}
.pricing-card:hover .default-btn.pricing-btn::after {
  background-color: transparent;
}
.pricing-card:hover h4 {
  color: var(--primaryColor);
}
.pricing-card:hover::after {
  background-color: #f7d6d6;
}
.pricing-card:hover::before {
  background-color: #f7d6d6;
}

/* why choose us two 
================================*/
.choose-area.about-choose-area {
  padding-top: 200px;
}

.choose-area-two {
  background-color: #f5f5f5;
  overflow: hidden;
}
.choose-area-two .section-title.left-title {
  margin-bottom: 35px;
}
.choose-area-two .section-title.left-title h2 {
  margin-bottom: 20px;
}

.choose-two-images {
  text-align: right;
  position: relative;
}
.choose-two-images .choose-two-shape {
  position: absolute;
  left: -40px;
  top: 70%;
  transform: translateY(-60%);
}

.choose-content-two {
  padding-left: 70px;
  position: relative;
  margin-bottom: 30px;
}
.choose-content-two:last-child {
  margin-bottom: 0;
}
.choose-content-two i {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 54px;
  border-radius: 50px;
  text-align: center;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  font-size: 22px;
  transition: var(--transition);
}
.choose-content-two h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.choose-content-two p {
  max-width: 500px;
}
.choose-content-two:hover i {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}

/** about area 
===================**/
.about-area {
  overflow: hidden;
  background-color: #f5f5f5;
}
.about-area.bg-color-8 {
  background-color: transparent;
}
.about-area.about-area-two .section-title h2 {
  max-width: 700px;
}
.about-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
.about-area .images-us {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-area .images-us img {
  margin-top: 35px;
}
.about-area .images-us .images-twos {
  margin-top: 40px;
}
.about-area .images-us .about-bg-images {
  position: absolute;
  bottom: -98px;
  right: 0;
}
.about-area .images-us .about-shape {
  position: absolute;
  top: -35px;
  left: 10px;
  right: 0;
  z-index: -1;
}

.about-img {
  position: relative;
  margin-right: -100px;
  margin-top: 45px;
}
.about-img img {
  border-radius: 10px;
}

.about-img-2 {
  background-image: url(../images/about/about-images-2.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.about-img-3 {
  background-image: url(../images/about/about-images-3.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: -1;
  width: 100%;
  border-radius: 10px;
  height: 350px;
}

.about-us-content {
  position: relative;
  border: 1px solid rgba(85, 85, 85, 0.5);
  border-radius: 5px;
  padding: 20px 20px 20px 90px;
  transition: var(--transition);
}
.about-us-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about-us-content i {
  position: absolute;
  left: 25px;
  top: 20px;
  font-size: 40px;
  color: var(--primaryColor);
}
.about-us-content p {
  margin-bottom: 0;
}
.about-us-content:hover {
  border: 1px solid var(--primaryColor);
}

.about-text {
  margin-left: auto;
  padding-left: 20px;
}
.about-text .section-title {
  margin-bottom: 28px;
  text-align: left;
  max-width: unset;
}
.about-text .section-title .top-title {
  margin-bottom: 10px;
}
.about-text .section-title p {
  max-width: 600px;
}
.about-text .section-title h2 {
  margin-bottom: 20px;
}
.about-text .about-content {
  padding-left: 80px;
  position: relative;
  margin-bottom: 20px;
  transition: var(--transition);
  display: block;
}
.about-text .about-content i {
  background-color: var(--primaryColor);
  width: 60px;
  height: 60px;
  line-height: 64px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  font-size: 30px;
  color: var(--whiteColor);
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--transition);
}
.about-text .about-content p {
  color: #000000;
  max-width: 500px;
}
.about-text .about-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.about-text .about-content:hover i.connection-icon {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

/** services-area Two
======================**/
.provided-content {
  max-width: 1320px;
  margin: auto;
  position: relative;
  margin-bottom: 50px;
}
.provided-content .section-title {
  margin-bottom: 0;
  text-align: left;
}
.provided-content .section-title .top-title {
  margin-bottom: 10px;
}
.provided-content .section-title h2 {
  margin-bottom: 0;
}
.provided-content .button {
  text-align: end;
  display: flex;
  justify-content: end;
}

.services-card {
  background-color: var(--whiteColor);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.services-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--primaryColor);
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition);
}
.services-card:hover {
  transform: translateY(-10px);
}
.services-card:hover::before {
  height: 100%;
  opacity: 1;
}
.services-card:hover .analysis-icon-two {
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  border: 2px solid var(--whiteColor);
}
.services-card:hover .analysis-icon-two::after {
  display: none;
}
.services-card:hover .read-more a {
  color: var(--whiteColor);
}
.services-card:hover .read-more a i {
  color: var(--whiteColor);
}
.services-card:hover h2 a {
  color: var(--whiteColor);
}
.services-card:hover p {
  color: var(--whiteColor);
}
.services-card .analysis-icon-two {
  font-size: 30px;
  color: var(--primaryColor);
  border: 2px solid var(--blackColor);
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-bottom: 23px;
  position: relative;
  transition: var(--transition);
}
.services-card .analysis-icon-two::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background-color: var(--primaryColor);
  right: -8px;
  transition: var(--transition);
  top: 14px;
}
.services-card .read-more {
  transition: var(--transition);
}
.services-card .read-more a {
  color: var(--blackColor);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}
.services-card .read-more a i {
  color: var(--blackColor);
  position: absolute;
  font-weight: 700;
  top: 3px;
  right: -24px;
  transition: var(--transition);
}
.services-card h2 {
  font-size: 20px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.services-card h2 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.services-card p {
  margin-bottom: 15px;
  transition: var(--transition);
}

/** team two 
=================**/
.team-two-card {
  background-color: var(--whiteColor);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
  transition: var(--transition);
}
.team-two-card .team-two-images {
  margin-bottom: 30px;
}
.team-two-card .team-two-images img {
  margin-top: -100px;
}
.team-two-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.team-two-card p {
  margin-bottom: 20px;
}
.team-two-card ul {
  padding-left: 0;
  margin: 0;
}
.team-two-card ul li {
  display: inline-block;
  margin-right: 8px;
}
.team-two-card ul li a {
  color: var(--blackColor);
}
.team-two-card ul li:last-child {
  margin-right: 0;
}
.team-two-card ul li i {
  border: 1px solid #f0f0f0;
  background-color: var(--whiteColor);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.team-two-card ul li i:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.team-two-card:hover {
  transform: translateY(-10px);
}

/* testimonials-area-two 
==============================*/
.testimonials-area-two {
  background-color: #f5f5f5;
  position: relative;
}

.testimonials-bg-content {
  background-color: var(--whiteColor);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
  transition: var(--transition);
  z-index: 1;
}
.testimonials-bg-content .shape-img-4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.testimonials-bg-content .testimonials-two-images {
  position: relative;
}
.testimonials-bg-content .testimonials-two-images img {
  width: auto;
  margin: auto;
}
.testimonials-bg-content .testimonials-two-images i {
  background-color: var(--primaryColor);
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--whiteColor);
  position: absolute;
  bottom: -5px;
  right: 10px;
  transition: var(--transition);
}
.testimonials-bg-content .testimonials-two-images i:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.testimonials-bg-content .testimonials-two-text p {
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--secondaryColor);
  font-size: 16px;
}
.testimonials-bg-content .testimonials-two-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.testimonials-bg-content .testimonials-two-text span {
  color: var(--primaryColor);
  font-size: 16px;
  font-family: var(--fontFamily);
  font-weight: 500;
}

.testimonials-two-slider.owl-theme .owl-nav {
  margin: 0 !important;
  position: absolute;
  right: 0;
  top: -100px;
}
.testimonials-two-slider.owl-theme .owl-nav .owl-prev, .testimonials-two-slider.owl-theme .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: var(--primaryColor);
  border-radius: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  transition: var(--transition);
}
.testimonials-two-slider.owl-theme .owl-nav .owl-prev i, .testimonials-two-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 1.5px;
  left: -1px;
}
.testimonials-two-slider.owl-theme .owl-nav .owl-prev:hover, .testimonials-two-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--secondaryColor);
}
.testimonials-two-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 200px;
}
.testimonials-two-slider.owl-theme .owl-nav .owl-next i {
  left: 2px;
}

/*  Start footer area 
====================================*/
.footer-area {
  background-color: #000000fa;
  padding-top: 260px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-area.about-footer {
  padding-top: 100px;
}

.footer-widget.footer-two-widget ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
}
.footer-widget p {
  color: var(--whiteColor);
  margin-bottom: 25px;
}
.footer-widget img {
  margin-bottom: 20px;
}
.footer-widget ul {
  padding-left: 0;
  margin: 0;
}
.footer-widget ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.footer-widget ul li:last-child {
  margin-right: 0;
}
.footer-widget ul li a {
  background-color: #464f5c;
  width: 30px;
  height: 30px;
  line-height: 33px;
  border-radius: 5px;
  color: var(--whiteColor);
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}
.footer-widget ul li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.footer-widget h2 {
  font-size: 22px;
  color: var(--whiteColor);
  margin-bottom: 35px;
}
.footer-widget .footer-list {
  padding-left: 0;
  margin: 0;
}
.footer-widget .footer-list li {
  display: block;
  list-style-type: none;
  margin-bottom: 10px;
  margin-right: 0;
}
.footer-widget .footer-list li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-list li a {
  background-color: transparent;
  width: unset;
  height: unset;
  line-height: unset;
  transition: var(--transition);
}
.footer-widget .footer-list li a:hover {
  color: var(--primaryColor) !important;
  background-color: transparent;
}
.footer-widget .footer-information {
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footer-widget .footer-information:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-information i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primaryColor);
}
.footer-widget .footer-information h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 7px;
}
.footer-widget .footer-information a {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
  transition: var(--transition);
}
.footer-widget .footer-information a:hover {
  color: var(--primaryColor);
}
.footer-widget .footer-information p {
  margin-bottom: 0;
}

/* Start Copyright Area 
================================*/
.copyright-area {
  background-color: #050505;
}

.copyright-content {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.copyright-content p {
  color: var(--whiteColor);
}
.copyright-content p a {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--fontFamily);
  color: var(--primaryColor);
  transition: var(--transition);
}
.copyright-content p a:hover {
  color: var(--whiteColor);
}
.copyright-content p i {
  position: relative;
  top: 3px;
  color: var(--whiteColor);
  margin-right: 5px;
}

/* Go Top Style
==============================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 93%;
  right: -10%;
  background-color: var(--secondaryColor);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  transition: 0.5s;
  font-size: 20px;
}

.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: var(--primaryColor);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: var(--primaryColor);
}

.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 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 25px;
  top: 93%;
}

/* Ripple Animation
===========================*/
@-webkit-keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-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;
  }
}
@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;
  }
}
/* Responsive Style */
@media only screen and (max-width: 991px) {
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav .logo {
    text-decoration: none;
    position: absolute;
    top: 11px;
    z-index: 999;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
  }
  .mean-container .mean-bar {
    background-color: #000;
    padding: 0;
  }
  .mean-container a.meanmenu-reveal {
    padding: 15px 15px 0 0;
  }
  .mobile-nav nav .navbar-nav .nav-item a i {
    display: none;
  }
  .main-nav {
    display: none !important;
  }
}
/* Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 55px;
  top: -11px;
}
.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: #182333;
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #3b8d83;
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.others-option-for-responsive .others-options {
  background-color: #ededed;
  padding: 15px;
  text-align: center;
}
.others-option-for-responsive .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.others-option-for-responsive .others-options ul li {
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 15px;
}
.others-option-for-responsive .others-options ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.others-option-for-responsive .others-options .search-form {
  position: relative;
  margin-left: 20px;
}
.others-option-for-responsive .others-options .search-form .src-btn {
  position: absolute;
  top: 11px;
  right: 15px;
  background-color: transparent;
  font-size: 20px;
  line-height: 1;
  transition: all ease 0.5s;
  color: #1b2336;
  background-color: transparent;
  border: none;
}
.others-option-for-responsive .others-options .search-form .src-btn:hover {
  color: #1b2336;
}

/* Preloader Area CSS
====================================*/
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: var(--whiteColor);
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  right: 0;
}
.preloader .lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader .lds-spinner div {
  transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}
.preloader .lds-spinner div::after {
  content: " ";
  display: block;
  position: absolute;
  top: 5px;
  left: 35px;
  width: 5px;
  height: 20px;
  border-radius: 20%;
  background: var(--primaryColor);
}
.preloader .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.preloader .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.preloader .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.preloader .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.preloader .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.preloader .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
.preloader .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.preloader .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.preloader .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.preloader .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.preloader .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}
.preloader .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */


/* Define the initial and transition styles */
.single-banner-two-content {
  transition: transform 1s ease-in-out;
  transform: translateX(100%); /* Hide the banner initially */
}

.slide-in-right {
  transform: translateX(0); /* Slide in from the right */
}

.slide-in-left {
  transform: translateX(0); /* Slide in from the left */
}




.float{
	position:fixed;
	width:45px;
	height:45px;
	bottom:3px;
	left:33px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  top: 90%;
}






.single-process-card {
  padding: 30px;
  text-align: center;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-process-card.process-three {
  padding: 0px 30px;
  margin-bottom: 30px;
}

.single-process-card.process-three::after {
  background-color: rgba(24, 24, 24, 0.1);
}

.single-process-card.process-three h3 {
  color: var(--headingColor);
}

.single-process-card.process-three p {
  color: var(--bodyColor);
}

.single-process-card.process-three .process-img {
  background-color: var(--mainColor);
}

.single-process-card.process-three .process-img img {
  -webkit-filter: invert(100%) sepia(0%) saturate(1092%) hue-rotate(59deg) brightness(118%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(1092%) hue-rotate(59deg) brightness(118%) contrast(100%);
}

.single-process-card.process-three:hover .process-img::before {
  background-color: var(--headingColor);
}

.single-process-card.process-three:hover .process-img img {
  -webkit-filter: invert(100%) sepia(0%) saturate(1092%) hue-rotate(59deg) brightness(118%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(1092%) hue-rotate(59deg) brightness(118%) contrast(100%);
}

.single-process-card::after {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  width: 1px;
  height: 120px;
  right: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-process-card .process-img {
  background-color: var(--whiteColor);
  width: 60px;
  height: 60px;
  line-height: 56px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.single-process-card .process-img::before {
  content: '';
  position: absolute;
  background-color: var(--mainColor);
  width: 100%;
  left: 0;
  bottom: 0;
  height: 0%;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}

.single-process-card .process-img img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-process-card p {
  color: #EEEEEE;
}

.containerss {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
}
.single-process-card h3 {
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-process-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-process-card:hover h3 {
  color: var(--mainColor);
}

.single-process-card:hover .process-img::before {
  height: 100%;
}

.single-process-card:hover .process-img img {
  -webkit-filter: invert(100%) sepia(0%) saturate(1092%) hue-rotate(59deg) brightness(118%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(1092%) hue-rotate(59deg) brightness(118%) contrast(100%);
}

.photo-gallery-item .single-our-services-content h2 {
  color: var(--whiteColor);
  max-width: unset;
}

.photo-gallery-item .photo-gallery-content {
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.photo-gallery-item .photo-gallery-content .photo-gallery-img img {
  border-radius: 5px;
}

.photo-gallery-item .photo-gallery-content .photo-gallery-box {
  background-color: #efecec;
  max-width: 330px;
  padding: 13px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  overflow: hidden;
}











#gt_float_wrapper {
  top: 30px !important;
}
.gt_float_switcher {
  font-family: Arial;
  font-size: 20px;
  border-radius: 2px;
  color: #555;
  display: inline-block;
  line-height: 20px;
  box-shadow: rgb(58 139 129 / 35%) !important;
  background: #fff;
  overflow: hidden;
  transition: all .5s cubic-bezier(0.4, 0, 1, 1);
}

.switch-box {
  display: none !important;
}


.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 3px 9px !important;
}


















strong {
  font-weight: bold; 
}

em {
  font-style: italic; 
}

table {
  background: #f5f5f5;
  border-collapse: separate;
  box-shadow: inset 0 1px 0 #fff;
  font-size: 12px;
  line-height: 24px;
  margin: 30px auto;
  text-align: left;
  width: 100%;
} 

th {

  box-shadow: inset 0 1px 0 #999;
  color: #fff;
  background-color: #219685;
  font-weight: bold;
  padding: 10px 15px;
  position: relative;
  text-shadow: 0 1px 0 #000;  
}

th:after {
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.08));
  content: '';
  display: block;
  height: 25%;
  left: 0;
  margin: 1px 0 0 0;
  position: absolute;
  top: 25%;
  width: 100%;
}

th:first-child {
  border-left: 1px solid #777;  
  box-shadow: inset 1px 1px 0 #999;
}

th:last-child {
  box-shadow: inset -1px 1px 0 #999;
}

td {
  border-right: 1px solid #fff;
  border-left: 1px solid #e8e8e8;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 15px;
  position: relative;
  transition: all 300ms;
  font-size: 14px;
}
th{
  font-size: 18px;
}

td:first-child {
  box-shadow: inset 1px 0 0 #fff;
} 

td:last-child {
  border-right: 1px solid #e8e8e8;
  box-shadow: inset -1px 0 0 #fff;
} 

tr {
  /* background: url(https://jackrugile.com/images/misc/noise-diagonal.png);  */
}

tr:nth-child(odd) td {
  background: #f1f1f1 url(https://jackrugile.com/images/misc/noise-diagonal.png); 
}

tr:last-of-type td {
  box-shadow: inset 0 -1px 0 #fff; 
}

tr:last-of-type td:first-child {
  box-shadow: inset 1px -1px 0 #fff;
} 

tr:last-of-type td:last-child {
  box-shadow: inset -1px -1px 0 #fff;
} 

/* tbody:hover td {
  color: transparent;
  text-shadow: 0 0 3px #aaa;
}

tbody:hover tr:hover td {
  color: #444;
  text-shadow: 0 1px 0 #fff;
} */










.single-shop-card {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  border: 0.6mm solid #3c8e8454 !important;
}

.blog-content a {
    color : #3b8d83 !important;
}

.blog-content a:hover {
    color : #4ca759 !important;
}
.single-shop-card .shop-img {
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}

.single-shop-card ul {
  padding-left: 0;
  margin: 0;
  margin-bottom: 15px;
}

.single-shop-card ul li {
  list-style-type: none;
  display: inline-block;
}

.single-shop-card ul li i {
  color: #FFCD3C;
}

.single-shop-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-shop-card h3 a {
  color: var(--headingColor);
}

.single-shop-card span {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  color: var(--mainColor);
  font-weight: 400;
}

.single-shop-card span del {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  color: #B1B1B1;
  font-weight: 400;
  margin-left: 20px;
}

.single-shop-card .new {
  background-color: var(--mainColor);
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
}

.single-shop-card .new p {
  color: var(--whiteColor);
}

.single-shop-card .shop-list {
  position: absolute;
  top: 50px;
  right: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-shop-card .shop-list ul {
  padding-left: 0;
  margin: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-shop-card .shop-list ul li {
  display: block;
  margin-bottom: 10px;
}

.single-shop-card .shop-list ul li:last-child {
  margin-bottom: 0;
}

.single-shop-card .shop-list ul li a {
  background-color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
  border: 1px solid var(--mainColor);
  display: inline-block;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-shop-card .shop-list ul li a:hover {
  background-color: var(--mainColor);
}

.single-shop-card .shop-list ul li a:hover i {
  color: var(--whiteColor);
}

.single-shop-card .shop-list ul li a i {
  color: var(--mainColor);
  font-size: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-shop-card:hover .shop-list ul {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.shoping ul {
  padding-left: 0;
  margin: 0;
}

.shoping ul li {
  list-style-type: none;
  display: inline-block;
}

.shoping .details-search {
  background-color: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}

.shoping .details-search .form-control {
  border: none;
  padding: 16px;
  width: 380px;
}

.shoping .details-search .btn {
  top: 0;
  right: 0;
}

.shoping p {
  margin-left: 50px;
}

.shop-top {
  margin-bottom: 50px;
}


.shop-img img {
  height: 256px;
  width: auto;  
  object-fit: contain; 
  display: block;
  margin: 0 auto;
}
.portfolios-img {
  position: relative;
  background-image: url('assets/images/catbg.png');
  background-size: cover;

}


/* Add custom styles */
.single-shop-card {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    /* border: 0.6mm solid #f7f7f7; */
}

.single-shop-card ul {
    display: none;
}

.shop-img img {
    max-width: 100%;
    height: 250px;
    border-radius: 5px;
}

.blog-content a {
    color: #3a8b81 !important;
}

.blog-content a:hover {
    color: #4ca759 !important;
}

.single-shop-card h3 a {
    color: #333;
}

.single-shop-card h3 a:hover {
    color: #b8bf3b;
}

.partners-logo-container .row {
  margin-left: -5px;
  margin-right: -5px;
}

.partners-logo-container .col-md-2 {
  padding-left: 5px;
  padding-right: 5px;
}

.partners-logo-container .partners-logo {
  text-align: center;
}

@media (max-width: 767px) {
  .partners-logo-container .col-md-2 {
      width: 50%;
      flex: 0 0 50%;
      max-width: 50%;
  }
}


.single-faqs-content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.corporate-image {
  text-align: center;
  border: 0.5px solid #3b8d83;
  padding: 10px;
}

.corporate-image img {
  width: auto;
  height: 500px;
}

.small-images {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.small-image {
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.small-image:hover {
  transform: scale(1.1);
  border-color: #3b8d83;
}

@media only screen and (max-width: 767px) {
  .row {
      flex-direction: column !important;
  }

  .corporate-image img {
      height: auto;
      max-height: 300px;
  }

  .small-image {
      width: 80px;
      height: 80px;
  }
}


/* a {
  color: black ;
  text-decoration: none;
} */

.team-two-card h3 a {
  color: #212529 !important;
}







#gt_float_wrapper {
  top: 30px !important;
}
.gt_float_switcher {
  font-family: Arial;
  font-size: 20px;
  border-radius: 2px;
  color: #555;
  display: inline-block;
  line-height: 20px;
  box-shadow: rgb(58 139 129 / 35%) !important;
  background: #fff;
  overflow: hidden;
  transition: all .5s cubic-bezier(0.4, 0, 1, 1);
}

.switch-box {
  display: none !important;
}
.gt_float_switcher .gt-selected {
  position: relative;
  z-index: 888;
  background-color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  text-align: right;  
  padding: 3px 9px !important;

}

.gt_float_wrapper {
  right: 52px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 3px 9px !important;
}


@media only screen and (max-width: 991px) {
  .gt_float_switcher .gt-selected {
    display: none !important;
  }
}
