/*
@File: Roose Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

******************************************* 
** - DEFAULT AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style
** - Section Title Area Style

** - HOME PAGE STYLE - **

** - Header Area Style
** - Nav Area Style
** - Banner Area Style
** - Hero Slider Area Style
** - Get In Touch Area Style
** - Services Area Style
** - Services Area Style
** - Counter Area Style
** - Services Area Style
** - Choose Us Area Style
** - Project Area Style
** - Product Area Style
** - Calling Area Style
** - Team Area Style
** - Testimonials Area Style
** - Partner Area Style
** - Blog Area Style
** - FAQ Area Style
** - Before After Area Style
** - Subscribe Area Style
** - Footer Area Style
** - Copy Right Area Style

** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style
** - Section Title Area Style
** - Nice select Area

*******************************************
/*

/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400;1,600&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&amp;display=swap");
body {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #6b6b6b;
}

a {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-decoration: none;
  color: #6b6b6b;
}

a:hover {
  text-decoration: none;
  color: #d00000;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #212529;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

h3 {
  font-weight: 600;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  height: 55px;
  color: #d00000;
  border: 1px solid #d7d7d7;
  background-color: transparent;
  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 #d00000;
}

.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;
}

.pb-40 {
  padding-bottom: 40px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #f9f5f1;
}

.black-bg-color {
  background-color: #212529;
}

.bg-color-f9fbfe {
  background-color: #f9fbfe;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-table;
  padding: 20px 45px;
  font-weight: 600;
  background-color: #d00000;
}

.default-btn::before, .default-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.default-btn::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.default-btn:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

/*
Read More Btn Area Style*/
.read-more {
  font-size: 15px;
  color: #212529;
  font-weight: 600;
}

.read-more i {
  position: relative;
  top: 3px;
}

.read-more:hover {
  color: #d00000;
  letter-spacing: 1px;
}

/*
Section Title Area Style*/
.section-title {
  max-width: 750px;
  margin: -8px auto 50px;
  text-align: center;
  position: relative;
}

.section-title span {
  font-size: 16px;
  color: #d00000;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.section-title h2 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title p {
  max-width: 600px;
  margin: auto;
}

.section-title.white-title span {
  color: #d00000;
}

.section-title.white-title h2 {
  color: #ffffff;
}

.section-title.white-title p {
  color: #ffffff;
}

/*
Header Area Style
======================================================*/
.top-header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.top-header .header-left-content {
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-left: 240px;
}

.top-header .header-left-content li {
  display: inline-block;
  margin-right: 8px;
}

.top-header .header-left-content li span {
  color: #d00000;
  font-size: 16px;
  font-weight: 600;
}

.top-header .header-left-content li a i {
  font-size: 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #212529;
  text-align: center;
  border-radius: 50%;
  line-height: 1;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.top-header .header-left-content li a:hover i {
  color: #d00000;
}

.top-header .header-left-content li:last-child {
  margin-right: 0;
}

.top-header .header-right-content {
  line-height: 1;
  float: right;
  position: relative;
  top: -2px;
}

.top-header .header-right-content .languages-switcher {
  position: relative;
  padding-left: 20px;
  display: inline-block;
  top: 1px;
}

.top-header .header-right-content .languages-switcher i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #d00000;
  margin-right: 0;
}

.top-header .header-right-content .languages-switcher select {
  padding: 0;
  background-color: transparent;
  border: none !important;
  cursor: pointer;
  color: #212529;
  font-size: 15px;
}

.top-header .header-right-content .languages-switcher select option {
  color: #212529;
}

.top-header .header-right-content .languages-switcher select:focus {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.top-header .header-right-content .my-account {
  margin-left: 25px;
  position: relative;
  top: 3px;
  display: inline-block;
}

.top-header .header-right-content .my-account a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #d00000;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  position: relative;
  top: -1px;
}

.top-header .header-right-content .my-account a i {
  color: #ffffff;
  position: relative;
  left: 0.1px;
  font-size: 14px;
}

.top-header .header-right-content .my-account a:hover {
  background-color: #212529;
}

.top-header .header-right-content .cart-icon {
  display: inline-block;
  position: relative;
  top: 5px;
  margin-left: 26px;
  margin-right: 11px;
}

.top-header .header-right-content .cart-icon a {
  position: relative;
}

.top-header .header-right-content .cart-icon a i {
  color: #212529;
  font-size: 17px;
}

.top-header .header-right-content .cart-icon a span {
  position: absolute;
  top: -12px;
  right: -10px;
  display: inline-block;
  width: 17px;
  height: 17px;
  line-height: 17px;
  text-align: center;
  background-color: #d00000;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
}

.top-header.top-header-style-two .header-left-content {
  margin-left: 0;
}

.top-header.top-header-style-two .header-left-content li i {
  color: #ffffff;
}

.top-header.top-header-style-two .header-left-content li span {
  color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .languages-switcher i {
  color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .languages-switcher select {
  color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .cart-icon a i {
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header.top-header-style-two .header-right-content .cart-icon a i:hover {
  color: #d00000;
}

.top-header.top-header-style-two .header-right-content .my-account a i {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header.top-header-style-two .header-right-content .my-account a:hover {
  background-color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .my-account a:hover i {
  color: #d00000;
}

.top-header.top-header-style-three {
  background-color: transparent;
  border-bottom: 1px solid #5e6468;
}

.top-header.top-header-style-three .header-left-content {
  margin-left: 0;
}

.top-header.top-header-style-three .header-left-content li span {
  color: #ffffff;
}

.top-header.top-header-style-three .header-left-content li i {
  color: #ffffff;
}

.top-header.top-header-style-three .header-right-content .languages-switcher i {
  color: #ffffff;
}

.top-header.top-header-style-three .header-right-content .languages-switcher select {
  color: #ffffff;
}

.top-header.top-header-style-three .header-right-content .cart-icon a i {
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header.top-header-style-three .header-right-content .cart-icon a i:hover {
  color: #d00000;
}

.top-header.top-header-style-three .header-right-content .my-account a i {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header.top-header-style-three .header-right-content .my-account a:hover {
  background-color: #ffffff;
}

.top-header.top-header-style-three .header-right-content .my-account a:hover i {
  color: #d00000;
}

/*
Navbar Area Style
======================================================*/
.navbar-area {
  position: relative;
}

.navbar-area .navbar-brand {
  margin-right: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.navbar-area .navbar-brand.navbar-brand-style-two::before {
  display: none;
}

.navbar-area .navbar-brand::before {
  content: "";
  position: absolute;
  top: -88px;
  left: -312px;
  width: 520px;
  height: 150px;
  background-image: url(../images/logo-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: #ffffff !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);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-area.navbar-area-style-three .desktop-nav {
  background-color: transparent;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .navbar-nav .nav-item a {
  color: #ffffff;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #d00000;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .navbar-nav .nav-item a:hover {
  color: #d00000;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #212529;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #d00000;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #d00000;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .others-options ul li .search-btn i {
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .others-options ul li .search-btn:hover i {
  color: #d00000;
}

.navbar-area.navbar-area-style-three.is-sticky {
  background-color: #212529 !important;
}

.desktop-nav {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.desktop-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 35px;
  padding-top: 35px;
  padding-right: 0;
  padding-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
  font-weight: 600;
  font-size: 15px;
  color: #212529;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -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 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #212529;
  padding: 15px;
  border-bottom: 1px dashed #eeeeee;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 7px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #212529;
  border-bottom: 1px dashed #eeeeee;
  font-size: 14px;
  line-height: 1;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -1px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -1px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #d00000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 80%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.desktop-nav .navbar .others-options ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  line-height: 1;
}

.desktop-nav .navbar .others-options ul li {
  display: inline-block;
  margin-right: 25px;
  padding-right: 30px;
  border-right: 1px solid #d7d7d7;
}

.desktop-nav .navbar .others-options ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.desktop-nav .navbar .others-options ul li .search-btn {
  display: block !important;
  background-color: transparent;
}

.desktop-nav .navbar .others-options ul li .search-btn i {
  font-size: 25px;
}

.desktop-nav .navbar .others-options ul li .search-btn:focus {
  color: #212529;
}

.desktop-nav .navbar .others-options ul li .burger-menu {
  background-color: #d00000;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.desktop-nav .navbar .others-options ul li .burger-menu i {
  color: #ffffff;
  font-size: 25px;
}

.mobile-responsive-nav {
  display: none;
}

.others-options-for-mobile-devices {
  display: none;
}

.others-options-for-mobile-devices ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  line-height: 1;
}

.others-options-for-mobile-devices ul li {
  display: inline-block;
  margin-right: 25px;
  padding-right: 30px;
  border-right: 1px solid #d7d7d7;
}

.others-options-for-mobile-devices ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.others-options-for-mobile-devices ul li .search-btn {
  display: block !important;
  background-color: transparent;
}

.others-options-for-mobile-devices ul li .search-btn i {
  font-size: 25px;
}

.others-options-for-mobile-devices ul li .search-btn:focus {
  color: #212529;
}

.others-options-for-mobile-devices ul li .burger-menu {
  background-color: #d00000;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.others-options-for-mobile-devices ul li .burger-menu i {
  color: #ffffff;
  font-size: 25px;
}

.mfp-iframe-holder .mfp-content {
  border: 20px solid #eeeeee;
}

.mfp-iframe-holder .mfp-close {
  top: -50px;
  right: -20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #f30000;
}

/*
Search Modal Area Style
======================================================*/
.search-modal-area .modal-content {
  height: 100vh;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.9);
  position: relative;
}

.search-modal-area .modal-content form.search-box {
  position: absolute;
  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;
}

.search-modal-area .modal-content form.search-box .search-input {
  width: 810px;
  position: relative;
  padding: 30px;
}

.search-modal-area .modal-content form.search-box .search-input .form-control {
  color: #ffffff;
  height: 60px;
}

.search-modal-area .modal-content form.search-box .search-input .form-control::-webkit-input-placeholder {
  color: #eeeeee;
}

.search-modal-area .modal-content form.search-box .search-input .form-control:-ms-input-placeholder {
  color: #eeeeee;
}

.search-modal-area .modal-content form.search-box .search-input .form-control::-ms-input-placeholder {
  color: #eeeeee;
}

.search-modal-area .modal-content form.search-box .search-input .form-control::placeholder {
  color: #eeeeee;
}

.search-modal-area .modal-content form.search-box .search-input .search-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  line-height: 63px;
  font-size: 25px;
  background-color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.search-modal-area .modal-content form.search-box .search-input .search-btn:hover {
  color: #ffffff;
  background-color: #d00000;
}

.search-modal-area .modal-content .closer-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #ff3131;
  color: #ffffff;
  font-size: 20px;
  z-index: 1;
}

.search-modal-area .modal-dialog {
  max-width: 100%;
  margin: 0;
}

.search-modal-area.modal {
  overflow: hidden;
  padding: 0 !important;
}

/*
Sidebar Area Style
======================================================*/
.sidebar-modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  overflow: hidden;
}

.sidebar-modal .sidebar-modal-inner {
  position: absolute;
  right: -100%;
  top: 0;
  max-width: 400px;
  overflow-y: scroll;
  height: 100%;
  background-color: #212529;
  z-index: 1;
  padding: 30px;
}

.sidebar-modal .sidebar-header .sidebar-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.sidebar-modal .sidebar-header .close-btn {
  display: inline-block;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.sidebar-modal .sidebar-header .close-btn:hover {
  color: #ffffff;
  background-color: #d00000;
}

.sidebar-modal .sidebar-header .close-btn {
  float: right;
}

.sidebar-modal h3 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-left: 0;
  color: #ffffff;
}

.sidebar-modal .contact-us {
  margin-bottom: 30px;
}

.sidebar-modal .contact-us ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-modal .contact-us ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #fffefc;
}

.sidebar-modal .contact-us ul li span {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.sidebar-modal .contact-us ul li i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 20px;
  color: #d00000;
}

.sidebar-modal .contact-us ul li a {
  display: block;
  color: #fffefc;
}

.sidebar-modal .contact-us ul li a:hover {
  color: #d00000;
}

.sidebar-modal .contact-us ul li ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  font-size: 14px;
}

.sidebar-modal .contact-us ul li ul li:last-child {
  margin-right: 0;
}

.sidebar-modal .contact-us ul li ul li span {
  margin-bottom: 0;
  position: relative;
  top: -6px;
}

.sidebar-modal .contact-us ul li ul li a i {
  position: unset;
  background-color: #363636;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.sidebar-modal .contact-us ul li ul li a:hover i {
  background-color: #d00000;
}

.sidebar-modal .recent-product {
  margin-bottom: 50px;
}

.sidebar-modal .recent-product ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}

.sidebar-modal .recent-product ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  max-width: 33%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
  -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);
}

.sidebar-modal .recent-product ul li a {
  display: block;
  position: relative;
}

.sidebar-modal .recent-product ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
}

.sidebar-modal .recent-product ul li a:hover::before {
  opacity: .50;
  visibility: visible;
}

.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.9);
}

.sidebar-modal.active .sidebar-modal-inner {
  right: 0;
}

/*
Banner Area Style
======================================================*/
.banner-area {
  position: relative;
  z-index: 1;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 240px;
  padding-bottom: 100px;
}

.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: -1;
}

.banner-area .col-lg-4 {
  position: relative;
}

.banner-area.banner-area-style-three {
  position: relative;
  overflow: hidden;
}

.banner-area.banner-area-style-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.75;
  z-index: 2;
}

.banner-area.banner-area-style-three .background-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.banner-area.banner-area-style-three .banner-content {
  max-width: 810px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.banner-area.banner-area-style-three .banner-content span {
  color: #ffffff;
}

.banner-area.banner-area-style-three .banner-content h1 {
  color: #ffffff;
}

.banner-area.banner-area-style-three .banner-content p {
  color: #ffffff;
}

.banner-content span {
  font-size: 16px;
  display: block;
  color: #d00000;
  margin-bottom: 10px;
}

.banner-content h1 {
  font-size: 80px;
  margin-bottom: 25px;
  color: #212529;
  line-height: 1.1;
  -webkit-animation: 0.6s fadeInUpBig;
          animation: 0.6s fadeInUpBig;
  font-weight: 900;
}

.banner-content p {
  margin-bottom: 30px;
  max-width: 750px;
  font-size: 18px;
  -webkit-animation: 0.9s fadeInUpBig;
          animation: 0.9s fadeInUpBig;
  color: #212529;
}

.banner-content .banner-btn {
  -webkit-animation: 1s fadeInUpBig;
          animation: 1s fadeInUpBig;
}

.banner-img {
  -webkit-animation: 1s fadeInUpBig;
          animation: 1s fadeInUpBig;
}

/*
Hero Slider Area Style
======================================================*/
.hero-slider-area {
  position: relative;
}

.hero-slider-area .owl-item.active .hero-slider-content {
  overflow: hidden;
}

.hero-slider-area .owl-item.active .hero-slider-content h1 {
  -webkit-animation: 1s fadeInLeft both;
          animation: 1s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content p {
  -webkit-animation: 2s fadeInLeft both;
          animation: 2s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content .slider-btn {
  -webkit-animation: 3s fadeInLeft both;
          animation: 3s fadeInLeft both;
}

.hero-slider-area .thumbs-wrap {
  max-width: 1295px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.hero-slider-area .thumbs-wrap .owl-thumbs {
  position: absolute;
  bottom: 160px;
  left: 0;
}

.hero-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item {
  display: inline-block;
  margin-right: 20px;
}

.hero-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item span {
  width: 15px;
  height: 15px;
  background-color: #b5b4b2;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.hero-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item.active span {
  background-color: #d00000;
}

.hero-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item:hover span {
  background-color: #d00000;
}

.hero-slider-item {
  position: relative;
  z-index: 1;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 230px;
}

.hero-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, rgba(255, 255, 255, 0.9)), to(transparent));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 35%, transparent);
  z-index: -1;
}

.hero-slider-item.bg-1 {
  background-image: url(../images/slider-bg/slider-bg-1.jpg);
}

.hero-slider-item.bg-2 {
  background-image: url(../images/slider-bg/slider-bg-2.jpg);
}

.hero-slider-item.bg-3 {
  background-image: url(../images/slider-bg/slider-bg-3.jpg);
}

.hero-slider-content {
  max-width: 810px;
}

.hero-slider-content span {
  color: #d00000;
  display: block;
  margin-bottom: 15px;
}

.hero-slider-content h1 {
  font-size: 80px;
  margin-bottom: 30px;
  font-weight: 900;
}

.hero-slider-content p {
  margin-bottom: 40px;
  font-size: 18px;
  color: #212529;
}

.hero-slider-content .slider-btn .play-video {
  position: relative;
  top: 16px;
  margin-left: 30px;
}

.hero-slider-content .slider-btn .play-video i {
  font-size: 56px;
  color: #d00000;
}

.hero-slider-content .slider-btn .play-video span {
  color: #212529;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  top: -15px;
  left: 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.hero-slider-content .slider-btn .play-video:hover span {
  color: #d00000;
}

/*
Get In Touch Area Style
======================================================*/
.get-in-touch-area.get-in-touch-area-style-three {
  border-top: 1px solid #929395;
  position: absolute;
  bottom: -225px;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

.get-in-touch-area.get-in-touch-area-style-three .get-in-touch-content {
  max-width: 100%;
}

.get-in-touch-area.get-in-touch-area-style-three .get-in-touch-content .col-lg-4:last-child .single-get-in-touch::before {
  display: none;
}

.get-in-touch-area.get-in-touch-area-style-three .get-in-touch-content .single-get-in-touch {
  position: relative;
}

.get-in-touch-area.get-in-touch-area-style-three .get-in-touch-content .single-get-in-touch::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -6px;
  background-color: #929395;
  height: 125px;
  width: 1px;
}

.get-in-touch-area.get-in-touch-area-style-three .get-in-touch-content .single-get-in-touch span {
  color: #ffffff;
}

.get-in-touch-area.get-in-touch-area-style-three .get-in-touch-content .single-get-in-touch a {
  color: #ffffff;
}

.single-get-in-touch {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
}

.single-get-in-touch i {
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  background-color: #d00000;
  color: #ffffff;
}

/*
Services Area Style
======================================================*/
.services-area {
  position: relative;
}

.services-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 50%;
  background-color: #f9f5f1;
  border-radius: 0 0 10px 0;
}

.services-area.services-area-style-two::before {
  display: none;
}

.single-services-box {
  background-color: #212529;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.single-services-box::before, .single-services-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services-box::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.single-services-box span {
  font-size: 60px;
  line-height: 1;
  color: #212529;
  background-color: #ffffff;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  margin-bottom: 23px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.single-services-box h3 a {
  color: #ffffff;
}

.single-services-box p {
  color: #ffffff;
  margin-bottom: 15px;
}

.single-services-box .read-more {
  color: #ffffff;
}

.single-services-box .read-more:hover {
  color: #ffffff;
}

.single-services-box:hover span {
  color: #d00000;
}

.single-services-box:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.single-services-box:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.single-services-box.white-bg {
  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);
}

.single-services-box.white-bg::before, .single-services-box.white-bg::after {
  display: none;
}

.single-services-box.white-bg span {
  background-color: #212529;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services-box.white-bg h3 {
  margin-bottom: 13px;
}

.single-services-box.white-bg h3 a {
  color: #212529;
}

.single-services-box.white-bg p {
  color: #6b6b6b;
}

.single-services-box.white-bg .read-more {
  color: #212529;
}

.single-services-box.white-bg:hover span {
  background-color: #d00000;
}

/*
Services Area Style
======================================================*/
.about-content {
  margin-left: 30px;
  margin-bottom: 30px;
}

.about-content span {
  font-size: 16px;
  color: #d00000;
  display: block;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 35px;
}

.about-content ul li {
  position: relative;
  padding-left: 25px;
  line-height: 1.8;
  font-weight: 600;
  color: #212529;
  margin-bottom: 6px;
}

.about-content ul li:last-child {
  line-height: normal;
}

.about-content ul li i {
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  display: inline-block;
  background-color: #d00000;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  font-size: 11px;
}

.about-img {
  text-align: right;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.about-img::before {
  content: "";
  position: absolute;
  top: 105px;
  left: 65px;
  width: 500px;
  height: 500px;
  background-color: #f9f5f1;
  z-index: -1;
}

.about-img .about-img-2 {
  position: absolute;
  left: 0;
  bottom: -169px;
}

.about-img-3 {
  margin-bottom: 30px;
}

/*
Counter Area Style
======================================================*/
.counter-area {
  background-image: url(../images/counter-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.counter-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d00000;
  opacity: 0.8;
  z-index: -1;
}

.counter-area .col-lg-3:first-child .single-counter::before {
  display: none;
}

.counter-area.counter-area-style-two {
  background-image: unset;
}

.counter-area.counter-area-style-two::before {
  background-color: #f9f5f1;
  opacity: 1;
  height: 50%;
}

.counter-area.counter-area-style-two .counter-bg {
  max-width: 1320px;
  margin: auto;
  background-image: url(../images/counter-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.counter-area.counter-area-style-two .counter-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d00000;
  opacity: 0.8;
  z-index: -1;
}

.counter-area.counter-area-style-three::before {
  display: none;
}

.counter-area.counter-area-style-three .single-counter::before {
  border-color: #a7a8a9;
}

.counter-area.counter-area-style-three .counter-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.9;
  z-index: -1;
}

.single-counter {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.single-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #e39d9e;
}

.single-counter i {
  font-size: 50px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 30px;
  display: inline-block;
}

.single-counter .count-title {
  text-align: center;
}

.single-counter .count-title h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: -8px;
  font-weight: 600;
}

.single-counter .count-title h2 .target {
  position: relative;
  top: 2px;
  margin-left: -10px;
  font-size: 40px;
  color: #ffffff;
}

.single-counter .count-title h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: normal;
}

/*
Services Area Style
======================================================*/
.professional-services-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.professional-services-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 50%;
  background-color: #f9f5f1;
  border-radius: 0 0 0 10px;
  z-index: -1;
}

.professional-services-area .owl-theme .owl-nav {
  margin: 0 !important;
}

.professional-services-area .owl-theme .owl-nav .owl-prev, .professional-services-area .owl-theme .owl-nav .owl-next {
  background-color: transparent;
  margin: 0;
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: 1;
}

.professional-services-area .owl-theme .owl-nav .owl-prev::before, .professional-services-area .owl-theme .owl-nav .owl-prev::after, .professional-services-area .owl-theme .owl-nav .owl-next::before, .professional-services-area .owl-theme .owl-nav .owl-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.professional-services-area .owl-theme .owl-nav .owl-prev::after, .professional-services-area .owl-theme .owl-nav .owl-next::after {
  height: 0;
  width: 100%;
}

.professional-services-area .owl-theme .owl-nav .owl-prev i, .professional-services-area .owl-theme .owl-nav .owl-next i {
  color: #d00000;
  border: 1px solid #d00000;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.professional-services-area .owl-theme .owl-nav .owl-prev:hover i, .professional-services-area .owl-theme .owl-nav .owl-next:hover i {
  background-color: #d00000;
  color: #ffffff;
}

.professional-services-area .owl-theme .owl-nav .owl-prev:hover::before, .professional-services-area .owl-theme .owl-nav .owl-next:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

.professional-services-area .owl-theme .owl-nav .owl-prev:hover::after, .professional-services-area .owl-theme .owl-nav .owl-next:hover::after {
  height: 100%;
  left: auto;
  right: 0;
}

.professional-services-area .owl-theme .owl-nav .owl-next {
  left: auto;
  right: -60px;
}

.professional-services-area.professional-services-area-style-two::before {
  display: none;
}

.professional-services-area.professional-services-area-style-two .pagination-area {
  text-align: center;
}

.professional-services {
  margin-bottom: 30px;
}

.professional-services .professional-services-content {
  background-color: #212529;
  padding: 30px;
  position: relative;
  z-index: 1;
  padding-top: 26px;
}

.professional-services .professional-services-content::before, .professional-services .professional-services-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.professional-services .professional-services-content::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.professional-services .professional-services-content h3 {
  margin-bottom: 13px;
  margin-top: -3px;
}

.professional-services .professional-services-content h3 a {
  font-size: 24px;
  color: #ffffff;
}

.professional-services .professional-services-content p {
  color: #ffffff;
  margin-bottom: 13px;
}

.professional-services .professional-services-content .read-more {
  color: #ffffff;
}

.professional-services.white-bg .professional-services-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);
}

.professional-services.white-bg .professional-services-content h3 a {
  color: #212529;
}

.professional-services.white-bg .professional-services-content p {
  color: #6b6b6b;
}

.professional-services.white-bg .professional-services-content .read-more {
  color: #212529;
}

.professional-services.title-color {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.professional-services.title-color .professional-services-content::before, .professional-services.title-color .professional-services-content::after {
  display: none;
}

.professional-services.title-color:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.professional-services.title-color:hover .professional-services-content h3 a {
  color: #d00000;
}

.professional-services.title-color:hover .professional-services-content p {
  color: #6b6b6b;
}

.professional-services.title-color:hover .professional-services-content .read-more {
  color: #d00000;
}

.professional-services:hover .professional-services-content h3 a {
  color: #ffffff;
}

.professional-services:hover .professional-services-content p {
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.professional-services:hover .professional-services-content .read-more {
  color: #ffffff;
}

.professional-services:hover .professional-services-content::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.professional-services:hover .professional-services-content::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

/*
Choose Us Area Style
======================================================*/
.why-choose-us-area.bg-color-f9fbfe .choose-us-from-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.9;
  z-index: -1;
}

.choose-us-content {
  margin-top: -5px;
}

.choose-us-content span {
  color: #d00000;
  margin-bottom: 15px;
  display: block;
}

.choose-us-content h2 {
  font-size: 40px;
  margin-bottom: 35px;
}

.choose-us-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.choose-us-content ul li {
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}

.choose-us-content ul li i {
  font-size: 50px;
  background-color: #fae5e5;
  color: #d00000;
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 0;
}

.choose-us-content ul li h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.choose-us-content.choose-us-content-two ul li i {
  background-color: #e3e5e8;
  color: #212529;
}

.choose-us-from-bg {
  background-image: url(../images/choose-us-from-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 50px;
  margin-bottom: 30px;
  margin-top: -11px;
}

.choose-us-from-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d00000;
  opacity: 0.9;
  z-index: -1;
}

.choose-us-from-bg h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  margin-right: -9px;
}

.choose-us-from-bg label {
  margin-bottom: 12px;
  color: #ffffff;
  display: block;
}

.choose-us-from-bg .form-group {
  margin-bottom: 25px;
  position: relative;
}

.choose-us-from-bg .form-group .form-control {
  padding-left: 60px;
  color: #ffffff;
}

.choose-us-from-bg .form-group .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.choose-us-from-bg .form-group .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.choose-us-from-bg .form-group .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.choose-us-from-bg .form-group .form-control::placeholder {
  color: #ffffff;
}

.choose-us-from-bg .form-group .form-control:focus {
  border-color: #ffffff;
}

.choose-us-from-bg .form-group i {
  color: #ffffff;
  position: absolute;
  top: 8px;
  left: 0;
  padding: 5px 15px;
  font-size: 20px;
  border-right: 1px solid #d7d7d7;
}

.choose-us-from-bg .default-btn {
  margin-top: 10px;
  width: 100%;
  background-color: #ffffff;
  color: #d00000;
}

.choose-us-from-bg .default-btn:hover {
  color: #ffffff;
}

.table-condensed {
  border-collapse: collapse;
  width: 256px;
  text-align: center;
}

.table-condensed .prev {
  background-color: #f2f9fc;
  border-radius: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}

.table-condensed .prev:hover {
  background-color: #d00000;
  color: #ffffff;
}

.table-condensed .next {
  background-color: #f2f9fc;
  border-radius: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}

.table-condensed .next:hover {
  background-color: #d00000;
  color: #ffffff;
}

.table-condensed .day {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
  transition: all ease 0.5s;
  border-radius: 4px;
  font-size: 14px;
}

.table-condensed .day:hover {
  background-color: #d00000;
  color: #ffffff;
}

.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom {
  border-radius: 0 !important;
}

.datepicker table tr td.day:hover, .datepicker .datepicker table tr td.focused {
  background-color: #d00000;
}

.datepicker table tr td.active.active, .datepicker .datepicker table tr td.active.highlighted.active, .datepicker .datepicker table tr td.active.highlighted:active, .datepicker .datepicker table tr td.active:active {
  background-color: #d00000;
  border-color: #d00000;
}

.datepicker .datepicker-switch {
  font-size: 14px;
}

.datepicker table tr td, .datepicker table tr th {
  font-size: 13px;
}

/* 
Project Area Style
=====================================================*/
.shorting-menu {
  margin-bottom: 50px;
  text-align: center;
  max-width: 728px;
  margin: -5px auto 30px;
  border-bottom: 2px solid #ebebeb;
}

.shorting-menu .filter {
  background-color: transparent;
  padding: 0 25px 10px;
  font-weight: 600;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
}

.shorting-menu .filter::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #d00000;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.shorting-menu .filter.active {
  color: #d00000;
}

.shorting-menu .filter.active::before {
  width: 100%;
  left: 0;
  right: auto;
}

.project-item {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 1;
}

.project-item::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.6;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.project-item .project-item-content {
  padding: 30px;
  margin: auto;
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.project-item .project-item-content a {
  display: block;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.project-item:hover .project-item-content {
  bottom: 0;
}

.project-item:hover::before {
  bottom: 0;
}

.shorting .mix {
  display: none;
}

/* 
Product Area Style
=====================================================*/
.product-area .pagination-area {
  text-align: center;
}

.product-item-tab .tabs {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 40px;
}

.product-item-tab .tabs li {
  display: inline-block;
  padding: 0 30px 10px;
  margin: 0 -2px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-bottom: 2px solid #ebebeb;
}

.product-item-tab .tabs li::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #d00000;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: -1;
}

.product-item-tab .tabs li.current {
  color: #d00000;
}

.product-item-tab .tabs li.current::before {
  width: 100%;
  left: 0;
  right: auto;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.single-product {
  margin-bottom: 30px;
  position: relative;
}

.single-product .product-img {
  position: relative;
  margin-bottom: 20px;
}

.single-product .product-img ul {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.single-product .product-img ul li {
  display: inline-block;
  margin: 0 5px;
}

.single-product .product-img ul li a i, .single-product .product-img ul li button i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #212529;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
}

.single-product .product-img ul li a:hover i, .single-product .product-img ul li button:hover i {
  background-color: #d00000;
  color: #ffffff;
}

.single-product .product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.5;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product a h3 {
  margin-bottom: 5px;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-right: 115px;
}

.single-product a:hover h3 {
  color: #d00000;
}

.single-product .rating {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  bottom: 28px;
  right: 0;
}

.single-product .rating li {
  display: inline-block;
  margin: 0 1px;
}

.single-product .rating li i {
  color: #ffb607;
}

.single-product .price {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  color: #d00000;
}

.single-product .price del {
  margin-right: 10px;
}

.single-product .new {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #d00000;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
}

.single-product .new.sell {
  background-color: #008000;
}

.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);
}

.showing-result {
  margin-bottom: 30px;
}

.showing-result .showing-top-bar-ordering {
  text-align: right;
}

.showing-result .showing-top-bar-ordering span {
  display: inline-block;
  margin-right: 20px;
}

.showing-result .showing-top-bar-ordering select {
  border: 1px solid #ebebeb;
  background-color: #fffefc;
  border-radius: 0;
  padding: 5px;
}

.showing-result .showing-top-bar-ordering select:focus {
  border-color: #212529;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* 
Calling Area Style
=====================================================*/
.calling-area {
  background-color: #f9f5f1;
}

.calling-area.bg-color-f9f5f1 {
  background-color: #212529;
}

.calling-area.bg-color-f9f5f1 h2 a {
  color: #ffffff;
}

.calling-area.bg-color-f9f5f1 h2 a:hover {
  color: #d00000;
}

.calling-area h2 {
  color: #212529;
  margin-bottom: 20px;
  font-size: 30px;
}

.calling-area h2 a {
  color: #ffffff;
}

.calling-area .call-now {
  float: right;
}

/*
Team Area Style
======================================================*/
.team-area {
  position: relative;
  z-index: 1;
}

.team-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 50%;
  background-color: #f9f5f1;
  border-radius: 0 0 0 10px;
  z-index: -1;
}

.team-area.team-area-three::before {
  display: none;
}

.single-team-member {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
  position: relative;
}

.single-team-member::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
  background-image: linear-gradient(to top, #000000, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.single-team-member .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-top: 20px;
  padding: 30px;
  opacity: 0;
}

.single-team-member .team-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
}

.single-team-member .team-content span {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.single-team-member .team-content .team-social .control {
  width: 40px;
  height: 40px;
  line-height: 43px;
  background-color: #d00000;
  font-size: 20px;
  text-align: center;
  position: absolute;
  top: 38.20px;
  right: 30px;
  color: #ffffff;
  z-index: 1;
  cursor: pointer;
}

.single-team-member .team-content .team-social ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -122px;
  right: 30px;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-team-member .team-content .team-social ul li a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #d00000;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
}

.single-team-member .team-content .team-social ul li a:hover i {
  background-color: #212529;
}

.single-team-member .team-content .team-social ul li:nth-child(4) a i {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

.single-team-member .team-content .team-social ul li:nth-child(3) a i {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.single-team-member .team-content .team-social ul li:nth-child(2) a i {
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}

.single-team-member .team-content .team-social ul li:nth-child(1) a i {
  -webkit-transform: translateY(160px);
          transform: translateY(160px);
}

.single-team-member .team-content .team-social:hover ul {
  opacity: 1;
}

.single-team-member .team-content .team-social:hover ul li:nth-child(4) a i {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.single-team-member .team-content .team-social:hover ul li:nth-child(3) a i {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.single-team-member .team-content .team-social:hover ul li:nth-child(2) a i {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.single-team-member .team-content .team-social:hover ul li:nth-child(1) a i {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.single-team-member:hover::before {
  opacity: 0.8;
}

.single-team-member:hover .team-content {
  opacity: 1;
}

/*
Testimonials Area Style
======================================================*/
.testimonials-area .owl-carousel .owl-item img {
  width: auto;
  margin: auto;
}

.testimonials-area .owl-theme .owl-dots {
  margin-top: 40px !important;
  line-height: 1;
}

.testimonials-area .owl-theme .owl-dots .owl-dot span {
  background-color: #c0bebb;
  width: 15px;
  height: 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 0;
  margin-top: 0;
}

.testimonials-area .owl-theme .owl-dots .owl-dot.active span {
  background-color: #d00000;
}

.testimonials-area .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #d00000;
}

.testimonials-area .owl-item.active.center .single-testimonials.style-two p {
  color: #212529;
}

.testimonials-area .owl-item.active.center .single-testimonials.style-two .testimonials-img i {
  color: #fae5e5;
}

.testimonials-area.testimonials-area-three .single-testimonials.style-two {
  border: 1px solid #ebebeb;
}

.testimonials-content {
  text-align: center;
  margin-left: -120px;
}

.testimonials-content h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.testimonials-content .owl-theme .owl-nav {
  margin: 0 !important;
}

.testimonials-content .owl-theme .owl-nav .owl-prev, .testimonials-content .owl-theme .owl-nav .owl-next {
  background-color: #ffffff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: 1;
}

.testimonials-content .owl-theme .owl-nav .owl-prev::before, .testimonials-content .owl-theme .owl-nav .owl-prev::after, .testimonials-content .owl-theme .owl-nav .owl-next::before, .testimonials-content .owl-theme .owl-nav .owl-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.testimonials-content .owl-theme .owl-nav .owl-prev::after, .testimonials-content .owl-theme .owl-nav .owl-next::after {
  height: 0;
  width: 100%;
}

.testimonials-content .owl-theme .owl-nav .owl-prev i, .testimonials-content .owl-theme .owl-nav .owl-next i {
  color: #d00000;
  border: 1px solid #d00000;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.testimonials-content .owl-theme .owl-nav .owl-prev:hover i, .testimonials-content .owl-theme .owl-nav .owl-next:hover i {
  background-color: #d00000;
  color: #ffffff;
}

.testimonials-content .owl-theme .owl-nav .owl-prev:hover::before, .testimonials-content .owl-theme .owl-nav .owl-next:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

.testimonials-content .owl-theme .owl-nav .owl-prev:hover::after, .testimonials-content .owl-theme .owl-nav .owl-next:hover::after {
  height: 100%;
  left: auto;
  right: 0;
}

.testimonials-content .owl-theme .owl-nav .owl-next {
  left: auto;
  right: -20px;
}

.single-testimonials {
  background-color: #212529;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 50px;
}

.single-testimonials p {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 20px;
  margin-bottom: 0;
  color: #ffffff;
}

.single-testimonials .testimonials-img {
  position: relative;
  display: inline-block;
  padding-left: 95px;
  text-align: left;
  margin-bottom: 20px;
  height: 75px;
  margin-top: 7px;
}

.single-testimonials .testimonials-img img {
  position: absolute;
  top: -7px;
  left: 0;
}

.single-testimonials .testimonials-img h3 {
  color: #ffffff;
  font-size: 20px;
}

.single-testimonials .testimonials-img span {
  color: #ffffff;
}

.single-testimonials.style-two {
  background-color: #ffffff;
  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);
}

.single-testimonials.style-two p {
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
  color: #6b6b6b;
  font-size: 16px;
  text-align: left;
}

.single-testimonials.style-two .testimonials-img {
  text-align: left;
  margin-bottom: 0;
  display: block;
}

.single-testimonials.style-two .testimonials-img h3 {
  color: #212529;
}

.single-testimonials.style-two .testimonials-img span {
  color: #6b6b6b;
}

.single-testimonials.style-two .testimonials-img i {
  font-size: 100px;
  position: absolute;
  top: -38px;
  right: 0;
  color: #e8e9e9;
}

/*
Partner Area Style
======================================================*/
.partner-area .owl-carousel .owl-item img {
  display: block;
  width: auto;
  margin: auto;
}

/*
Blog Area Style
======================================================*/
.single-blog {
  margin-bottom: 30px;
}

.single-blog .blog-content {
  padding: 30px;
  padding-top: 28px;
  background-color: #212529;
  position: relative;
  z-index: 1;
}

.single-blog .blog-content::before, .single-blog .blog-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-blog .blog-content::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.single-blog .blog-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.single-blog .blog-content ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 15px;
  color: #ffffff;
}

.single-blog .blog-content ul li i {
  color: #ffffff;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.single-blog .blog-content ul li a {
  color: #ffffff;
}

.single-blog .blog-content ul li a:hover {
  color: #ffffff;
}

.single-blog .blog-content h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #ffffff;
}

.single-blog .blog-content h3 a {
  color: #ffffff;
}

.single-blog .blog-content p {
  margin-bottom: 12px;
  color: #ffffff;
}

.single-blog .blog-content .read-more {
  color: #ffffff;
}

.single-blog:hover .blog-content::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.single-blog:hover .blog-content::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.single-blog.white-bg {
  -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-blog.white-bg .blog-content {
  background-color: #ffffff;
}

.single-blog.white-bg .blog-content ul li {
  color: #6b6b6b;
}

.single-blog.white-bg .blog-content ul li I {
  color: #d00000;
}

.single-blog.white-bg .blog-content ul li a {
  color: #6b6b6b;
}

.single-blog.white-bg .blog-content h3 a {
  color: #212529;
}

.single-blog.white-bg .blog-content p {
  color: #6b6b6b;
}

.single-blog.white-bg .blog-content .read-more {
  color: #212529;
}

.single-blog.white-bg:hover .blog-content ul li {
  color: #ffffff;
}

.single-blog.white-bg:hover .blog-content ul li i {
  color: #ffffff;
}

.single-blog.white-bg:hover .blog-content ul li a {
  color: #ffffff;
}

.single-blog.white-bg:hover .blog-content h3 a {
  color: #ffffff;
}

.single-blog.white-bg:hover .blog-content p {
  color: #ffffff;
}

.single-blog.white-bg:hover .blog-content .read-more {
  color: #ffffff;
}

.single-blog.white-title {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-blog.white-title .blog-content::before, .single-blog.white-title .blog-content::after {
  display: none;
}

.single-blog.white-title .blog-content ul li {
  color: #6b6b6b;
}

.single-blog.white-title .blog-content ul li i {
  color: #d00000;
}

.single-blog.white-title .blog-content ul li a {
  color: #6b6b6b;
}

.single-blog.white-title .blog-content h3 a {
  color: #212529;
}

.single-blog.white-title .blog-content p {
  color: #6b6b6b;
}

.single-blog.white-title .blog-content .read-more {
  color: #212529;
}

.single-blog.white-title:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-blog.white-title:hover .blog-content ul li {
  color: #6b6b6b;
}

.single-blog.white-title:hover .blog-content ul li i {
  color: #d00000;
}

.single-blog.white-title:hover .blog-content ul li a {
  color: #6b6b6b;
}

.single-blog.white-title:hover .blog-content h3 a {
  color: #d00000;
}

.single-blog.white-title:hover .blog-content p {
  color: #6b6b6b;
}

.single-blog.white-title:hover .blog-content .read-more {
  color: #d00000;
}

/*
FAQ Area Style
======================================================*/
.faq-accordion {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.faq-accordion h2 {
  text-align-last: left;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  border-radius: 0;
  display: block;
  margin-bottom: 22px;
  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: 20px 35px 20px 20px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding-left: 50px;
  color: #212529;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  z-index: 1;
}

.faq-accordion .accordion .accordion-title span {
  position: absolute;
  top: -1px;
  left: 0;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: -20px;
  top: -1px;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #d00000;
}

.faq-accordion .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f1af";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: 10px;
  padding-left: 50px;
}

.faq-accordion .accordion .accordion-content span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Before After Area Style
======================================================*/
.faq-area {
  position: relative;
  z-index: 1;
}

.faq-area h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.faq-page-style h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.faq-page-style .contact-form h2 {
  font-size: 40px;
  margin-bottom: 50px;
  border: none;
  padding-bottom: 0;
}

.faq-page-style .contact-form h2::before {
  display: none;
}

.faq-page-style .faq-accordion .accordion .accordion-item {
  margin-bottom: 29px;
}

.before-after-content {
  position: relative;
  border: 10px solid #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);
  margin-bottom: 30px;
}

.before-after-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 999;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.before-after-content ul li {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  background-color: #ffffff;
  padding: 5px 30px;
  color: #212529;
}

.before-after-content ul .after {
  float: right;
}

.ba-slider .handle {
  background: #ffffff;
}

.ba-slider .handle::after {
  font-size: 23px;
  color: #d00000;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 2px 6px #ffffff, inset 0 2px 0 #ffffff, inset 0 60px 50px -30px #ffffff;
          box-shadow: 0 2px 6px #ffffff, inset 0 2px 0 #ffffff, inset 0 60px 50px -30px #ffffff;
  line-height: 60px;
  margin: 0;
  left: -30px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.ba-slider .handle.ba-draggable:after {
  width: 64px;
  height: 64px;
  line-height: 60px;
  margin: 0;
}

/*
Subscribe Area Style
======================================================*/
.subscribe-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .default-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 55px;
}

.newsletter-form .form-control {
  border-color: #ebebeb;
  background-color: #ffffff;
}

.newsletter-form .checkboxs {
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}

.newsletter-form .checkboxs #chb2 {
  position: absolute;
  top: 8px;
  left: 0;
}

.subscribe-area {
  position: relative;
  z-index: 1;
}

.subscribe-area .shape {
  position: absolute;
  z-index: -1;
}

.subscribe-area .shape.subscribe-shape-1 {
  left: 0;
  bottom: 0;
}

.subscribe-area .shape.subscribe-shape-2 {
  right: 0;
  top: 70px;
}

#validator-newsletter {
  margin-top: 10px;
  color: #d00000;
  font-size: 14px;
}

/*
Footer Area Style
======================================================*/
.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.single-footer-widget p {
  margin-bottom: 25px;
  color: #ffffff;
}

.single-footer-widget .social-icon {
  line-height: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .social-icon li {
  display: inline-block;
  margin-right: 5px;
}

.single-footer-widget .social-icon li span {
  color: #ffffff;
  position: relative;
  top: -4px;
}

.single-footer-widget .social-icon li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
  background-color: #363636;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.single-footer-widget .social-icon li a::before, .single-footer-widget .social-icon li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-footer-widget .social-icon li a::after {
  height: 0;
  width: 100%;
}

.single-footer-widget .social-icon li a:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

.single-footer-widget .social-icon li a:hover::after {
  height: 100%;
  left: auto;
  right: 0;
}

.single-footer-widget h3 {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  margin-top: -5px;
  color: #ffffff;
}

.single-footer-widget .address {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .address li {
  position: relative;
  margin-bottom: 11px;
  position: relative;
  padding-left: 35px;
  color: #ffffff;
}

.single-footer-widget .address li span {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.single-footer-widget .address li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
  color: #d00000;
}

.single-footer-widget .address li a {
  display: block;
  color: #ffffff;
}

.single-footer-widget .address li a:hover {
  color: #d00000;
}

.single-footer-widget .address li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .import-link li {
  margin-bottom: 16px;
}

.single-footer-widget .import-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link li a {
  color: #ffffff;
}

.single-footer-widget .import-link li:hover::before {
  border-radius: 50%;
}

.single-footer-widget .import-link li:hover a {
  color: #d00000;
}

.single-footer-widget .working-hours {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .working-hours li {
  color: #ffffff;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #35383c;
}

.single-footer-widget .working-hours li span {
  float: right;
}

.single-footer-widget .working-hours li .closed {
  color: #d00000;
}

.single-footer-widget .working-hours li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/*
Copy Right Area Style
======================================================*/
.copy-right-area {
  background-color: #1d2024;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.copy-right-area p {
  color: #ffffff;
}

.copy-right-area p i {
  position: relative;
  top: 2px;
}

.copy-right-area p a {
  color: #d00000;
  font-weight: 600;
}

.copy-right-area p a:hover {
  color: #d00000;
}

/*====================================================
INNER PAGE STYLE AREA
=====================================================*/
/* 
Page Title Area Style
=====================================================*/
.page-title-area {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  background-image: url(../images/page-title-bg/page-title-bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: -1;
}

.page-title-area .page-title-content {
  position: relative;
  text-align: center;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  font-size: 48px;
}

.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;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -3px;
  background-color: #212529;
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.page-title-area .page-title-content ul li.active {
  color: #d00000;
}

.page-title-area .page-title-content ul li:first-child {
  margin-left: 0;
}

.page-title-area .page-title-content ul li:last-child {
  padding-right: 0;
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #212529;
}

.page-title-area .page-title-content ul li a:hover {
  color: #d00000;
}

/* 
Main Contact Area Style
=====================================================*/
.contact-form {
  margin-bottom: 30px;
}

.contact-form h2 {
  font-size: 30px;
  margin-bottom: 40px;
  margin-top: -5px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
}

.contact-form h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #d00000;
  height: 3px;
  width: 50%;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form .form-group label {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #212529;
}

.contact-form .form-group .form-control {
  background-color: #f9fbfe;
}

.list-unstyled {
  color: #dc3545;
  margin-top: 10px;
  font-size: 14px;
}

.hidden {
  display: none;
}

#msgSubmit {
  margin-top: 30px;
  font-size: 20px;
}

.map-area iframe {
  height: 480px;
  width: 100%;
  border: none !important;
  display: block;
}

.contact-info {
  margin-left: 50px;
  margin-top: -5px;
  margin-bottom: 30px;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 40px;
  margin-top: -5px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
}

.contact-info h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #d00000;
  height: 3px;
  width: 50%;
}

.contact-info .top-title {
  color: #d00000;
  display: block;
  margin-bottom: 5px;
}

.contact-info .address {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact-info .address .location span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212529;
}

.contact-info .address li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px;
}

.contact-info .address li a {
  color: #6b6b6b;
  display: block;
}

.contact-info .address li a:hover {
  color: #d00000;
}

.contact-info .address li:last-child {
  margin-bottom: 0;
}

.contact-info .address li i {
  position: absolute;
  color: #d00000;
  left: 0;
  top: -3px;
  font-size: 25px;
}

.contact-info .address li span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212529;
}

.map-area {
  margin-left: 50px;
  margin-bottom: 30px;
}

.map-area iframe {
  width: 100%;
  height: 514px;
  display: block;
}

/* 
Terms & Conditions And Privacy Policy Style
=====================================================*/
.main-content-text h1, .main-content-text h2, .main-content-text h3, .main-content-text h4, .main-content-text h5, .main-content-text h6 {
  margin-bottom: 15px;
}

.main-content-text h1 {
  font-size: 30px;
}

.main-content-text h2 {
  font-size: 26px;
}

.main-content-text h3 {
  font-size: 24px;
}

.main-content-text h4 {
  font-size: 22px;
}

.main-content-text h5 {
  font-size: 20px;
}

.main-content-text h6 {
  font-size: 18px;
}

.main-content-text .gap-20 {
  margin-bottom: 30px;
}

.main-content-text ul {
  padding: 0;
  list-style-type: none;
}

.main-content-text ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}

.main-content-text ul li:last-child {
  margin-bottom: 0;
}

.main-content-text ul li i {
  position: absolute;
  top: -6px;
  left: 0;
  color: #d00000;
  font-size: 25px;
}

.main-content-text ol {
  padding-left: 18px;
}

.main-content-text ol li {
  margin-bottom: 10px;
}

.main-content-text ol li::marker {
  color: #d00000;
}

.main-content-text ol li:last-child {
  margin-bottom: 0;
}

.main-content-text a {
  color: #d00000;
}

.main-content-text a:hover {
  text-decoration: underline;
}

/* 
Services Details Area Style
=====================================================*/
.services-details-area .choose-us-from-bg {
  padding: 30px;
}

.services-details-area .choose-us-from-bg h3 {
  font-size: 24px;
  color: #ffffff;
  border-bottom: 1px solid #dc4747;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  top: -4px;
}

.services-details-area .choose-us-from-bg h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #ffffff;
}

.services-details-area .choose-us-from-bg p {
  color: #ffffff;
}

.single-check {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #ffffff;
}

.single-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.single-check input:checked ~ .checkmark {
  background-color: #ffffff;
}

.single-check input:checked ~ .checkmark:after {
  display: block;
}

.single-check .checkmark {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-check .checkmark:after {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: #d00000;
}

.checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #d8d8d8;
  border-radius: 0;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/*
User Area CSS
=====================================================*/
.user-area {
  position: relative;
  z-index: 1;
}

.user-area .user-form-content {
  -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);
}

.user-area .user-form-content h3 {
  font-size: 24px;
  background-color: #ffffff;
  padding: 20px 30px;
  padding-bottom: 10px;
  padding-left: 0;
  margin-left: 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

.user-area .user-form-content h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d00000;
}

.user-area .user-form-content .user-form {
  border-bottom: none;
  background-color: #ffffff;
  padding: 30px;
  margin: auto;
}

.user-area .user-form-content .user-form .form-group {
  margin-bottom: 30px;
}

.user-area .user-form-content .user-form .form-group label {
  font-size: 16px;
  margin-bottom: 12px;
}

.user-area .user-form-content .user-form .form-group .form-control {
  -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);
}

.user-area .user-form-content .user-form .login-action {
  margin-bottom: 30px;
}

.user-area .user-form-content .user-form .login-action .log-rem {
  display: inline-block;
}

.user-area .user-form-content .user-form .login-action .log-rem label {
  margin-bottom: 0;
  font-size: 16px;
}

.user-area .user-form-content .user-form .login-action .forgot-login {
  display: inline-block;
  float: right;
}

.user-area .user-form-content .user-form .default-btn {
  width: 100%;
  margin-bottom: 30px;
}

.user-area .user-form-content .or {
  text-align: center;
  font-size: 16px;
  display: block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.user-area .user-form-content .or::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 45%;
  height: 1px;
  background-color: #cccccc;
  z-index: -1;
}

.user-area .user-form-content .or::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 45%;
  height: 1px;
  background-color: #cccccc;
  z-index: -1;
}

.user-area .user-form-content .or-login {
  display: block;
  text-align: center;
  border: 1px solid #cccccc;
  padding: 15px 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  font-size: 16px;
}

.user-area .user-form-content .or-login i {
  color: #3b5998;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.user-area .user-form-content .or-login.google i {
  color: #ed1d24;
}

.user-area .user-form-content .or-login:hover {
  background-color: #d00000;
  color: #ffffff;
  border-color: #d00000;
}

.user-area .user-form-content .or-login:hover i {
  color: #ffffff;
}

.user-area .user-form-content .create {
  text-align: center;
  font-size: 16px;
}

.user-area .user-form-content .create a {
  color: #d00000;
}

.user-area .user-form-content.log-in-width {
  max-width: 930px;
  margin: auto;
}

.user-area .user-form-content.register-width {
  max-width: 930px;
  margin: auto;
}

.user-area #remember-2 {
  position: relative;
  top: 1px;
}

.user-area .log-in-page {
  max-width: 860px;
  margin: auto;
}

.user-area .log-in-page {
  max-width: 860px;
  margin: auto;
}

.user-area .register {
  max-width: 860px;
  margin: auto;
}

/*
Project Details Area CSS
=====================================================*/
.project-details-area .main-content-text {
  max-width: 860px;
  margin: auto;
}

/*
Cart Area Style
======================================================*/
.cart-area .cart-controller {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-bottom: none;
  margin-bottom: 35px;
}

.cart-area .trash {
  text-align: center !important;
}

.cart-area .trash .remove {
  color: #ed1d24;
  font-size: 20px;
}

.cart-area .trash .remove:hover {
  color: #ed1d24;
}

.cart-area .product-thumbnail {
  width: 130px;
}

.cart-area .cart-table {
  text-align: center;
}

.cart-area .cart-table table {
  margin-bottom: 0;
}

.cart-area .cart-table table thead tr {
  border-style: none;
}

.cart-area .cart-table table thead tr th {
  border: none;
  color: #212529;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 30px;
}

.cart-area .cart-table table tbody tr td {
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #dedede;
  white-space: nowrap;
  padding: 15px 30px;
}

.cart-area .cart-table table tbody tr td a {
  color: #212529;
  font-weight: 700;
}

.cart-area .cart-table table tbody tr td a:hover {
  color: #d00000;
}

.cart-area .cart-table table tbody tr td.product-quantity {
  width: 145px;
  padding: 0;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter {
  position: relative;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: #212529;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: #212529;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: #212529;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: #212529;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: #212529;
}

.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: #212529;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border: 1px solid #dedede;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn i {
  font-weight: 700;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn:hover {
  color: #ffffff;
  background-color: #d00000;
}

.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: #212529;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border: 1px solid #dedede;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn i {
  font-weight: 700;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn:hover {
  color: #ffffff;
  background-color: #d00000;
}

.cart-area .coupon-cart {
  padding-top: 5px;
  margin-bottom: 30px;
}

.cart-area .coupon-cart .form-group {
  position: relative;
}

.cart-area .coupon-cart .form-group .form-control {
  border: 1px solid #dedede;
}

.cart-area .coupon-cart .form-group .form-control:focus {
  border-color: #d00000;
}

.cart-area .coupon-cart .form-group .default-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 40px;
  height: 55px;
  line-height: 24px;
}

.cart-area .coupon-cart .form-group .default-btn::before {
  display: none;
}

.cart-area .coupon-cart .form-group .default-btn::after {
  display: none;
}

.cart-area .coupon-cart .default-btn.update-cart {
  float: right;
  height: 50px;
}

.cart-area .cart-totals {
  padding: 30px;
  border: 1px solid #ebebeb;
  background-color: #ffffff;
  max-width: 400px;
  margin: auto;
}

.cart-area .cart-totals h3 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  font-size: 24px;
  position: relative;
}

.cart-area .cart-totals h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d00000;
}

.cart-area .cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-area .cart-totals ul li {
  color: #6b6b6b;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dedede;
}

.cart-area .cart-totals ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.cart-area .cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}

.cart-area .cart-totals .default-btn {
  display: block;
}

/* 
Checkout Area Style
=====================================================*/
.checkout-area .billing-details {
  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;
}

.checkout-area .billing-details h3 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  font-size: 24px;
  position: relative;
}

.checkout-area .billing-details h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d00000;
}

.checkout-area .billing-details .form-group {
  margin-bottom: 20px;
}

.checkout-area .billing-details .form-group .form-control {
  background-color: #ffffff;
  border-color: #ebebeb;
}

.checkout-area .billing-details .form-group label {
  display: block;
  color: #6b6b6b;
  margin-bottom: 10px;
  font-size: 16px;
}

.checkout-area .billing-details .form-group label .required {
  color: #6b6b6b;
}

.checkout-area .billing-details .form-group .nice-select {
  float: unset;
  line-height: 45px;
  color: #6b6b6b;
  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: #d00000 !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: #d00000 !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: #6b6b6b;
  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 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  font-size: 24px;
  position: relative;
}

.checkout-area .cart-totals h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d00000;
}

.checkout-area .cart-totals ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.checkout-area .cart-totals ul li {
  color: #6b6b6b;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #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-top: 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);
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 0;
}

.checkout-area .faq-accordion h3 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  font-size: 24px;
  position: relative;
}

.checkout-area .faq-accordion h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d00000;
}

.checkout-area .faq-accordion .accordion .accordion-content {
  border-top: none;
  padding: 0;
  background-color: transparent;
}

.checkout-area .faq-accordion .accordion .accordion-content .form-group {
  margin-bottom: 30px;
}

.checkout-area .faq-accordion .accordion .accordion-title {
  padding: 0;
  position: relative;
  padding-left: 25px;
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
  color: #212529;
  font-weight: 600;
}

.checkout-area .faq-accordion .accordion .accordion-title.active::after {
  background-color: #d00000;
}

.checkout-area .faq-accordion .accordion .accordion-title.active::before {
  border-color: #d00000;
}

.checkout-area .faq-accordion .accordion .accordion-title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -4px;
  width: 17px;
  height: 17px;
  border: 1px solid #212529;
  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: #d00000;
}

.checkout-area .faq-accordion .accordion .accordion-item {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 15px;
  padding: 0;
}

.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: #d00000;
}

.checkout-area .faq-accordion .form-check label a:hover {
  color: #d00000;
}

.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;
  font-weight: 600;
}

/*
Product Details Area Style
=====================================================*/
.product-details-area .product-details-desc h3 {
  font-size: 25px;
}

.product-details-area .product-details-desc p {
  margin-bottom: 0;
}

.product-details-area .product-details-desc .price {
  margin-bottom: 22px;
  color: "Open Sans", 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 .price del {
  color: #d00000;
  margin-right: 10px;
}

.product-details-area .product-details-desc .sku {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details-area .product-details-desc .sku li {
  margin-bottom: 20px;
  color: #212529;
  position: relative;
  font-weight: 600;
}

.product-details-area .product-details-desc .sku li:last-child {
  margin-bottom: 0;
}

.product-details-area .product-details-desc .sku li span {
  color: #6b6b6b;
  position: absolute;
  top: 0;
  left: 180px;
  font-weight: normal;
}

.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 .quantities {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

.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: 34px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter span:hover {
  color: #d00000;
}

.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: 30px;
  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 {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 20px;
}

.product-details-area .product-details-desc .social-wrap li {
  display: inline-block;
  padding-right: 10px;
  color: #212529;
}

.product-details-area .product-details-desc .social-wrap li span {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
  position: relative;
  top: -2px;
}

.product-details-area .product-details-desc .social-wrap li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
  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);
  color: #212529;
  position: relative;
  z-index: 1;
}

.product-details-area .product-details-desc .social-wrap li a::before, .product-details-area .product-details-desc .social-wrap li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #d00000;
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-details-area .product-details-desc .social-wrap li a::after {
  height: 0;
  width: 100%;
}

.product-details-area .product-details-desc .social-wrap li a:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

.product-details-area .product-details-desc .social-wrap li a:hover::after {
  height: 100%;
  left: auto;
  right: 0;
}

.product-details-area .product-details-desc .social-wrap li a:hover {
  color: #ffffff;
}

.product-details-area .product-details-desc .default-btn {
  margin-bottom: 0 !important;
}

.product-details-area .product-details-desc .default-btn i {
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.product-details-area .product-details-desc .category {
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
}

.product-details-area .product-details-desc .category span {
  font-weight: normal;
}

.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;
  -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);
}

.product-details-area .tab .tabs_item {
  display: none;
}

.product-details-area .tab .tabs_item:first-child {
  display: block;
}

.product-details-area .product-details-tab {
  margin-top: 50px;
  -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;
}

.product-details-area .product-details-tab .tabs {
  list-style-type: none;
  padding: 0;
  border-bottom: 1px solid #eaedff;
  margin-bottom: 0;
}

.product-details-area .product-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 15px;
  margin-bottom: 25px;
  color: #212529;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.product-details-area .product-details-tab .tabs li:hover {
  color: #d00000;
}

.product-details-area .product-details-tab .tabs li.current {
  color: #d00000;
  position: relative;
}

.product-details-area .product-details-tab .tabs li.current::before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d00000;
}

.product-details-area .product-details-tab .tab_content {
  padding: 30px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content p {
  margin-bottom: 20px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content p:last-child {
  margin-bottom: 0;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information li {
  border: 1px solid #eaedff;
  border-bottom: none;
  padding: 10px 15px;
  color: #57647c;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information li:last-child {
  border-bottom: 1px solid #eaedff;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information li span {
  display: inline-block;
  width: 30%;
  color: #212529;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content h3 {
  margin-bottom: 15px;
  font-size: 17px;
  margin-top: -5px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title {
  position: relative;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .rating {
  display: inline-block;
  position: relative;
  top: 1px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
  color: #ffba0a;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .rating i {
  color: #ffba0a;
  font-size: 14px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .btn {
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 10px 11px;
  font-size: 11px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-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: #d00000;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments {
  margin-top: 15px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item {
  margin-top: 15px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eaedff;
  padding-top: 15px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
  color: #ffba0a;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .rating i {
  font-size: 14px;
  color: #ffba0a;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-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 .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
  color: #ff4800;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form {
  margin-top: 30px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group {
  margin-bottom: 30px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group label {
  color: #444444;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group textarea {
  padding-top: 15px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group .form-control {
  font-size: 14px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 0;
}

/* 
Sidebar Widget Style
=====================================================*/
.sidebar-widget {
  margin-bottom: 35px;
  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);
}

.sidebar-widget h3 {
  font-size: 24px;
  background-color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

.sidebar-widget h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d00000;
}

.sidebar-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-widget.search .search-form {
  background-color: #ffffff;
  position: relative;
}

.sidebar-widget.search .search-form .search-button {
  position: absolute;
  width: 55px;
  height: 55px;
  line-height: 55px;
  top: 0;
  right: 0;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #d00000;
}

.sidebar-widget.search .search-form .search-button:hover {
  background-color: #212529;
}

.sidebar-widget.categories ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}

.sidebar-widget.categories ul li a {
  display: block;
}

.sidebar-widget.categories ul li a i {
  font-size: 20px;
  float: right;
  position: relative;
  top: -2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.sidebar-widget.categories ul li span {
  float: right;
  position: relative;
  top: 1px;
}

.sidebar-widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-widget.recent-post ul li {
  margin-bottom: 15px;
  padding-bottom: 20px;
  position: relative;
  padding-left: 90px;
  border-bottom: 1px solid #eeeeee;
}

.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: 15px;
  color: #212529;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
}

.sidebar-widget.recent-post ul li a:hover {
  color: #d00000;
}

.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.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;
  display: inline-block;
  background-color: #ffffff;
}

.sidebar-widget.tags ul li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background-color: #d00000;
  color: #ffffff;
  border-color: #d00000;
}

.sidebar-widget.tags ul li:last-child {
  margin-bottom: 0;
}

.sidebar-widget.employer-widget .form-group {
  margin-bottom: 30px;
}

.sidebar-widget.employer-widget .default-btn {
  width: 100%;
}

.sidebar-widget.open-closed ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.sidebar-widget.open-closed ul li span {
  float: right;
  position: relative;
  top: 1px;
}

.sidebar-widget.open-closed ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* 
Blog Details Content Style
=====================================================*/
.blog-details-content .blog-details-img {
  position: relative;
}

.blog-details-content .blog-top-content {
  -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;
}

.blog-details-content .blog-top-content .blog-content .admin {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 10px;
}

.blog-details-content .blog-top-content .blog-content .admin li {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.blog-details-content .blog-top-content .blog-content .admin li i {
  color: #d00000;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.blog-details-content .blog-top-content .blog-content .admin li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.blog-details-content .blog-top-content .blog-content .admin li:last-child::before {
  display: none;
}

.blog-details-content .blog-top-content .blog-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.blog-details-content .blog-top-content blockquote {
  padding: 30px;
  padding-left: 100px;
  position: relative;
  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);
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-details-content .blog-top-content blockquote p {
  font-size: 18px;
  color: #212529;
  font-weight: 600;
  margin-bottom: 0;
}

.blog-details-content .blog-top-content blockquote i {
  font-size: 60px;
  color: #d00000;
  position: absolute;
  top: 40px;
  left: 30px;
  line-height: 1;
}

.blog-details-content .blog-top-content .blog-content-2 {
  margin-bottom: 25px;
}

.blog-details-content .blog-top-content .blog-content-3 {
  margin-bottom: 30px;
}

.blog-details-content .blog-top-content .blog-content-3 h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.blog-details-content .tags {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 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;
}

.blog-details-content .tags .tag-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
  line-height: 1;
  display: inline-block;
}

.blog-details-content .tags .tag-link li {
  display: inline-block;
  margin-right: 15px;
}

.blog-details-content .tags .tag-link li.title i {
  color: #212529;
  font-size: 20px;
  position: relative;
  top: 4px;
}

.blog-details-content .tags .tag-link li a {
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
}

.blog-details-content .tags .tag-link li a:hover {
  color: #d00000;
}

.blog-details-content .share-link {
  display: inline-block;
  float: right;
  position: relative;
  padding-bottom: 20px;
}

.blog-details-content .share-link span {
  font-weight: 600;
  font-size: 14px;
  position: relative;
  top: 0;
  cursor: pointer;
}

.blog-details-content .share-link .social-icon {
  padding: 0;
  margin: 0;
  list-style-type: none;
  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: 10px;
  position: absolute;
  top: 60px;
  left: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  z-index: 1;
}

.blog-details-content .share-link .social-icon li {
  display: inline-block;
}

.blog-details-content .share-link .social-icon li a {
  padding: 0 5px;
}

.blog-details-content .share-link .social-icon li a i {
  font-size: 18px;
}

.blog-details-content .share-link:hover .social-icon {
  top: 46px;
  opacity: 1;
}

.blog-details-content .comment {
  padding: 0;
  margin: 0;
  list-style-type: none;
  -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-bottom: 40px;
}

.blog-details-content .comment li {
  padding: 30px;
  display: inline-block;
  position: relative;
  padding-left: 120px;
  background-color: #ffffff;
}

.blog-details-content .comment li img {
  position: absolute;
  top: 30px;
  left: 30px;
}

.blog-details-content .comment li h3 {
  font-size: 18px;
  margin-top: -5px;
  margin-bottom: 2px;
}

.blog-details-content .comment li span {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.blog-details-content .comment li p {
  margin-bottom: 0;
}

.blog-details-content .comment li .read-more {
  position: absolute;
  top: 30px;
  right: 30px;
}

.blog-details-content .comment li.margin-left {
  margin-left: 30px;
}

.blog-details-content .leave-reply {
  -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;
}

.blog-details-content .leave-reply h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  font-size: 24px;
  position: relative;
}

.blog-details-content .leave-reply h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 150px;
  height: 3px;
  background-color: #d00000;
}

.blog-details-content .leave-reply form p {
  margin-bottom: 30px;
}

.blog-details-content .leave-reply form .form-group {
  margin-bottom: 30px;
}

.blog-details-content .leave-reply form .form-group label {
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-details-content .leave-reply form .form-group .form-control {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
}

.blog-details-content .leave-reply form .form-group .form-control::-webkit-input-placeholder {
  color: #cccccc;
}

.blog-details-content .leave-reply form .form-group .form-control:-ms-input-placeholder {
  color: #cccccc;
}

.blog-details-content .leave-reply form .form-group .form-control::-ms-input-placeholder {
  color: #cccccc;
}

.blog-details-content .leave-reply form .form-group .form-control::placeholder {
  color: #cccccc;
}

.blog-grid-area .pagination-area {
  text-align: center;
}

/*
404 Error Area Style
=====================================================*/
.error-area {
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #e9fcff;
}

.error-area .error-content {
  z-index: 1;
  position: relative;
}

.error-area .error-content h1 {
  font-size: 300px;
  line-height: 1;
  font-weight: 700;
  color: #d00000;
  margin-top: -38px;
}

.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: #d00000;
}

/*
Coming Soon Area Style
=====================================================*/
.coming-soon-area {
  height: 100vh;
  position: relative;
}

.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;
  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);
}

.coming-soon-area .coming-soon-content .logo {
  display: inline-block;
}

.coming-soon-area .coming-soon-content h2 {
  font-size: 48px;
  margin-top: -10px;
  margin-bottom: 0;
}

.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}

.coming-soon-area .coming-soon-content #timer div {
  border: 4px solid #d00000;
  color: #d00000;
  width: 100px;
  height: 105px;
  border-radius: 5px;
  font-size: 40px;
  font-weight: 800;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 20px 0 20px 0;
}

.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: #212529;
}

.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: #d00000;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: 1px solid #eeeeee;
  padding: 10px 20px;
  color: #212529;
  height: 50px;
  display: block;
  width: 100%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::-webkit-input-placeholder {
  color: #6b6b6b;
  -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: #6b6b6b;
  -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: #6b6b6b;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::placeholder {
  color: #6b6b6b;
  -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: #d00000;
  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;
  height: 46px;
  line-height: 0;
}

.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 .coming-soon-content .newsletter-form {
  position: relative;
}

.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  top: 2px;
  right: 2px;
}

.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;
}

/*
Partner Details Area Style
=====================================================*/
.partner-details-area .main-content-text {
  max-width: 860px;
  margin: auto;
}

/*
Get Free Quote Area Style
=====================================================*/
.get-free-quote-area .choose-us-from-bg {
  max-width: 860px;
  margin: auto;
}

/*
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: #212529;
  -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: #212529;
}

.product-view-one .modal-content .product-content h3 a:hover {
  color: #212529;
}

.product-view-one .modal-content .product-content .price {
  margin-bottom: 10px;
  display: inline-block;
}

.product-view-one .modal-content .product-content .price span {
  display: inline-block;
  font-size: 18px;
  color: #212529;
}

.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;
  display: inline-block;
}

.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: #d00000;
}

.product-view-one .modal-content .product-content .product-review .rating-count {
  display: inline-block;
  color: #212529;
  border-bottom: 1px solid #212529;
  line-height: initial;
}

.product-view-one .modal-content .product-content .product-info {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
}

.product-view-one .modal-content .product-content .product-info li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #212529;
}

.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 p {
  font-size: 15px;
  color: #6b6b6b;
}

.product-view-one .modal-content .product-content .product-info li span {
  color: #212529;
}

.product-view-one .modal-content .product-content .product-info li a {
  display: inline-block;
  font-weight: 500;
  color: #212529;
}

.product-view-one .modal-content .product-content .product-info li a:hover {
  color: #212529;
}

.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: #212529;
  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: #212529;
}

.product-view-one .modal-content .product-content .product-color-switch ul li a:focus {
  border-color: #212529;
}

.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: #212529;
}

.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: #6b6b6b;
  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: #212529;
}

.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: #d00000;
  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: #d00000;
  color: #ffffff;
}

.product-view-one .modal-content .product-content .product-add-to-cart .input-counter input {
  height: 48px;
  color: #212529;
  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: #212529;
}

.product-view-one .modal-content .product-content .product-add-to-cart .input-counter input:-ms-input-placeholder {
  color: #212529;
}

.product-view-one .modal-content .product-content .product-add-to-cart .input-counter input::-ms-input-placeholder {
  color: #212529;
}

.product-view-one .modal-content .product-content .product-add-to-cart .input-counter input::placeholder {
  color: #212529;
}

.product-view-one .modal-content .product-content .share-this-product h3 {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.product-view-one .modal-content .product-content .share-this-product ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.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: 30px;
  height: 30px;
  line-height: 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);
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #212529;
}

.product-view-one .modal-content .product-content .share-this-product ul li a:hover i {
  background-color: #d00000;
  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: #d00000 !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: #d00000;
  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: #d00000 !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;
}

/*====================================================
OTHERS STYLE AREA
=====================================================*/
/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #d00000;
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  -webkit-animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
          animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
}

.preloader .pl-flip-1 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin: 0 auto 18px auto;
  position: relative;
  width: 50px;
  height: 50px;
}

.preloader .pl-flip-1:before, .preloader .pl-flip-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  background: #ffffff;
  display: block;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.preloader .pl-flip-1.pl-flip-2 {
  -webkit-animation-name: flipA;
          animation-name: flipA;
  -webkit-animation-timing-function: steps(1);
          animation-timing-function: steps(1);
}

.preloader .pl-flip-1.pl-flip-2:before {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: flipB;
          animation-name: flipB;
}

.preloader .pl-flip-1.pl-flip-2:after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: flipC;
          animation-name: flipC;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

@-webkit-keyframes flipA {
  from, 75%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25%, 50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@keyframes flipA {
  from, 75%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25%, 50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@-webkit-keyframes flipB {
  from {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(-50%) rotateX(270deg);
            transform: translateY(-50%) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(-50%) rotateX(450deg);
            transform: translateY(-50%) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(-50%) rotateX(630deg);
            transform: translateY(-50%) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
}

@keyframes flipB {
  from {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(-50%) rotateX(270deg);
            transform: translateY(-50%) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(-50%) rotateX(450deg);
            transform: translateY(-50%) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(-50%) rotateX(630deg);
            transform: translateY(-50%) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
}

@-webkit-keyframes flipC {
  from {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
}

@keyframes flipC {
  from {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  right: 3%;
  top: 87%;
  background-color: #d00000;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  -webkit-transform: scale(0);
          transform: scale(0);
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .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: #d00000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #d00000;
}

.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: 84%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 0;
  color: #d00000;
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(98, 189, 94, 0.8);
  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: 0;
  left: 3px;
  -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(98, 189, 94, 0.8);
}

.video-btn:hover {
  background-color: rgba(27, 27, 27, 0.8);
}

.video-btn:hover::before, .video-btn:hover::after {
  background-color: rgba(27, 27, 27, 0.8);
}

@-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);
  }
}

/*
Nice select Area Style*/
.nice-select .list {
  width: 100%;
  border-radius: 0;
  height: 200px;
  overflow-y: scroll;
}

.nice-select .option:hover {
  background-color: #d00000;
  color: #ffffff;
}

.nice-select .option.selected.focus {
  color: #d00000;
}

.nice-select .current {
  font-size: 16px;
}

/*
Page-navigation Area Style*/
.pagination-area {
  margin-top: 10px;
}

.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #212529;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  background-color: #f9fbfe;
  -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 solid #ebebeb;
}

.pagination-area .page-numbers:hover {
  color: #ffffff;
  border-color: #d00000;
  background-color: #d00000;
}

.pagination-area .page-numbers i {
  font-size: 20px;
}

.pagination-area .page-numbers.next {
  top: 3px;
}

.pagination-area .page-numbers.current {
  color: #ffffff;
  border-color: #d00000;
  background-color: #d00000;
}

/*
Keyframes Area Style
======================================================*/
@-webkit-keyframes moVebounce {
  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 moVebounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes moveBounce {
  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 moveBounce {
  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 FocuS {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes FocuS {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.widget-sidebar .single-team-member::before {
  opacity: 1;
}

.widget-sidebar .single-team-member .team-content {
  opacity: 1;
}
#sidebar{
    height:fit-content;
}
/*# sourceMappingURL=style.css.map */