/*
@File: Torado 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>>>>>

*******************************************
*******************************************


** - Modal Style
** - Default Style
** - Section Title Style
** - Navbar Area Style
** - Hero Area Style
** - About Area Style
** - Choose Area Style
** - Brands Area Style
** - Testimonials Area Style
** - Team Area Style
** - Schedule Service Area Style
** - Blog Area Style
** - Footer Area Style
** - Work Process Style
** - Offers Area Style
** - Logo Area Style
** - Page Title Style
** - 
** - 
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600;700&display=swap");
@font-face {
  font-family: "Neue Haas SemiBold";
  src: url("../fonts/NeueHaasDisplayMedium.ttf");
}
@font-face {
  font-family: "Neue Haas Bold";
  src: url("../fonts/NeueHaasDisplayBold.ttf");
}
@font-face {
  font-family: "Neue Haas Regular";
  src: url("../fonts/NeueHaasDisplayLight.ttf");
}
:root {
  --bodyFont: "Josefin Sans", sans-serif;
  --secondaryFont: "Neue Haas SemiBold";
  --optionalFont: "Neue Haas Bold";
  --lightFont: "Neue Haas Regular";
  --fontSize: 16px;
  --primaryColor: #E4142B;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --paragraphColor: #716D88;
  --transition: .5s ;
}

body {
  margin: 0;
  padding: 0;
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-family: var(--bodyFontFamily);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 800;
  font-family: var(--headingFontFamily);
}

h3 {
  font-weight: 700;
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  outline: 0 !important;
}
a:hover {
  color: var(--primaryColor);
}

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

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

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

p {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primaryColor) !important;
}

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

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

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

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

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

/*=========================================
Default Button Style
===========================================*/
.default-btn {
  border-radius: 5px;
  padding: 14px 35px;
  text-decoration: none;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--primaryColor);
  font-size: 17px;
  font-weight: 600;
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*=========================================
Section Title Style
===========================================*/
.section-title {
  margin: auto;
  margin-bottom: 30px;
  /* max-width: 596px; */
}
.section-title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.section-title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.section-title h2 {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: -0.4px;
}

/*=========================================
Navbar Area Style
===========================================*/
.navbar-area {
  top: 20px;
  left: 0;
  right: 0;
  position: absolute;
}
.navbar-area.is-sticky {
  padding-top: 15px;
  padding-bottom: 15px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: #ffffff;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar-area.is-sticky .navbar-brand .white-logo {
  display: block;
}
.navbar-area.is-sticky .navbar-brand .main-logo {
  display: none;
}
.navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item a {
  color: #000000;
}
.navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item a:hover, .navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item a:focus, .navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--primaryColor);
}
.navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item:hover a, .navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item:focus a, .navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--primaryColor);
}
.navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}
.navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--primaryColor);
}
.navbar-area.is-sticky .desktop-nav .navbar .others-options ul li button i {
  color: var(--blackColor);
  transition: var(--transition);
}
.navbar-area.is-sticky .desktop-nav .navbar .others-options ul li button i:hover {
  color: var(--primaryColor);
}
.navbar-area.is-sticky .desktop-nav .navbar .others-options ul li a i {
  color: var(--blackColor);
  transition: var(--transition);
}
.navbar-area.is-sticky .desktop-nav .navbar .others-options ul li a i:hover {
  color: var(--primaryColor);
}
.navbar-area .container-fluid {
  max-width: 1780px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar-area .navbar-brand .white-logo {
  display: none;
}
.navbar-area .mobile-responsive-menu .logo .white-logo {
  display: block;
}
.navbar-area .mobile-responsive-menu .logo .main-logo {
  display: none;
}
.navbar-area.style-2 {
  position: relative;
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.navbar-area.style-2.is-sticky {
  position: sticky;
}
.navbar-area.style-2 .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1760px;
}
.navbar-area.style-2 .navbar-brand .white-logo {
  display: block;
}
.navbar-area.style-2 .navbar-brand .main-logo {
  display: none;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar {
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav {
  margin-left: 35px;
  margin-right: auto;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
  margin-left: 25px;
  margin-right: 25px;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  color: var(--whiteColor);
  line-height: 1;
  position: relative;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 16px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  content: "\ea13";
  position: absolute;
  top: 1px;
  right: 0;
  font-weight: 500;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 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: var(--primaryColor);
}
.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:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  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;
  margin: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
  padding: 15px;
  border-bottom: 1px dashed #ededed;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: block;
  position: relative;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  content: "\ea4e";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}
.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: var(--primaryColor);
}
.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 {
  border-bottom: 1px dashed #ededed;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::before {
  content: "\ea4e";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: #1b2336;
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--primaryColor);
}
.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: var(--primaryColor);
}
.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: var(--primaryColor);
}
.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: var(--primaryColor);
}
.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: var(--primaryColor);
}
.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: var(--primaryColor);
}
.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: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}
.desktop-nav .navbar .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  align-items: center;
}
.desktop-nav .navbar .others-options ul li {
  margin-right: 35px;
  display: inline-block;
}
.desktop-nav .navbar .others-options ul li:last-child {
  margin-right: 0;
}
.desktop-nav .navbar .others-options ul li button {
  border: none;
  padding: 0;
}
.desktop-nav .navbar .others-options ul li button i {
  font-size: 25px;
  color: var(--whiteColor);
  transition: var(--transition);
}
.desktop-nav .navbar .others-options ul li button i:hover {
  color: var(--primaryColor);
}
.desktop-nav .navbar .others-options ul li button:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.desktop-nav .navbar .others-options ul li a {
  text-decoration: none;
}
.desktop-nav .navbar .others-options ul li a i {
  top: 3px;
  font-size: 25px;
  position: relative;
  color: var(--whiteColor);
  transition: var(--transition);
}
.desktop-nav .navbar .others-options ul li a i:hover {
  color: var(--primaryColor);
}
.desktop-nav .navbar .others-options ul li .default-btn {
  padding-left: 25px;
  padding-right: 25px;
}
.desktop-nav.style-2 .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 40px;
}
.desktop-nav.style-2 .navbar .navbar-nav .nav-item a {
  color: var(--blackColor);
}
.desktop-nav.style-2 .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  font-weight: 600;
}
.desktop-nav.style-2 .navbar .navbar-nav .nav-item a:hover, .desktop-nav.style-2 .navbar .navbar-nav .nav-item a:focus, .desktop-nav.style-2 .navbar .navbar-nav .nav-item a.active {
  color: var(--primaryColor);
}
.desktop-nav.style-2 .navbar .navbar-nav .nav-item:hover a, .desktop-nav.style-2 .navbar .navbar-nav .nav-item:focus a, .desktop-nav.style-2 .navbar .navbar-nav .nav-item.active a {
  color: var(--primaryColor);
}
.desktop-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}
.desktop-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--primaryColor);
}
.desktop-nav.style-2 .navbar .others-options ul li button i {
  color: var(--blackColor);
}
.desktop-nav.style-2 .navbar .others-options ul li button i:hover {
  color: var(--primaryColor);
}
.desktop-nav.style-2 .navbar .others-options ul li a i {
  color: var(--blackColor);
}
.desktop-nav.style-2 .navbar .others-options ul li a i:hover {
  color: var(--primaryColor);
}
.desktop-nav.style-3 .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 40px;
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*=========================================
Others Option For Responsive Area Style
===========================================*/
.others-option-for-responsive {
  display: none !important;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 60px;
  top: -35px;
}
.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: var(--primaryColor);
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--primaryColor);
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.others-option-for-responsive .others-options {
  background-color: #ededed;
  padding: 15px;
  text-align: center;
}
.others-option-for-responsive .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.others-option-for-responsive .others-options ul li {
  display: inline-block;
  margin-right: 15px;
}
.others-option-for-responsive .others-options ul li button {
  padding: 0;
}
.others-option-for-responsive .others-options ul li button i {
  font-size: 20px;
  color: var(--blackColor);
  transition: var(--transition);
}
.others-option-for-responsive .others-options ul li button i:hover {
  color: var(--primaryColor);
}
.others-option-for-responsive .others-options ul li button:focus {
  border: unset;
  outline: 0;
  box-shadow: unset;
}
.others-option-for-responsive .others-options ul li a {
  text-decoration: none;
}
.others-option-for-responsive .others-options ul li a i {
  font-size: 18px;
  color: var(--blackColor);
  transition: var(--transition);
}
.others-option-for-responsive .others-options ul li a i:hover {
  color: var(--primaryColor);
}
.others-option-for-responsive .others-options ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.others-option-for-responsive.style-2 .dot-menu .inner .circle {
  background-color: var(--blackColor);
}
.others-option-for-responsive.style-2 .dot-menu:hover .inner .circle {
  background-color: var(--primaryColor);
}

/*================================================
Modal Style
=================================================*/
.modal-dialog {
  max-width: unset;
  margin: auto;
  height: 100%;
}

.modal-content {
  border: none;
  border-radius: 0;
  display: block;
  background-color: #f5f5f5;
}
.modal-content .modal-header {
  text-align: end;
  border: none;
  display: unset;
}
.modal-content .modal-header button {
  border: none;
  right: 0;
  top: 50%;
  z-index: 1;
  position: absolute;
  background-color: unset;
  transform: translateY(-50%);
}
.modal-content .modal-header button i {
  color: var(--blackColor);
  padding-right: 30px;
  font-size: 30px;
  transition: var(--transition);
}
.modal-content .modal-header button i:hover {
  color: var(--primaryColor);
}
.modal-content .modal-body {
  padding-top: 0;
  padding-bottom: 22px;
}
.modal-content .modal-body .form-group {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.modal-content .modal-body .form-group .form-control {
  height: 60px;
  border-radius: 3px;
  padding-left: 20px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.modal-content .modal-body .form-group button {
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  position: absolute;
  padding: 0;
  font-size: 25px;
  border: unset;
  width: 50px;
  height: 50px;
  line-height: 57px;
  border-radius: 3px;
  text-align: center;
  display: inline-block;
}

/*================================================
Toggle Offcanvas Right Style
=================================================*/
.offcanvas-header {
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.offcanvas-header button {
  padding: 0;
  border: none;
  font-size: 30px;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: transparent;
}
.offcanvas-header button:hover {
  color: red;
}

.offcanvas-body {
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.offcanvas-body .sidebar-content {
  margin-bottom: 35px;
}
.offcanvas-body .sidebar-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.offcanvas-body .sidebar-contact-info {
  margin-bottom: 30px;
}
.offcanvas-body .sidebar-contact-info h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.offcanvas-body .sidebar-contact-info .info-list {
  padding-left: 0;
  margin-bottom: 0;
}
.offcanvas-body .sidebar-contact-info .info-list li {
  list-style-type: none;
  color: var(--paragraphColor);
  margin-bottom: 15px;
  position: relative;
  padding-left: 22px;
}
.offcanvas-body .sidebar-contact-info .info-list li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--font-size);
  color: var(--primaryColor);
}
.offcanvas-body .sidebar-contact-info .info-list li a {
  text-decoration: none;
  color: var(--paragraphColor);
}
.offcanvas-body .sidebar-contact-info .info-list li a:hover {
  color: var(--primaryColor);
  transition: var(--transition);
}
.offcanvas-body .sidebar-social-list ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.offcanvas-body .sidebar-social-list ul li {
  display: inline-block;
  margin-right: 8px;
}
.offcanvas-body .sidebar-social-list ul li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--whiteColor);
  text-decoration: none;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.offcanvas-body .sidebar-social-list ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*=========================================
Hero Area Style
===========================================*/
.hero-area {
  z-index: 1;
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
  background-color: #0F0F0F;
}
.hero-area .container-fluid {
  max-width: 1810px;
  margin-right: 0;
  padding: 0;
}
.hero-area .shape-1 {
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: -1;
}

.hero-content {
  z-index: 1;
  padding-top: 215px;
  padding-bottom: 278px;
}
.hero-content .title .sub-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--primaryColor);
}
.hero-content .title h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: -0.8px;
  color: var(--whiteColor);
  font-family: var(--headingFontFamily);
}
.hero-content .title h1 span {
  padding: 6px;
  border-radius: 5px;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.05);
}
.hero-content .services-btn .services-image {
  z-index: 1;
  position: absolute;
  right: -90px;
  bottom: 90px;
  z-index: 1;
}
.hero-content .services-btn .services-image img {
  animation: rotation 15s infinite linear;
}
.hero-content .services-btn .icon {
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  font-size: 23px;
  position: absolute;
  line-height: 86px;
  text-align: center;
  border-radius: 100%;
  text-decoration: none;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.hero-content .services-btn .icon:hover {
  background-color: var(--blackColor);
}

.hero-image {
  left: 0;
  right: 0;
  z-index: -1;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/hero/hero-1.jpg);
}
.hero-image::before {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  content: "";
  position: absolute;
  opacity: 0.3;
  background-color: var(--blackColor);
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.banner-area {
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/bg/bg-3.jpg);
}
.banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1760px;
}
.banner-area .shape-9 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.banner-area .shape-10 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.banner-form {
  max-width: 543px;
  padding: 50px 45px;
  border-radius: 5px;
  background-color: rgba(204, 204, 252, 0.47);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.banner-form h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  max-width: 290px;
  margin-bottom: 20px;
  color: var(--whiteColor);
}
.banner-form form {
  margin-bottom: 50px;
}
.banner-form form .form-group {
  margin-bottom: 20px;
}
.banner-form form .form-group .form-control {
  height: 60px;
  border-radius: 5px;
  padding-left: 20px;
  color: #716D88;
  background-color: var(--whiteColor);
  border: 1px solid rgba(255, 255, 255, 0);
}
.banner-form form .form-group .form-control::-moz-placeholder {
  color: #716D88;
  letter-spacing: -0.16px;
}
.banner-form form .form-group .form-control::placeholder {
  color: #716D88;
  letter-spacing: -0.16px;
}
.banner-form form button {
  border: none;
}
.banner-form .star-icon span {
  font-size: 20px;
  margin-bottom: 15px;
  display: block;
  color: var(--whiteColor);
}
.banner-form .star-icon ul {
  margin-bottom: 10px;
}
.banner-form .star-icon ul li {
  margin-right: 8px;
}
.banner-form .star-icon ul li i {
  font-size: 20px;
  line-height: 1;
  color: rgb(255, 201, 11);
}
.banner-form .star-icon p {
  color: var(--whiteColor);
}

.banner-content {
  margin-left: 60px;
  position: relative;
}
.banner-content h1 {
  font-size: 64px;
  line-height: 85px;
  letter-spacing: -0.64px;
  color: var(--whiteColor);
}
.banner-content .shape-8 {
  bottom: -40px;
  left: 0;
  position: absolute;
}

.services-btn-2 {
  max-width: 174px;
  margin-left: auto;
}
.services-btn-2 .services-image {
  z-index: 1;
  position: relative;
}
.services-btn-2 .services-image img {
  animation: rotation 15s infinite linear;
}
.services-btn-2 .icon {
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  font-size: 23px;
  position: absolute;
  line-height: 86px;
  text-align: center;
  border-radius: 100%;
  text-decoration: none;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.services-btn-2 .icon:hover {
  background-color: var(--blackColor);
}

.banner-wrapper-area {
  padding-top: 184px;
  padding-bottom: 70px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  background-color: #0F0F0F;
}
.banner-wrapper-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1780px;
}
.banner-wrapper-area .torado {
  z-index: -1;
  top: 148px;
  right: 426px;
  position: absolute;
}
.banner-wrapper-area .torado h1 {
  font-size: 300px;
  font-weight: 700;
  line-height: 300px;
  color: rgba(255, 255, 255, 0.03);
  display: inline-block;
  white-space: nowrap;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
}

.banner-wrapper-content {
  margin-right: -120px;
}
.banner-wrapper-content h1 {
  padding-left: 20px;
  padding-top: 25px;
  z-index: 1;
  font-size: 90px;
  font-weight: 700;
  line-height: 110px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  letter-spacing: -0.9px;
  color: var(--whiteColor);
}
.banner-wrapper-content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 129px;
  height: 359px;
  border-radius: 20px;
  background-color: var(--primaryColor);
}
.banner-wrapper-content .content-list {
  margin-top: 200px;
}
.banner-wrapper-content .content-list ul li {
  padding-left: 65px;
  margin-right: 40px;
  position: relative;
  display: inline-block;
}
.banner-wrapper-content .content-list ul li .icon {
  left: 0;
  top: 50%;
  position: absolute;
  flex: 0 0 auto;
  display: block;
  font-size: 25px;
  width: 52px;
  height: 52px;
  line-height: 58px;
  text-align: center;
  margin-right: 12px;
  border-radius: 52px;
  transform: translateY(-50%);
  color: var(--primaryColor);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.11);
}
.banner-wrapper-content .content-list ul li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.banner-wrapper-content .content-list ul li .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 5px;
  font-family: var(--bodyFontFamily);
}
.banner-wrapper-content .content-list ul li .content a {
  font-size: 16px;
  color: #d2d2d2;
  text-decoration: none;
}
.banner-wrapper-content .content-list ul li .content a:hover {
  color: var(--primaryColor);
}
.banner-wrapper-content .content-list ul li .content p {
  font-size: 16px;
  color: #d2d2d2;
}
.banner-wrapper-content .content-list ul li:last-child {
  margin-right: 0;
}

.banner-wrapper-image {
  z-index: 1;
  position: relative;
  bottom: -130px;
  right: -35px;
}
.banner-wrapper-image .shape-18 {
  left: -100px;
  right: -100px;
  bottom: -10px;
  z-index: -1;
  position: absolute;
}

.banner-wrapper-card .image-card {
  margin-bottom: 120px;
  position: relative;
}
.banner-wrapper-card .image-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  max-width: 187px;
  margin-bottom: 20px;
  color: var(--whiteColor);
}
.banner-wrapper-card .image-card .image img {
  border-radius: 5px;
}
.banner-wrapper-card .image-card::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 51px;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.11);
}

/*=========================================
About Area Style
===========================================*/
.about-area {
  z-index: 1;
  position: relative;
}
.about-area .section-title {
  margin-bottom: -100px;
  text-align: left;
  max-width: 650px;
  margin-right: 185px;
}
.about-area.style-2::before {
  content: "";
  position: absolute;
  width: 575px;
  height: 338px;
  right: 0;
  top: 0;
  z-index: -1;
  background: rgba(228, 20, 43, 0.03);
}

.about-image {
  position: relative;
  margin-bottom: 25px;
}
.about-image .image-1 img {
  border-radius: 10px;
}
.about-image .image-2 {
  position: relative;
  left: 10px;
}
.about-image .image-2 img {
  border-radius: 30px;
}
.about-image.style-2 {
  position: relative;
  margin-left: 50px;
}
.about-image.style-2 img {
  border-radius: 5px;
}
.about-image.style-2 .years-experience {
  position: absolute;
  right: -220px;
  top: 227px;
  padding: 25px 55px;
  border-radius: 30px;
  background-color: #f7f7f7;
  transform: rotate(270deg);
}
.about-image.style-2 .years-experience h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 40px;
  margin-right: 10px;
  letter-spacing: -0.8px;
  color: var(--primaryColor);
  font-family: var(--bodyFontFamily);
}
.about-image.style-2 .years-experience span {
  position: relative;
  bottom: -10px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primaryColor);
}
.about-image.style-2 .years-experience::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 30px;
  border: 1px dashed #E4142B;
}
.about-image.style-3 .engine-image {
  position: relative;
  margin-right: -70px;
}
.about-image.style-3 .engine-image .image img {
  border-radius: 5px;
}
.about-image.style-3 .engine-image .years-experience {
  margin: auto;
  max-width: 190px;
  margin-bottom: -35px;
}
.about-image.style-3 .engine-image .years-experience .bg {
  padding: 20px;
  border-radius: 30px;
  position: relative;
  background-color: #f5f5f5;
  border: 6px solid var(--whiteColor);
}
.about-image.style-3 .engine-image .years-experience .bg h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  color: var(--primaryColor);
  font-family: var(--bodyFontFamily);
}
.about-image.style-3 .engine-image .years-experience .bg h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.8px;
  color: var(--primaryColor);
  font-family: var(--bodyFontFamily);
}
.about-image.style-3 .engine-image .years-experience .bg::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -10px;
  top: -10px;
  border-radius: 30px;
  border: 1px dashed var(--primaryColor);
}
.about-image.style-3 .user-image .image {
  margin-left: 70px;
  margin-right: -70px;
}
.about-image.style-3 .user-image .image img {
  border-radius: 5px;
}

.about-content {
  margin-left: 50px;
  margin-bottom: 25px;
}
.about-content .title {
  margin-bottom: 20px;
}
.about-content .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.about-content .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.about-content .title h2 {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: -0.4px;
}
.about-content .about-item {
  margin-bottom: 20px;
}
.about-content .about-item .about-info {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}
.about-content .about-item .about-info .icon {
  left: 0;
  top: -3px;
  position: absolute;
}
.about-content .about-item .about-info h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--bodyFontFamily);
}
.about-content .about-card {
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 40px;
  background: #f5f5f5;
}
.about-content .about-card p {
  font-size: 18px;
  font-weight: 400;
  color: #494949;
  line-height: 26px;
  letter-spacing: 0.02em;
}
.about-content .about-card h3 {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.32px;
  font-family: var(--bodyFontFamily);
}
.about-content .about-card h3::before {
  left: 0;
  top: 8px;
  content: "";
  position: absolute;
  width: 33px;
  height: 1px;
  background-color: var(--blackColor);
}
.about-content.style-2 {
  margin-left: 0;
}
.about-content.style-2 .about-item {
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 20px;
  background-color: #F7F7F7;
}
.about-content.style-2 .about-item .d-flex {
  margin-bottom: 10px;
}
.about-content.style-2 .about-item .d-flex .icon {
  font-size: 30px;
  width: 47px;
  height: 44px;
  line-height: 55px;
  margin-right: 15px;
  text-align: center;
  border-radius: 5px;
  display: block;
  flex: 0 0 auto;
  color: var(--primaryColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px 0px rgba(228, 20, 43, 0.08);
}
.about-content.style-2 .about-item .d-flex h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.36px;
  font-family: var(--bodyFontFamily);
}
.about-content.style-2 .about-item .d-flex h3 a {
  text-decoration: none;
}
.about-content.style-2 .about-item p {
  color: #716D88;
  line-height: 26px;
  letter-spacing: 0.32px;
}
.about-content.style-2 .about-item:hover .d-flex .icon {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.about-content.style-2 .default-btn {
  margin-top: 20px;
}
.about-content.style-3 {
  margin-left: 95px;
}
.about-content.style-3 .about-item {
  margin-bottom: 30px;
}
.about-content.about-style {
  margin-bottom: 95px;
}

/*=========================================
Services Area Style
===========================================*/
.services-area {
  z-index: 1;
  position: relative;
}
.services-area .section-title {
  max-width: 336px;
  margin-left: 0;
}
.services-area .bg-1 {
  z-index: -1;
  right: 0;
  top: 75px;
  width: 58%;
  height: 350px;
  border-radius: 5px;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/bg/bg-1.jpg);
}
.services-area .bg-1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.83);
}
.services-area .bg-1 .shape-6 {
  position: absolute;
  top: 0;
  left: 0;
}
.services-area.style-2 {
  background-color: #f7f7f7;
}
.services-area .shape-11 {
  position: absolute;
  top: 0;
  right: 0;
}
.services-area.service-style .section-title {
  max-width: 625px;
  margin-left: auto;
}
.services-area.service-style .bg-1 {
  display: none;
}

.services-slider-info {
  position: relative;
}
.services-slider-info.owl-carousel .owl-nav .owl-prev, .services-slider-info.owl-carousel .owl-nav .owl-next {
  right: 60px;
  top: -90px;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--whiteColor);
  background-color: #484545;
}
.services-slider-info.owl-carousel .owl-nav .owl-prev i, .services-slider-info.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.services-slider-info.owl-carousel .owl-nav .owl-prev:hover, .services-slider-info.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.services-slider-info.owl-carousel .owl-nav .owl-prev.owl-next, .services-slider-info.owl-carousel .owl-nav .owl-next.owl-next {
  right: 0;
  left: auto;
}
.services-slider-info.owl-carousel .owl-nav .owl-prev.owl-next i, .services-slider-info.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}
.services-slider-info.service-style.owl-carousel .owl-nav .owl-prev, .services-slider-info.service-style.owl-carousel .owl-nav .owl-next {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primaryColor);
  background: rgba(228, 20, 43, 0.09);
}
.services-slider-info.service-style.owl-carousel .owl-nav .owl-prev:hover, .services-slider-info.service-style.owl-carousel .owl-nav .owl-next:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.services-slider-info.service-style.owl-carousel .owl-nav .owl-prev.owl-next, .services-slider-info.service-style.owl-carousel .owl-nav .owl-next.owl-next {
  right: -80px;
  left: auto;
}

.single-services-info {
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 25px;
  background: #f5f5f5;
  display: block;
  transition: var(--transition);
}
.single-services-info .icon {
  font-size: 35px;
  width: 70px;
  height: 70px;
  line-height: 82px;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: center;
  display: inline-block;
  color: var(--primaryColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
  box-shadow: 0px 0px 40px rgba(255, 77, 36, 0.04);
}
.single-services-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: -0.4px;
  transition: var(--transition);
}
.single-services-info h3 a {
  text-decoration: none;
}
.single-services-info p {
  transition: var(--transition);
}
.single-services-info:hover {
  background-color: var(--primaryColor);
}
.single-services-info:hover h3 a {
  color: var(--whiteColor);
}
.single-services-info:hover p {
  color: var(--whiteColor);
}
.single-services-info.about-style .d-flex {
  margin-bottom: 30px;
}
.single-services-info.about-style .d-flex .icon {
  width: 78px;
  height: 74px;
  line-height: 85px;
  margin-right: 18px;
  margin-bottom: 0;
}
.single-services-info.about-style .d-flex h3 {
  letter-spacing: unset;
  line-height: 18px;
  margin-bottom: 0;
}

.services-section-title {
  margin-bottom: 20px;
}
.services-section-title .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.services-section-title .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.services-section-title .title h2 {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: -0.4px;
}
.services-section-title .button {
  margin-bottom: 20px;
}
.services-section-title.style-3 .title h2 {
  color: var(--whiteColor);
}

.services-info {
  position: relative;
  margin-bottom: 25px;
}
.services-info .image img {
  border-radius: 5px;
}
.services-info .content {
  z-index: 1;
  margin-right: -70px;
  border-radius: 5px;
  padding: 40px 30px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px 0px rgba(228, 20, 43, 0.06);
}
.services-info .content h3 {
  font-size: 21px;
  margin-bottom: 15px;
  letter-spacing: -0.22px;
}
.services-info .content h3 a {
  text-decoration: none;
}
.services-info .content p {
  color: #716D88;
  transition: var(--transition);
}
.services-info .content:hover {
  background-color: var(--primaryColor);
}
.services-info .content:hover h3 a {
  color: var(--whiteColor);
}
.services-info .content:hover p {
  color: #D2D2D2;
}
.services-info.service-style .content {
  background-color: #f5f5f5;
}
.services-info.service-style .content:hover {
  background-color: var(--primaryColor);
}

.single-services-card {
  margin-top: 90px;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 5px;
  background-color: #1F1F1F;
  transition: var(--transition);
}
.single-services-card .image {
  margin-top: -120px;
}
.single-services-card .image img {
  border-radius: 5px;
}
.single-services-card .content {
  padding-top: 30px;
}
.single-services-card .content h3 {
  font-size: 22px;
  line-height: 18px;
  margin-bottom: 15px;
  letter-spacing: -0.22px;
}
.single-services-card .content h3 a {
  text-decoration: none;
  color: var(--whiteColor);
}
.single-services-card .content h3 a:hover {
  color: var(--primaryColor);
}
.single-services-card .content p {
  color: #d2d2d2;
  transition: var(--transition);
}
.single-services-card:hover {
  background-color: var(--primaryColor);
}
.single-services-card:hover .content p {
  color: var(--whiteColor);
}
.single-services-card:hover .content h3 a {
  color: var(--whiteColor);
}

.services-funfact-shape {
  z-index: 1;
  position: relative;
  background-color: var(--blackColor);
}
.services-funfact-shape .shape-14 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.services-funfact-shape .shape-15 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
}

/*=========================================
Choose Area Style
===========================================*/
.choose-area {
  position: relative;
}
.choose-area.style-3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 69%;
  height: 100%;
  background-color: #f5f5f5;
}
.choose-area.style-3 .shape-17 {
  position: absolute;
  right: 0;
  top: 0;
}
.choose-area.about-style::before {
  right: auto;
  left: 0;
  width: 70%;
}

.choose-content {
  right: -10px;
  margin-bottom: 25px;
  position: relative;
  margin-left: 15px;
}
.choose-content .title {
  margin-bottom: 30px;
}
.choose-content .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.choose-content .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.choose-content .title h2 {
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.choose-content .choose-info ul li {
  max-width: 330px;
  margin-bottom: 20px;
}
.choose-content .choose-info ul li .icon {
  display: block;
  flex: 0 0 auto;
  font-size: 40px;
  width: 66px;
  height: 66px;
  line-height: 76px;
  border-radius: 3px;
  text-align: center;
  margin-right: 20px;
  color: var(--primaryColor);
  transition: var(--transition);
  background: rgba(228, 20, 43, 0.05);
}
.choose-content .choose-info ul li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.choose-content .choose-info ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.4px;
  text-decoration: none;
  font-family: var(--bodyFontFamily);
}
.choose-content .choose-info ul li:last-child {
  margin-bottom: 0;
}
.choose-content .years-experience {
  right: 0;
  bottom: 0;
  position: absolute;
  width: 171px;
  height: 182px;
  padding-top: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 30px;
  background-color: #f5f5f5;
}
.choose-content .years-experience::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 30px;
  border: 1px dashed #E4142B;
}
.choose-content .years-experience h1 {
  font-weight: 500;
  font-size: 80px;
  line-height: 40px;
  margin-bottom: 15px;
  display: block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--bodyFontFamily);
}
.choose-content .years-experience span {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: var(--primaryColor);
  font-family: var(--bodyFontFamily);
}
.choose-content.style-2 {
  right: 0;
  margin-left: 0;
  margin-right: 65px;
}
.choose-content.style-2 .title {
  margin-bottom: 20px;
}
.choose-content.style-2 .title p {
  letter-spacing: 0.32px;
}
.choose-content.style-2 .choose-bar .skills .skill {
  margin-bottom: 25px;
}
.choose-content.style-2 .choose-bar .skills .skill .skill-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -0.18px;
  color: var(--blackColor);
  font-family: var(--bodyFontFamily);
}
.choose-content.style-2 .choose-bar .skills .skill .skill-bar {
  width: 0;
  height: 6px;
  border-radius: 50px;
  background-color: #dadada;
  transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -ms-transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -webkit-transition: 1s cubic-bezier(1, 0, 0.5, 1);
}
.choose-content.style-2 .choose-bar .skills .skill .skill-bar span {
  float: left;
  width: 0%;
  height: 6px;
  position: relative;
  border-radius: 50px;
  background-color: var(--primaryColor);
  transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -ms-transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -webkit-transition: 1s cubic-bezier(1, 0, 0.5, 1);
}
.choose-content.style-2 .choose-bar .skills .skill .skill-bar span b {
  top: -40px;
  float: left;
  width: 100%;
  opacity: 0;
  font-weight: 500;
  font-size: 18px;
  text-align: right;
  position: relative;
  color: var(--blackColor);
  font-family: var(--bodyFontFamily);
}
.choose-content.style-2 .choose-bar .skills .skill .skill-bar span::before {
  content: "";
  right: -2px;
  top: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  border: 1px solid var(--whiteColor);
  background-color: var(--primaryColor);
}
.choose-content.style-2 .choose-bar .skills .skill:last-child {
  margin-bottom: 0;
}
.choose-content.style-2 .choose-bar .skills.active .skill .skill-bar {
  width: 100%;
}
.choose-content.style-3 .choose-info ul li .icon {
  border-radius: 3px;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px 0px rgba(228, 20, 43, 0.1);
}
.choose-content.style-3 .choose-info ul li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.choose-content.style-3 .shape-16 {
  position: absolute;
  right: -240px;
  bottom: -65px;
}
.choose-content.about-style {
  right: 0;
  margin-left: 0;
  margin-right: 10px;
}

.choose-image {
  position: relative;
  margin-bottom: 25px;
  margin-left: -10px;
}
.choose-image.style-2 {
  margin-bottom: 68px;
  margin-left: -15px;
}
.choose-image.style-2 img {
  border-radius: 5px;
}
.choose-image.style-2 .choose-image-info {
  z-index: 1;
  left: 35px;
  right: 35px;
  bottom: -43px;
  margin: auto;
  position: absolute;
}
.choose-image.style-2 .choose-image-info .content {
  border-radius: 5px;
  padding: 30px;
  background-color: #f5f5f5;
}
.choose-image.style-2 .choose-image-info .content p {
  color: #494949;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  margin-bottom: 10px;
}
.choose-image.style-2 .choose-image-info .content h3 {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  padding-left: 43px;
  margin-bottom: 0;
  letter-spacing: 0.32px;
  font-family: var(--bodyFontFamily);
}
.choose-image.style-2 .choose-image-info .content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 33px;
  height: 1px;
  background-color: var(--blackColor);
}
.choose-image.style-2 .choose-image-info::before {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  z-index: -1;
  border-radius: 5px;
  background-color: var(--whiteColor);
}
.choose-image.about-style {
  margin-left: 0;
}

/*=========================================
Project Area Style
===========================================*/
/* .project-area {
  position: relative;
} */
.project-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--blackColor);
}
.project-area .project-section-title {
  margin-bottom: 30px;
}
.project-area .project-section-title .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.project-area .project-section-title .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.project-area .project-section-title .title h2 {
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 0;
  letter-spacing: -0.4px;
}
.project-area .project-section-title .button {
  float: right;
}
.project-area .project-section-title .button .default-btn {
  display: block;
  margin-bottom: 10px;
}
.project-area .container-fluid {
  padding: 0;
  max-width: 1920px;
}
.project-area.style-2 {
  background-color: #f7f7f7;
}
.project-area.style-2::after {
  display: none;
}
.project-area.style-3::after {
  display: none;
}
.project-area.style-3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 69%;
  height: 45%;
  background-color: #f5f5f5;
}
.project-area.project-style {
  background-color: #f5f5f5;
}
.project-area.project-style::after {
  display: none;
}

.single-project-card {
  position: relative;
}
.single-project-card .image img {
  border-radius: 5px;
}
.single-project-card .content {
  opacity: 0;
  left: 20px;
  bottom: 20px;
  position: absolute;
  width: 361px;
  padding: 21px;
  border-radius: 5px;
  background: #e4142b;
  transition: var(--transition);
}
.single-project-card .content span {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--whiteColor);
}
.single-project-card .content h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.single-project-card .content h3 a {
  text-decoration: none;
  color: var(--whiteColor);
}
.single-project-card:hover .content {
  opacity: 1;
}
.single-project-card.style-2 {
  margin-bottom: 25px;
}
.single-project-card.style-2 .image img {
  border-radius: 5px;
}
.single-project-card.style-2 .content {
  width: 287px;
  left: 0;
  border-radius: 0 5px 5px 0;
}

/*================================================
Funfact Area Style
=================================================*/
.funfact-area {
  z-index: 1;
  position: relative;
  overflow: hidden;
  background-color: var(--blackColor);
}
.funfact-area .shape-2 {
  z-index: -1;
  left: 0;
  bottom: 0;
  position: absolute;
}
.funfact-area .shape-7 {
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: 0;
  position: absolute;
}
.funfact-area.style-3 {
  overflow: unset;
  background-color: unset;
}

.single-funfact-card {
  margin-bottom: 25px;
}
.single-funfact-card h1 {
  font-size: 100px;
  color: #1C1C1C;
  display: inline-block;
  white-space: nowrap;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.46);
}
.single-funfact-card h3 {
  font-size: 20px;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
}

.col-lg-3:nth-child(1) .single-funfact-card {
  max-width: 211px;
  margin-right: auto;
}
.col-lg-3:nth-child(3) .single-funfact-card {
  margin-left: 110px;
}
.col-lg-3:nth-child(4) .single-funfact-card {
  max-width: 151px;
  margin-left: auto;
}

/*================================================
Brands Area Style
=================================================*/
.brands-area.style-2 {
  background-color: #F5F5F5;
}
.brands-area.style-3 {
  max-width: 1920px;
  margin: auto;
}
.brands-area.style-3 .section-title {
  margin-left: 0;
}
.brands-area.style-3 .container-fluid {
  max-width: 1620px;
  margin-left: auto;
  margin-right: 0;
  padding-left: 30px;
  padding-right: 0;
}
.brands-area.team-style {
  background-color: #f5f5f5;
}

.single-brands-info {
  padding: 25px;
  padding-top: 0;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}
.single-brands-info .image {
  top: -20px;
  position: relative;
  width: 197px;
  height: 197px;
  border-radius: 100%;
  margin-bottom: 10px;
  text-align: center;
  display: inline-block;
  background-color: var(--whiteColor);
}
.single-brands-info .image img {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  transform: translateY(-50%);
  max-width: 158px;
}
.single-brands-info h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
}
.single-brands-info.team-style {
  background-color: var(--whiteColor);
}
.single-brands-info.team-style .image {
  background-color: #f5f5f5;
}

.single-brands-card {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
}
.single-brands-card .image {
  margin-bottom: 25px;
}
.single-brands-card .image img {
  border-radius: 5px;
}
.single-brands-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.single-brands-card.style-3 {
  background-color: #f5f5f5;
}

.brands-slider-two {
  position: relative;
}
.brands-slider-two.owl-carousel .owl-nav .owl-prev, .brands-slider-two.owl-carousel .owl-nav .owl-next {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--primaryColor);
  background: rgba(228, 20, 43, 0.06);
}
.brands-slider-two.owl-carousel .owl-nav .owl-prev i, .brands-slider-two.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.brands-slider-two.owl-carousel .owl-nav .owl-prev:hover, .brands-slider-two.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.brands-slider-two.owl-carousel .owl-nav .owl-prev.owl-next, .brands-slider-two.owl-carousel .owl-nav .owl-next.owl-next {
  right: -80px;
  left: auto;
}
.brands-slider-two.owl-carousel .owl-nav .owl-prev.owl-next i, .brands-slider-two.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}

.brands-slider-three {
  position: relative;
}
.brands-slider-three.owl-carousel .owl-nav .owl-prev, .brands-slider-three.owl-carousel .owl-nav .owl-next {
  top: -90px;
  right: 390px;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--primaryColor);
  background: rgba(228, 20, 43, 0.06);
}
.brands-slider-three.owl-carousel .owl-nav .owl-prev i, .brands-slider-three.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.brands-slider-three.owl-carousel .owl-nav .owl-prev:hover, .brands-slider-three.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.brands-slider-three.owl-carousel .owl-nav .owl-prev.owl-next, .brands-slider-three.owl-carousel .owl-nav .owl-next.owl-next {
  right: 325px;
}
.brands-slider-three.owl-carousel .owl-nav .owl-prev.owl-next i, .brands-slider-three.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}

/*================================================
Testimonials Area Style
=================================================*/
.testimonials-area {
  z-index: 1;
  position: relative;
}
.testimonials-area .bg-2 {
  z-index: -1;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/bg/bg-2.jpg);
}
.testimonials-area .bg-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.83);
}
.testimonials-area .shape-3 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.testimonials-content .title {
  max-width: 388px;
}
.testimonials-content .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.testimonials-content .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.testimonials-content .title h2 {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: -0.4px;
  color: var(--whiteColor);
}

.testimonials-info {
  margin-top: 40px;
}
.testimonials-info .certified {
  display: block;
  margin-left: 140px;
  margin-bottom: 50px;
}
.testimonials-info .certified h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.testimonials-info .certified ul li {
  margin-right: 40px;
  position: relative;
  display: inline-block;
}
.testimonials-info .certified ul li .black-image {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  transition: var(--transition);
}
.testimonials-info .certified ul li .black-image.active {
  opacity: 1 !important;
}
.testimonials-info .certified ul li:last-child {
  margin-right: 0;
}
.testimonials-info .certified ul li:hover .black-image {
  opacity: 1;
}

.testimonials-item {
  z-index: 2;
  position: relative;
  padding: 40px;
  border-radius: 5px;
  background-color: #f5f5f5;
  border: 15px solid var(--whiteColor);
}
.testimonials-item .testimonials-user {
  margin-bottom: 25px;
}
.testimonials-item .testimonials-user .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 15px;
}
.testimonials-item .testimonials-user .image img {
  max-width: 79px;
  border-radius: 100%;
}
.testimonials-item .testimonials-user .content h3 {
  font-size: 24px;
  margin-bottom: 5px;
  letter-spacing: -0.4px;
}
.testimonials-item p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: var(--blackColor);
}
.testimonials-item .icon {
  right: 40px;
  top: 20px;
  line-height: 1;
  position: absolute;
  display: block;
  font-size: 95px;
  transition: var(--transition);
  color: rgba(228, 20, 43, 0.17);
}
.testimonials-item .icon i {
  line-height: 1;
}
.testimonials-item:hover .icon {
  color: var(--primaryColor);
  opacity: 0.8;
}

.testimonials-slider {
  position: relative;
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev, .testimonials-slider.owl-carousel .owl-nav .owl-next {
  right: 80px;
  bottom: -75px;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--primaryColor);
  background-color: rgba(228, 20, 43, 0.14);
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev i, .testimonials-slider.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev:hover, .testimonials-slider.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev.owl-next, .testimonials-slider.owl-carousel .owl-nav .owl-next.owl-next {
  right: 15px;
  left: auto;
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev.owl-next i, .testimonials-slider.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}

.testimonials-quote .icons {
  display: block;
  flex: 0 0 auto;
  margin-right: 115px;
}
.testimonials-quote .icons .quote {
  margin-bottom: 119px;
}
.testimonials-quote .icons .star-icon {
  margin-bottom: 10px;
}
.testimonials-quote .icons .star-icon li {
  margin-right: 5px;
}
.testimonials-quote .icons .star-icon li i {
  font-size: 20px;
  color: rgb(234, 182, 0);
}
.testimonials-quote .icons .star-icon li:last-child {
  margin-right: 0;
}
.testimonials-quote .testimonials-content p {
  font-size: 24px;
  line-height: 46px;
  margin-bottom: 25px;
  color: var(--blackColor);
}
.testimonials-quote .testimonials-content .user {
  padding-left: 57px;
  position: relative;
}
.testimonials-quote .testimonials-content .user h3 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--bodyFontFamily);
}
.testimonials-quote .testimonials-content .user span {
  color: #716D88;
}
.testimonials-quote .testimonials-content .user::before {
  left: 0;
  top: 15px;
  content: "";
  position: absolute;
  width: 43px;
  height: 1px;
  background-color: var(--blackColor);
}

.testimonials-slider-two {
  position: relative;
}
.testimonials-slider-two.owl-carousel .owl-nav .owl-prev, .testimonials-slider-two.owl-carousel .owl-nav .owl-next {
  right: 60px;
  bottom: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--primaryColor);
  background-color: rgba(228, 20, 43, 0.14);
}
.testimonials-slider-two.owl-carousel .owl-nav .owl-prev i, .testimonials-slider-two.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.testimonials-slider-two.owl-carousel .owl-nav .owl-prev:hover, .testimonials-slider-two.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.testimonials-slider-two.owl-carousel .owl-nav .owl-prev.owl-next, .testimonials-slider-two.owl-carousel .owl-nav .owl-next.owl-next {
  right: 0;
}
.testimonials-slider-two.owl-carousel .owl-nav .owl-prev.owl-next i, .testimonials-slider-two.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}

/*================================================
Team Area Style
=================================================*/
.team-area.about-style {
  background-color: #f5f5f5;
}

.single-team-card {
  margin-bottom: 25px;
}
.single-team-card .image img {
  border-radius: 5px;
}
.single-team-card .content {
  padding-top: 20px;
}
.single-team-card .content h3 {
  font-size: 22px;
  margin-bottom: 2px;
  letter-spacing: -0.4px;
}
.single-team-card .content h3 a {
  text-decoration: none;
}

.single-team-info {
  padding: 20px;
  margin-top: 100px;
  margin-bottom: 25px;
  border-radius: 5px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.single-team-info .image {
  margin-top: -120px;
}
.single-team-info .image img {
  border-radius: 5px;
}
.single-team-info .content {
  padding-top: 30px;
}
.single-team-info .content h3 {
  font-size: 22px;
  letter-spacing: -0.22px;
  transition: var(--transition);
}
.single-team-info .content p {
  transition: var(--transition);
}
.single-team-info:hover {
  background-color: var(--primaryColor);
}
.single-team-info:hover .content h3 {
  color: var(--whiteColor);
}
.single-team-info:hover .content p {
  color: var(--whiteColor);
}

.team-slider {
  position: relative;
}
.team-slider.owl-carousel .owl-nav .owl-prev, .team-slider.owl-carousel .owl-nav .owl-next {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--primaryColor);
  background: rgba(228, 20, 43, 0.06);
}
.team-slider.owl-carousel .owl-nav .owl-prev i, .team-slider.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.team-slider.owl-carousel .owl-nav .owl-prev:hover, .team-slider.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.team-slider.owl-carousel .owl-nav .owl-prev.owl-next, .team-slider.owl-carousel .owl-nav .owl-next.owl-next {
  right: -80px;
  left: auto;
}
.team-slider.owl-carousel .owl-nav .owl-prev.owl-next i, .team-slider.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}

/*================================================
Schedule Service Area Style
=================================================*/
.schedule-service-area {
  z-index: 1;
  max-width: 1920px;
  margin: auto;
  position: relative;
  background-color: #f5f5f5;
}
.schedule-service-area::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: var(--whiteColor);
}

.schedule-service-content {
  position: relative;
  right: -20px;
}
.schedule-service-content .title {
  max-width: 500px;
  margin-bottom: 30px;
}
.schedule-service-content .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.schedule-service-content .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.schedule-service-content .title h2 {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: -0.4px;
}
.schedule-service-content form .form-group {
  margin-bottom: 20px;
}
.schedule-service-content form .form-group .form-control {
  height: 60px;
  border-radius: 3px;
  padding-left: 20px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.schedule-service-content form .form-group .form-control.textarea {
  height: 170px;
}
.schedule-service-content .default-btn {
  border: none;
  transition: var(--transition);
}
.schedule-service-content.contact .form-group .list-unstyled li {
  color: red;
  font-size: 14px;
  font-weight: 500;
  left: 5px;
  position: relative;
  top: 4px;
}

.schedule-service-image {
  right: 0;
  bottom: 70px;
  position: absolute;
  border-radius: 5px;
  padding: 152px 320px 152px 67px;
  background-color: var(--blackColor);
}
.schedule-service-image .title {
  max-width: 374px;
}
.schedule-service-image .title h1 {
  font-size: 128px;
  color: #1C1C1C;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 10px;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: var(--whiteColor);
}
.schedule-service-image .title h1 span {
  font-size: 32px;
  font-weight: 800;
  margin-left: 15px;
  display: block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  -webkit-text-stroke-width: transparent;
  -webkit-text-stroke-color: transparent;
}
.schedule-service-image .title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 43px;
  letter-spacing: -0.4px;
  color: var(--whiteColor);
}
.schedule-service-image .title .default-btn {
  color: var(--primaryColor);
  background-color: rgba(255, 255, 255, 0.24);
}
.schedule-service-image .title .default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.schedule-service-image .image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.schedule-service-image .shape-4 {
  position: absolute;
  top: 0;
  right: 0;
}

/*================================================
Blog Area Style
=================================================*/
.blog-area {
  position: relative;
}
.blog-area .section-title {
  margin-left: 90px;
  max-width: 424px;
}
.blog-area.style-3::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  right: 0;
  top: 0;
  background-color: #f5f5f5;
}

.single-blog-card {
  margin-bottom: 25px;
}
.single-blog-card .image img {
  border-radius: 5px;
}
.single-blog-card .content {
  padding-top: 25px;
}
.single-blog-card .content span {
  margin-bottom: 15px;
}
.single-blog-card .content span a {
  position: relative;
  text-decoration: none;
  color: var(--primaryColor);
  margin-right: 3px;
  padding-right: 5px;
}
.single-blog-card .content span a:hover {
  color: var(--blackColor);
}
.single-blog-card .content span a::before {
  content: ".";
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--paragraphColor);
}
.single-blog-card .content h3 {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 34px;
  letter-spacing: -0.22px;
}
.single-blog-card .content h3 a {
  text-decoration: none;
}

.blog-section-title {
  margin-bottom: 25px;
}
.blog-section-title .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.blog-section-title .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.blog-section-title .title h2 {
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 0;
  letter-spacing: -0.4px;
}
.blog-section-title .button {
  margin-bottom: 10px;
}
.blog-section-title.style-3 {
  padding-top: 50px;
}
.blog-section-title.style-3 .title {
  max-width: 425px;
}

/*================================================
Footer Area Style
=================================================*/
.footer-area {
  z-index: 1;
  position: relative;
  background-color: var(--blackColor);
}
.footer-area .shape-5 {
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  text-align: center;
}

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--whiteColor);
}
.single-footer-widget.contact ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
.single-footer-widget.contact ul li i {
  left: 0;
  top: 2px;
  font-size: 20px;
  position: absolute;
  color: var(--primaryColor);
}
.single-footer-widget.contact ul li a {
  color: #d2d2d2;
  text-decoration: none;
}
.single-footer-widget.contact ul li a:hover {
  color: var(--primaryColor);
}
.single-footer-widget.contact ul li span {
  color: #d2d2d2;
}
.single-footer-widget.contact ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.subscribe {
  margin-left: 80px;
  margin-right: -20px;
}
.single-footer-widget.subscribe h3 {
  max-width: 236px;
  margin: auto;
  margin-bottom: 30px;
}
.single-footer-widget.subscribe .form-group {
  position: relative;
}
.single-footer-widget.subscribe .form-group .form-control {
  height: 56px;
  border-radius: 5px;
  padding-left: 15px;
  color: var(--whiteColor);
  background-color: #333333;
  border: 1px solid rgba(255, 255, 255, 0.29);
}
.single-footer-widget.subscribe .form-group .form-control::-moz-placeholder {
  color: var(--whiteColor);
}
.single-footer-widget.subscribe .form-group .form-control::placeholder {
  color: var(--whiteColor);
}
.single-footer-widget.subscribe .form-group .validation-danger {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  color: var(--primaryColor);
}
.single-footer-widget.subscribe .default-btn {
  font-size: 16px;
  right: 5px;
  top: 50%;
  border: none;
  position: absolute;
  padding: 11px 20px;
  transform: translateY(-50%);
}
.single-footer-widget.opining {
  float: right;
}
.single-footer-widget.opining ul li {
  margin-bottom: 10px;
}
.single-footer-widget.opining ul li p {
  color: #D2D2D2;
}
.single-footer-widget.opining ul li:last-child {
  margin-bottom: 0;
}

.copy-right-area {
  margin-top: 55px;
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.04);
}

.copy-right-logo {
  text-align: left;
}

.copy-right-title p {
  color: var(--whiteColor);
}
.copy-right-title p span {
  color: var(--primaryColor);
}
.copy-right-title p a {
  text-decoration: none;
  color: var(--primaryColor);
}
.copy-right-title p a:hover {
  color: var(--whiteColor);
}

.copy-right-list {
  text-align: end;
}
.copy-right-list ul li {
  margin-right: 38px;
  display: inline-block;
}
.copy-right-list ul li a {
  font-weight: 500;
  color: #d2d2d2;
  text-decoration: none;
}
.copy-right-list ul li a:hover {
  color: var(--primaryColor);
}
.copy-right-list ul li:last-child {
  margin-right: 0;
}

/*================================================
Work Process Style
=================================================*/
.work-process-image .image-1 img {
  border-radius: 5px;
}
.work-process-image .image-2 img {
  border-radius: 5px;
}

.work-process-content {
  margin-left: -50px;
}
.work-process-content .title {
  margin-bottom: 30px;
}
.work-process-content .title span {
  font-size: 18px;
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.4px;
  color: var(--primaryColor);
  font-family: var(--headingFontFamily);
}
.work-process-content .title span::before {
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
  width: 33px;
  height: 2px;
  background-color: var(--primaryColor);
}
.work-process-content .title h2 {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: -0.4px;
}
.work-process-content .single-work-process-info {
  margin-bottom: 25px;
}
.work-process-content .single-work-process-info h1 {
  color: #F7F7F7;
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: -0.48px;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(197, 192, 192, 0.37);
}
.work-process-content .single-work-process-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  font-family: var(--bodyFontFamily);
}
.work-process-content .work-image-list {
  margin-top: 30px;
}
.work-process-content .work-image-list li {
  margin-right: 62px;
  position: relative;
}
.work-process-content .work-image-list li .black-image {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  transition: var(--transition);
}
.work-process-content .work-image-list li .black-image.active {
  opacity: 1 !important;
}
.work-process-content .work-image-list li:last-child {
  margin-right: 0;
}
.work-process-content .work-image-list li:hover .black-image {
  opacity: 1;
}

/*================================================
Offers Area Style
=================================================*/
.offers-area {
  position: relative;
  background-color: var(--blackColor);
}
.offers-area .section-title h2 {
  color: var(--whiteColor);
}
.offers-area .shape-13 {
  right: 0;
  bottom: 0;
  position: absolute;
}
.offers-area.pricing-style {
  background-color: var(--whiteColor);
}
.offers-area.pricing-style .section-title h2 {
  color: var(--blackColor);
}

.single-offers-card {
  margin-bottom: 25px;
  padding: 20px 25px;
  border-radius: 5px;
  background-color: #171717;
}
.single-offers-card .image {
  position: relative;
}
.single-offers-card .image img {
  border-radius: 5px;
}
.single-offers-card .image .position-absolute {
  opacity: 0.5;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  text-align: center;
  transition: var(--transition);
  transform: translateY(-50%);
}
.single-offers-card .image .position-absolute .default-btn {
  padding: 11px 31px;
}
.single-offers-card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  border-radius: 5px;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.47);
}
.single-offers-card .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: -0.22px;
}
.single-offers-card .content h3 a {
  text-decoration: none;
  color: var(--whiteColor);
}
.single-offers-card .content h3 a:hover {
  color: var(--primaryColor);
}
.single-offers-card .content h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.18px;
  color: var(--primaryColor);
}
.single-offers-card .content h4 del {
  font-size: 16px;
  color: rgb(123, 123, 123);
}
.single-offers-card:hover .image .position-absolute {
  opacity: 1;
}
.single-offers-card:hover .image::before {
  opacity: 1;
}
.single-offers-card.pricing-style {
  background-color: #f5f5f5;
}
.single-offers-card.pricing-style .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: -0.22px;
}
.single-offers-card.pricing-style .content h3 a {
  text-decoration: none;
  color: var(--blackColor);
}
.single-offers-card.pricing-style .content h3 a:hover {
  color: var(--primaryColor);
}
.single-offers-card.pricing-style .content h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.18px;
  color: var(--primaryColor);
}
.single-offers-card.pricing-style .content h4 del {
  font-size: 16px;
  color: rgb(123, 123, 123);
}

.offers-slider {
  position: relative;
}
.offers-slider.owl-carousel .owl-nav .owl-prev, .offers-slider.owl-carousel .owl-nav .owl-next {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--primaryColor);
  background-color: rgba(255, 255, 255, 0.19);
}
.offers-slider.owl-carousel .owl-nav .owl-prev i, .offers-slider.owl-carousel .owl-nav .owl-next i {
  position: relative;
  right: 2px;
}
.offers-slider.owl-carousel .owl-nav .owl-prev:hover, .offers-slider.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.offers-slider.owl-carousel .owl-nav .owl-prev.owl-next, .offers-slider.owl-carousel .owl-nav .owl-next.owl-next {
  right: -80px;
  left: auto;
}
.offers-slider.owl-carousel .owl-nav .owl-prev.owl-next i, .offers-slider.owl-carousel .owl-nav .owl-next.owl-next i {
  position: relative;
  left: 2px;
}
.offers-slider.pricing-style.owl-carousel .owl-nav .owl-prev, .offers-slider.pricing-style.owl-carousel .owl-nav .owl-next {
  background-color: rgba(228, 20, 43, 0.08);
}
.offers-slider.pricing-style.owl-carousel .owl-nav .owl-prev:hover, .offers-slider.pricing-style.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primaryColor);
}

/*================================================
Logo Area Style
=================================================*/
.logo-slider .single-logo-card {
  position: relative;
  margin-bottom: 25px;
}
.logo-slider .single-logo-card img {
  width: auto;
  margin: auto;
}
.logo-slider .single-logo-card .black-image {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  transition: var(--transition);
}
.logo-slider .single-logo-card .black-image.active {
  opacity: 1 !important;
}
.logo-slider .single-logo-card:hover .black-image {
  opacity: 1;
}

/*================================================
Page Title Style
=================================================*/
.page-title-area {
  padding-top: 230px;
  padding-bottom: 130px;
  z-index: 1;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.page-title-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(15, 15, 15, 0.89);
}
.page-title-area.bg-1 {
  background-image: url(../img/bg/bg-4.jpg);
}
.page-title-area.bg-2 {
  background-image: url(../img/bg/bg-5.jpg);
}
.page-title-area.bg-3 {
  background-image: url(../img/bg/bg-6.jpg);
}
.page-title-area.bg-4 {
  background-image: url(../img/bg/bg-7.jpg);
}
.page-title-area.bg-5 {
  background-image: url(../img/bg/bg-8.jpg);
}
.page-title-area.bg-6 {
  background-image: url(../img/bg/bg-9.jpg);
}
.page-title-area.bg-7 {
  background-image: url(../img/bg/bg-10.jpg);
}
.page-title-area.bg-8 {
  background-image: url(../img/bg/bg-11.jpg);
}
.page-title-area.bg-9 {
  background-image: url(../img/bg/bg-12.jpg);
}
.page-title-area.bg-10 {
  background-image: url(../img/bg/bg-13.jpg);
}
.page-title-area.bg-11 {
  background-image: url(../img/bg/bg-14.jpg);
}

.page-title-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--whiteColor);
}
.page-title-content ul li {
  padding-right: 12px;
  margin-right: 6px;
  position: relative;
  display: inline-block;
}
.page-title-content ul li a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primaryColor);
}
.page-title-content ul li a:hover {
  color: var(--whiteColor);
}
.page-title-content ul li span {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--whiteColor);
}
.page-title-content ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: 4px;
  height: 2px;
  background-color: var(--whiteColor);
}
.page-title-content ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.page-title-content ul li:last-child::before {
  display: none;
}

.services-details-area {
  position: relative;
}

.services-details-card {
  margin-top: 50px;
  margin-bottom: 40px;
  position: relative;
}
.services-details-card .content {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1180px;
}
.services-details-card .content .text {
  padding: 40px;
  border-radius: 5px;
  background: #F5F5F5;
}
.services-details-card .content .text h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.services-details-card .image img {
  border-radius: 5px;
}

.services-left-sidebar {
  margin-bottom: 25px;
}

.services-right-sidebar {
  margin-bottom: 25px;
  margin-left: 20px;
}
.services-right-sidebar h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.services-right-sidebar .cards {
  margin-bottom: 30px;
}
.services-right-sidebar .cards.list ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 8px;
  color: var(--blackColor);
}
.services-right-sidebar .cards.list ul li::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--blackColor);
}
.services-right-sidebar .cards.list ul li:last-child {
  margin-bottom: 0;
}
.services-right-sidebar .cards.image img {
  border-radius: 5px;
}
.services-right-sidebar .cards.benefits {
  margin-bottom: 0;
}
.services-right-sidebar .cards.benefits .benefits-card {
  margin-bottom: 25px;
}
.services-right-sidebar .cards.benefits .benefits-card h1 {
  color: #F7F7F7;
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: -0.48px;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(197, 192, 192, 0.37);
}
.services-right-sidebar .cards.benefits .benefits-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  font-family: var(--bodyFontFamily);
}
.services-right-sidebar .cards.repair {
  margin-bottom: 0;
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill {
  margin-bottom: 25px;
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill .skill-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -0.18px;
  color: var(--blackColor);
  font-family: var(--bodyFontFamily);
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill .skill-bar {
  width: 0;
  height: 6px;
  border-radius: 50px;
  background-color: #dadada;
  transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -ms-transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -webkit-transition: 1s cubic-bezier(1, 0, 0.5, 1);
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill .skill-bar span {
  float: left;
  width: 0%;
  height: 6px;
  position: relative;
  border-radius: 50px;
  background-color: var(--primaryColor);
  transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -ms-transition: 1s cubic-bezier(1, 0, 0.5, 1);
  -webkit-transition: 1s cubic-bezier(1, 0, 0.5, 1);
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill .skill-bar span b {
  top: -40px;
  float: left;
  width: 100%;
  opacity: 0;
  font-weight: 500;
  font-size: 18px;
  text-align: right;
  position: relative;
  color: var(--blackColor);
  font-family: var(--bodyFontFamily);
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill .skill-bar span::before {
  content: "";
  right: -2px;
  top: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  border: 1px solid var(--whiteColor);
  background-color: var(--primaryColor);
}
.services-right-sidebar .cards.repair .choose-bar .skills .skill:last-child {
  margin-bottom: 0;
}
.services-right-sidebar .cards.repair .choose-bar .skills.active .skill .skill-bar {
  width: 100%;
}
.services-right-sidebar.project-style .engines-image {
  margin-bottom: 20px;
}
.services-right-sidebar.project-style .engines-image img {
  border-radius: 5px;
}
.services-right-sidebar.project-style .engines-image .engines-one {
  margin-bottom: 25px;
  margin-right: 40px;
}
.services-right-sidebar.project-style .engines-image .engines-two {
  margin-bottom: 25px;
  margin-left: -42px;
}

.single-pages-widget {
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
  background-color: #F7F7F7;
}
.single-pages-widget h3 {
  position: relative;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.single-pages-widget h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
}
.single-pages-widget.form {
  padding: 0;
}
.single-pages-widget.form .form-group {
  position: relative;
}
.single-pages-widget.form .form-group .form-control {
  height: 58px;
  border-radius: 5px;
  padding-left: 20px;
  background-color: #F7F7F7;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.single-pages-widget.form .form-group .icon {
  right: 5px;
  top: 50%;
  width: 59px;
  height: 50px;
  border: none;
  font-size: 20px;
  line-height: 55px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-pages-widget.form .form-group .icon:hover {
  background-color: var(--blackColor);
}
.single-pages-widget.services ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.single-pages-widget.services ul li a {
  text-decoration: none;
  color: var(--blackColor);
}
.single-pages-widget.services ul li a i {
  left: 0;
  top: 2px;
  position: absolute;
  transition: var(--transition);
  color: rgb(113, 109, 136);
}
.single-pages-widget.services ul li a:hover {
  color: var(--primaryColor);
}
.single-pages-widget.services ul li a:hover i {
  color: var(--primaryColor);
}
.single-pages-widget.services ul li:last-child {
  margin-bottom: 0;
}
.single-pages-widget.mechanic {
  padding: 0;
  margin-bottom: 0;
  border-radius: 5px;
}
.single-pages-widget.mechanic .image img {
  border-radius: 5px;
}
.single-pages-widget.mechanic .content {
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-top: 50px;
  position: absolute;
  border-radius: 0 0 5px 5px;
  background-color: var(--primaryColor);
  -webkit-clip-path: polygon(0% 26%, 33% 1%, 107% 101%, 0% 100%);
          clip-path: polygon(0% 26%, 33% 1%, 107% 101%, 0% 100%);
}
.single-pages-widget.mechanic .content h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
}
.single-pages-widget.mechanic .content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
}
.single-pages-widget.mechanic .content a {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
}
.single-pages-widget.mechanic .content a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: var(--whiteColor);
}
.single-pages-widget.categories {
  background-color: unset;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.single-pages-widget.filter {
  position: relative;
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider {
  margin-top: 10px;
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-value {
  position: relative;
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-value input {
  width: 100%;
  border: none;
  font-size: 16px;
  box-shadow: none;
  font-weight: initial;
  background: none;
  color: var(--blackColor);
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-value span {
  color: var(--paragraphColor);
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .filter {
  font-size: 15px;
  padding: 2px 13px;
  border-radius: 3px;
  margin-right: 45px;
  text-decoration: none;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .filter:hover {
  background-color: var(--blackColor);
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-bar {
  height: 3px;
  width: 100%;
  height: 7px;
  margin-bottom: 10px;
  border: none;
  background-color: #e4e4e4;
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-bar .ui-slider-range {
  height: 7px;
  background-color: var(--primaryColor);
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-bar .ui-slider-handle {
  display: none;
}
.single-pages-widget.filter .filter-info .filter-bar .price-range-slider .range-bar .ui-slider-handle + span {
  background-color: var(--primaryColor);
}
.single-pages-widget.brands {
  background-color: unset;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.single-pages-widget.brands label {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--paragraphColor);
}
.single-pages-widget.brands label:last-child {
  margin-bottom: 0;
}
.single-pages-widget.brands input[type=checkbox],
.single-pages-widget.brands input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 15px;
  width: 15px;
  margin: 0 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline-offset: 5px;
  outline-color: var(--color-subtle);
  background-color: var(--whiteColor);
  border: 1px solid rgb(217, 216, 216);
}
.single-pages-widget.brands input[type=checkbox]:disabled,
.single-pages-widget.brands input[type=radio]:disabled {
  opacity: 0.7;
  background: var(--color-subtle);
  cursor: not-allowed;
}
.single-pages-widget.brands input[type=checkbox]:after,
.single-pages-widget.brands input[type=radio]:after {
  content: "";
  display: block;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}
.single-pages-widget.brands input[type=checkbox]:checked:after,
.single-pages-widget.brands input[type=radio]:checked:after {
  transform: scale(1);
}
.single-pages-widget.brands input[type=radio] {
  border-radius: 100%;
}
.single-pages-widget.brands input[type=radio]:after {
  width: 7px;
  height: 7px;
  border-radius: 100%;
}
.single-pages-widget.brands input[type=radio]:checked {
  border-radius: 100%;
  border: 1px solid rgb(217, 216, 216);
}
.single-pages-widget.brands input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.single-pages-widget.recent-posts ul li {
  margin-bottom: 25px;
}
.single-pages-widget.recent-posts ul li .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}
.single-pages-widget.recent-posts ul li .image img {
  width: 96px;
  height: 80px;
  border-radius: 5px;
}
.single-pages-widget.recent-posts ul li .content span {
  display: block;
  margin-bottom: 5px;
  color: var(--primaryColor);
}
.single-pages-widget.recent-posts ul li .content a {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  font-family: var(--bodyFontFamily);
}
.single-pages-widget.recent-posts ul li:last-child {
  margin-bottom: 0;
}
.single-pages-widget.tags ul li {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.single-pages-widget.tags ul li a {
  padding: 4px 13px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  color: var(--paragraphColor);
  background-color: var(--whiteColor);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.single-pages-widget.tags ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.single-pages-widget.tags ul li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.single-pages-widget.quote-card {
  position: relative;
  padding-left: 45px;
  border-radius: 5px;
  margin-bottom: 35px;
  border-left: 4px solid var(--primaryColor);
}
.single-pages-widget.quote-card p {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--blackColor);
}
.single-pages-widget.quote-card h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  padding-left: 60px;
  position: relative;
  font-family: var(--bodyFontFamily);
}
.single-pages-widget.quote-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 46px;
  height: 1px;
  transform: translateY(-50%);
  background-color: var(--blackColor);
}
.single-pages-widget.quote-card .icon {
  right: 50px;
  bottom: 15px;
  font-size: 55px;
  line-height: 1;
  position: absolute;
  transition: var(--transition);
  color: rgba(228, 20, 43, 0.18);
}
.single-pages-widget.quote-card:hover .icon {
  color: var(--primaryColor);
}

.pagination {
  margin-top: 20px;
  margin-bottom: 25px;
}
.pagination .page-item {
  margin-right: 10px;
}
.pagination .page-item .page-link {
  height: 50px;
  width: 50px;
  border: none;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  border-radius: 100%;
  letter-spacing: -0.16px;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: #FFEBED;
  font-family: var(--headingFontFamily);
}
.pagination .page-item .page-link i {
  font-size: 35px;
  font-weight: 400;
  left: -4px;
  top: -2px;
  position: relative;
  color: var(--primaryColor);
  transition: var(--transition);
}
.pagination .page-item .page-link:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.pagination .page-item .page-link:hover i {
  color: var(--whiteColor);
}
.pagination .page-item .page-link.active {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.single-pricing-card {
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}
.single-pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.single-pricing-card .default-btn {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 11px 35px;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.single-pricing-card .default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.single-pricing-card .list {
  margin-bottom: 25px;
}
.single-pricing-card .list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px;
}
.single-pricing-card .list li i {
  left: 0;
  top: 2px;
  font-size: 14px;
  position: absolute;
  color: var(--primaryColor);
}
.single-pricing-card .list li:last-child {
  margin-bottom: 0;
}
.single-pricing-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primaryColor);
}
.single-pricing-card h2 sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraphColor);
  font-family: var(--bodyFontFamily);
}

.questions-content {
  max-width: 872px;
  margin-left: auto;
  margin-right: auto;
}
.questions-content .accordion .accordion-item {
  border: unset;
  margin-bottom: 20px;
}
.questions-content .accordion .accordion-item .accordion-header {
  padding: 5px 30px;
  position: relative;
  background-color: #f8f7f4;
}
.questions-content .accordion .accordion-item .accordion-header .accordion-button {
  padding-right: 0;
  padding-left: 0;
  box-shadow: unset;
  background-color: unset;
}
.questions-content .accordion .accordion-item .accordion-header .accordion-button span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.36px;
  color: var(--blackColor);
  font-family: var(--bodyFontFamily);
}
.questions-content .accordion .accordion-item .accordion-header .accordion-button::after {
  font-size: 30px;
  content: "\ea4e";
  top: 8px;
  position: relative;
  color: var(--blackColor);
  font-family: remixicon !important;
  background-image: unset !important;
}
.questions-content .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  top: -7px;
  right: 9px;
}
.questions-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}
.questions-content .accordion .accordion-item .accordion-body {
  border-top: none;
  padding: 30px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.questions-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.project-details-card {
  position: relative;
  margin-bottom: 40px;
}
.project-details-card .image img {
  border-radius: 5px;
}
.project-details-card .card-details {
  left: 30px;
  bottom: 20px;
  padding: 30px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--primaryColor);
}
.project-details-card .card-details ul li {
  margin-right: 124px;
}
.project-details-card .card-details ul li h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
}
.project-details-card .card-details ul li p {
  color: var(--whiteColor);
}
.project-details-card .card-details ul li:last-child {
  margin-right: 0;
}

.shop-left-sidebar {
  margin-bottom: 25px;
}

.checkout-from {
  padding: 30px;
  border-radius: 10px;
  background-color: #f5f5f5;
}
.checkout-from h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.checkout-from .checkout-button a {
  font-weight: 500;
  padding: 18px 25px;
  border-radius: 3px;
  margin-bottom: 30px;
  text-decoration: none;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.checkout-from .checkout-button a:hover {
  background-color: var(--blackColor);
}
.checkout-from .billing {
  margin-bottom: 20px;
}
.checkout-from .billing .from-group {
  margin-bottom: 20px;
}
.checkout-from .billing .from-group .form-label {
  color: var(--blackColor);
}
.checkout-from .billing .from-group .form-control {
  height: 49px;
  border: unset;
  border-radius: 3px;
  background-color: var(--whiteColor);
}
.checkout-from .billing .from-group .form-control.textarea {
  position: relative;
  height: 78px;
  padding-left: 20px;
}
.checkout-from .billing .from-group .form-control.textarea::-moz-placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.checkout-from .billing .from-group .form-control.textarea::placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.checkout-from .billing .from-group .form-select {
  height: 49px;
  border: unset;
  border-radius: 3px;
  box-shadow: unset;
  padding-left: 20px;
  color: var(--paragraphColor);
  background-color: var(--whiteColor);
}
.checkout-from .product .product-list .table {
  padding: 30px;
  margin-bottom: 0;
  border-radius: 5px;
  background-color: var(--whiteColor);
}
.checkout-from .product .product-list .table tbody tr th {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  font-weight: 500;
  color: var(--blackColor);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-from .product .product-list .table tbody tr th:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-from .product .product-list .table tbody tr th:last-child {
  text-align: center;
}
.checkout-from .product .product-list .table tbody tr td {
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: unset;
  color: var(--paragraphColor);
}
.checkout-from .product .product-list .table tbody tr td strong {
  color: var(--blackColor);
}
.checkout-from .product .product-list .table tbody tr td:last-child {
  text-align: center;
}
.checkout-from .product .product-list .table tbody tr td:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-from .product .product-list .table tbody tr:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-from .product .product-select {
  padding: 30px;
  border-radius: 5px;
  background-color: var(--whiteColor);
}
.checkout-from .product .product-select label {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--blackColor);
}
.checkout-from .product .product-select label:last-child {
  margin-bottom: 0;
}
.checkout-from .product .product-select input[type=checkbox],
.checkout-from .product .product-select input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 20px;
  width: 20px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline-offset: 5px;
  outline-color: var(--color-subtle);
  background-color: var(--whiteColor);
  border: 1px solid rgb(217, 216, 216);
}
.checkout-from .product .product-select input[type=checkbox]:disabled,
.checkout-from .product .product-select input[type=radio]:disabled {
  opacity: 0.7;
  background: var(--color-subtle);
  cursor: not-allowed;
}
.checkout-from .product .product-select input[type=checkbox]:after,
.checkout-from .product .product-select input[type=radio]:after {
  content: "";
  display: block;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}
.checkout-from .product .product-select input[type=checkbox]:checked:after,
.checkout-from .product .product-select input[type=radio]:checked:after {
  transform: scale(1);
}
.checkout-from .product .product-select input[type=radio] {
  border-radius: 3px;
}
.checkout-from .product .product-select input[type=radio]:after {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.checkout-from .product .product-select input[type=radio]:checked {
  border-radius: 3px;
  border: 1px solid rgb(217, 216, 216);
}
.checkout-from .product .product-select input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.checkout-from .product .product-select input[type=radio] {
  border-radius: 3px;
}
.checkout-from .product .product-select input[type=radio]:after {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.checkout-from .product .product-select input[type=radio]:checked {
  border-radius: 3px;
  border: 1px solid rgb(217, 216, 216);
}
.checkout-from .product .product-select input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.checkout-from .product .product-select .default-btn {
  border: none;
  margin-top: 25px;
  padding: 13px 30px;
}

.single-shop-image {
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 5px;
  background-color: #e8e8e8;
}

.shop-content {
  margin-left: 45px;
}
.shop-content h3 {
  color: #0c0248;
  font-size: 24px;
  margin-bottom: 15px;
}
.shop-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primaryColor);
  font-family: var(--bodyFontFamily);
}
.shop-content h4 del {
  font-weight: 600;
  font-size: 15px;
  margin-left: 10px;
  color: var(--paragraphColor);
}
.shop-content .reviews {
  margin-bottom: 15px;
}
.shop-content .reviews ul li {
  margin-right: 5px;
}
.shop-content .reviews ul li i {
  line-height: 1;
  color: #eba400;
}
.shop-content .reviews ul li:last-child {
  margin-right: 0;
}
.shop-content .reviews span {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
}
.shop-content .product-list {
  position: relative;
  padding-top: 30px;
  margin-bottom: 20px;
}
.shop-content .product-list li {
  margin-right: 20px;
}
.shop-content .product-list li .product-add .to-cart {
  position: relative;
}
.shop-content .product-list li .product-add .to-cart .input-counter {
  max-width: 150px;
  min-width: 150px;
  text-align: center;
  display: inline-block;
  position: relative;
  border-radius: 3px;
  border: 1px solid #E6E6E6;
}
.shop-content .product-list li .product-add .to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--blackColor);
  width: 50px;
  height: 100%;
  line-height: 38px;
  transition: all ease 0.5s;
}
.shop-content .product-list li .product-add .to-cart .input-counter span.minus-btn {
  left: 0;
  font-size: 25px;
  font-weight: 500;
  color: var(--blackColor);
  border-right: 1px solid #cfcfcf;
}
.shop-content .product-list li .product-add .to-cart .input-counter span.minus-btn:hover {
  color: var(--primaryColor);
}
.shop-content .product-list li .product-add .to-cart .input-counter span.plus-btn {
  right: 0;
  font-size: 25px;
  font-weight: 500;
  color: var(--blackColor);
  border-left: 1px solid #cfcfcf;
}
.shop-content .product-list li .product-add .to-cart .input-counter span.plus-btn:hover {
  color: var(--primaryColor);
}
.shop-content .product-list li .product-add .to-cart .input-counter span:hover {
  color: var(--primaryColor);
}
.shop-content .product-list li .product-add .to-cart .input-counter input {
  height: 38px;
  color: var(--blackColor);
  outline: 0;
  padding: 0;
  display: block;
  border: none;
  background-color: var(--whiteColor);
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.shop-content .product-list li .default-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 23px;
}
.shop-content .product-list li:last-child {
  margin-right: 0;
}
.shop-content .product-list::before {
  left: 0;
  top: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgb(235, 235, 235);
}
.shop-content .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--blackColor);
  font-family: var(--bodyFontFamily);
}
.shop-content .title p {
  font-size: 16px;
  font-weight: 400;
  margin-left: 3px;
  color: var(--paragraphColor);
}
.shop-content .title .category {
  margin-left: 3px;
}
.shop-content .title .category li {
  position: relative;
  padding-right: 3px;
  margin-right: 5px;
  display: inline-block;
}
.shop-content .title .category li a {
  font-weight: 400;
  text-decoration: none;
  color: var(--paragraphColor);
}
.shop-content .title .category li a:hover {
  color: var(--primaryColor);
}
.shop-content .title .category li::before {
  content: ",";
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--paragraphColor);
}
.shop-content .title .category li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.shop-content .title .category li:last-child::before {
  display: none;
}
.shop-content .title .tags {
  margin-left: 3px;
}
.shop-content .title .tags li {
  position: relative;
  padding-right: 3px;
  margin-right: 5px;
}
.shop-content .title .tags li a {
  font-weight: 400;
  text-decoration: none;
  color: var(--paragraphColor);
}
.shop-content .title .tags li a:hover {
  color: var(--primaryColor);
}
.shop-content .title .tags li::before {
  content: ",";
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--paragraphColor);
}
.shop-content .title .tags li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.shop-content .title .tags li:last-child::before {
  display: none;
}
.shop-content .title .social-list {
  margin-left: 15px;
}
.shop-content .title .social-list li {
  margin-right: 13px;
}
.shop-content .title .social-list li a {
  font-size: 14px;
  width: 36px;
  height: 36px;
  line-height: 42px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--primaryColor);
  background-color: rgba(228, 20, 43, 0.07);
  text-decoration: none;
}
.shop-content .title .social-list li a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.shop-content .title .social-list li:last-child {
  margin-right: 0;
}

.nav-tabs {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.nav-tabs .nav-item .nav-link {
  padding: 0;
  border: unset;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  color: var(--blackColor);
  transition: var(--transition);
}
.nav-tabs .nav-item .nav-link:hover {
  color: var(--primaryColor);
  border-bottom-color: var(--primaryColor);
}
.nav-tabs .nav-item .nav-link.active {
  color: var(--primaryColor);
  border-bottom-color: var(--primaryColor);
}
.nav-tabs::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  background-color: rgb(234, 223, 223);
}

.tab-content .description {
  margin-bottom: 70px;
}
.tab-content .description h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.tab-content .description .list li {
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
}
.tab-content .description .list li::before {
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--paragraphColor);
}
.tab-content .description .list li:last-child {
  margin-bottom: 0;
}
.tab-content .products h3 {
  font-size: 24px;
  margin-bottom: 35px;
}
.tab-content .review-form {
  padding: 50px;
  border-radius: 10px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}
.tab-content .review-form .write-review {
  margin-bottom: 20px;
}
.tab-content .review-form .write-review h3 {
  font-size: 24px;
  margin-bottom: 0;
  font-family: var(--bodyFontFamily);
}
.tab-content .review-form .write-review ul {
  margin-left: 10px;
}
.tab-content .review-form .write-review ul li {
  margin-right: 5px;
}
.tab-content .review-form .write-review ul li i {
  font-size: 16px;
  color: #eba400;
}
.tab-content .review-form .write-review ul li:last-child {
  margin-right: 0;
}
.tab-content .review-form form .form-group {
  margin-bottom: 20px;
}
.tab-content .review-form form .form-group .form-control {
  height: 70px;
  border-radius: 3px;
  padding-left: 20px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.tab-content .review-form form .form-group .form-control.textarea {
  padding-top: 15px;
  height: 200px !important;
}
.tab-content .review-form .default-btn {
  border: unset;
}

.cart-table .table {
  margin-bottom: 40px;
}
.cart-table .table thead tr th {
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  border-bottom: none;
  background-color: #f7f7f7;
}
.cart-table .table thead tr th:first-child {
  padding-left: 20px;
}
.cart-table .table tbody tr td {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  vertical-align: middle;
  color: var(--paragraphColor);
}
.cart-table .table tbody tr td .input-counter {
  max-width: 74px;
  min-width: 74px;
  text-align: center;
  display: inline-block;
  position: relative;
  border-radius: 3px;
}
.cart-table .table tbody tr td .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--blackColor);
  width: 30px;
  height: 100%;
  line-height: 38px;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
}
.cart-table .table tbody tr td .input-counter span.minus-btn {
  left: 0;
  font-size: 15px;
  font-weight: 500;
  color: #555;
}
.cart-table .table tbody tr td .input-counter span.minus-btn:hover {
  color: var(--primaryColor);
}
.cart-table .table tbody tr td .input-counter span.plus-btn {
  right: 0;
  font-size: 15px;
  font-weight: 500;
  color: #444444;
}
.cart-table .table tbody tr td .input-counter span.plus-btn:hover {
  color: var(--primaryColor);
}
.cart-table .table tbody tr td .input-counter span:hover {
  color: var(--primaryColor);
}
.cart-table .table tbody tr td .input-counter input {
  height: 36px;
  color: var(--blackColor);
  outline: 0;
  padding: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
}
.cart-table .table tbody tr td .image {
  display: block;
  width: 100%;
}
.cart-table .table tbody tr td .image img {
  width: 77px;
  height: 74px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.cart-table .table tbody tr td .icon {
  float: right;
  text-decoration: none;
  color: var(--primaryColor);
  transition: var(--transition);
}
.cart-table .table tbody tr td .icon:hover {
  color: var(--blackColor);
}

.cart-form .form-group {
  position: relative;
}
.cart-form .form-group .form-control {
  height: 60px;
  border-radius: 5px;
  padding-left: 20px;
  color: var(--paragraphColor);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.cart-form .form-group .default-btn {
  right: 5px;
  top: 50%;
  border: unset;
  padding: 16px 21px;
  position: absolute;
  line-height: 1;
  transform: translateY(-50%);
}

.cart-button {
  text-align: right;
}
.cart-button .default-btn {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}
.cart-button .default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.cart-totals {
  margin: auto;
  padding: 40px;
  margin-top: 70px;
  max-width: 648px;
  border-radius: 5px;
  background-color: #f5f5f5;
}
.cart-totals h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family: var(--bodyFontFamily);
}
.cart-totals .table {
  margin-bottom: 40px;
  background-color: var(--whiteColor);
}
.cart-totals .table tbody tr:last-child {
  border: transparent;
}
.cart-totals .table tbody tr td {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cart-totals .table tbody tr td:last-child {
  text-align: end;
}
.cart-totals .default-btn {
  padding: 13px 21px;
}

.account-card {
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}
.account-card h3 {
  font-size: 32px;
  margin-bottom: 25px;
}
.account-card .social-button .button {
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.account-card .social-button .button .icon {
  display: block;
  flex: 0 0 auto;
  margin-right: 10px;
}
.account-card .social-button .button h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  transition: var(--transition);
  font-family: var(--bodyFontFamily);
}
.account-card .social-button .button:hover h3 {
  color: var(--primaryColor);
}
.account-card .sing-with {
  z-index: 1;
  display: block;
  margin-bottom: 25px;
  position: relative;
  text-align: center;
}
.account-card .sing-with span {
  padding-left: 25px;
  padding-right: 25px;
  background-color: #f5f5f5;
}
.account-card .sing-with::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  z-index: -1;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(91, 91, 152, 0.14);
}
.account-card form .form-group {
  margin-bottom: 20px;
}
.account-card form .form-group .form-control {
  height: 58px;
  border: none;
  padding-left: 20px;
  background-color: var(--whiteColor);
}
.account-card .device-passage {
  margin-top: 26px;
  margin-bottom: 25px;
}
.account-card .device-passage .product-select label {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--paragraphColor);
}
.account-card .device-passage .product-select label:last-child {
  margin-bottom: 0;
}
.account-card .device-passage .product-select input[type=checkbox],
.account-card .device-passage .product-select input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline-offset: 5px;
  outline-color: var(--color-subtle);
  border: 1px solid rgb(217, 216, 216);
}
.account-card .device-passage .product-select input[type=checkbox]:disabled,
.account-card .device-passage .product-select input[type=radio]:disabled {
  opacity: 0.7;
  background: var(--color-subtle);
  cursor: not-allowed;
}
.account-card .device-passage .product-select input[type=checkbox]:after,
.account-card .device-passage .product-select input[type=radio]:after {
  content: "";
  display: block;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}
.account-card .device-passage .product-select input[type=checkbox]:checked:after,
.account-card .device-passage .product-select input[type=radio]:checked:after {
  transform: scale(1);
}
.account-card .device-passage .product-select input[type=radio] {
  border-radius: 3px;
}
.account-card .device-passage .product-select input[type=radio]:after {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.account-card .device-passage .product-select input[type=radio]:checked {
  border-radius: 3px;
  border: 1px solid rgb(217, 216, 216);
}
.account-card .device-passage .product-select input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.account-card .device-passage .product-select input[type=radio] {
  border-radius: 3px;
}
.account-card .device-passage .product-select input[type=radio]:after {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.account-card .device-passage .product-select input[type=radio]:checked {
  border-radius: 3px;
  border: 1px solid rgb(217, 216, 216);
}
.account-card .device-passage .product-select input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.account-card .device-passage .product-select .default-btn {
  border: none;
  margin-top: 25px;
  padding: 13px 30px;
}
.account-card .device-passage .forgot a {
  color: #339dff;
  text-decoration: none;
}
.account-card .device-passage .forgot a:hover {
  color: var(--primaryColor);
}
.account-card .default-btn {
  width: 100%;
  border: none;
  margin-bottom: 20px;
}
.account-card .new-create {
  margin-bottom: 20px;
  color: var(--blackColor);
}
.account-card .new-create a {
  color: #339dff;
  text-decoration: none;
}
.account-card .new-create a:hover {
  color: var(--primaryColor);
}

.blog-left-sidebar {
  margin-bottom: 25px;
}

.blog-details-card {
  margin-top: 100px;
  margin-bottom: 30px;
  position: relative;
}
.blog-details-card .image {
  margin-bottom: 25px;
}
.blog-details-card .image img {
  border-radius: 5px;
}
.blog-details-card .card-content {
  max-width: 808px;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  border: 9px solid var(--whiteColor);
}
.blog-details-card .card-content .title {
  padding: 30px;
  border-radius: 3px;
  text-align: start;
  background-color: #f5f5f5;
}
.blog-details-card .card-content .title span {
  display: block;
  margin-bottom: 15px;
}
.blog-details-card .card-content .title span strong {
  padding-right: 5px;
  margin-right: 3px;
  text-decoration: none;
  position: relative;
  color: var(--primaryColor);
  transition: var(--transition);
}
.blog-details-card .card-content .title span strong:hover {
  color: var(--blackColor);
}
.blog-details-card .card-content .title span strong::before {
  content: ".";
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--paragraphColor);
}
.blog-details-card .card-content .title h3 {
  font-size: 30px;
  line-height: 42px;
}
.blog-details-card .card-content .title h3 a {
  text-decoration: none;
}

.blog-details-right-sidebar {
  margin-bottom: 25px;
}
.blog-details-right-sidebar .check-before {
  margin-bottom: 15px;
}
.blog-details-right-sidebar .check-before .title {
  margin-bottom: 25px;
}
.blog-details-right-sidebar .check-before .title h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.blog-details-right-sidebar .check-before .list {
  margin-bottom: 30px;
}
.blog-details-right-sidebar .check-before .list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.blog-details-right-sidebar .check-before .list ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 50%;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--paragraphColor);
}
.blog-details-right-sidebar .check-before .list ul li:last-child {
  margin-bottom: 0;
}
.blog-details-right-sidebar .check-before .image {
  margin-bottom: 25px;
}
.blog-details-right-sidebar .check-before .image img {
  border-radius: 5px;
}
.blog-details-right-sidebar .acceptable-would .title {
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(217, 216, 216, 0.54);
}
.blog-details-right-sidebar .acceptable-would .title h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.blog-details-right-sidebar .acceptable-would .tags-bar {
  margin-bottom: 40px;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li {
  padding-right: 5px;
  margin-right: 2px;
  position: relative;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li span {
  font-size: 18px;
  font-weight: 500;
  color: var(--blackColor);
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li a {
  text-decoration: none;
  color: var(--paragraphColor);
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li a:hover {
  color: var(--primaryColor);
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li::before {
  content: ",";
  position: absolute;
  right: 0;
  bottom: 0;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li:first-child::before {
  display: none;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .list ul li:last-child::before {
  display: none;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .social-list ul span {
  font-size: 18px;
  font-weight: 500;
  color: var(--blackColor);
}
.blog-details-right-sidebar .acceptable-would .tags-bar .social-list ul li {
  margin-right: 10px;
}
.blog-details-right-sidebar .acceptable-would .tags-bar .social-list ul li a {
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 35px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: var(--primaryColor);
  background-color: rgba(228, 20, 43, 0.18);
}
.blog-details-right-sidebar .acceptable-would .tags-bar .social-list ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.blog-details-right-sidebar .acceptable-would .tags-bar .social-list ul li:last-child {
  margin-right: 0;
}
.blog-details-right-sidebar .acceptable-would .comments-reply h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .form-group {
  display: block;
  margin-bottom: 20px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .form-group .form-control {
  height: 52px;
  border: unset;
  padding-left: 20px;
  border-radius: 5px;
  background-color: #f5f5f5;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .form-group .form-control.textarea {
  padding-top: 15px;
  height: 152px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control {
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control label {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraphColor);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control label:last-child {
  margin-bottom: 0;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=checkbox],
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline-offset: 5px;
  outline-color: var(--color-subtle);
  background-color: var(--whiteColor);
  border: 1px solid rgb(217, 216, 216);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=checkbox]:disabled,
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:disabled {
  opacity: 0.7;
  background: var(--color-subtle);
  cursor: not-allowed;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=checkbox]:after,
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:after {
  content: "";
  display: block;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=checkbox]:checked:after,
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:checked:after {
  transform: scale(1);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio] {
  border-radius: 3px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:after {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:checked {
  border-radius: 3px;
  border: 1px solid rgb(217, 216, 216);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio] {
  border-radius: 3px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:after {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:checked {
  border-radius: 3px;
  border: 1px solid rgb(217, 216, 216);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .control input[type=radio]:checked:after {
  background-color: var(--primaryColor);
}
.blog-details-right-sidebar .acceptable-would .comments-reply .form .default-btn {
  border: unset;
  padding: 12px 35px;
}

.single-contact-info {
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 25px;
  border-left: 4px solid #E4142B;
  background: #F5F5F5;
}
.single-contact-info .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 35px;
  display: block;
  flex: 0 0 auto;
  margin-right: 15px;
  border-radius: 5px;
  font-weight: 400;
  transition: var(--transition);
  color: rgb(113, 109, 136);
  background-color: var(--whiteColor);
}
.single-contact-info .contact h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--bodyFontFamily);
}
.single-contact-info .contact a {
  margin-bottom: 5px;
  text-decoration: none;
  color: var(--paragraphColor);
}
.single-contact-info .contact a:hover {
  color: var(--primaryColor);
}
.single-contact-info .contact span {
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}
.single-contact-info:hover .icon {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

#msgSubmit {
  font-size: 18px;
  position: absolute;
  bottom: -50px;
  left: 0;
}

.timeline-area {
  position: relative;
}
.timeline-area::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  margin: auto;
  border-radius: 10px;
  position: absolute;
  text-align: center;
  background-color: #ededed;
}

.timeline-box {
  margin-bottom: 80px;
  position: relative;
}
.timeline-box .image {
  position: relative;
}
.timeline-box .image img {
  border-radius: 5px;
}
.timeline-box .image .date-card {
  top: 20px;
  left: 0;
  position: absolute;
  padding: 16px 26px;
  transition: var(--transition);
  border-radius: 0px 5px 5px 0px;
  background-color: var(--blackColor);
}
.timeline-box .image .date-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.timeline-box .image:hover .date-card {
  background-color: var(--primaryColor);
}
.timeline-box .content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.timeline-box::after {
  content: "";
  width: 11px;
  height: 11px;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--primaryColor);
}
.timeline-box.timeline-border {
  position: relative;
}
.timeline-box.timeline-border::before {
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 100%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  border: 1px solid var(--primaryColor);
}
.timeline-box .left-margin {
  margin-left: 30px;
  margin-right: 0;
}
.timeline-box .right-margin {
  margin-left: 0;
  margin-right: 30px;
}
.timeline-box:last-child {
  margin-bottom: 0;
}

.error-area {
  background-color: #000000;
}

.error-content {
  margin-bottom: 25px;
}
.error-content h1 {
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 1;
  font-size: 200px;
  font-weight: 700;
  color: #92210f;
}
.error-content h1 span {
  color: var(--whiteColor);
}
.error-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.error-content a {
  margin-top: 10px;
}

.terms-conditions-content {
  margin-bottom: 25px;
}
.terms-conditions-content .title {
  margin-bottom: 25px;
}
.terms-conditions-content .title h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.terms-conditions-content .title p a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title p a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul li {
  margin-bottom: 10px;
}
.terms-conditions-content .title ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.terms-conditions-content .title ul.general li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li strong {
  left: 0;
  position: absolute;
}
.terms-conditions-content .title ul.confidential li {
  padding-left: 20px;
  position: relative;
}
.terms-conditions-content .title ul.confidential li a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title ul.confidential li a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul.confidential li::before {
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: var(--blackColor);
}
.terms-conditions-content .title strong {
  color: var(--blackColor);
}
.terms-conditions-content .title:last-child {
  margin-bottom: 0;
}

/*================================================
Back to Top Style
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 87%;
  right: -10%;
  background-color: var(--primaryColor);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 50px;
  line-height: 45px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--whiteColor);
  transition: 0.5s;
  font-size: 25px;
}
.go-top:hover {
  color: #ffffff;
  background: var(--blackColor);
}
.go-top:hover i {
  color: var(--whiteColor);
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
  right: 2%;
  top: 93%;
}/*# sourceMappingURL=style.css.map */

.footer-warp {
  margin-bottom: 25px;
}
.footer-warp h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 50px;
  position: relative;
}
.footer-warp h3::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  opacity: 0.1;
  height: 2px;
  width: 64%;
  background-color: #ffffff;
}
.footer-warp h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: #E04237;
}
.footer-warp .footer-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-warp .footer-link li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
}
.footer-warp .footer-link li a {
  color: #E2E2E2;
}
.footer-warp .footer-link li:hover a {
  color: #E04237;
}
.footer-warp .footer-link li:hover i {
  color: #E04237;
}
.footer-warp .footer-link li:last-child {
  margin-bottom: 0;
}
.footer-warp .footer-link li i {
  color: #ffffff;
  position: absolute;
  left: 0;
  transition: all ease 0.5s;
  font-weight: 200;
  top: 0px;
  font-size: 21px;
}
.footer-warp .footer-link li a {
  display: inline-block;
}
.footer-warp .info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-warp .info li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  color: #E2E2E2;
}
.footer-warp .info li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #E5AC1B;
}
.footer-warp .info li h6 {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #E2E2E2;
}
.footer-warp .info li a {
  color: #E2E2E2;
}
.footer-warp .info li a:hover {
  color: #E04237;
}
.footer-warp .info li p {
  color: #E2E2E2;
}

.col-lg-3:nth-child(1) .footer-warp {
  margin-left: 30px;
}
.col-lg-3:nth-child(1) .footer-warp h3::before {
  width: 75%;
}
.col-lg-3:nth-child(2) .footer-warp h3::before {
  width: 83%;
}
.col-lg-3:nth-child(3) .footer-warp h3::before {
  width: 60%;
}
.col-lg-3:nth-child(4) .footer-warp {
  margin-left: -2px;
}
.col-lg-3:nth-child(4) .footer-warp h3::before {
  width: 62%;
}
.social-link {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        li {
            display: inline-block;
            padding-right: 2px;
            color: #E2E2E2;
            a {
                width: 30px;
                height: 30px;
                display: inline-block;
                text-align: center;
                border-radius: 50%;
                line-height: 36px;
                color: var(--primaryColor);
                background-color: #ffffff;
                &:hover {
                    background-color: $main-color;
                    color: $white-color;
                }
            }
        }
    }
}


/* Wrapper as input-group */
.views-exposed-form {
  position: relative;
  max-width: 400px; /* adjust width as needed */
}

/* Make text input look like Bootstrap */
.views-exposed-form .form-text {
  display: block;
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem; /* add right padding for the button */
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 2rem; /* pill shape */
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-sizing: border-box;
}

.views-exposed-form .form-text:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
}

/* Position the button absolutely inside input */
.views-exposed-form__item--actions {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  margin: 0;
}

.views-exposed-form__item--actions input[type="submit"] {
  background-color: #0d6efd;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Replace button text with search icon */
.views-exposed-form__item--actions input[type="submit"]::before {
  content: "🔍"; /* You can swap with an SVG or font-awesome icon */
  font-size: 0.9rem;
  color: #fff;
}

.views-exposed-form__item--actions input[type="submit"]:hover {
  background-color: #0b5ed7;
}

.views-exposed-form.views-exposed-form {
  box-shadow: none;
  padding: 0px;
  border: none;
}

.pager__item--active > .is-active {
  background-color: var(--primaryColor);
}

.destination-card {
  margin-bottom: 25px;
}
.destination-card .tour-num {
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 1;
  display: inline-block;
  background-color: #E85F4C;
  padding: 9px 17px 9px;
  color: #fff;
  z-index: 1;
  font-size: 14px;
}
.destination-card .destination-info h3 {
  font-size: 24px;
}
.destination-card .destination-info h3:hover a {
  color: #E85F4C;
}
.destination-card.style1, .destination-card.style3 {
  position: relative;
  overflow: hidden;
}
.destination-card.style1:after, .destination-card.style3:after {
  position: absolute;
  bottom: -100%;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.2s;
}
.destination-card.style1:before, .destination-card.style3:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(15, 18, 33, 0.45) 0%, rgba(15, 18, 33, 0.12) 62%);
  transition: 0.4s;
  z-index: 0;
}
.destination-card.style1 .destination-title, .destination-card.style3 .destination-title {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 22px;
  margin: 0;
  color: #fff;
  transition: 0.3s;
}
.destination-card.style1 .destination-info, .destination-card.style3 .destination-info {
  position: absolute;
  bottom: -100%;
  left: 50%;
  width: calc(100% - 50px);
  z-index: 1;
  transform: translateX(-50%);
  transition: 0.4s;
  transition-delay: 0.2s;
}
.destination-card.style1 .destination-info h3, .destination-card.style3 .destination-info h3 {
  margin-bottom: 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(7px);
  transition: 0.4s;
  transition-delay: 0.5s;
}
.destination-card.style1 .destination-info h3 a, .destination-card.style3 .destination-info h3 a {
  color: #fff;
}
.destination-card.style1 .destination-info h3:hover a, .destination-card.style3 .destination-info h3:hover a {
  color: #E85F4C;
}
.destination-card.style1 .destination-info p, .destination-card.style3 .destination-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(13px);
  transition: 0.4s;
  transition-delay: 0.7s;
}
.destination-card.style1 .destination-info .link, .destination-card.style3 .destination-info .link {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.7s;
  transform: translateY(7px);
}
.destination-card.style1 .destination-info .link.style1, .destination-card.style3 .destination-info .link.style1 {
  color: #E85F4C;
  font-family: "Josefin Sans", sans-serif;
}
.destination-card.style1:hover:after, .destination-card.style3:hover:after {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}
.destination-card.style1:hover::before, .destination-card.style3:hover::before {
  opacity: 0;
}
.destination-card.style1:hover .destination-title, .destination-card.style3:hover .destination-title {
  visibility: hidden;
  opacity: 0;
}
.destination-card.style1:hover .destination-info, .destination-card.style3:hover .destination-info {
  bottom: 22px;
}
.destination-card.style1:hover .destination-info h3, .destination-card.style3:hover .destination-info h3 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.destination-card.style1:hover .destination-info p, .destination-card.style3:hover .destination-info p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.destination-card.style1:hover .destination-info .link, .destination-card.style3:hover .destination-info .link {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.destination-card.style1:hover .destination-info .link.style1, .destination-card.style3:hover .destination-info .link.style1 {
  color: #E85F4C;
  font-family: "Josefin Sans", sans-serif;
}
.destination-card.style2 {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
  border-radius: 5px;
}
.destination-card.style2 .destination-img {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.destination-card.style2 .destination-img img {
  border-radius: 5px 5px 0 0;
  transition: 0.4s;
}
.destination-card.style2 .tour-num {
  border-radius: 5px;
}
.destination-card.style2 .destination-info {
  padding: 22px 25px 22px;
}
.destination-card.style2 .destination-info h3 {
  margin-bottom: 10px;
}
.destination-card.style2 .destination-info p {
  margin-bottom: 15px;
}
.destination-card.style2 .destination-info .link {
  color: #313040;
  font-family: "Josefin Sans", sans-serif;
}
.destination-card.style2 .destination-info .link i {
  visibility: hidden;
  opacity: 0;
  margin-left: 0;
}
.destination-card.style2 .destination-info .link:hover {
  color: #E85F4C;
}
.destination-card.style2 .destination-info .link:hover i {
  margin-left: 5px;
  visibility: visible;
  opacity: 1;
}
.destination-card.style2:hover img {
  transform: scale(1.05);
}
.destination-card.style3 {
  border-radius: 15px;
}
.destination-card.style3 img {
  border-radius: 15px;
}
.destination-card.style3 .tour-num {
  border-radius: 8px;
}

.destination-slider-one.owl-carousel .owl-dots .owl-dot span {
  border-radius: 50px;
}