
body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: #444444;
}
:root {
    --color1: #00713d;
    --color2: #ff6c1b;
}


@font-face {
  font-family: fast-track;
  src: url('/assets/fonts/Fast-Track.otf');
}

a {
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-decoration: none;
  color: #8b8c90;
}

a:hover {
  text-decoration: none;
  color: var(--color2);
}
.about-area-three .about-content p a {
  color: var(--color2);
  font-size: 20px;
  font-weight: bold;
}
a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #201f25;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

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

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

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: #222;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: 0;
  border: 1px solid #ddd;
}

.form-control:hover:focus,
.form-control:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #f9fafb;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 40px;
  line-height: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  background-color: var(--color1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
}



.default-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--color1)),
    to(transparent)
  );
  background: linear-gradient(top, var(--color1), transparent);
  width: 2px;
  height: 100%;
  opacity: 0;
}

.default-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--color1)),
    to(transparent)
  );
  background: linear-gradient(bottom, var(--color1), transparent);
  width: 2px;
  height: 100%;
  opacity: 0;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(var(--color1)),
    to(transparent)
  );
  background: linear-gradient(right, var(--color1), transparent);
  width: 100%;
  height: 2px;
  opacity: 0;
}

.default-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color1)),
    to(transparent)
  );
  background: linear-gradient(left, var(--color1), transparent);
  width: 100%;
  height: 2px;
  opacity: 0;
}

.default-btn:hover {
  background-color: var(--color2);
  color: #ffffff;
}

.default-btn:hover::before {
  -webkit-animation: right 2s linear infinite;
  animation: right 2s linear infinite;
  opacity: 1;
}

.default-btn:hover::after {
  -webkit-animation: left 2s linear infinite;
  animation: left 2s linear infinite;
  opacity: 1;
}

.default-btn:hover span::before {
  -webkit-animation: top 2s linear infinite;
  animation: top 2s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 1;
}

.default-btn:hover span::after {
  -webkit-animation: bottom 2s linear infinite;
  animation: bottom 2s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 1;
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes top {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.grecaptcha-badge {
    z-index: 99;
}

/*
Read More Btn Area Style*/
.read-more {
  font-weight: 500;
  font-size: 15px;
  color: #201f25;
}

.read-more i {
  position: relative;
  position: relative;
  top: 1.7px;
  margin-left: 5px;
}

.read-more:hover {
  color: var(--color2);
}

/*
Section Title Area Style*/
.section-title {
  max-width: 750px;
  margin: -5px auto 20px;
  text-align: center;
  position: relative;
}

.section-title span {
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
  color: var(--color2);
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.white-title span {
  color: var(--color2);
}

.section-title.white-title h2 {
  color: #ffffff;
}

.section-title.white-title p {
  color: #ffffff;
}

.section-title.left-title {
  text-align: center;
}

.section-btn {
  float: right;
}

/*
Header Area Style
======================================================*/
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.top-header {
  background-color: var(--color1);
  padding-top: 6px;
  padding-bottom: 7px;
}

.top-header .header-left-content {
  line-height: 1;
}

.top-header .header-left-content li {
  display: inline-block;
  margin-right: 5px;
}

.top-header .header-left-content li a:hover i {
  color: var(--color2);
}

.top-header .header-right-content {
  line-height: 1;
  float: right;
  position: relative;
}
.ratingdiv img {
  margin-right: 8px;
}

.top-header .header-right-content .language {
  display: inline-block;
}

.top-header .header-right-content .language .nice-select {
  background-color: transparent;
  color: #ffffff;
  border: none;
}

.top-header .header-right-content .language .nice-select .option {
  color: var(--color1) !important;
}

.top-header .header-right-content .language .nice-select::after {
  border-color: #ffffff;
  width: 8px;
  height: 8px;
  top: 42%;
}

.top-header.top-header-three .call-us {
  display: inline-block;
  position: relative;
  top: -5px;
  margin-right: 20px;
}

.top-header.top-header-three .call-us i {
  font-size: 20px;
  position: relative;
  top: 4px;
  color: #ffffff;
  margin-right: 5px;
}

.top-header.top-header-three .call-us a {
  font-weight: 600;
  color: #ffffff;
}

.flag-area {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 2px;
  position: relative;
  top: -8px;
}

.flag-area .flag-item-top {
  position: relative;
}

.flag-area .flag-item-top .flag-bar span {
  position: relative;
  top: 1px;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}

.flag-area .flag-item-top .flag-bar i {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  top: 4px;
}

.flag-area .flag-item-top .flag-item-bottom {
  list-style: none;
  position: absolute;
  top: 50px;
  padding: 20px !important;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  width: 200px;
  left: -95px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  margin: 0;
  text-align: left;
}

.flag-area .flag-item-top .flag-item-bottom::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 8px solid transparent;
  top: -8px;
  right: 25px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item {
  margin-bottom: 15px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item:last-child {
  margin-bottom: 0;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link {
  color: #201f25;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link img {
  width: 20px;
  margin-right: 8px;
  border-radius: 50%;
  position: relative;
  top: -2px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
  color: var(--color2);
}

.flag-area .flag-item-top:hover .flag-item-bottom {
  visibility: visible;
  opacity: 1;
  top: 35px;
  z-index: 9999;
}

.main-nav .navbar-collapse {
    background-color: var(--color1);
    position: relative;
    z-index: 99;
    box-shadow: 0px 11px 28px 1px rgb(255 255 255 / 16%);
}

.main-header {
  padding-top: 8px;
  padding-bottom: 8px;
}

.header-left-content a i:after {
  content: "";
  height: 40px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}
.header-info span {
    font-size: 22px;
    font-weight: 700;
}
.main-navbar {
  position: relative;
  background-color: var(--color2);
}
.main-navbar-divider {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(94% 0%, 100% 50%, 94% 100%, 0% 100%, 0 49%, 0% 0%);
  height: 99px;
  width: 29%;
}
.header-left-content li {
    max-width: 250px;
}
.header-left-content a,
.ratingdiv a {
  color: #fff;
}
.ratingdiv span {
    color: #fff;
}
/*
Nav Area Style
======================================================*/
.navbar-area {
  background-color: #ffffff;
}

.navbar-area .main-nav {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-area .main-nav .navbar {
  padding: 0;
}

.navbar-brand {
    max-width: 280px;
}

.navbar-area .main-nav .navbar .navbar-brand {
  font-size: 0;
  padding: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item {
  position: relative;
  padding: 0 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 0;
  position: relative;
  z-index: 1;
  margin: 0 15px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a i {
  font-size: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--color2);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--color2);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 130%;
  left: 15px;
  opacity: 0;
  width: 250px;
  visibility: hidden;
  z-index: 99;
  display: block;
  padding: 0;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-top: 2px solid var(--color2);
  margin-top: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.navbar-brand img {
    margin-bottom: 5px;
}

.navbar-brand h5 {
    white-space: break-spaces;
    text-align: center;
}

.navbar-brand h5 a{
    color:var(--color2);
    font-family: fast-track;
    font-size: 18px;
}

.navbar-brand h5 span {
    color:var(--color1);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a,
.mega-menu-dropdown li a {
  font-size: 14px;
  color: #201f25;
  position: relative;
  padding: 10px 15px;
  border-bottom: 2px dashed #eeeeee;
  margin-left: 0;
  margin-right: 0;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 12px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 20px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
  display: none;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--color2);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--color2);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu {
  left: 100%;
  top: 0;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:last-child
  a {
  border-bottom: none;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu {
  position: absolute;
  left: -98%;
  top: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  position: absolute;
  right: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #201f25;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover {
  color: var(--color2);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus {
  color: var(--color2);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: var(--color2);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -4px !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:hover
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu:last-child
  .dropdown-menu {
  left: auto;
  right: -100%;
}

.navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.pool-covers-item .pool-covers-content h3 {
  margin: 0;
}
.navbar-area .others-option .call-us {
  display: inline-block;
  background: var(--color2);
  padding: 6px 20px;
  font-size: 20px;
  color: #fff;
  border-radius: 4px;
}
.navbar-area .others-option .call-us:hover {
  background: var(--color1);
}
.call-us a {
  color: #fff;
}
.navbar-area .others-option .call-us i {
  font-size: 26px;
  position: relative;
  top: 4px;
  color: #fff;
  margin-right: 5px;
}

.navbar-area .others-option .call-us a {
  font-weight: 600;
}

.navbar-area .others-option .option-item {
  color: #8b8c90;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 2px;
}

.navbar-area .others-option .option-item .search-overlay {
  display: none;
}

.navbar-area .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.navbar-area
  .others-option
  .option-item
  .search-overlay.search-popup
  .search-form {
  position: relative;
}

.navbar-area
  .others-option
  .option-item
  .search-overlay.search-popup
  .search-form
  .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #201f25;
  outline: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.navbar-area
  .others-option
  .option-item
  .search-overlay.search-popup
  .search-form
  .search-input:focus {
  border-color: var(--color2);
}

.navbar-area
  .others-option
  .option-item
  .search-overlay.search-popup
  .search-form
  .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--color2);
  border: none;
  width: 50px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 0;
}

.navbar-area
  .others-option
  .option-item
  .search-overlay.search-popup
  .search-form
  .search-button:hover {
  background-color: #201f25;
}

.navbar-area .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--color1);
  text-align: center;
  border-radius: 50%;
}

.navbar-area .others-option .option-item .search-btn:hover {
  background-color: var(--color2);
}

.navbar-area .others-option .option-item .close-btn {
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--color1);
  text-align: center;
  border-radius: 50%;
  display: none;
}

.navbar-area .others-option .option-item .close-btn:hover {
  background-color: var(--color2);
}

.navbar-area .others-option .option-item .close-btn.active {
  display: block;
}

.navbar-area .others-option .cart-icon {
  display: inline-block;
  margin-left: 20px;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

.navbar-area .others-option .cart-icon a i {
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--color1);
}

.navbar-area .others-option .cart-icon a span {
  position: absolute;
  top: -2px;
  right: -7px;
  width: 18px;
  height: 18px;
  line-height: 17px;
  background-color: var(--color2);
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.navbar-area .others-option .cart-icon a:hover i {
  color: #ffffff;
  background-color: var(--color2);
}

.navbar-area .others-option .cart-icon a:hover span {
  background-color: var(--color1);
}

.navbar-area.navbar-area-two .others-option {
  position: relative;
  top: 5px;
}

.navbar-area.navbar-area-two .others-option .call-us {
  top: -9px;
}

.navbar-area.navbar-area-two .others-option .option-item {
  top: -6px;
}

.navbar-area.navbar-area-two .others-option .cart-icon {
  top: -5px;
  margin-right: 8px;
}

.navbar-area.navbar-area-two
  .others-option
  .flag-area
  .flag-item-top
  .flag-bar
  img {
  border-color: var(--color1);
  width: 38px;
}

.navbar-area.navbar-area-two
  .others-option
  .flag-area
  .flag-item-top
  .flag-bar
  span {
  color: #201f25;
}

.navbar-area.navbar-area-two
  .others-option
  .flag-area
  .flag-item-top
  .flag-bar
  i {
  color: #201f25;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area {
  -webkit-box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}
.nav-item.open-mega-menu {
  position: static !important;
}
.mega-menu {
  left: 0;
  z-index: 99;
  top: 130%;
}
.mega-menu:not(.mega-menu-active) {
    display:none;
}
.mega-menu-active {
  top: 100%;
  -webkit-animation: fadeIn 0.2s;
  animation: fadeIn 0.2s;
}
.mega-menu-dropdown {
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 6), 1fr));
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
  border-top: 2px solid var(--color2);
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  background-color: #e3e3e3;
}


.mega-menu-dropdown.brand {
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 4), 1fr));
  max-width: 90%;
}


.navbar-area .main-nav nav .navbar-nav .mega-menu-dropdown .nav-link {
  margin: 0;
  color: #201f25;
  font-size: 14px;
  padding: 6px 15px;
}
@-webkit-keyframes fadeIn {
  from {
    top: 130%;
  }
  to {
    top: 92%;
  }
}
@keyframes fadeIn {
  from {
    top: 130%;
  }
  to {
    top: 92%;
  }
}

/*
Mobile Nav Area Style
======================================================*/
.mobile-nav {
  display: none;
}

/*
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: 9991;
  position: absolute;
  right: 60px;
  top: 21px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: var(--color2);
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--color1);
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 262px;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
}

.others-option-for-responsive .option-inner {
  padding: 15px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.others-option-for-responsive .option-inner .others-option {
  background-color: #ffffff;
  padding: 10px;
  position: absolute;
  top: 70px;
  right: 0;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.others-option-for-responsive .option-inner .others-option .option-item {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}

.others-option-for-responsive
  .option-inner
  .others-option
  .option-item:first-child {
  margin-left: 0;
  padding-left: 0;
}

.others-option-for-responsive .sidebar-menu {
  display: inline-block;
  margin-left: 10px;
}

.others-option-for-responsive .sidebar-menu a i {
  font-size: 25px;
  background-color: var(--color2);
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  border-radius: 50px;
}

/*
Banner Area Style
======================================================*/
.banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px !important;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.5;
  z-index: -1;
}

.banner-area.bg-2 {
  background-image: url(../img/banner/banner-bg-2.html);
}

.banner-area .banner-one-bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner-area.banner-area-two::before {
  display: none;
}

.banner-area.banner-area-two .banner-content {
  text-align: left;
  max-width: 100%;
  margin-top: 20px;
}

.banner-area.banner-area-two .banner-content h1 {
  color: #201f25;
  font-size: 40px;
}

.banner-area.banner-area-two .banner-content p {
  color: #8b8c90;
}

.banner-area.banner-area-two .banner-img {
  text-align: right;
}

.banner-area.banner-area-two .banner-shape-1 {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: -1;
}

.banner-area.banner-area-two .banner-shape-2 {
  position: absolute;
  top: 250px;
  left: 100px;
  z-index: -1;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}
.banner-content p {
  max-width: 100%;
  margin: auto;
  color: #fff;
}
section.testimonial-area.pt-70.pb-70.bg-color {
  background: var(--color2);
}
.banner-content {
overflow: hidden;
    max-width: 50%;
    text-align: left;
}
.single-footer-widget .import-link li a:before {
  content: "\f105";
  margin-right: 11px;
  font-family: FontAwesome;
  position: absolute;
  left: 0;
}
.banner-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
}

.banner-btn.wow.fadeInUp {
  margin-top: 20px;
}

.banner-content .default-btn {
  background-color: var(--color2);
  margin-top:10px;
  border:1px solid var(--color2);
  animation-name: my-animation;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  padding: 15px 15px;

}
@keyframes my-animation {
  from {
    background-color: var(--color2);
    width: 180px;
  }
  to {
    background-color:var(--color2);
    width: 150px;
  }
}
.banner-content .default-btn:hover {
  background-color: var(--color1);
  border:1px solid var(--color2);
}

/*
Hero Slider Area Style
======================================================*/
.hero-slider-area {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.hero-slider-area .slider-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-slider-area .slider-item.slider-item-bg-1 {
  background-image: url(../img/slider/slider-1.jpg);
}

.hero-slider-area .slider-item.slider-item-bg-2 {
  background-image: url(../img/slider/slider-2.jpg);
}

.hero-slider-area .slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero-slider-area .slider-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero-slider-area .slider-item .slider-text {
  position: relative;
  max-width: 800px;
  z-index: 1;
  overflow: hidden;
  margin: 150px auto 0;
  text-align: center;
}

.hero-slider-area .slider-item .slider-text .top-title {
  color: var(--color2);
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}

.hero-slider-area .slider-item .slider-text h1 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero-slider-area .slider-item .slider-text p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 35px;
}

.hero-slider-area .slider-item .slider-text .slider-btn .default-btn {
  background-color: var(--color2);
}

.hero-slider-area .owl-item.active .slider-item::before {
  -webkit-animation: 3s 0.3s fadeInLeft both;
  animation: 3s 0.3s fadeInLeft both;
}

.hero-slider-area .owl-item.active .slider-item::after {
  -webkit-animation: 3s 0.3s fadeInRight both;
  animation: 3s 0.3s fadeInRight both;
}

.hero-slider-area .owl-item.active .slider-text.overflow-hidden {
  overflow: hidden;
}

.hero-slider-area .owl-item.active .slider-text .top-title {
  -webkit-animation: 2s 0.2s fadeInDownBig both;
  animation: 2s 0.2s fadeInDownBig both;
}

.hero-slider-area .owl-item.active .slider-text h1 {
  -webkit-animation: 2s 0.2s fadeInLeft both;
  animation: 2s 0.2s fadeInLeft both;
}

.hero-slider-area .owl-item.active .slider-text p {
  -webkit-animation: 2s 0.2s fadeInRight both;
  animation: 2s 0.2s fadeInRight both;
}

.hero-slider-area .owl-item.active .slider-text .slider-btn {
  -webkit-animation: 2s 0.2s fadeInUpBig both;
  animation: 2s 0.2s fadeInUpBig both;
}

.hero-slider-area .owl-prev i {
  background-color: transparent !important;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.hero-slider-area .owl-prev i:hover {
  border-color: var(--color1);
}

.hero-slider-area .owl-next i {
  background-color: transparent !important;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.hero-slider-area .owl-next i:hover {
  border-color: var(--color1);
}

.hero-slider-area .owl-next {
  position: absolute;
  top: 50%;
  right: 30px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}

.hero-slider-area .owl-next i {
  background-color: var(--color2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 26px;
  border-radius: 0;
}

.hero-slider-area .owl-next i:hover {
  background-color: var(--color1) !important;
}

.hero-slider-area .owl-prev {
  position: absolute;
  top: 50%;
  left: 30px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}

.hero-slider-area .owl-prev i {
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 26px;
  border-radius: 0;
}

.hero-slider-area .owl-prev i:hover {
  background-color: var(--color1) !important;
}

.hero-slider-area:hover .owl-prev {
  opacity: 1;
}

.hero-slider-area:hover .owl-next {
  opacity: 1;
}

.hero-slider-area .owl-theme .owl-nav {
  margin-top: 0 !important;
}

.hero-slider-area .owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
}

/*
Feature Area Style
======================================================*/
.feature-area-three {
  position: relative;
  z-index: 1;
}

.feature-area-three .single-feature {
  padding: 30px;
  padding-left: 100px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border: 1px dotted var(--color1);
}

.feature-area-three .single-feature i {
  left: 30px;
  top: 30px;
}

.feature-area-three .single-feature:hover {
  border-color: var(--color2);
}

.single-feature {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-feature img {
  position: relative;
  top: 0;
  left: 0;
  font-size: 50px;
  line-height: 1;
  color: var(--color2);
}

.single-feature h3 {
  margin-bottom: 10px;
}

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

/*
About Area Style
======================================================*/
.about-area-three .container-fluid {
  max-width: 100%;
}

.about-area-three .about-bg-img {
  background-image: url(/userfiles/images/about/about-car-key-side-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.about-area-three .about-content-bg {
  background-color: var(--color1);
  padding: 100px 50px;
  position: relative;
}

.about-area-three .about-content-bg .about-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
}

.about-area-three .about-content {
  max-width: 600px;
  margin-bottom: 0;
}

.about-area-three .about-content h2 {
  color: #ffffff;
}

.about-area-three .about-content h2::before {
  background-color: #ffffff;
}

.about-area-three .about-content p {
  color: #ffffff;
}

.about-area-three .about-content .default-btn {
  background-color: var(--color2);
}

.about-area-three .about-content .default-btn:hover {
  background-color: #201f25;
}

.about-img {
  margin-bottom: 30px;
}

.about-content {
  margin-left: 40px;
  margin-bottom: 5px;
}

.about-diy {
  margin-left: 0px;
  margin-bottom: 30px;
}

.about-content .top-title {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  color: var(--color2);
  font-weight: 500;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.about-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #201f25;
}

.about-content .default-btn {
  margin-top: 8px;
}

/*
Partner Area Style
======================================================*/
.partner-area {
  text-align: center;
}

.partner-area .owl-carousel .owl-item {
  line-height: 1;
}

.partner-area .owl-carousel .owl-item img {
  width: auto;
  opacity: 0.7;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.partner-area .owl-carousel .owl-item:hover img {
  opacity: 1;
}

/*
Pool Covers Area Style
======================================================*/
.pool-covers-area {
  overflow: hidden;
}

.pool-covers-area .container-fluid {
  max-width: 100% !important;
}

.pool-covers-item {
  position: relative;
}

.pool-covers-item .pool-covers-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.65);
}

.pool-covers-item .pool-covers-content h3 a {
  color: #ffffff;
}

.pool-covers-item:hover h3 a {
  color: var(--color2);
}

/*
Services Area Style
======================================================*/
.our-services-area.our-services-area-two {
  position: relative;
}

.our-services-area.our-services-area-two .single-services {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border-top: 2px solid var(--color2);
  border-left: 1px dotted #ffffff;
  border-right: 1px dotted #ffffff;
  border-bottom: 1px dotted #ffffff;
  margin-top: 5px;
}

.our-services-area.our-services-area-two .single-services:hover {
  border-left: 1px dotted var(--color2);
  border-right: 1px dotted var(--color2);
  border-bottom: 1px dotted var(--color2);
}

.our-services-area.our-services-area-two .owl-dots {
  margin-top: 0px !important;
  line-height: 1;
}

.our-services-area.our-services-area-two .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 10px;
  background: transparent;
  border: 1px solid var(--color2);
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
}

.our-services-area.our-services-area-two .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 50%;
  margin: 4px;
}

.our-services-area.our-services-area-two .owl-dots .owl-dot:hover span {
  border-color: var(--color2);
}

.our-services-area.our-services-area-two .owl-dots .owl-dot:hover span::before {
  background-color: var(--color2);
  margin: 2px;
}

.our-services-area.our-services-area-two .owl-dots .owl-dot.active span {
  border-color: var(--color2);
  position: relative;
}

.our-services-area.our-services-area-two
  .owl-dots
  .owl-dot.active
  span::before {
  background-color: var(--color2);
  margin: 2px;
}

.our-services-area.our-services-area-two .owl-dots .owl-dot .active span,
.our-services-area.our-services-area-two
  .owl-dots
  .owl-dot
  .owl-theme
  .owl-dots
  .owl-dot:hover
  span {
  background-color: transparent;
}

.our-services-area.our-services-area-two .services-shape-1 {
  position: absolute;
  top: 50px;
  left: 50px;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

.our-services-area.our-services-area-two .services-shape-2 {
  position: absolute;
  bottom: 50px;
  left: 50px;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}

.our-services-area.our-services-area-two .services-shape-3 {
  position: absolute;
  top: 50px;
  right: 50px;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}

.our-services-area.our-services-area-three .single-services .services-content {
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.our-services-area.our-service-area-three .single-services {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.our-services-area.our-service-area-three .single-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color2);
  opacity: 0.7;
  z-index: -1;
}

.our-services-area.our-service-area-three .single-services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.our-services-area.our-service-area-three .single-services.bg-1 {
  background-image: url(../img/services/services-1.jpg);
}

.our-services-area.our-service-area-three .single-services.bg-2 {
  background-image: url(../img/services/services-2.jpg);
}

.our-services-area.our-service-area-three .single-services.bg-3 {
  background-image: url(../img/services/services-3.jpg);
}

.our-services-area.our-service-area-three .single-services.bg-4 {
  background-image: url(../img/services/services-4.jpg);
}

.our-services-area.our-service-area-three .single-services.bg-5 {
  background-image: url(../img/services/services-5.jpg);
}

.our-services-area.our-service-area-three .single-services.bg-6 {
  background-image: url(../img/services/services-6.jpg);
}

.our-services-area.our-service-area-three .single-services span {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.our-services-area.our-service-area-three .single-services p {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.our-services-area.our-service-area-three .single-services:hover::after {
  opacity: 0;
}

.our-services-area.our-service-area-three .single-services:hover span {
  color: #ffffff;
}

.our-services-area.our-service-area-three .single-services:hover h3 a {
  color: #ffffff;
}

.our-services-area.our-service-area-three .single-services:hover p {
  color: #ffffff;
}

.our-services-area.our-service-area-three .services-content {
  margin-bottom: 30px;
}

.our-services-area.our-service-area-three .services-content h2 {
  font-weight: 500;
  font-size: 35px;
  padding-bottom: 0;
}

.our-services-area.our-service-area-three .services-content h2::before {
  display: none;
}

.our-services-area.our-service-area-three .services-content .default-btn {
  margin-top: 0;
  margin-bottom: -7px;
}

.services-content {
  margin-bottom: 30px;
}

.services-content .top-title {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  color: var(--color2);
  font-weight: 500;
}

.services-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.services-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #201f25;
}

.services-content .default-btn {
  margin-top: 8px;
}

.single-services {
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services span {
  font-size: 50px;
  color: var(--color2);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.single-services h3 {
  margin-bottom: 15px;
}

.single-services h3 a {
  color: #201f25;
}

.single-services h3:hover a {
  color: var(--color2);
}

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

/*
Video Area Style
======================================================*/
.video-area {
  text-align: center;
  z-index: 1;
  position: relative;
}

.video-area .video-content {
  max-width: 810px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.video-area .video-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.video-area .video-content .video-shape-2 {
  position: absolute;
  left: -260px;
  top: 50%;
  z-index: -1;
}

.video-area .video-content .video-shape-3 {
  position: absolute;
  right: -200px;
  top: 50%;
  z-index: -1;
}

.video-area .video-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/*
Testimonial Area Style
======================================================*/
.testimonial-area .testimonial-title {
  text-align: center;
  margin-top: -5px;
  margin-bottom: 30px;
}

.testimonial-area .testimonial-title i {
  font-size: 50px;
  line-height: 1;
  color: #201f25;
  margin-bottom: 20px;
  display: block;
}


.testimonial-area .testimonial-title p {
  font-size: 28px;
  margin-bottom: 0;
  color: #fff;
}

.testimonial-area .owl-nav {
  margin-top: 0;
}

.testimonial-area .owl-nav .owl-prev {
  margin: 0 !important;
  position: absolute;
  top: 50px;
  left: 50px;
  -webkit-transform: translateY(55px);
  transform: translateY(55px);
}

.testimonial-area .owl-nav .owl-prev i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #8b8c90;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.testimonial-area .owl-nav .owl-prev:hover i {
  background-color: var(--color2);
  color: #ffffff;
  border-color: var(--color2);
}

.testimonial-area .owl-nav .owl-next {
  margin: 0 !important;
  position: absolute;
  top: 50px;
  right: 50px;
  -webkit-transform: translateY(55px);
  transform: translateY(55px);
}

.testimonial-area .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #8b8c90;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.testimonial-area .owl-nav .owl-next:hover i {
  background-color: var(--color2);
  color: #ffffff;
  border-color: var(--color2);
}

.testimonial-area .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
}

.testimonial-area.testimonials-area-two .owl-dots {
  margin-top: 50px !important;
  line-height: 1;
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 10px;
  background: transparent;
  border: 1px solid var(--color2);
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 50%;
  margin: 4px;
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot:hover span {
  border-color: var(--color2);
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot:hover span::before {
  background-color: var(--color2);
  margin: 2px;
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot.active span {
  border-color: var(--color2);
  position: relative;
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot.active span::before {
  background-color: var(--color2);
  margin: 2px;
}

.testimonial-area.testimonials-area-two .owl-dots .owl-dot .active span,
.testimonial-area.testimonials-area-two
  .owl-dots
  .owl-dot
  .owl-theme
  .owl-dots
  .owl-dot:hover
  span {
  background-color: transparent;
}

.testimonial-area.testimonials-area-two .testimonials-slider-two {
  max-width: 600px;
  margin-left: auto;
}

.testimonial-area.testimonials-area-two .testimonial-title {
  max-width: 600px;
  margin-left: auto;
}

.testimonial-area.testimonial-area-three {
  position: relative;
}

.testimonial-area.testimonial-area-three .testimonial-shape-1 {
  position: absolute;
  top: 30px;
  left: 30px;
}

.testimonial-area.testimonial-area-three .testimonial-shape-2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.testimonial-area.testimonial-page .testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content {
  text-align: center;
  max-width: 810px;
  margin: auto;
}

.testimonial-content i {
  font-size: 60px;
  color: var(--color1);
  text-align: center;
  display: block;
  line-height: 1;
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
}

.testimonial-content p {
  margin-bottom: 10px;
  color:#fff;
}

/*
Gallery Area Style
======================================================*/
.gallery-area {
  background-image: url(../img/gallery/gallery-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.gallery-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9fafb;
  opacity: 0.9;
}

.gallery-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}

.gallery-area .gallery-shape-1 {
  position: absolute;
  top: 0;
  right: 190px;
}

.gallery-area .gallery-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.gallery-area .owl-nav {
  margin-top: 0;
  text-align: center;
  margin-right: 0;
}

.gallery-area .owl-nav .owl-prev i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #8b8c90;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.gallery-area .owl-nav .owl-prev:hover i {
  background-color: var(--color2);
  color: #ffffff;
  border-color: var(--color2);
}

.gallery-area .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #8b8c90;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.gallery-area .owl-nav .owl-next:hover i {
  background-color: var(--color2);
  color: #ffffff;
  border-color: var(--color2);
}

.gallery-area .owl-nav [class*="owl-"] {
  margin: 0 5px;
}

.gallery-area .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
}

.gallery-area.gallery-area-three {
  background-image: none;
  overflow: hidden;
  z-index: 1;
}

.gallery-area.gallery-area-three .container-fluid {
  max-width: 1335px;
  padding-right: 0;
  margin-left: auto;
  margin-right: 0;
}

.gallery-area.gallery-area-three::before {
  background-color: var(--color1);
  width: 1200px;
  z-index: -1;
}

.gallery-area.gallery-area-three::after {
  display: none;
}

.gallery-area.gallery-area-three .owl-nav {
  margin-right: 30px;
}

.gallery-area.gallery-area-three .gallery-shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.single-gallery {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-gallery .view-gallery {
  background-color: var(--color2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  opacity: 0.6;
}

.single-gallery .view-gallery i {
  font-size: 40px;
}

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

.single-gallery:hover .view-gallery {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.shorting .mix {
  display: none;
}

.shorting-menu {
  text-align: center;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  padding: 15px 30px;
}

.shorting-menu button.filter {
  background-color: transparent;
  font-size: 18px;
  color: #201f25;
  padding: 0 15px;
}

.shorting-menu button.filter.active {
  color: var(--color2);
}

/*
We are Area Style
======================================================*/
.we-are-area.feature-area-three {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#f9fafb)
  );
  background-image: linear-gradient(#ffffff, #f9fafb);
}

.we-are-area.feature-area-three .single-feature {
  padding: 20px !important;
  padding-left: 95px !important;
}

.we-are-area.feature-area-three .single-feature i {
  top: 20px;
  left: 20px;
}

.we-are-area.feature-area-three .single-feature p {
  margin-bottom: 0 !important;
}

.we-are-area.feature-area-three .we-are-content {
  margin-bottom: 0;
}

.we-are-area.feature-area-three .we-are-content p {
  margin-bottom: 30px;
}

.we-are-area.feature-area-three .choose-shape-1 {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: -1;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}

.we-are-area.feature-area-three .choose-shape-2 {
  position: absolute;
  bottom: 100px;
  left: 50px;
  z-index: -1;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

.we-are-area.feature-area-three .choose-shape-3 {
  position: absolute;
  bottom: 100px;
  right: 50px;
  z-index: -1;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}

.we-are-area.we-are-area-three {
  background-image: url(../img/we-are-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.we-are-area.we-are-area-three .we-area-form {
  max-width: 810px;
  margin: auto;
}

.we-are-content {
  margin-bottom: 30px;
}

.we-are-content .top-title {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  color: var(--color2);
  font-weight: 500;
}

.we-are-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.we-are-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #201f25;
}

.we-are-content ul {
  margin-top: 5px;
}

.we-are-content ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.we-are-content ul li i {
  color: var(--color1);
  font-size: 20px;
  position: relative;
  position: absolute;
  top: 1px;
  left: 0;
}

.we-are-content ul li:last-child {
  margin-bottom: 0;
}

.why-chooses-us {
  margin-bottom: 30px;
}

.why-chooses-us .top-title {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  color: var(--color2);
  font-weight: 500;
}

.why-chooses-us h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.why-chooses-us h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #201f25;
}

.why-chooses-us ul {
  margin-top: 5px;
}

.why-chooses-us ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.why-chooses-us ul li i {
  color: var(--color1);
  font-size: 20px;
  position: relative;
  position: absolute;
  top: 1px;
  left: 0;
}

.why-chooses-us ul li:last-child {
  margin-bottom: 0;
}

.chooses-us-img {
  margin-bottom: 30px;
}

.we-area-form {
  text-align: center;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 50px;
  margin-bottom: 30px;
}

.we-area-form .we-area-title {
  margin-bottom: 30px;
  margin-top: -6px;
}

.we-area-form .we-area-title h2 {
  font-size: 30px;
}

.we-area-form .nice-select {
  width: 100%;
  border-radius: 0;
  height: 50px;
  background-color: #f9f9f9;
}

.we-area-form .nice-select .current {
  position: relative;
  top: 4px;
}

.we-area-form .nice-select:focus {
  border-color: var(--color2);
}

.we-area-form .form-group {
  margin-bottom: 30px;
}

.we-area-form .form-group .form-control {
  background-color: #f9f9f9;
}

.we-area-form .default-btn {
  width: 100%;
}

/*
Product Area Style
======================================================*/
.showing-result {
  margin-bottom: 30px;
  margin-right: 15px;
  background-color: #f9fafb;
  padding: 10px;
}

.showing-result .showing-top-bar-ordering {
  text-align: right;
}

.showing-result .showing-top-bar-ordering .nice-select {
  color: var(--color2);
  border-radius: 0;
  border: none;
  float: unset;
  height: unset;
  line-height: initial;
  padding: 15px 35px 15px 15px;
  font-size: 16px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.showing-result .showing-top-bar-ordering .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 250px;
  overflow-y: scroll;
}

.showing-result .showing-top-bar-ordering .nice-select .list .option {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.showing-result .showing-top-bar-ordering .nice-select .list .option:hover {
  background-color: var(--color2) !important;
  color: #ffffff;
}

.showing-result .showing-top-bar-ordering .nice-select .list .option.selected {
  font-weight: 500;
  color: #8b8c90;
}

.showing-result .showing-top-bar-ordering .nice-select:after {
  right: 20px;
}

.showing-result .search-form .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--color2);
  color: #ffffff;
  font-size: 20px;
}

.showing-result .search-form .form-control {
  border: 1px solid #d7d7d7;
  background-color: #f5f6fa;
  font-size: 16px;
}

.showing-result .search-form .form-control::-webkit-input-placeholder {
  color: #616161;
}

.showing-result .search-form .form-control:-ms-input-placeholder {
  color: #616161;
}

.showing-result .search-form .form-control::-ms-input-placeholder {
  color: #616161;
}

.showing-result .search-form .form-control::placeholder {
  color: #616161;
}

.single-product {
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product .product-img {
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-product .product-img ul {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product .product-img ul li {
  display: inline-block;
  margin: 0 5px;
}

.single-product .product-img ul li a i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #201f25;
  border-radius: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product .product-img ul li a:hover i {
  background-color: var(--color2);
  color: #ffffff;
}

.single-product .product-img .default-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 30px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.single-product .product-img .default-btn span {
  margin-bottom: 0;
}

.single-product .product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #201f25;
  opacity: 0.2;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product a h3 {
  margin-bottom: 6px;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product a:hover h3 {
  color: var(--color2);
}

.single-product .rating li {
  display: inline-block;
  margin: 0 1px;
}

.single-product .rating li i {
  color: #ffb607;
}

.single-product span {
  font-size: 16px;
  display: block;
}

.single-product span del {
  margin-right: 10px;
}

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

.single-product:hover .product-img ul {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.single-product:hover .product-img::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.single-product:hover .product-img .default-btn {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*
Contact Info Area Style
======================================================*/
.contact-info-bg {
  padding: 50px;
  background-image: url(../img/contact-info-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.contact-info-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color1);
  opacity: 0.9;
  z-index: -1;
}

.single-contact-info {
  padding-left: 80px;
  position: relative;
}

.single-contact-info i {
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 50px;
  line-height: 1;
  color: #ffffff;
}

.single-contact-info h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.single-contact-info span {
  color: #ffffff;
}

.single-contact-info a {
  display: block;
  color: #ffffff;
}

.single-contact-info a:hover {
  color: var(--color2);
}

/*
Blog Area Style
======================================================*/
.single-blog-post {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}

.single-blog-post .news-content {
  background-color: #f9fafb;
  padding: 30px;
}

.single-blog-post .news-content h3 {
  margin-bottom: 15px;
}

.single-blog-post .news-content h3 a {
  color: #201f25;
}

.single-blog-post .news-content ul {
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.single-blog-post .news-content ul::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #8b8c90;
}

.single-blog-post .news-content ul li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}

.single-blog-post .news-content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  background-color: #8b8c90;
  width: 1px;
  height: 100%;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.single-blog-post .news-content ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.single-blog-post .news-content ul li:last-child::before {
  display: none;
}

.single-blog-post .news-content p {
  margin-top: -5px;
}

.single-blog-post:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.single-blog-post:hover .news-content h3 a {
  color: var(--color2);
}

.blog-area.blog-area-two {
  position: relative;
  z-index: 1;
}

.blog-area.blog-area-two .blog-shape-1 {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: -1;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

.blog-area.blog-area-two .blog-shape-2 {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: -1;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

/*
Subscribe Area Style
======================================================*/
.subscribe-area {
  background-color: #201f25;
}

.subscribe-area .container {
  max-width: 960px;
  margin: auto;
  border-bottom: 1px solid #35353a;
}

.subscribe-area .subscribe-content span {
  color: #ffffff;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.subscribe-area .subscribe-content h2 {
  font-size: 30px;
  margin-bottom: 0;
  color: #ffffff;
}

.subscribe-area .newsletter-form {
  position: relative;
  margin-right: 100px;
}

.subscribe-area .newsletter-form .form-control {
  height: 60px;
  background-color: transparent;
  color: #ffffff;
}

.subscribe-area .newsletter-form .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.subscribe-area .newsletter-form .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.subscribe-area .newsletter-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.subscribe-area .newsletter-form .form-control::placeholder {
  color: #ffffff;
}

.subscribe-area .newsletter-form .form-control:focus {
  border-color: #ffffff;
}

.subscribe-area .newsletter-form .default-btn {
  position: absolute;
  top: 6px;
  right: -100px;
  background-color: var(--color2);
}

.subscribe-area .newsletter-form #validator-newsletter {
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  bottom: -30px;
  left: 0;
}

/*
Footer Area Style
======================================================*/
.footer-area {
  background-color: var(--color1);
}

.single-footer-widget {
  margin-bottom: 0px;
}

.single-footer-widget .logo {
  margin-bottom: 0px;
}

.single-footer-widget h5 {
  color: #ffffff;
  font-size: 24px;
  padding-bottom: 15px;
  position: relative;
}
.single-footer-widget h5 a {
  color: #ffffff;
  font-size: 24px;
  padding-bottom: 0px;
  position: relative;
}

.single-footer-widget .address .location {
  padding-left: 40px;
  position: relative;
}

.single-footer-widget .address .location i {
  position: absolute;
  color: #fff;
  left: -2px;
  top: 0px;
  font-size: 25px;
}

.single-footer-widget .address li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
}

.single-footer-widget .address li a {
  display: block;
  color: #fff;
  font-size:18px;
}
.single-footer-widget p {
  color: #fff;
}
.single-footer-widget .address li a:hover {
  color: #61b6f3;
}

.single-footer-widget .address li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .address li i {
  position: absolute;
  color: #fff;
  left: 0;
  top: 2px;
  font-size: 30px;
}

.single-footer-widget .import-link li {
  margin-bottom: 10px;
  position: relative;
}

.single-footer-widget .import-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link li:hover a {
  color: #61b6f3;
}

/*
Copy Right Area Style
======================================================*/


.copy-right-area p {
  color: #ffffff;
}

.copy-right-area p a {
  color: #000;
}

.copy-right-area p i {
  position: relative;
  top: 2px;
}

/*
Pricing Area Style
======================================================*/
.single-pricing {
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
  border-radius: 0 50px 0 50px;
}

.single-pricing h3 {
  margin-top: -5px;
  margin-bottom: 5px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-pricing h2 {
  font-size: 50px;
  margin-bottom: 15px;
  color: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-pricing h2 sub {
  font-size: 25px;
  position: relative;
  top: 5px;
  font-weight: 500;
}

.single-pricing .plans {
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: block;
  border-bottom: 1px solid #dcdcdd;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-pricing ul {
  margin-bottom: 20px;
}

.single-pricing ul li {
  margin-bottom: 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-pricing ul li:last-child {
  margin-bottom: 0;
}

.single-pricing.active {
  background-color: var(--color2);
  position: relative;
}

.single-pricing.active h3 {
  color: #ffffff;
}

.single-pricing.active h2 {
  color: #ffffff;
}

.single-pricing.active .plans {
  color: #ffffff;
  border-color: #ffaf4d;
}

.single-pricing.active ul li {
  color: #ffffff;
}

.single-pricing.active .default-btn {
  background-color: #ffffff;
  color: var(--color2);
}

.single-pricing.active .recommended {
  position: absolute;
  top: 50px;
  left: -40px;
  background-color: #ffffff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding: 5px 10px;
  color: #201f25;
  font-weight: 500;
  border-radius: 0 0 0 5px;
}

.single-pricing:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  background-color: var(--color2);
}

.single-pricing:hover h3 {
  color: #ffffff;
}

.single-pricing:hover h2 {
  color: #ffffff;
}

.single-pricing:hover .plans {
  color: #ffffff;
  border-color: #ffaf4d;
}

.single-pricing:hover ul li {
  color: #ffffff;
}

.single-pricing:hover .default-btn {
  background-color: #ffffff;
  color: var(--color2);
}

.pricing-area.pricing-area-two {
  position: relative;
  z-index: 1;
}

.pricing-area.pricing-area-two .single-pricing {
  border: 1px dotted var(--color1);
}

.pricing-area.pricing-area-two .single-pricing.active {
  background-color: #ffffff;
  position: relative;
  border-color: var(--color2);
}

.pricing-area.pricing-area-two .single-pricing.active h3 {
  color: #201f25;
}

.pricing-area.pricing-area-two .single-pricing.active h2 {
  color: var(--color2);
}

.pricing-area.pricing-area-two .single-pricing.active .plans {
  color: #8b8c90;
  border-color: #dcdcdd;
}

.pricing-area.pricing-area-two .single-pricing.active ul li {
  color: #8b8c90;
}

.pricing-area.pricing-area-two .single-pricing.active .default-btn {
  background-color: var(--color2);
  color: #ffffff;
}

.pricing-area.pricing-area-two .single-pricing.active .recommended {
  position: absolute;
  top: 50px;
  left: -40px;
  background-color: var(--color2);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding: 5px 10px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0 0 0 5px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.pricing-area.pricing-area-two .single-pricing.active:hover {
  background-color: var(--color2);
}

.pricing-area.pricing-area-two .single-pricing.active:hover h3 {
  color: #ffffff;
}

.pricing-area.pricing-area-two .single-pricing.active:hover h2 {
  color: #ffffff;
}

.pricing-area.pricing-area-two .single-pricing.active:hover .plans {
  color: #ffffff;
  border-color: #ffaf4d;
}

.pricing-area.pricing-area-two .single-pricing.active:hover ul li {
  color: #ffffff;
}

.pricing-area.pricing-area-two .single-pricing.active:hover .default-btn {
  background-color: #ffffff;
  color: var(--color2);
}

.pricing-area.pricing-area-two .single-pricing.active:hover .recommended {
  background-color: #ffffff;
  color: #201f25;
}

.pricing-area.pricing-area-two .pricing-shape-1 {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: -1;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}

.pricing-area.pricing-area-two .pricing-shape-2 {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: -1;
  -webkit-animation: moveBounceY 5s linear infinite;
  animation: moveBounceY 5s linear infinite;
}

/*
Team Area Style
======================================================*/
.single-team {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-team .image {
  position: relative;
}

.single-team .image .social {
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.single-team .image .social li {
  display: inline-block;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}

.single-team .image .social li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #201f25;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #ffffff;
  border-radius: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-team .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.single-team .image .social li a:hover {
  color: #ffffff;
  background-color: var(--color2);
}

.single-team .image .social li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.single-team .image .social li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.single-team .image .social li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.single-team .image .social li:nth-child(4) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.single-team .content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  margin: 0 auto 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-team .content h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.single-team .content span {
  display: block;
  color: var(--color2);
  font-size: 14px;
  margin-top: 6px;
  font-weight: 600;
}

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

.single-team:hover .image .social li {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/*
Counter Area Style
======================================================*/
.counter-area {
  position: relative;
  overflow: hidden;
}

.counter-area .counter-shape-1 {
  position: absolute;
  bottom: -50px;
  left: 50px;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

.counter-area .counter-shape-2 {
  position: absolute;
  bottom: -50px;
  right: 50px;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

.single-counter {
  position: relative;
  padding: 30px;
  padding-left: 120px;
}

.single-counter h2 {
  position: absolute;
  top: 26px;
  left: 30px;
  font-size: 30px;
  color: var(--color2);
  border-right: 1px solid var(--color2);
  padding-right: 20px;
}

.single-counter h3 {
  position: relative;
  top: -10px;
}

@-webkit-keyframes moveBounceY {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes moveBounceY {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes moveBounceX {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes moveBounceX {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

/*====================================================
INNER PAGE STYLE AREA
======================================================*/
/* 
Page Title Area Style
=====================================================*/
.page-title-area {
  position: relative;
  padding-top: 285px;
  padding-bottom: 150px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.45;
  background-color: #000000;
}

.page-title-area.bg-1 {
  background-image: url(../img/page-bg/page-bg-1.jpg);
}

.page-title-area.bg-2 {
  background-image: url(../img/page-bg/page-bg-2.jpg);
}

.page-title-area.bg-3 {
  background-image: url(../img/page-bg/page-bg-3.jpg);
}

.page-title-area.bg-4 {
  background-image: url(../img/page-bg/page-bg-4.jpg);
}

.page-title-area.bg-5 {
  background-image: url(../img/page-bg/page-bg-5.jpg);
}

.page-title-area.bg-6 {
  background-image: url(../img/page-bg/page-bg-6.jpg);
}

.page-title-area.bg-7 {
  background-image: url(../img/page-bg/page-bg-7.jpg);
}

.page-title-area.bg-8 {
  background-image: url(../img/page-bg/page-bg-8.jpg);
}

.page-title-area.bg-9 {
  background-image: url(../img/page-bg/page-bg-9.jpg);
}

.page-title-area.bg-10 {
  background-image: url(../img/page-bg/page-bg-10.jpg);
}

.page-title-area.bg-11 {
  background-image: url(../img/page-bg/page-bg-10.jpg);
}

.page-title-area.bg-12 {
  background-image: url(../img/page-bg/page-bg-1.jpg);
}

.page-title-area.bg-13 {
  background-image: url(../img/page-bg/page-bg-3.jpg);
}

.page-title-area.bg-14 {
  background-image: url(../img/page-bg/page-bg-4.jpg);
}

.page-title-area.bg-15 {
  background-image: url(../img/page-bg/page-bg-5.jpg);
}

.page-title-area.bg-16 {
  background-image: url(../img/page-bg/page-bg-6.jpg);
}

.page-title-area.bg-17 {
  background-image: url(../img/page-bg/page-bg-7.jpg);
}

.page-title-area.bg-18 {
  background-image: url(../img/page-bg/page-bg-8.jpg);
}

.page-title-area.bg-19 {
  background-image: url(../img/page-bg/page-bg-9.jpg);
}

.page-title-area.bg-20 {
  background-image: url(../img/page-bg/page-bg-10.jpg);
}

.page-title-area.bg-21 {
  background-image: url(../img/page-bg/page-bg-1.jpg);
}

.page-title-area.bg-22 {
  background-image: url(../img/page-bg/page-bg-2.jpg);
}

.page-title-area.bg-23 {
  background-image: url(../img/page-bg/page-bg-3.jpg);
}

.page-title-area.bg-24 {
  background-image: url(../img/page-bg/page-bg-4.jpg);
}

.page-title-area.bg-25 {
  background-image: url(../img/page-bg/page-bg-5.jpg);
}

.page-title-area.bg-26 {
  background-image: url(../img/page-bg/page-bg-6.jpg);
}

.page-title-area.bg-27 {
  background-image: url(../img/page-bg/page-bg-7.jpg);
}

.page-title-area.bg-28 {
  background-image: url(../img/page-bg/page-bg-8.jpg);
}

.page-title-area.bg-29 {
  background-image: url(../img/page-bg/page-bg-9.jpg);
}

.page-title-area.bg-30 {
  background-image: url(../img/page-bg/page-bg-10.jpg);
}

.page-title-area .page-title-content {
  position: relative;
  margin-top: -10px;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 60px;
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: -5px;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding-right: 15px;
  margin-left: 15px;
  font-weight: 500;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -3px;
  background-color: var(--color2);
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #ffffff;
}

.page-title-area .page-title-content ul li a:hover {
  color: var(--color2);
}

.page-title-area .page-title-content ul .active {
  color: var(--color2);
}

/*
FAQ Area Style
======================================================*/
.faq-area {
  position: relative;
  z-index: 1;
}

.faq-area .faq-shape-1 {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.faq-area .faq-shape-2 {
  z-index: -1;
  position: absolute;
  bottom: 50px;
  left: 50px;
  -webkit-animation: moveBounceX 5s linear infinite;
  animation: moveBounceX 5s linear infinite;
}

.faq-bg {
  max-width: 700px;
  margin: auto;
}

.faq-accordion {
  max-width: 600px;
  margin-left: auto;
}

.faq-accordion .faq-title {
  margin-bottom: 25px;
}

.faq-accordion .faq-title h2 {
  font-size: 40px;
}

.faq-accordion .faq-title span {
  font-size: 18px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item.active {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 15px 15px 15px 30px;
  color: #201f25;
  text-decoration: none;
  position: relative;
  display: block;
  border-bottom: 1px solid #e7e7e7;
  font-size: 18px;
  font-weight: 600;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: unset;
  left: 0;
  top: 17px;
  font-size: 25px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: var(--color2);
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\eaf8";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -5px;
  padding: 30px;
  padding-bottom: 0;
  padding-left: 30px;
}

.faq-accordion .accordion .accordion-content span {
  font-weight: 500;
  color: #201f25;
}

.faq-accordion .accordion .accordion-content p {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Privacy Policy Area Style
=====================================================*/
.privacy-policy {
  max-width: 800px;
  margin: auto;
}

.privacy-policy .title {
  margin-bottom: 30px;
  text-align: center;
}

.privacy-policy .title h2 {
  font-size: 36px;
}

.privacy-policy .privacy-content {
  margin-bottom: 30px;
}

.privacy-policy .privacy-content h3 {
  margin-bottom: 15px;
}

.privacy-policy .privacy-content p {
  margin-bottom: 10px;
}

.privacy-policy .privacy-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
  margin-top: 15px;
}

.privacy-policy .privacy-content ul li {
  margin-bottom: 10px;
}

.privacy-policy .privacy-content ul li:last-child {
  margin-bottom: 0;
}

.privacy-policy .privacy-content.eight {
  margin-bottom: 0;
}

.privacy-policy .privacy-content.eight p {
  margin-bottom: 0;
}

/*
Terms Conditions Area Style
=====================================================*/
.terms-conditions {
  max-width: 800px;
  margin: auto;
}

.terms-conditions .title {
  margin-bottom: 30px;
}

.terms-conditions .title span {
  color: var(--color2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.terms-conditions .title h2 {
  font-size: 36px;
}

.terms-conditions img {
  margin-bottom: 30px;
}

.terms-conditions .conditions-content {
  margin-bottom: 30px;
}

.terms-conditions .conditions-content h3 {
  margin-bottom: 15px;
}

.terms-conditions .conditions-content p {
  margin-bottom: 10px;
}

.terms-conditions .conditions-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
  margin-top: 15px;
}

.terms-conditions .conditions-content ul li {
  margin-bottom: 10px;
}

.terms-conditions .conditions-content ul li:last-child {
  margin-bottom: 0;
}

.terms-conditions .conditions-content.six {
  margin-bottom: 0;
}

.terms-conditions .conditions-content.six p {
  margin-bottom: 0;
}

/*
Coming Soon Area CSS
=====================================================*/
.coming-soon-area {
  height: 100vh;
  position: relative;
  z-index: 1;
  background-image: url(../img/coming-soon-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.9;
  z-index: -1;
}

.coming-soon-area .coming-soon-content {
  max-width: 700px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding: 40px 60px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}

.coming-soon-area .coming-soon-content .logo {
  display: inline-block;
}

.coming-soon-area .coming-soon-content h2 {
  font-size: 48px;
  margin-top: 30px;
  margin-bottom: 0;
}

.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}

.coming-soon-area .coming-soon-content #timer div {
  background-color: #201f25;
  color: #ffffff;
  width: 100px;
  height: 105px;
  border-radius: 5px;
  font-size: 40px;
  font-weight: 800;
  margin-left: 10px;
  margin-right: 10px;
}

.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 17px;
  font-weight: 600;
}

.coming-soon-area .coming-soon-content form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-area .coming-soon-content form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}

.coming-soon-area .coming-soon-content form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #201f25;
}

.coming-soon-area .coming-soon-content form .form-group .label-title i {
  position: absolute;
  left: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  top: 9px;
  font-size: 22px;
}

.coming-soon-area .coming-soon-content form .form-group .label-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background: var(--color2);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  padding: 0 0 0 32px;
  color: #201f25;
  height: 45px;
  display: block;
  width: 100%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter::-webkit-input-placeholder {
  color: #8b8c90;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter:-ms-input-placeholder {
  color: #8b8c90;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter::-ms-input-placeholder {
  color: #8b8c90;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter::placeholder {
  color: #8b8c90;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter:focus {
  border-color: var(--color2);
  outline: 0 !important;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.coming-soon-area
  .coming-soon-content
  form
  .form-group
  .input-newsletter:focus::placeholder {
  color: transparent;
}

.coming-soon-area .coming-soon-content form .default-btn {
  border-radius: 0;
  position: relative;
}

.coming-soon-area .coming-soon-content form .default-btn::before {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: #ff0000;
}

.coming-soon-area .coming-soon-content form .validation-success {
  margin-top: 15px;
}

.coming-soon-area .coming-soon-content form p {
  margin-bottom: 0;
  margin-top: 20px;
}

.coming-soon-area .online-treatment-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}

.coming-soon-area .online-treatment-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
404 Error Area Style
=====================================================*/
.error-area {
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-area .error-content {
  z-index: 1;
  position: relative;
}

.error-area .error-content h1 {
  font-size: 300px;
  line-height: 1;
  font-weight: 700;
  color: var(--color2);
  margin-top: -48px;
}

.error-area .error-content h1 .a {
  display: inline-block;
}

.error-area .error-content h1 .red {
  color: #ff0000;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.error-area .error-content h1 .b {
  display: inline-block;
}

.error-area .error-content h3 {
  margin: 30px 0 0;
  position: relative;
  color: #ff0000;
}

.error-area .error-content p {
  margin: 20px 0 20px;
  font-size: 19px;
  color: var(--color2);
}

/*
User Area CSS
=====================================================*/
.user-area-style {
  position: relative;
  z-index: 1;
}

.user-area-style .contact-form-action {
  max-width: 640px;
  border-bottom: none;
  background-color: #f9fafb;
  padding: 30px;
  margin: auto;
}

.user-area-style .contact-form-action .account-title {
  margin-bottom: 30px;
}

.user-area-style .contact-form-action .account-title h2 {
  font-size: 30px;
  position: relative;
  line-height: 1;
  padding-bottom: 10px;
}

.user-area-style .contact-form-action .account-title h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #201f25;
}

.user-area-style .contact-form-action form .form-condition {
  margin-bottom: 20px;
}

.user-area-style .contact-form-action form .form-condition .agree-label {
  font-weight: 600;
}

.user-area-style .contact-form-action form .form-condition .agree-label a {
  color: var(--color2);
}

.user-area-style .contact-form-action form .form-group {
  margin-bottom: 30px;
}

.user-area-style .contact-form-action form .form-group .form-control {
  background-color: #ffffff;
}

.user-area-style .contact-form-action form .login-action {
  margin-bottom: 30px;
}

.user-area-style .contact-form-action form .login-action .log-rem {
  display: inline-block;
}

.user-area-style .contact-form-action form .login-action .log-rem label {
  margin-bottom: 0;
}

.user-area-style .contact-form-action form .login-action .forgot-login {
  display: inline-block;
  float: right;
}

.user-area-style .contact-form-action form .right {
  float: right;
}

.user-area-style .contact-form-action p {
  margin-top: 25px;
  line-height: 1;
}

.user-area-style .contact-form-action p a {
  color: #201f25;
}

.user-area-style .contact-form-action p a:hover {
  color: var(--color2);
}

.user-area-style.recover-password-area .recover {
  max-width: 600px;
  margin: auto;
  border-top: 1px solid #ebebeb;
  padding-top: 30px;
}

.user-area-style.recover-password-area .recover .default-btn {
  margin-bottom: 0;
  margin-top: 30px;
}

.user-area-style.recover-password-area h3 {
  font-size: 40px;
  margin-top: -11px;
}

.user-area-style.recover-password-area p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.user-area-style.recover-password-area .now-register {
  float: right;
  margin: 0;
}

/*
product-view-one
=================================================*/
.product-view-one {
  padding-right: 0 !important;
}

.product-view-one.modal.show .modal-dialog {
  margin-top: 25px;
}

.product-view-one .product-view-one-image {
  background-color: #eeeeee;
  padding: 30px;
}

.product-view-one .modal-dialog {
  max-width: 900px;
  margin: 0 auto;
}

.product-view-one .modal-content {
  border: none;
  padding: 40px;
  border-radius: 0;
}

.product-view-one .modal-content button.close {
  position: absolute;
  right: 0;
  top: 0;
  outline: 0;
  opacity: 1;
  color: #201f25;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 20px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
}

.product-view-one .modal-content button.close:hover {
  background-color: #ff0000;
  color: #ffffff;
}

.product-view-one .modal-content .product-content h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.product-view-one .modal-content .product-content h3 a {
  color: #201f25;
}

.product-view-one .modal-content .product-content h3 a:hover {
  color: #201f25;
}

.product-view-one .modal-content .product-content .price {
  margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .price span {
  display: inline-block;
  font-size: 18px;
  color: #201f25;
}

.product-view-one .modal-content .product-content .price del {
  display: inline-block;
  font-size: 18px;
  color: #c1c1c1;
  margin-left: 5px;
}

.product-view-one .modal-content .product-content .product-review {
  margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .product-review .rating {
  display: inline-block;
  padding-right: 5px;
}

.product-view-one .modal-content .product-content .product-review .rating i {
  color: var(--color2);
}

.product-view-one
  .modal-content
  .product-content
  .product-review
  .rating-count {
  display: inline-block;
  color: #201f25;
  border-bottom: 1px solid #201f25;
  line-height: initial;
}

.product-view-one .modal-content .product-content .product-info {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.product-view-one .modal-content .product-content .product-info li {
  font-size: 16px;
  color: #201f25;
  margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .product-info li:last-child {
  margin-bottom: 0;
}

.product-view-one .modal-content .product-content .product-info li span {
  color: #201f25;
}

.product-view-one .modal-content .product-content .product-info li a {
  display: inline-block;
  font-weight: 500;
  color: #201f25;
}

.product-view-one .modal-content .product-content .product-info li a:hover {
  color: #201f25;
}

.product-view-one .modal-content .product-content .product-color-switch {
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .product-color-switch h4 {
  font-size: 16px;
  color: #201f25;
  margin-bottom: 6px;
}

.product-view-one .modal-content .product-content .product-color-switch ul {
  list-style-type: none;
  margin-bottom: 0;
  margin-top: -4px;
  margin-left: -4px;
  padding-left: 0;
}

.product-view-one .modal-content .product-content .product-color-switch ul li {
  display: inline-block;
  margin-left: 4px;
  margin-top: 4px;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a {
  display: inline-block;
  position: relative;
  border: 1px solid transparent;
  width: 25px;
  height: 25px;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #eeeeee;
  margin: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a:hover {
  border-color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a:focus {
  border-color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a.color-white::before {
  background: blue;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a.color-black::before {
  background: #222222;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a.color-green::before {
  background: green;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a.color-yellowgreen::before {
  background: yellowgreen;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li
  a.color-teal::before {
  background: teal;
}

.product-view-one
  .modal-content
  .product-content
  .product-color-switch
  ul
  li.active
  a {
  border-color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #8b8c90;
  width: 40px;
  height: 100%;
  line-height: 50px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  span:hover {
  color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  span.minus-btn {
  left: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  span.minus-btn:hover {
  background-color: var(--color2);
  color: #ffffff;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  span.plus-btn {
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  span.plus-btn:hover {
  background-color: var(--color2);
  color: #ffffff;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  input {
  height: 48px;
  color: #201f25;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  input::-webkit-input-placeholder {
  color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  input:-ms-input-placeholder {
  color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  input::-ms-input-placeholder {
  color: #201f25;
}

.product-view-one
  .modal-content
  .product-content
  .product-add-to-cart
  .input-counter
  input::placeholder {
  color: #201f25;
}

.product-view-one .modal-content .product-content .share-this-product h3 {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 10px;
}

.product-view-one .modal-content .product-content .share-this-product ul li {
  display: inline-block;
  margin-right: 3px;
}

.product-view-one
  .modal-content
  .product-content
  .share-this-product
  ul
  li
  a
  i {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #eeeeee;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-view-one
  .modal-content
  .product-content
  .share-this-product
  ul
  li
  a:hover
  i {
  background-color: var(--color2);
  color: #ffffff;
}

.product-view-one .owl-carousel .owl-item img {
  width: unset;
  margin: auto;
}

.product-view-one #big .item {
  padding: 30px;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.product-view-one .owl-item.active.current {
  background-color: var(--color2) !important;
  padding: 5px;
}

.product-view-one.fade {
  -webkit-animation: zoomIn 1s linear;
  animation: zoomIn 1s linear;
}

.product-view-one .owl-next {
  position: absolute;
  top: 50%;
  right: 50px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.product-view-one .owl-next i {
  background-color: var(--color2);
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 4px;
  font-size: 15px;
}

.product-view-one .owl-prev {
  position: absolute;
  top: 50%;
  left: 50px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.product-view-one .owl-prev i {
  background-color: var(--color2) !important;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  border-radius: 4px;
}

.product-view-one:hover .owl-prev {
  opacity: 1;
  left: 0;
}

.product-view-one:hover .owl-next {
  opacity: 1;
  right: 0;
}

.product-view-one .owl-theme .owl-nav {
  margin-top: 0 !important;
}

.product-view-one .owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
}

/*
Shopping Cart Area Style
======================================================*/
.shopping-cart-area .cart-controller {
  max-width: 856px;
  margin: auto;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 30px;
}

.shopping-cart-area .product-thumbnail {
  width: 130px;
}

.shopping-cart-area .cart-table {
  text-align: center;
}

.shopping-cart-area .cart-table table thead tr th {
  border-bottom: none;
  border: none;
  border-bottom: 1px solid #dedede;
  color: #201f25;
  padding-top: 0;
  font-size: 16px;
  font-weight: 600;
}

.shopping-cart-area .cart-table table tbody tr td {
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #dedede;
  white-space: nowrap;
}

.shopping-cart-area .cart-table table tbody tr td:first-child {
  text-align: left;
  padding-left: 0;
}

.shopping-cart-area .cart-table table tbody tr td a {
  color: #201f25;
  font-weight: 600;
}

.shopping-cart-area .cart-table table tbody tr td a:hover {
  color: var(--color2);
}

.shopping-cart-area .cart-table table tbody tr td.product-subtotal {
  font-size: 15px;
}

.shopping-cart-area .cart-table table tbody tr td.product-subtotal .remove {
  margin-left: 50px;
  width: 30px;
  height: 30px;
  line-height: 34px;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #8b8c90;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  float: right;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-subtotal
  .remove:hover {
  background-color: #ff0000;
  color: #ffffff;
}

.shopping-cart-area .cart-table table tbody tr td.product-quantity {
  width: 145px;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter {
  position: relative;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  input {
  height: 45px;
  color: #201f25;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  input::-webkit-input-placeholder {
  color: #201f25;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  input:-ms-input-placeholder {
  color: #201f25;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  input::-ms-input-placeholder {
  color: #201f25;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  input::placeholder {
  color: #201f25;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  .minus-btn {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  cursor: pointer;
  color: #201f25;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border: 1px solid #dedede;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  .minus-btn:hover {
  color: #ffffff;
  background-color: var(--color2);
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  .plus-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  cursor: pointer;
  color: #201f25;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border: 1px solid #dedede;
}

.shopping-cart-area
  .cart-table
  table
  tbody
  tr
  td.product-quantity
  .input-counter
  .plus-btn:hover {
  color: #ffffff;
  background-color: var(--color2);
}

.shopping-cart-area .coupon-cart {
  margin-top: 20px;
}

.shopping-cart-area .coupon-cart .form-group {
  position: relative;
}

.shopping-cart-area .coupon-cart .form-group .form-control {
  border: 1px solid #dedede;
}

.shopping-cart-area .coupon-cart .form-group .form-control:focus {
  border-color: var(--color2);
}

.shopping-cart-area .coupon-cart .form-group .default-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  padding: 15px 40px;
}

.shopping-cart-area .coupon-cart .form-group .default-btn::before {
  display: none;
}

.shopping-cart-area .coupon-cart .form-group .default-btn::after {
  display: none;
}

.shopping-cart-area .coupon-cart .default-btn.update {
  background-color: transparent;
  border-color: #201f25;
  color: #201f25;
}

.shopping-cart-area .coupon-cart .default-btn.update:hover {
  background-color: var(--color2);
  border-color: var(--color2);
  color: #ffffff;
}

.shopping-cart-area .cart-totals {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.shopping-cart-area .cart-totals h3 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.shopping-cart-area .cart-totals h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #201f25;
}

.shopping-cart-area .cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.shopping-cart-area .cart-totals ul li {
  color: #8b8c90;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #dedede;
}

.shopping-cart-area .cart-totals ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.shopping-cart-area .cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}

.shopping-cart-area .cart-totals .default-btn {
  display: block;
}

/* 
Checkout Area Style
=====================================================*/
.checkout-area .billing-details {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.checkout-area .billing-details h3 {
  margin-bottom: 20px;
  font-size: 30px;
}

.checkout-area .billing-details .form-group {
  margin-bottom: 20px;
}

.checkout-area .billing-details .form-group label {
  display: block;
  color: #8b8c90;
  margin-bottom: 10px;
  font-size: 16px;
}

.checkout-area .billing-details .form-group label .required {
  color: #8b8c90;
}

.checkout-area .billing-details .form-group .nice-select {
  float: unset;
  line-height: 45px;
  color: #8b8c90;
  padding-top: 0;
  padding-bottom: 0;
}

.checkout-area .billing-details .form-group .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.checkout-area .billing-details .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}

.checkout-area .billing-details .form-group .nice-select .list .option:hover {
  background-color: var(--color2) !important;
  color: #ffffff;
}

.checkout-area
  .billing-details
  .form-group
  .nice-select
  .list
  .option.selected {
  background-color: transparent;
}

.checkout-area .billing-details .form-group .nice-select:after {
  right: 20px;
}

.checkout-area .billing-details .form-group .nice-select .option:hover,
.checkout-area .billing-details .form-group .nice-select .option.focus,
.checkout-area
  .billing-details
  .form-group
  .nice-select
  .option.selected.focus {
  background-color: var(--color2) !important;
  color: #ffffff !important;
}

.checkout-area .billing-details .form-group textarea {
  padding-top: 13px;
}

.checkout-area .billing-details .form-check {
  margin-bottom: 20px;
}

.checkout-area .billing-details .form-check .form-check-label {
  color: #8b8c90;
  font-weight: 600;
  font-size: 14px;
}

.checkout-area .billing-details .form-check label {
  position: relative;
  top: 1px;
}

.checkout-area .billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.checkout-area .cart-totals {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  background-color: #ffffff;
}

.checkout-area .cart-totals h3 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.checkout-area .cart-totals h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--color2);
}

.checkout-area .cart-totals ul li {
  color: #8b8c90;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #dedede;
}

.checkout-area .cart-totals ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.checkout-area .cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}

.checkout-area .faq-accordion {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 0;
}

.checkout-area .faq-accordion h3 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.checkout-area .faq-accordion h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--color2);
}

.checkout-area .faq-accordion .accordion .accordion-content {
  border-top: none;
  padding: 0;
}

.checkout-area .faq-accordion .accordion .accordion-title {
  padding: 0;
  position: relative;
  padding-left: 25px;
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
  color: #201f25;
  font-weight: 500;
}

.checkout-area .faq-accordion .accordion .accordion-title.active::after {
  background-color: var(--color2);
}

.checkout-area .faq-accordion .accordion .accordion-title.active::before {
  border-color: var(--color2);
}

.checkout-area .faq-accordion .accordion .accordion-title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -4px;
  width: 17px;
  height: 17px;
  border: 1px solid #201f25;
  border-radius: 50%;
  margin: 3px;
}

.checkout-area .faq-accordion .accordion .accordion-title::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border-radius: 50%;
}

.checkout-area .faq-accordion .accordion .accordion-title:hover {
  color: var(--color2);
}

.checkout-area .faq-accordion .accordion .accordion-item {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 15px;
}

.checkout-area .faq-accordion .form-check {
  font-size: 14px;
}

.checkout-area .faq-accordion .form-check label {
  margin-bottom: 5px;
}

.checkout-area .faq-accordion .form-check label a {
  color: var(--color2);
}

.checkout-area .faq-accordion .form-check label a:hover {
  color: var(--color2);
}

.checkout-area .log-in-coupon-code .faq-accordion {
  max-width: 100%;
  padding: 15px;
  margin-bottom: 30px;
}

.checkout-area .log-in-coupon-code .faq-accordion .accordion-item {
  margin-bottom: 0;
}

.checkout-area .log-in-coupon-code .faq-accordion .accordion-item p {
  padding-top: 15px;
  padding-bottom: 15px;
}

.checkout-area
  .log-in-coupon-code
  .faq-accordion
  .accordion-item
  .accordion-title {
  margin-bottom: 0;
}

/* 
Wishlist Area Style
=====================================================*/
.wishlist {
  max-width: 1080px;
  margin: auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.wishlist .default-btn {
  float: right;
  margin-top: -11px;
  color: #ffffff !important;
  position: relative;
  top: 6px;
}

.wishlist .default-btn:hover {
  color: var(--color2) !important;
}

.wishlist .table-responsive > .table-bordered {
  margin-bottom: 0;
}

/*
Shop Details Area Style
=====================================================*/
.product-details-area .product-details-desc h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.product-details-area .product-details-desc p {
  margin-bottom: 0;
}

.product-details-area .product-details-desc .price {
  margin-bottom: 15px;
  color: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.product-details-area .product-details-desc .price span {
  padding: 0 5px;
}

.product-details-area .product-details-desc .product-add-to-cart {
  margin-bottom: 20px;
  margin-top: 20px;
}

.product-details-area .product-details-desc .product-add-to-cart h3 {
  display: inline-block;
  margin-right: 10px;
  font-size: 17px;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
  border: 1px solid #cfcfcf;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  span:hover {
  color: var(--color2);
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  span.minus-btn {
  left: 0;
  border-right: 1px solid #cfcfcf;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  span.plus-btn {
  right: 0;
  border-left: 1px solid #cfcfcf;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  input {
  height: 44px;
  color: #333333;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  input::-webkit-input-placeholder {
  color: #333333;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  input:-ms-input-placeholder {
  color: #333333;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  input::-ms-input-placeholder {
  color: #333333;
}

.product-details-area
  .product-details-desc
  .product-add-to-cart
  .input-counter
  input::placeholder {
  color: #333333;
}

.product-details-area .product-details-desc .social-wrap {
  margin-top: 20px;
}

.product-details-area .product-details-desc .social-wrap li {
  display: inline-block;
  padding-right: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #201f25;
}

.product-details-area .product-details-desc .social-wrap li span {
  display: inline-block;
  margin-right: 45px;
}

.product-details-area .product-details-desc .social-wrap li a i {
  font-size: 20px;
  line-height: 1;
  color: #201f25;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-details-area .product-details-desc .social-wrap li a:hover i {
  color: var(--color2);
}

.product-details-area .product-details-desc .default-btn {
  margin-bottom: 0 !important;
}

.product-details-area .product-details-desc .default-btn i {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.product-details-area .product-details-desc .category {
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
  color: #201f25;
}

.product-details-area .product-details-desc .category span {
  font-weight: normal;
  color: #8b8c90;
}

.product-details-area .product-details-desc .product-review {
  position: relative;
  margin-bottom: 10px;
}

.product-details-area .product-details-desc .product-review .rating i {
  color: #ffba0a;
}

.product-details-area .product-details-desc .product-review .rating-count {
  position: absolute;
  top: 0;
  left: 110px;
}

.product-details-area .product-details-image {
  text-align: center;
  background-color: #f7f7f7;
}

.product-details-area .tab .tabs_item {
  display: none;
}

.product-details-area .tab .tabs_item:first-child {
  display: block;
}

.product-details-area .products-details-tab {
  margin-top: 50px;
}

.product-details-area .products-details-tab .tabs {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
  border-bottom: 1px solid #eaedff;
}

.product-details-area .products-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 20px;
}

.product-details-area .products-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  color: #333333;
  border-bottom: none;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
}

.product-details-area .products-details-tab .tabs li a:hover {
  color: var(--color2);
}

.product-details-area .products-details-tab .tabs li.current a {
  color: var(--color2);
}

.product-details-area .products-details-tab .tab_content {
  padding: 30px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  p {
  margin-bottom: 20px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  p:last-child {
  margin-bottom: 0;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .additional-information
  li {
  border: 1px solid #eaedff;
  border-bottom: none;
  padding: 10px 15px;
  color: #57647c;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .additional-information
  li:last-child {
  border-bottom: 1px solid #eaedff;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .additional-information
  li
  span {
  display: inline-block;
  width: 30%;
  color: #201f25;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  h3 {
  margin-bottom: 15px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title {
  position: relative;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title
  .rating {
  display: inline-block;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title
  .rating
  .fas.fa-star {
  color: #ffba0a;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title
  .rating
  i {
  color: #ffba0a;
  font-size: 14px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title
  p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title
  .btn {
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 10px 11px;
  font-size: 11px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-title
  .btn:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 4px;
  background-color: var(--color2);
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments {
  margin-top: 35px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eaedff;
  padding-top: 30px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  .rating
  .fas.fa-star {
  color: #ffba0a;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  .rating
  i {
  font-size: 14px;
  color: #ffba0a;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  p {
  margin-bottom: 0;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  .review-report-link {
  position: absolute;
  right: 0;
  color: #57647c;
  top: 40px;
  text-decoration: underline;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-comments
  .review-item
  .review-report-link:hover {
  color: #ff4800;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-form {
  margin-top: 30px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-form
  form
  .form-group {
  margin-bottom: 20px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-form
  form
  .form-group
  label {
  color: #444444;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-form
  form
  .form-group
  textarea {
  padding-top: 15px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-form
  form
  .form-group
  .form-control {
  font-size: 14px;
}

.product-details-area
  .products-details-tab
  .tab_content
  .tabs_item
  .products-details-tab-content
  .product-review-form
  .review-form
  form
  .btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

/*
Blog Details Area Style
======================================================*/
.blog-details-content .blog-top-content {
  background-color: #f9fafb;
  padding: 20px;
  margin-bottom: 35px;
}

.blog-details-content .blog-top-content .blog-details-img {
  margin-bottom: 30px;
}

.blog-details-content .blog-top-content .news-content h3 {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 15px;
  font-size: 25px;
}

.blog-details-content .blog-top-content .news-content .admin {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.blog-details-content .blog-top-content .news-content .admin::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #cdced0;
  width: 150px;
  height: 1px;
}

.blog-details-content .blog-top-content .news-content .admin::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #8b8c90;
}

.blog-details-content .blog-top-content .news-content .admin li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}

.blog-details-content .blog-top-content .news-content .admin li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  background-color: #8b8c90;
  width: 1px;
  height: 100%;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.blog-details-content .blog-top-content .news-content .admin li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.blog-details-content
  .blog-top-content
  .news-content
  .admin
  li:last-child::before {
  display: none;
}

.blog-details-content .news-content-2 {
  margin-bottom: 20px;
}

.blog-details-content .news-content-2 h3 {
  font-size: 24px;
}

.blog-details-content .news-content-3 ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.blog-details-content .news-content-3 ul li:last-child {
  margin-bottom: 0;
}

.blog-details-content .news-content-3 ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #201f25;
}

.blog-details-content .recent-posts h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.blog-details-content .recent-posts p {
  margin-bottom: 30px;
}

.blog-details-content .single-blog-post-img {
  margin-bottom: 30px;
}

.blog-details-content .tag-list {
  background-color: #ffffff;
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-details-content .tag-list span {
  margin-right: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #201f25;
}

.blog-details-content .tag-list ul {
  display: inline-block;
}

.blog-details-content .tag-list ul li {
  display: inline-block;
}

.blog-details-content .tag-list ul li a {
  border: 1px solid #eeeeee;
  padding: 5px;
  margin-right: 10px;
}

.blog-details-content .tag-list ul li a:hover {
  background-color: var(--color2);
  color: #ffffff;
  border-color: var(--color2);
}

.blog-details-content .tag-list ul li:last-child a {
  margin-right: 0;
}

.blog-details-content .tag-list .social {
  float: right;
}

.blog-details-content .tag-list .social li {
  display: inline-block;
}

.blog-details-content .tag-list .social li:last-child {
  margin-right: 0;
}

.blog-details-content .tag-list .social li a {
  border-radius: 50%;
  border: none;
  padding: 0;
}

.blog-details-content .tag-list .social li a i {
  width: 30px;
  height: 30px;
  line-height: 29px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 50%;
}

.blog-details-content .related-posts {
  margin-bottom: 5px;
}

.blog-details-content .related-posts .related-posts-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 25px;
}

.blog-details-content .related-posts .related-posts-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #201f25;
}

.blog-details-content .comments {
  background-color: #f9fafb;
  padding: 20px;
  margin-bottom: 35px;
}

.blog-details-content .comments h3 {
  margin-bottom: 30px;
  font-size: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.blog-details-content .comments h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #201f25;
}

.blog-details-content .comments ul li {
  position: relative;
  padding-left: 100px;
  margin-bottom: 30px;
}

.blog-details-content .comments ul li:last-child {
  margin-bottom: 0;
}

.blog-details-content .comments ul li img {
  margin-bottom: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-details-content .comments ul li h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 16px;
  padding-left: 0;
}

.blog-details-content .comments ul li h3::before {
  display: none;
}

.blog-details-content .comments ul li span {
  display: block;
  margin-bottom: 15px;
}

.blog-details-content .comments ul li a {
  font-size: 14px;
  font-weight: 600;
}

.blog-details-content .comments ul li a:hover {
  letter-spacing: 1px;
}

.blog-details-content .comments ul li a i {
  margin-right: 5px;
}

.blog-details-content .leave-reply {
  background-color: #f9fafb;
  padding: 20px;
}

.blog-details-content .leave-reply .star {
  color: #ff0018;
}

.blog-details-content .leave-reply h3 {
  margin-bottom: 30px;
  font-size: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.blog-details-content .leave-reply h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #201f25;
}

.blog-details-content .leave-reply p {
  margin-bottom: 30px;
}

.blog-details-content .leave-reply .form-group {
  margin-bottom: 25px;
}

.blog-details-content .leave-reply .form-group #chb1 {
  margin-right: 5px;
}

.blog-details-content .leave-reply .form-group label {
  margin-bottom: 10px;
}

.blog-details-content .leave-reply input[type="checkbox"],
.blog-details-content .leave-reply input[type="radio"] {
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.sidebar-widget {
  margin-bottom: 35px;
  position: relative;
  padding: 20px;
  background-color: #f9fafb;
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  margin-top: -5px;
  display: inline-block;
  padding-left: 10px;
}

.sidebar-widget h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color2);
}

.sidebar-widget.search .search-form {
  background-color: #ffffff;
}

.sidebar-widget.search .search-form .search-button {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--color2);
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.sidebar-widget.search .search-form .search-button:hover {
  background-color: #201f25;
}

.sidebar-widget.recent-post ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  padding-left: 90px;
}

.sidebar-widget.recent-post ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-widget.recent-post ul li a {
  font-size: 16px;
  color: #201f25;
  margin-bottom: 10px;
  font-weight: 600;
}

.sidebar-widget.recent-post ul li a:hover {
  color: var(--color2);
}

.sidebar-widget.recent-post ul li a img {
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar-widget.recent-post ul li span {
  display: block;
  font-size: 14px;
}

.sidebar-widget.categories ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 17px;
  position: relative;
  padding-left: 20px;
}

.sidebar-widget.categories ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--color2);
}

.sidebar-widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-widget.tags ul li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.sidebar-widget.tags ul li a {
  border: 1px solid #eeeeee;
  padding: 8px 12px;
}

.sidebar-widget.tags ul li a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: var(--color2);
  color: #ffffff;
  border-color: var(--color2);
}

.sidebar-widget.tags ul li:last-child {
  margin-bottom: 0;
}

/*
Services Details Area Style
======================================================*/
.services-details-content .services-contents {
  margin-bottom: 20px;
}

.services-details-content .services-contents h2 {
  font-size: 35px;
  margin-bottom: 0;
}

.services-details-content .services-contents .services-details-one {
  margin-bottom: 30px;
}

.services-details-content .services-contents ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.services-details-content .services-contents ul li:last-child {
  margin-bottom: 0;
}

.services-details-content .services-contents ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #201f25;
}

.services-sidebar .services-category {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  margin-bottom: 30px;
}

.services-sidebar .services-category ul li a {
  font-weight: 600;
  color: #201f25;
  padding: 20px;
  border-bottom: 1px solid #d9d9d9;
  display: block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.services-sidebar .services-category ul li a i {
  float: right;
  font-size: 30px;
  position: relative;
  top: -2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.services-sidebar .services-category ul li:last-child a {
  border-bottom: none;
}

.services-sidebar .services-category ul li:hover a {
  color: #ffffff;
  background-color: var(--color2);
}

.services-sidebar .services-category ul li:hover a i {
  color: #ffffff;
}

.services-sidebar .address {
  background-color: var(--color1);
  padding: 30px;
}

.services-sidebar .address h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #ffffff;
}

.services-sidebar .address h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #ffffff;
}

.services-sidebar .address ul li {
  color: #ffffff;
  margin-bottom: 10px;
}

.services-sidebar .address ul li:last-child {
  margin-bottom: 0;
}

.services-sidebar .address ul li a {
  color: #ffffff;
}

.services-sidebar .address ul li a:hover {
  color: var(--color2);
}

.services-sidebar .address ul li.location {
  position: relative;
  padding-left: 65px;
}

.services-sidebar .address ul li.location span {
  position: absolute;
  left: 0;
  top: 0;
}

/*
Blog Column One Area Style
======================================================*/
.blog-column-one-area .single-blog-post .news-content p {
  margin-bottom: 25px;
}

/*
Main Contact Area Style
=====================================================*/
.main-contact-area .contact-wrap {
  max-width: unset;
}

.main-contact-area .contact-wrap .contact-title {
  margin-top: -9px;
}

.main-contact-area .contact-wrap .contact-title h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

.main-contact-area .contact-wrap .form-group {
  margin-bottom: 30px;
}

.main-contact-area .contact-wrap .default-btn {
  cursor: pointer;
}

.main-contact-area .contact-wrap .contact-form #msgSubmit {
  position: unset;
  text-align: center;
  margin-top: 20px;
}

.main-contact-area .contact-wrap .contact-form .hidden {
  display: none;
}

.main-contact-area .contact-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-contact-area .contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.main-contact-area .contact-info p {
  margin-bottom: 25px;
}

.main-contact-area .contact-info .address .location {
  padding-left: 60px;
  position: relative;
}

.main-contact-area .contact-info .address .location i {
  position: absolute;
  color: #8b8c90;
  left: 0;
  top: 5px;
  font-size: 45px;
}

.main-contact-area .contact-info .address .location span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.main-contact-area .contact-info .address li {
  padding-left: 60px;
  position: relative;
  margin-bottom: 20px;
}

.main-contact-area .contact-info .address li a {
  color: #8b8c90;
  display: block;
}

.main-contact-area .contact-info .address li a:hover {
  color: var(--color2);
}

.main-contact-area .contact-info .address li:last-child {
  margin-bottom: 0;
}

.main-contact-area .contact-info .address li i {
  position: absolute;
  color: #8b8c90;
  left: 0;
  top: 0;
  font-size: 45px;
}

.main-contact-area .contact-info .address li span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.main-contact-area .contact-info .sidebar-follow-us {
  margin-top: 30px;
}

.main-contact-area .contact-info .sidebar-follow-us h3 {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1;
  padding-left: 10px;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap {
  line-height: 1;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li {
  display: inline-block;
  padding-right: 10px;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a i {
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #8b8c90;
  border-radius: 50px;
  text-align: center;
  color: #8b8c90;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a:hover i {
  border-color: var(--color2);
  background-color: var(--color2);
  color: #ffffff;
}

.main-contact-area label {
  font-size: 16px;
}

.list-unstyled {
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
}

#msgSubmit {
  margin-top: 20px;
}

.text-success {
  color: #28a745;
}

.hidden {
  display: none;
}

.map-area iframe {
  height: 480px;
  width: 100%;
  border: none !important;
  display: block;
}

/*
Gallery Column Two Area Style
=====================================================*/
.gallery-column-two .single-gallery img {
  width: 100%;
}

/*====================================================
OTHERS STYLE AREA
======================================================*/
/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--color2);
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
  position: absolute;
  border: 2px solid #ffffff;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.preloader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.preloader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: var(--color2);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after {
  width: 0;
}

.preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-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;
  }
}

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

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  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(--color2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

.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 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 82%;
  border: 1px solid #fff;
}

/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 0;
  color: var(--color2);
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(238, 50, 50, 0.9);
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.video-btn i {
  font-size: 42px;
  color: #ffffff;
  position: absolute;
  top: 1px;
  left: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.video-btn::after,
.video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  background-color: rgba(238, 50, 50, 0.9);
}

.video-btn:hover::before,
.video-btn:hover::after {
  background-color: rgba(238, 50, 50, 0.9);
}

@-webkit-keyframes ripple {
  0%,
  35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes ripple {
  0%,
  35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

.video-btn-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-btn-2 span {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.video-btn-2 span::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid var(--color2);
  -webkit-animation: videoTwo 8s linear infinite;
  animation: videoTwo 8s linear infinite;
}

.video-btn-2 span::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid var(--color2);
  -webkit-animation: videoTwo 8s linear infinite;
  animation: videoTwo 8s linear infinite;
}

.video-btn-2 span:nth-child(1)::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-btn-2 span:nth-child(1)::before {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.video-btn-2 span:nth-child(2)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-btn-2 span:nth-child(2)::before {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.video-btn-2 span:nth-child(3)::after {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.video-btn-2 span:nth-child(3)::before {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.video-btn-2 span:nth-child(4)::after {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.video-btn-2 i {
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: block;
  background: #ffffff;
  color: var(--color2);
  border: 5px solid var(--color2);
  font-size: 30px;
}

@-webkit-keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

/*
Nice select Area Style*/
.nice-select .list {
  width: 100%;
  border-radius: 0;
}

.nice-select .option:hover {
  background-color: var(--color2);
  color: #ffffff;
}

.nice-select .option.selected.focus {
  color: var(--color2);
}

.nice-select .current {
  font-size: 16px;
}

/*
Page-navigation Area Style*/
.pagination-area {
  margin-top: 10px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 37px;
  color: #201f25;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  background-color: #f5f6fa;
  border: 1px solid #d7d7d7;
}

.pagination-area .page-numbers:hover {
  color: #ffffff;
  border-color: var(--color2);
  background-color: var(--color2);
}

.pagination-area .page-numbers i {
  position: relative;
  font-size: 25px;
  top: 7px;
}

.pagination-area .page-numbers.current {
  color: #ffffff;
  border-color: var(--color2);
  background-color: var(--color2);
}

/*
Overly Area Style*/
.overly-one {
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.overly-one::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color2)),
    to(transparent)
  );
  background: linear-gradient(left, var(--color2), transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  z-index: 1;
}

.overly-one::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--color2)),
    to(transparent)
  );
  background: linear-gradient(top, var(--color2), transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.overly-one .overly-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    to(var(--color2))
  );
  background: linear-gradient(left, transparent, var(--color2));
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.overly-one .overly-two::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--color2)),
    to(transparent)
  );
  background: linear-gradient(bottom, var(--color2), transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.overly-one:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.overly-one:hover .overly-two::before {
  left: 30px;
  opacity: 1;
}

.overly-one:hover .overly-two::after {
  top: 30px;
  opacity: 1;
}

.overly-one:hover::before {
  right: 30px;
  opacity: 1;
}

.overly-one:hover::after {
  bottom: 30px;
  opacity: 1;
}

/*
Tabs Area Style*/
.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

ul.header-left-content a i {
  padding-right: 22px;
  font-size: 30px;
  vertical-align: middle;
  position: relative;
}
.ratingdiv {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.header-right-content .badge {
    background: var(--color1);
    border-radius: 100%;
    padding: 12px;
    margin-right: 5px;
}

.wa-service-icon .single-services {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
      min-height: 330px;
}
.col-md-10.m-auto.text-center {
  padding-bottom: 30px;
}
.single-footer-widget .import-link li a {
  color: #fff;
  position: relative;
  padding-left: 20px;
}
section.give-us-call {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 90px 0;
  justify-content: center;
  position: relative;
}

.give-heading {
  text-align: center;
  position: relative;
}
.btn-givecall {
  text-align: center;
}
.give-heading h4 {
  font-size: 34px;
  color: #fff;
}

.give-heading a {
  font-size: 36px;
  margin-bottom: 13px;
  color: #fff;
}

section.give-us-call:before {
  content: "";
  width: 100%;
  height: 100%;

  position: absolute;
  left: 0;
  right: 0;
  opacity: 0.6;
}

.btm-cities {
  padding: 70px 0;
}

.btm-cities .h4-heading {
  color: #000;
  font-weight: 600;
}

.h4-heading {
  font-size: 32px;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}
ul.ul3 li a {
  display: flex;
  color: var(--color1);
  position: relative;
  padding-left: 20px;
}
.ratingdiv span.rt-spm {
  margin: 1px 0 0;
}
ul.ul3 li a:hover {
  color: var(--color2);
}


section.show-car-models-on-car-brand-page ul.ul3 li::before {
    content: "";
    font-family: "Flaticon";
    margin-right: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: var(--color2);
    right:0 !important;
   /*rotate: -45deg;*/
   /* transform: scaleY(-1);*/
    background-image:url(/userfiles/images/car-key-icon.png);
        width: 28px;
    height: 28px;
}


.btm-cities ul.ul3 li a::before {
    content: "\f084";
    font-family: "Flaticon";
    margin-right: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: var(--color2);
    left:0;

}

section.show-car-models-on-car-brand-page ul.ul3 li {
    display: block;
    list-style: none;
    position: relative;
    margin: 0;
    padding-left: 16px;
    -ms-flex: 0 0 33.333333%;
}

section.show-car-models-on-car-brand-page ul.ul3 li {
    background-color: #fff;
    padding: 12px;
    display: block;
    border-radius: 3px;
    position: relative;
    font-weight: 500;
    color: #555;
    box-shadow: 0 10px 20px rgb(0 22 84 / 7%);
}

section.show-car-models-on-car-brand-page ul.ul3 li:hover {
    background-color: var(--color1);
color:#fff;
}

section.show-car-models-on-car-brand-page ul.ul3 li:hover::before {
 -webkit-filter: brightness(2);
}

/*side bar*/
.single-sidebar h4 {
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: 25px;
  line-height: 33px;
  padding: 12px 7px;
  background-color: var(--color2);
  color: #fff;
  font-weight: 600;
}
.wiki-p p {
    background: none!important;
    color: #000 !important;
    font-size: 16px!important;
    text-align: left!important;
    font-weight: 400!important;
}
.single-sidebar p {
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: 25px;
  line-height: 33px;
  padding: 12px 7px;
  background-color: var(--color2);
  color: #fff;
  font-weight: 600;
}

.single-sidebar .wikibox p {
border-radius: 0;
    text-align: left;
    font-size: 16px;
    line-height: 30px;
    padding: 0;
    font-weight: 400;
    background: none;
    color: #000;
}

.single-sidebar .wikibox h3 {
display:none;
}

.sidebar-content {
  padding: 1px 20px 20px;
}

.btn-style-three {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #fff !important;
  font-weight: 600;
  overflow: hidden;
  border-radius: 10px;
  letter-spacing: 1px;
  padding: 12px 36px;
  text-transform: uppercase;
  background: var(--color1);
}

.single-sidebar {
  border-radius: 10px;
  background-color: #eff2f7;
  padding: 0;
  margin-bottom: 30px;
}

.single-sidebar.sidebar-centr.text-center {
  padding: 15px 0;
  color: #000;
}
.sidebar-search-box {
  padding: 15px 20px;
}
.single-sidebar .sidebar-content .form-control {
  margin: 17px 0;
}

.form-control {
  padding: 10px 15px;
  border-radius: 10px;
}
.brd {
  background-color: var(--color2);
  color: #fff;
}
.brd a {
  color: #fff;
}

.brd a {
  color: #fff;
}
.sidebar-page-container {
  position: relative;
  padding: 70px 0;
}

.contact-form-section {
  position: relative;
  padding: 60px 0;
}

.contact-form-section form#ewebcontact_id {
  box-shadow: 0 0 25px #000;
  padding: 35px 35px 10px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
}

.contact-form-section form#ewebcontact_id {
  box-shadow: 0 0 25px #00000014 !important;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
}
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 20px;
  color: #222;
  height: 55px;
  font-size: 14px;
  background: #fff;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #ddd;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  background: none;

  padding: 12px 20px;
  text-transform: uppercase;
  background-color: var(--color2);
  margin: 3px 0 0;
  border-radius: 4px;
}

.btn-style-one:hover {
  background-color: var(--color1);
}

.contact-form-section h4 {
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.banner-contact {
  min-height: 300px !important;
  display: flex;
  align-items: center;
}

.banner-contact {
  height: 300px !important;
  display: flex;
  align-items: center;
}

.banner-inner {
  min-height: 500px !important;
}

label.error {
  color: red;
  justify-content: left;
  display: flex;
}

@media (max-width: 767px) {
  .mobile-nav nav .navbar-nav {
    min-height: 300px;
  }
  .we-are-content ul li {
    margin-bottom: 10px;
  }
  .pb-100 {
    padding-bottom: 20px;
  }
  .video-area.pb-100 {
    padding-bottom: 0;
  }
  .services-content .top-title {
    font-size: 16px;
  }
  .single-services {
    min-height: auto !important;
  }
  #usa-map svg {
    padding: 0 !important;
    height: 300px !important;
  }
  .srv-area h4 {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .banner-content p {
    display: none;
  }
  section.about-area.pt-70.pb-70.diy-pool .heading.text-center.pb-70 {
    text-align: left !important;
  }
  section.about-area.pt-70.pb-70.diy-pool h2 {
    font-size: 26px !important;
  }
  section.about-area.pt-70.pb-70.diy-pool h3 {
    font-size: 24px !important;
  }
  .btn-givecall.new .default-btn {
    margin-bottom: 10px !important;
  }
  section.give-us-call {
    display: none !important;
  }
  section.about-area.about-area-three .about-bg-img {
    display: none;
  }
  .sidebar .widget.widget-categories {
    margin-bottom: 20px !important;
  }

  h4.faq_heading {
    font-size: 26px !important;
  }
  h4.faq_question {
    font-size: 20px !important;
  }

  .form-container {
    padding: 20px !important;
  }
  .form-container.animated H2 {
    font-size: 26px !important;
    text-align: left !important;
  }

  .form-container.animated.active h4 {
    font-size: 20px !important;
  }
  .form-container.animated.active ul li {
    display: flex;
  }

  .banner-area {
    min-height: 280px !important;
  }
  .about-area-three .about-bg-img {
    position: relative;
  }
  .top-header {
    display: none;
  }
  .ph-res {
    background: var(--color1);
    font-size: 24px;
    text-align: center;
    color: #fff;
  }
  .ph-res a {
    color: #fff;
  }

  .single-footer-widget h5 {
    font-size: 22px;
    margin-bottom: 0px !important;
  }
  .btm-cities {
    padding: 30px 0;
  }
  .h4-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.about-content.about-us p strong {
  font-weight: 800;
  color: #000;
}
.about-content.about-us ul li {
  margin-left: 5px;
  list-style: none;
}

.about-content.about-us ul li i {
  color: var(--color1);
  font-size: 20px;
  left: 0;
  margin-right: 10px;
}
.about-content.about-us ul {
  margin-bottom: 10px;
}

section.about-area.pt-100.pb-70.about-us-2 h3 {
  text-align: center;
  font-size: 28px;
}
section.about-area.pt-100.pb-70.about-us-2 h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
section.about-area.pt-100.pb-70.about-us-3 {
  padding: 50px 0;
  background: var(--color2);
  text-align: center;
}
section.about-area.pt-100.pb-70.about-us-3 h4 {
  color: #fff;
}
section.about-area.pt-100.pb-70.about-us-3 p {
  color: #fff;
  margin-bottom: 0;
}
section.about-area.pt-100.pb-70.about-us-3 p a {
  color: #fff;
  font-weight: 600;
}
section.about-area.pt-100.pb-70.about-us-3 p a:hover {
  color: var(--color1) !important;
}
section.about-area.pt-100.pb-70.about-us-3 .default-btn {
  border: 1px solid var(--color2);
}
section.about-area.pt-100.pb-70.about-us-3 .default-btn:hover {
  background-color: var(--color2);
  border: 1px solid #ffffff;
}

section.about-area.pt-100.pb-70.about-us-4 {
  padding: 50px 0;
  background: var(--color1);
  text-align: center;
}
section.about-area.pt-100.pb-70.about-us-4 p {
  color: #fff;
  margin-bottom: 15px;
}
section.about-area.pt-100.pb-70.about-us-3 .btn-givecall {
  margin-top: 16px;
}
section.about-area.pt-100.pb-70.about-us-4 h4 {
  color: #fff;
  margin-bottom: 10px;
}

section.about-area.pt-100.pb-70.about-us-4 .default-btn {
  background-color: var(--color2);
  border: 1px solid var(--color2);
}
section.about-area.pt-100.pb-70.about-us-4 .default-btn:hover {
  background-color: var(--color1);
  border: 1px solid #fff;
}

.about-content strong {
  color: #444;
  padding-bottom: 10px;
  display: block;
}

span.color-p {
  font-weight: bold;
  color: var(--color1);
}
section.about-area.pt-100.pb-70.gallery-1 {
  padding: 50px 0;
  text-align: center;
  background: var(--color1);
}
section.about-area.pt-100.pb-70.gallery-1 p {
  color: #fff;
}
section.about-area.pt-100.pb-70.gallery-1 h4 {
  color: #fff;
}

section.about-area.pt-100.pb-70.gallery-1 .default-btn {
  border: 1px solid var(--color1);
  background: var(--color2);
}
section.about-area.pt-100.pb-70.gallery-1 .default-btn:hover {
  border: 1px solid #fff;
  background: var(--color1) !important;
}

section.about-area.pt-100.pb-70.gallery-2 {
  padding: 50px 0;
  text-align: center;
  background: var(--color2);
}
section.about-area.pt-100.pb-70.gallery-2 h4 {
  color: #fff;
  margin-bottom: 15px;
}
section.about-area.pt-100.pb-70.gallery-2 .default-btn {
  border: 1px solid var(--color2);
}
section.about-area.pt-100.pb-70.gallery-2 .default-btn:hover {
  border: 1px solid #fff;
  background: var(--color2) !important;
}
.banner-area.bg-1.jarallax.banner-inner.small-banner {
  min-height: 300px !important;
}
section.gallery-column-two.gallery-popup.ptb-100 h2 {
  font-size: 30px;
}
section.gallery-column-two.gallery-popup.ptb-100 h4 {
  font-size: 38px;
  padding-bottom: 25px;
}
section.gallery-column-two.gallery-popup.ptb-100 p {
  margin-bottom: 20px;
}
section.gallery-column-two.gallery-popup.ptb-100 {
  padding: 70px 0 0;
}
.gallerybtns.text-center {
  margin-bottom: 70px;
}
section.gallery-column-two.gallery-popup.ptb-100.glry-sec-1 {
  padding-top: 0;
}
section.about-area.pt-100.pb-70.how-wrk {
  padding: 70px 0;
}

section.about-area.pt-100.pb-70.how-wrk .headind-work h4 {
  text-align: center;
}
section.about-area.pt-100.pb-70.how-wrk .headind-work h2 {
  text-align: center;
}
.form-container.animated.active ul li i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--color1);
}
.form-container.animated.active ul {
  margin-bottom: 10px;
}
.form-container.animated.active ol li {
  list-style: lower-alpha;
}
.form-container.animated.active h4 {
  font-size: 26px;
  margin-bottom: 15px;
}

/*how it work*/

.steps-text li:not(.active) {
  display: none;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -otransition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.btn-primary {
  background: #fb8200;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #1754d1;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -obox-shadow: none;
  box-shadow: none;
}

.btn-default {
  background: #666666;
  color: #fff;
}

.mar-b-0 {
  margin-bottom: 0 !important;
}

.form-wizard {
  position: relative;
  display: table;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.steps {
  margin: 40px 0;
  overflow: hidden;
}
.steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  display: flex;
  justify-content: center;
}
.steps ul li {
  float: left;
  width: 13%;
  text-align: center;
  color: #000;
  padding: 0 13px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out 0;
  -moz-transition: all 0.4s ease-in-out 0;
  -ms-transition: all 0.4s ease-in-out 0;
  -otransition: all 0.4s ease-in-out 0;
  transition: all 0.4s ease-in-out 0;
  width: 100%;
}
.steps ul li:hover,
.steps ul li.active {
  color: var(--color2);
  text-align: center;
}
.steps ul li:hover span,
.steps ul li.active span {
  background: var(--color1);
  color: #fff;
}
.steps ul li:hover::after,
.steps ul li.active::after {
  background: #fb8200;
  width: 100%;
}
.steps ul li::before,
.steps ul li::after {
  content: "";
  position: absolute;
  left: -50%;
  top: 19px;
  width: 100%;
  height: 3px;
  background: #000;
  -webkit-transition: all 0.4s ease-in-out 0;
  -moz-transition: all 0.4s ease-in-out 0;
  -ms-transition: all 0.4s ease-in-out 0;
  -otransition: all 0.4s ease-in-out 0;
  transition: all 0.4s ease-in-out 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -otransform: translateY(-50%);
  transform: translateY(-50%);
}
.steps ul li::after {
  width: 0;
}
.steps ul li span {
  display: block;
  margin: 0 auto 15px;
  width: 35px;
  height: 35px;
  text-align: center;
  background: var(--color2);
  font-size: 18px;
  line-height: 35px;
  font-weight: 300;
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out 0;
  -moz-transition: all 0.4s ease-in-out 0;
  -ms-transition: all 0.4s ease-in-out 0;
  -otransition: all 0.4s ease-in-out 0;
  transition: all 0.4s ease-in-out 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -oborder-radius: 2px;
  border-radius: 2px;
}
.steps ul li:first-child::before,
.steps ul li:first-child::after {
  display: none;
}

.form-container {
  clear: both;
  display: none;
  left: 100%;
  background: #fff;
  padding: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -oborder-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  -ms-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  -obox-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 30px rgb(0 0 0 / 9%);
}
.form-container.active {
  display: block;
}

.form-title {
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}
.form-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 2px;
  background: #fb8200;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -otransform: translateX(-50%);
  transform: translateX(-50%);
}

/*how it work*/

.form-container.animated H2 {
  text-align: center;
  font-size: 32px;
}
section.about-area.pt-100.pb-70.financing p img {
  width: 400px;
}
.contact-form-section p {
  text-align: center;
}
.get-started strong {
  color: var(--color1);
  font-size: 20px;
}
section.about-area.pt-100.pb-70.contact-us-3 {
  padding: 50px 0;
  background: #f7f7f7;
}
section.about-area.pt-100.pb-70.contact-us-3 .col-lg-12 {
  text-align: center;
}
section.about-area.pt-100.pb-70.contact-us-3 .default-btn {
  margin-left: 5px;
}
.cntct-form-css {
  display: flex;
}

section.about-area.pt-100.pb-70.contact-us-3 h4 {
  margin-top: 30px;
}
#ewebcontact_id .col-md-6,
#ewebcontact_id .col-md-12 {
  padding: 0px 15px;
}

section.contact-form-section .cntct-sidebar {
  background: var(--color2);
  padding: 40px;
  border-radius: 10px;
  height: auto;
}
section.contact-form-section .cntct-sidebar h4 {
  color: #fff;
  text-align: left;
}
section.contact-form-section .cntct-sidebar p {
  color: #fff;
  line-height: 20px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 25px;
}
.col-lg-4.col-md-4.col-sm-12 .cntct-sidebar a {
  border: 1px solid var(--color1);
  width: 70%;
}

.col-lg-4.col-md-4.col-sm-12 .cntct-sidebar a:hover {
  border: 1px solid #fff;
}
.col-lg-4.col-md-4.col-sm-12 .cntct-sidebar .btn-givecall {
  text-align: left;
}

section.banner-area.bg-1.jarallax.banner-inner .default-btn.new {
  background: var(--color1);
  margin-right: 10px;
}
section.banner-area.bg-1.jarallax.banner-inner .default-btn.new:hover {
  background: var(--color2) !important;
}
section.about-area.pt-100.pb-70.how-new {
  background: #f7f7f7;
}
.col-lg-12.financing-top {
  text-align: center;
  margin-bottom: 25px;
}
.col-lg-8.financing-top.text-center.m-auto {
  padding-bottom: 30px;
}
section.about-area.bg-color.pt-100.pb-70.financing .col-lg-4 p.pt-30 {
  padding-top: 35px;
}

section.about-area.pt-100.pb-70.gallery-2 .btn-givecall a.new {
  background: #fff;
  color: #000;
  border: 1px solid var(--color1);
  margin-left: 10px;
}

section.about-area.pt-100.pb-70.gallery-2 .btn-givecall a.new:hover {
  background: var(--color1) !important;
  color: #fff !important;
  border: 1px solid var(--color1) !important;
}
.accordion-content.show ul li {
  list-style: disc;
  margin-left: 15px;
}

section.faq-area.white-bg.pt-70.pb-70 {
  background: #f7f7f7;
}

._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
  margin-top: 30px;
  margin-bottom: 30px;
}
section.about-area.pt-70.pb-70.diy-pool h2 {
  font-size: 32px;
}
section.about-area.pt-70.pb-70.diy-pool h3 {
  font-size: 28px;
}

.content-service ul li i {
  color: var(--color1);
  font-size: 18px;
  top: 1px;
  margin-right: 10px;
}
section.faqs {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: var(--color1);
  color: #fff;
}
h4.faq_heading {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 0 0 22px;
}
h4.faq_question {
  font-size: 22px;
  color: #fff;
  margin: 0;
}
.faq_answer {
  margin: 0 0 30px;
}
.faq_answer p {
  margin: 8px 0;
}
.contact-section .contact-form button.btn.btn-primary.style3 {
  width: 200px;
}
.content-service .btn-givecall.new {
  text-align: left;
}
.content-service ul li {
  margin-bottom: 10px;
  display: flex;
}
section.sidebar {
  background: #f7f7f7;
  padding: 60px 0px;
}

.sidebar .widget.widget-categories {
  min-height: 500px;
}
.widget:last-child {
  margin-bottom: 0;
}

.widget {
  position: relative;
  background-color: #ffffff;
  padding: 26px;
  border-radius: 4px;
  border: 1px solid #eeeeee;
}
.widget .widget__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  background-color: var(--color1);
  color: #fff;
  text-align: center;
  padding: 15px;
}

.faq_answer ul li {
  list-style: disc;
  margin-left: 25px;
}

.faq_answer ul {
  margin-top: 20px;
}

/*diy-owner-packages*/
.single-package-post {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.packagesSection {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.packagesSection h2 {
  text-align: center;
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 40px;
}
.single-package-post .news-content p {
  z-index: 9;
  position: relative;
  opacity: 1;
  color: #fff;
  line-height: 25px;
}
.single-package-post .news-content h3 a {
  color: #fff;
}
.single-package-post .news-content {
  background-color: #00000087;
  padding: 7px 22px;
  position: absolute;
  top: 213px;
  overflow: hidden;
  transition: all ease 0.5s;
  text-align: center;
  display: table;
}
.single-package-post .news-content h3 {
  margin: 0;
}
.single-package-post:hover .news-content {
  transition: all ease 0.5s;
  height: 100%;
  top: 0;
}
.single-package-post .news-content .fortablecell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.single-pricing.active .plans {
  border-color: #fff;
}
.single-pricing ul li {
  text-align: left;
}
.single-pricing ul li i {
  float: right;
  font-weight: bold;
  font-size: 22px;
  color: var(--color2);
}
.single-pricing.active ul li i,
.single-pricing:hover ul li i {
  color: #fff;
}
section.pricing-area .section-title {
  margin: -15px auto 30px;
}

@media (max-width: 1199px) {
  .col-lg-4.col-md-4.col-sm-12.cntct-sidebar a {
    width: 100%;
  }
  .our-services-area.our-services-area-three
    .single-services
    .services-content {
    min-height: 344px;
  }
  .banner-area {
    min-height: 500px !important;
  }
  .banner-inner {
    min-height: 400px !important;
  }
  .single-package-post .news-content h3 {
    font-size: 15px;
  }
  .single-package-post .news-content {
    padding: 11px 20px;
    top: 139px;
  }
  .single-package-post .news-content p {
    line-height: 20px;
    font-size: 14px;
  }
  .mega-menu-dropdown {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 5), 1fr));
  }
}
@media (max-width: 1023px) {
  section.about-area.pt-70.pb-70.diy-pool img {
    margin: 10px 0;
  }
  section.main-contact-area.packageDetails.ptb-100 {
    padding: 0 0 25px;
  }
  .single-package-post .news-content {
    top: 0;
    bottom: 0;
    height: 100%;
  }
  section.main-contact-area.packageDetails.ptb-100 .contact-info {
    padding-bottom: 0;
  }
  .packagesSection .col-lg-4.col-md-6 {
    max-width: 50% !important;
    flex: 0 0 100%;
    margin: 0 auto;
  }
  .contact-form-section {
    position: relative;
    padding: 20px 0 50px;
  }
  section.pricing-area .col-lg-4.col-sm-6 {
    flex: 0 0 50%;
    margin: 0 auto;
  }
  .single-package-post .news-content h3 {
    font-size: 17px !important;
  }
  .single-package-post .news-content p {
    line-height: 23px !important;
    font-size: 15px !important;
  }
  .contact-form-section form#ewebcontact_id {
    padding: 35px 0 10px;
  }
  .contact-form .form-group {
    margin-bottom: 15px;
  }

  .packagesSection h2 {
    font-size: 30px;
  }
  .sidebar-page-container {
    padding: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .steps ul li {
    padding: 0 4px;
  }
  .form-wizard {
    display: block;
  }
  .packagesSection .col-lg-4.col-md-6 {
    max-width: 100% !important;
    flex: 0 0 100%;
    margin: 0 auto;
  }
  section.pricing-area .col-lg-4.col-sm-6 {
    flex: 0 0 100%;
    margin: 0 auto;
  }
  .banner-content .default-btn {
    background-color: var(--color2);
    margin: 0;
    width: 130px;
    padding: 12px 0px;
  }
  
  .banner-content {
    max-width: 80% !important;
}

  section.about-area.pt-100.pb-70.gallery-2 .btn-givecall a.new {
    margin-left: 0;
  }
  .gallerybtns.text-center {
    margin-bottom: 45px;
  }
  section.gallery-column-two.gallery-popup.ptb-100 h2 {
    font-size: 22px;
  }
  section.gallery-column-two.gallery-popup.ptb-100 h4 {
    font-size: 27px;
    padding-bottom: 10px;
  }
  .banner-area.bg-1.jarallax.banner-inner.small-banner {
    min-height: 165px !important;
  }
  section.gallery-column-two.gallery-popup.ptb-100 {
    padding: 30px 0 0;
  }
  .mean-container .mean-bar {
    height: 100%;
  }
  div#jarallax-container-0 {
    display: none;
}
  .banner-area {
    min-height: 170px !important;
    background-position: 55% 0px !important;
  }
  .packagesSection h2 {
    text-align: center;
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 22px;
  }
  .single-package-post .news-content {
    position: relative;
    top: auto !important;
    display: block;
    background: var(--color2);
  }
  .packagesSection {
    margin-bottom: 20px;
  }
  .single-pricing.active .recommended {
    display: none;
  }
  .pricing-area .col-sm-6 {
    width: 100% !important;
  }
}

/*3d-custom-design-only-package*/
.packageDetails .contact-info {
  padding-top: 0;
  padding-bottom: 40px;
  box-shadow: none;
}
.packageDetails .contact-info h3 {
  margin-bottom: 5px;
}
.packageDetails h2 {
  text-align: left;
  font-size: 33px;
  margin-bottom: 20px;
}
.packageDetails .contact-wrap .contact-title h2 strong {
  color: var(--color2);
  font-size: 40px;
}
.packageDetails .contact-info p {
  margin-bottom: 15px;
}
ul.include-in-package {
  position: relative;
  margin-bottom: 10px;
}
ul.include-in-package li {
  position: relative;
  padding-left: 20px;
  line-height: 30px;
}
ul.include-in-package li:before {
  content: "\e9f0";
  font-family: "boxicons";
  position: absolute;
  left: -1px;
  font-size: 20px;
  color: var(--color2);
  font-weight: bold;
}
.packageDetails .contact-info p strong {
  color: #000;
  margin: 16px 0 -17px;
  display: block;
}
ul.include-in-package.conditions a {
  color: var(--color2);
}

.packageDetails .form-group label {
  display: block;
  margin: 0 0 5px;
}
.packageDetails .form-group .form-control {
  height: auto !important;
  padding: 7px 15px !important;
  margin: 0;
}
.packageDetails .form-group {
  margin-bottom: 15px !important;
}
.packageDetails .single-sidebar h4 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.packageDetails .single-sidebar p {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  section.main-contact-area.packageDetails.ptb-100 {
    padding: 30px 0;
  }
  .packageDetails h2 {
    font-size: 29px;
    margin-bottom: 11px;
  }
  .packageDetails .contact-info {
    padding: 0;
  }
}

/*contractor-package*/
ul.include-in-package {
  position: relative;
  margin-bottom: 10px;
}
ul.include-in-package li {
  position: relative;
  padding-left: 20px;
  line-height: 30px;
}
ul.include-in-package li:before {
  content: "\e9f0";
  font-family: "boxicons";
  position: absolute;
  left: -1px;
  font-size: 20px;
  color: var(--color2);
  font-weight: bold;
}
.contractor-package-phases .single-services span.flaticon {
  background: var(--color2);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  font-size: 41px;
  padding-top: 7px;
}
.contractor-package-phases .single-services h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.contractor-package-phases .single-services h3 span {
  font-size: 14px;
  margin: 4px 0 0;
}
.contractor-package-phases .single-services h3 {
  margin-bottom: 15px;
  font-size: 21px;
  min-height: 48px;
}
.contractor-package-phases .single-services {
  min-height: 408px;
}
.contractor-pkg-form {
  background: #fff;
  padding: 50px 0;
}
.contractor-package-phases {
  padding: 50px 0;
}
.contractor-package {
  padding: 60px 0 50px;
}

@media (max-width: 1199px) {
  .contractor-package-phases .single-services {
    min-height: 445px;
  }
  .col-lg-4.col-md-4.col-sm-12 .cntct-sidebar a {
    width: 100%;
    padding: 15px;
  }
  .about-content h2 {
    font-size: 30px;
  }
  .single-services {
    min-height: 402px;
  }
  .pb-70 {
    padding-bottom: 30px;
  }

  .pt-100 {
    padding-top: 50px;
  }
  .pt-70 {
    padding-top: 50px;
  }
  .video-area {
    margin-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .btm-cities {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 991px) {
  .mega-menu-active {
    display: block;
  }
  .navbar-expand-lg {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1800px) {
    .main-navbar-divider{
        width: 27%;
    }
}

@media only screen and (max-width: 1660px) {
    .main-navbar-divider {
        width: 25%;
    }
}

@media only screen and (max-width: 1560px) {
    .main-navbar-divider {
        width: 22%;
    }
}

@media only screen and (max-width: 1540px) {
    .main-navbar-divider {
        width: 26%;
    }
}

@media only screen and (max-width: 1280px) {
    .main-navbar-divider {
        width: 24%;
    }
    .navbar-brand img {
        max-width: 200px;
    }
    .navbar-brand h5 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1100px) {
    .main-navbar-divider {
        width: 28%;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .contractor-package-phases .single-services {
    min-height: 332px !important;
  }
  .main-contact-area .contact-wrap {
    margin-top: 50px;
  }
  .single-package-post .news-content h3 {
    font-size: 22px !important;
  }
  section.about-area.pt-100.pb-70.financing p img {
    margin: 0 !important;
  }
  section.booking-sec.calendly-form.pt-70.pb-70 {
    margin-bottom: 50px;
  }
}
@media (max-width: 1023px) {
  .contractor-package-phases .single-services {
    min-height: 375px;
  }
  section.contact-form-section .cntct-sidebar h4 {
    color: #fff;
    font-size: 28px;
    text-align: center;
  }
  section.contact-form-section .cntct-sidebar {
    padding: 15px;
    height: auto;
    margin-top: 25px;
  }
  section.contact-form-section .cntct-sidebar p {
    text-align: center;
  }
  .col-lg-4.col-md-4.col-sm-12 .cntct-sidebar .btn-givecall {
    text-align: center;
  }
  .col-lg-8.financing-top.text-center.m-auto {
    padding-bottom: 15px;
    text-align: left !important;
  }
  section.about-area.pt-100.pb-70.financing p img {
    width: 100%;
    margin: 15px 0;
  }
  section.about-area.pt-70.pb-70.financing .col-lg-6 p:last-child {
    margin: 0 0 15px;
  }
  .banner-btn.wow.fadeInUp {
    margin-top: 28px;
  }
  .contractor-package .row .col-lg-6:first-child {
    order: 1;
  }
  .contractor-package .about-content {
    margin-left: 0;
    text-align: left;
  }
  .contractor-package .about-content h2::before {
    margin: initial;
  }
  .contractor-package {
    padding: 30px 0 20px;
  }
  .contractor-package-phases .col-md-4 {
    width: 50% !important;
    margin: 0 auto;
  }
  .contractor-package-phases .col-md-2 {
    display: none;
  }
  .contractor-pkg-form .col-md-8.col-lg-8 {
    margin: 0 auto;
  }
  .our-services-area.our-services-area-two .single-services {
    text-align: left;
  }
  .single-services {
    min-height: 402px;
  }
}

@media only screen and (max-width: 991px) {
  .mega-menu-dropdown {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1), 1fr));
  }
    .mega-menu-dropdown.brand {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1), 1fr));
  }
  .mega-menu .mean-expand {
    display: none;
  }
  .nav-item.open-mega-menu {
    position: relative !important;
  }
  .mean-nav .mega-menu li a {
    font-weight: 400;
  }
  .mean-nav .container-fluid {
      padding:0;
  }
  .mega-menu-dropdown {
     max-width: 100%;
  }
  .mega-menu-dropdown.brand {
     max-width: 100%;
  }
}

@media (max-width: 767px) {
  section.contact-form-section .cntct-sidebar h4 {
    text-align: center;
  }
  .footer-style2 {
    padding: 30px 0 !important;
    padding-bottom: 100px !important;
}
.footer-logo {
    display: block !important;
}
.footer-logo .copy-right {
    margin-left: 0px !important;
    margin-top: 20px;
}
  .footer-top-content {
    padding: 30px 0 !important;
}
.single-footer-widget {
    margin-bottom: 20px !important;
}
  
  
  
  .single-footer-widget.logo .single-footer-widget {
    width: 100% !important;
}
.btm-cities ul.ul3 {
    column-count: 2!important;
}
  .contractor-package-phases .col-md-4 {
    width: 100% !important;
  }
  .contractor-package {
    padding: 30px 0 0px;
  }
  .contractor-package-phases {
    padding: 30px 0 0;
  }
  .contractor-package-phases .single-services h3 {
    min-height: auto;
  }
  .contractor-package-phases .single-services {
    min-height: auto;
  }
  .contractor-pkg-form {
    background: #fff;
    padding: 20px 0;
  }
  section.contractor-pkg-form .col-md-2.col-lg-2 {
    display: none;
  }
  .about-content h2 {
    font-size: 25px;
  }
}

#usa-map svg {
  width: 100%;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  padding: 0 25px 40px;
  height: 700px;
}

@media screen and (min-width: 767px) and (max-width: 900px) {
  #usa-map svg {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    padding: 22px 25px;
    height: 520px;
  }
}

section.service-area-sec {
  padding: 25px 0 0;
}

.srv-area h4 {
  font-size: 28px;
  line-height: 45px;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin-bottom: 0;
}

div#usa-map {
  position: relative;
}

div#city_section h3 {
  text-align: center;
  padding: 4px 0;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 28px;
  background-color: var(--color2);
  color: #fff;
}

div#city_section ul {
  margin-bottom: 20px;
}
.error-content.text-center.wow.slideInUp.animated {
  margin: 70px 0;
}
section.slider_service_area.text-center {
    padding: 100px 0 70px 0;
    background:#f7f7f7;
}
.hero-section-title .brands_slider {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 600;
}
.slider_service_box .brand_img a img {
    margin-bottom: 30px;
}

.copy-right-area strong a {
    color: #fff;
}
.copy-right-area strong a:hover {
    color: var(--color1);
}

/* Flashing */
.hover13 figure:hover img {
	opacity: 1;
	-webkit-animation: flash 1.9s;
	animation: flash 1.9s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}

section.show-car-models-on-car-brand-page {
    padding: 70px 0;
}
section.show-car-models-on-car-brand-page ul.ul3 {
    column-count: 3;
}
section.show-car-models-on-car-brand-page .h4-heading {
  color: var(--color2);
  font-weight: 600;
}

section.show-car-models-on-car-brand-page .h4-heading {
    color: #fff;
    font-weight: 600;
    background: var(--color1);
    padding: 6px;
    border-bottom: 5px solid var(--color2);
}

.btm-cities ul.ul3 {
    column-count: 4;
}

section.we-are-area.pt-100.pb-70 {
    background: #f7f7f7;
    padding: 70px 0;
}

.single-footer-widget h5.m-0.font-weight-bold {
    font-family: fast-track;
    font-size: 18px;
}
.single-footer-widget h5.m-0.font-weight-bold a {
   background: #fff;
    color: var(--color2);
    padding: 5px 10px;
    margin: 0 !important;
    border-radius: 3px;
    
}

.single-footer-widget.logo .single-footer-widget {
  text-align: center;
    background: #fff;
    border-radius: 4px;
    width:100%;
}

.single-footer-widget h5.m-0.font-weight-bold a span {
    color: var(--color1);
}














.footer-top-content .footer-logo {
    margin: 0;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.footer-top-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0 40px;
    border-bottom:1px solid var(--color2);
}
.footer-logo .logo {
       position: relative;
    margin-top: 8px;
}
.footer-logo .copy-right {
    border-left: 2px solid var(--color2);
    padding-left: 20px;
    margin-left: 20px;
}
.footer-logo .copy-right p {
    color: #fff;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
.footer-logo .copy-right h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 3px 0 0;
}

.footer-logo .copy-right h5 a {
    color: #ffffff;
}
.footer-logo .copy-right h5 a:hover {
    color: var(--color2);
}
.footer-style2 {
    position: relative;
    display: block;
    padding: 60px 0px 60px;
}
section.slider_service_area.text-center.non-brand-service-page-core {
    background: #fff;
}
section.slider_service_area.text-center.car-brand-logos {
    background: #fff;
}

.error-page-area .title {
    font-size: 66px;
    font-weight: 600;
    color: var(--color2);
}
section.slider_service_area.text-center.bike-brand-logos {
    background: #fff;
}
.mbl-logo h5.m-0.font-weight-bold {
    white-space: break-spaces;
    text-align: center;
    position: absolute;
    z-index: 999;
        top: 60%;
            width: 100%;
    max-width: 250px;
}

.mbl-logo h5 a {
    color: var(--color2);
    font-family: fast-track;
    font-size: 14px;
}
.mbl-logo {
    height: 100%;
}

.mbl-logo h5 span {
    color: var(--color1);
}
section.slider_service_area.text-center.bike-brand-logos.home {
    background: #f7f7f7;
}
.inner-content h2 {
    font-size: 28px;
    font-weight: 700;
         margin-bottom: 10px;
}
.inner-content h3 {
    font-size: 24px;
    font-weight: 600;
         margin-bottom: 10px;
}
.inner-content p {
    margin-bottom: 10px;
}
section.site_faqs.default-padding {
    background: var(--color1);
    padding:70px 0;
}
.Faq_heading {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}
.Faq_question {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.Faq_answer p {
       font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}
section.slider_service_area.text-center.section {
    background: #fff;
}
span.header-info:hover {
    color: var(--color1);
}
.feature-area.bg-color.pt-100.pb-70 {
    padding: 70px 0;
}
section.about-area.pt-100.pb-70 {
    padding: 70px 0;
}
section.our-services-area.our-services-area-three.bg-color.pt-100.pb-70 {
    padding: 70px 0;
}
section.our-services-area.bg-color.pt-100.pb-70 {
    padding: 70px 0;
}
.carsimage {position:relative;}
.carsimage:before{left:0px;opacity:0;content: "";position: absolute;width: 260px;height: 64px;top: -70px;background: url('/userfiles/images/car.png');}
.carsimage.bikeimg:before{left:0px;opacity:0;content: "";position: absolute;width: 260px;height: 64px;top: -70px;background: url('/userfiles/images/bike.png');}
.carsimage.animate:before { opacity: 1; -moz-transition: all 2s ease; -webkit-transition: all 2s ease; -o-transition: all 2s ease; transition: all 2s ease; left:50%; transform:translateX(-50%);}

.inner-content a strong {
    color: var(--color2);
}
.inner-content a strong:hover {
    color: var(--color1);
}
.inner-content ul li {
    list-style: disc;
    margin-left: 25px;
}
.inner-content ul{
    margin-bottom: 15px;
}

.inner-content p img {
    width: 100%;
}
.Faq_answer ul {
    list-style: disc;
    color: #fff;
    margin-left: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.inner-content img {
    margin-top: 10px;
}

.inner-content p strong a {
    color: var(--color2);
}
.inner-content p strong a:hover {
    color: var(--color1);
}
section.our-services-area .container .row {
    display: flex;
        align-items: center;
}

.banner-area.bg-1.jarallax.banner-inner:before {
    position: absolute;
    content: "";
    background: #000000ad;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

section.banner-area.bg-1.jarallax.home:before {
    position: absolute;
    content: "";
    background: #000000ad;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.banner-area.bg-1.jarallax.banner-inner.cntct {
    min-height: 300px !important;
}
.mobile-icon {
background: #12d029;
    color: #fff;
    padding: 7px 14px;
    position: fixed;
    bottom: 140px;
    right: 24%;
    z-index: 999;
    border-radius: 50px;
    font-size: 25px;
    border: 2px solid #1f932d;
    
}
.mobile-icon a i {
    color: #fff;
}
.row.bike {
    justify-content: center;
}

ul.ul3 li {
    margin-bottom: 10px;
}
section.contact-map .container-fluid {
   max-width: inherit;
    padding: 0;
    overflow: hidden;
}