/*
@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>>>>>

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

** - Default CSS
** - Section Title CSS
** - Go Top Button CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Responsive Navbar Area CSS
** - Popup Search CSS

** - Main Banner Area CSS
** - Banner Area CSS h-2
** - Hero Area CSS h-3
** - Advice Area CSS
** - Facilities Area CSS
** - Facilities Area CSS h-2
** - Oil Facilities Area CSS h-3
** - About Area CSS
** - Services Area CSS
** - Services Area CSS h-2
** - Oil Services Area CSS h-3
** - Industry Area CSS
** - How it Work Area CSS
** - Fun Fact Area CSS
** - Fun Fact Area CSS h-1
** - Testimonials Area CSS
** - Review Area CSS
** - project Area CSS
** - Team Area CSS
** - Team Area CSS h-2
** - Certification Area CSS
** - Blog Post Area CSS
** - Post Area CSS h-2
** - Newsletter Area CSS
** - Footer Area CSS
** - Copyright Area CSS
** - Partner Area CSS
** - Pricing Area CSS
** - Appointment Area CSS
** - keyframes
*/
/*
Google Fonts
==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bodyFontFamily: "Roboto", serif;
  --barlowFontFamily: "Barlow", serif;
  --dark: #000000;
  --dark-deep: #111111;
  --white: #ffffff;
  /*--primary: #db001b;*/
  --primary: #626260;
  --paragraph: #616161;
  --paragraph-deep: #ebebeb;
  --title-color: #282b2d;
  --info-color: #14b3e4;
  --yellow-color: #626260;
  --gray-color: #f3f3f3;
  --font-size: 16px;
  --transition: all 0.5s;
}

/* Default CSS */
body {
  font-size: var(--font-size);
  font-family: var(--bodyFontFamily);
  color: var(--paragraph);
  margin: 0;
  padding: 0;
}

p {
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  margin-bottom: 15px;
  line-height: 1.65;
  transition: var(--transition);
}
p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  font-family: var(--barlowFontFamily);
  line-height: 1.2;
  color: var(--title-color);
}
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--dark);
}
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: var(--primary);
}

a {
  text-decoration: none;
  outline: 0 !important;
  transition: var(--transition);
}

:focus {
  outline: 0 !important;
  box-shadow: unset !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

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

.form-control {
  color: var(--title-color);
  border: 1px solid transparent;
  box-shadow: unset !important;
  transition: var(--transition);
  border-radius: 10px;
}
.form-control::-moz-placeholder {
  color: var(--paragraph);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.form-control::placeholder {
  color: var(--paragraph);
  transition: var(--transition);
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}

/* Section Padding */
.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

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

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

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

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

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

/* Background Color */
.bg-111 {
  background-color: var(--dark-deep);
}

.bg-11192 {
  background-color: rgba(17, 17, 17, 0.96);
}

.bg-f3f3f3 {
  background-color: #f3f3f3;
}

.bg-ffcc00 {
  background-color: #ffcc00;
}

.bg-db001b {
  background-color: #626260;
}

/* Default Container */
.container-fluid.side-padding {
  max-width: 1580px;
}
.container-fluid.sp-padding {
  max-width: 1820px;
}
.container-fluid.ht-padding {
  max-width: 1480px;
}
.container-fluid.left-padding {
  max-width: 1600px;
  margin-left: auto;
  margin-right: 105px;
}

/*
Default Btn CSS
================================================================================*/
.default-btn {
  color: var(--white);
  border: none;
  box-shadow: none;
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--urbanistFontFamily);
  line-height: normal;
  border-radius: 10px;
  background-color: var(--primary);
  transition: var(--transition);
  padding: 17px 30px 17px;
  z-index: 1;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 0%;
  margin: auto;
  bottom: 0;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  z-index: -1;
  border-radius: 10px;
  background-color: var(--info-color);
}
.default-btn.style-two {
  color: var(--title-color);
  background-color: var(--yellow-color);
}
.default-btn.style-two::before {
  background-color: var(--primary);
}
.default-btn.style-three {
  border-radius: 0;
  background-color: var(--yellow-color);
  color: var(--title-color);
}
.default-btn.style-three::before {
  border-radius: 0;
  background-color: var(--primary);
}
.default-btn.style-four {
  color: #ffcc00;
  background-color: var(--yellow-color);
  border-radius: 5px;
}
.default-btn.style-four::before {
  background-color: #ffcc00;
  border-radius: 5px;
}
.default-btn:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.default-btn:hover.style-two {
  color: var(--white);
}
.default-btn:hover.style-three {
  color: var(--white);
}
.default-btn:hover.style-four {
  color: #626260;
}

/**/
.read-more {
  display: inline-block;
  border: none;
  box-shadow: none;
  font-weight: 700;
  color: var(--paragraph);
  transition: var(--transition);
}
.read-more:hover {
  color: var(--primary);
}

/**/
.sub-title {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

/**/
.section-heading {
  margin-bottom: 30px;
}
.section-heading h2 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 15px;
}

/**/
.section-title {
  text-align: center;
  margin-bottom: 50px;
  max-width: 585px;
  margin-left: auto;
  margin-right: auto;
}
.section-title h2 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 0;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-36 {
  font-size: 36px;
}

.fs-46 {
  font-size: 46px;
}

.br-20 {
  border-radius: 20px;
}

/*
Header Area CSS
============================================================*/
.header-area {
  padding: 17px 0 17px;
}
.header-area .left-side {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-area .left-side li {
  vertical-align: middle;
  position: relative;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.header-area .left-side li::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 60px;
  top: -20px;
  right: -34px;
  background-color: rgba(255, 255, 255, 0.18);
}
.header-area .left-side li a {
  color: var(--white);
}
.header-area .left-side li a:hover {
  color: var(--primary);
}
.header-area .left-side li i {
  font-size: var(--font-size);
}
.header-area .left-side li:last-child::before {
  display: none;
}
.header-area .right-side {
  text-align: end;
}
.header-area .right-side li {
  vertical-align: middle;
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-right: 60px;
}
.header-area .right-side li::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 60px;
  top: -20px;
  right: -34px;
  background-color: rgba(255, 255, 255, 0.18);
}
.header-area .right-side li .clock {
  font-size: var(--font-size);
  position: absolute;
  top: 2px;
  left: 0;
}
.header-area .right-side li .language-selector .world {
  font-size: var(--font-size);
}
.header-area .right-side li .language-selector .form-select {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--white);
  padding: 2px 14px 2px 8px;
  background-image: url("../images/icon/white-arrow.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 12px;
  font-size: 14px;
  font-weight: 500;
}
.header-area .right-side li .language-selector .form-select option {
  color: var(--dark);
}
.header-area .right-side li:first-child {
  padding-left: 22px;
}
.header-area .right-side li:last-child {
  margin-right: 0;
}
.header-area .right-side li:last-child::before {
  display: none;
}
.header-area.style-two .left-side li::before {
  height: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.header-area.style-two .right-side li::before {
  height: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

/*
Top Menu Area CSS
================================================================================*/
.top-menu-area {
  border-bottom: 1px solid rgba(40, 43, 45, 0.12);
  padding: 25px 0;
}
.top-menu-area .pe-5 {
  padding-right: 100px !important;
}
.top-menu-area .navbar-nav {
  gap: 80px;
}
.top-menu-area .navbar-nav .nav-item {
  position: relative;
}
.top-menu-area .navbar-nav .nav-item::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -45px;
  width: 1px;
  height: 45px;
  background-color: rgba(40, 43, 45, 0.18);
  transition: var(--transition);
  transform: translateY(-50%);
}
.top-menu-area .navbar-nav .nav-item:last-child::before {
  display: none;
}
.top-menu-area .nav-link {
  gap: 20px;
}
.top-menu-area .nav-link i {
  font-size: 35px;
  color: var(--primary);
}
.top-menu-area .nav-link span {
  color: var(--title-color);
}
.top-menu-area .nav-link a {
  color: var(--paragraph);
}
.top-menu-area .btn-warning {
  border-radius: 5px;
  padding: 8px 16px;
  transition: all 0.3s ease-in-out;
}
.top-menu-area .btn-warning:hover {
  background-color: darkorange;
  color: white;
}

/*
Navbar Area CSS
================================================================================*/
.navbar {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  z-index: 999;
  border-bottom: 0px solid rgba(217, 217, 217, 0.13);
}
.navbar .navbar-brand {
  margin-right: 10px;
}
.navbar .navbar-nav {
  margin-right: 60px;
}
.navbar .navbar-nav .nav-item {
  margin-left: 17px;
  margin-right: 17px;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: var(--dark);
  transition: 0.6s;
  position: relative;
  padding: 20px 0;
  z-index: 1;
  transition: var(--transition);
  font-size: 17px;
  font-weight: 500;
  font-family: var(--barlowFontFamily);
}
.navbar .navbar-nav .nav-item .nav-link::after {
  font-size: var(--font-size);
  color: var(--dark);
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
  padding-right: 20px;
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  position: absolute;
  vertical-align: 0;
  content: "\f125";
  margin-left: 0;
  border: 0;
  right: 0;
  top: 21px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 26px;
  transition: var(--transition);
  font-family: flaticon_my-icons !important;
}
.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .nav-link.active::after, .navbar .navbar-nav .nav-item .nav-link:hover::after {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  border: 0;
  top: 64px;
  opacity: 0;
  width: 220px;
  padding: 15px 0;
  border-radius: 0;
  visibility: hidden;
  display: block !important;
  background-color: #61615f;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
  border-top: 2px solid var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  display: block;
  padding: 8px 25px;
  position: relative;
  color: #fdca00;
  background-color: transparent !important;
  font-size: 15px;
  font-weight: 500;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-toggle {
  padding-right: 18px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-toggle::after {
  position: absolute;
  vertical-align: 0;
  content: "\f125";
  margin-left: 0;
  right: 20px;
  border: 0;
  top: 12px;
  transition: 0.6s;
  font-size: 14px;
  font-weight: 500;
  font-family: flaticon_my-icons !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item .name {
  color: var(--title-color);
  padding: 3px 10px 6px;
  font-size: 15px;
  border-radius: 5px;
  background-color: var(--primary);
  margin-left: 10px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  visibility: hidden;
  left: auto;
  right: -100%;
  opacity: 0;
  top: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown.dropdown-toggle::after {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu .nav-link {
  font-size: 16px;
  font-weight: 400;
}
.navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar.main-navbar {
  padding-bottom: 0;
}
.navbar.main-navbar .navbar-nav .nav-item .nav-link {
  color: #626260;
}
.navbar.main-navbar .navbar-nav .nav-item .nav-link::after {
  color: #626260;
}
.navbar.main-navbar .navbar-nav .nav-item .nav-link.active, .navbar.main-navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item .nav-link.active::after, .navbar.main-navbar .navbar-nav .nav-item .nav-link:hover::after {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item .dropdown-menu {
  border-top: 2px solid var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown.dropdown-toggle::after {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--yellow-color);
}
.navbar.main-navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after {
  color: var(--yellow-color);
}
.navbar.main-navbar.sticky {
  padding-top: 20px;
  padding-bottom: 20px;
}
.navbar.main-navbar .others-options ul li .search-btn {
  color: var(--white);
}
.navbar.main-navbar .others-options ul li .cart-btn i {
  color: var(--white);
}
.navbar.style-three {
  background-color: transparent;
  padding: 0;
  position: relative;
  margin-bottom: -96px;
}
.navbar.style-three .main-logo {
  display: none;
}
.navbar.style-three .container-fluid {
  padding: 15px 40px;
  background-color: var(--white);
}
.navbar.style-three.sticky {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 0px solid rgba(217, 217, 217, 0.3);
}
.navbar.style-three.sticky .container-fluid {
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
}
.navbar.sticky {
  top: 0;
  left: 0;
  width: 100%;
  position: sticky;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  border-bottom: 1px solid rgba(217, 217, 217, 0.3);
  background-color: var(--dark);
}
.navbar .navbar-toggler {
  color: var(--title-color);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background-color: var(--title-color);
}
.navbar .others-options {
  padding-left: 0px !important;
  vertical-align: middle;
}
.navbar .others-options ul li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.navbar .others-options ul li .search-btn {
  border: none;
  box-shadow: none;
  background-color: transparent;
  color: var(--dark);
  line-height: 1;
}
.navbar .others-options ul li .search-btn .search {
  font-size: 24px;
  line-height: 1;
  position: relative;
  top: 3px;
}
.navbar .others-options ul li .search-btn .menu {
  top: 1px;
  position: relative;
}
.navbar .others-options ul li .cart-btn.border-style {
  position: relative;
}
.navbar .others-options ul li .cart-btn.border-style::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -30px;
  height: 25px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4823529412);
  transform: translateY(-50%);
}
.navbar .others-options ul li .cart-btn i {
  font-size: 24px;
  line-height: 1;
}
.navbar .others-options ul li .cart-btn .number {
  width: 18px;
  height: 18px;
  line-height: 20px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}
.navbar .others-options ul li:last-child {
  margin-right: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*
Responsive Navbar Area CSS
================================================================================*/
.mobile-navbar .offcanvas-header {
  padding: 30px 30px;
  background-color: var(--title-color);
}
.mobile-navbar .offcanvas-header .btn-close {
  transition: var(--transition);
  font-size: 15px;
  cursor: pointer;
  top: 43px;
  right: 35px;
  position: absolute !important;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--white) !important;
}
.mobile-navbar .offcanvas-header .btn-close:hover {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body {
  padding: 30px 30px;
}
.mobile-navbar .offcanvas-body .mb-4 {
  margin-bottom: 35px !important;
}
.mobile-navbar .offcanvas-body ul {
  list-style-type: none;
  margin-bottom: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list {
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  line-height: 1;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  clear: both;
  width: 100%;
  color: var(--title-color);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.active .mobile-menu-items {
  padding: 18px 0 0 0;
  margin: 18px 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list:last-child {
  border-bottom: 1px solid #e7e7e7;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a {
  height: 100%;
  padding-right: 0;
  text-decoration: none;
  position: relative;
  display: block;
  color: var(--title-color);
  font-size: 16px;
  font-weight: 600;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:after {
  top: 15%;
  right: 0;
  content: "\f125";
  position: absolute;
  transform: translateY(-14%);
  transition: 0.6s;
  font-size: 16px;
  font-style: normal;
  font-family: flaticon_my-icons !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:hover, .mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a.active {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:hover::after, .mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a.active::after {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items li {
  padding: 0 0 20px 0 !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a {
  padding: 0 20px;
  font-size: 16px;
  font-size: 15px;
  font-weight: 600;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a.active {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a:hover {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a::after {
  display: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list {
  padding: 0;
  margin: 0;
  border: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list::after {
  right: 15px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list .mobile-menu-items {
  padding: 0 !important;
  background-color: var(--bs-gray-100);
  margin: 0 20px !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list.active .mobile-menu-items {
  padding: 18px 0 0 0 !important;
  margin: 18px 20px !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon:after {
  display: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon a::after {
  display: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active:after {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items {
  transition: all 300ms;
  display: block;
  height: auto;
  clear: both;
  float: left;
  width: 100%;
  background-color: #ededed;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items li:last-child {
  border: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > a {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body .menu-bottom {
  margin-top: 40px;
}
.mobile-navbar .offcanvas-body .menu-bottom .social {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.mobile-navbar .offcanvas-body .menu-bottom .social li {
  display: inline-block;
  margin-right: 30px;
}
.mobile-navbar .offcanvas-body .menu-bottom .social li a {
  color: var(--title-color);
  font-size: 18px;
  font-weight: 500;
}
.mobile-navbar .offcanvas-body .menu-bottom .social li a:hover {
  color: var(--primary);
}
.mobile-navbar .offcanvas-body .menu-bottom .social li:last-child {
  margin-right: 0;
}
.mobile-navbar .offcanvas-body .side-menu-form .form-control {
  color: var(--title-color);
  height: 50px;
  background-color: #f6f5ef;
  margin-bottom: 20px;
}
.mobile-navbar .offcanvas-body .side-menu-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.mobile-navbar .offcanvas-body .side-menu-form .form-control::placeholder {
  color: var(--paragraph);
}
.mobile-navbar .offcanvas-body .side-menu-form .form-control:focus {
  border-color: var(--primary);
}
.mobile-navbar .offcanvas-body .side-menu-form .textarea {
  min-height: 150px;
}
.mobile-navbar .offcanvas-body .social-icon h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px;
}
.mobile-navbar .offcanvas-body .social-icon ul li {
  display: inline-block;
  margin-right: 10px;
}
.mobile-navbar .offcanvas-body .social-icon ul li a {
  display: inline-block;
  color: var(--title-color);
  width: 40px;
  height: 40px;
  line-height: 46px;
  border-radius: 100%;
  background-color: #f6f5ef;
  text-align: center;
}
.mobile-navbar .offcanvas-body .social-icon ul li a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.mobile-navbar .offcanvas-body .social-icon ul li:last-child {
  margin-right: 0;
}
.mobile-navbar .others-options {
  padding-left: 0px !important;
  vertical-align: middle;
}
.mobile-navbar .others-options ul li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.mobile-navbar .others-options ul li:last-child {
  margin-right: 0;
}

/*
Popup Search CSS
================================================================================*/
.modal-backdrop {
  --bs-backdrop-opacity: 0.9;
}

.search-modal.modal {
  border: none;
  border-radius: 0;
}
.search-modal .modal-dialog {
  max-width: 790px;
  border-radius: 0;
}
.search-modal .modal-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.search-modal .btn-close {
  top: 40px;
  right: 40px;
  padding: 0;
  font-size: 30px;
  position: absolute;
  filter: invert(1);
  z-index: 2;
  opacity: 1;
}
.search-modal .modal-content {
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.search-modal .modal-body {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.search-modal .modal-body .popup-form {
  position: relative;
}
.search-modal .modal-body .popup-form .form-control {
  border: none;
  color: var(--white);
  height: 60px;
  padding: 12px 0 12px 0;
  border-radius: 0;
  border-bottom: 1.2px solid var(--white);
  background-color: transparent;
}
.search-modal .modal-body .popup-form .form-control::-moz-placeholder {
  color: var(--white);
}
.search-modal .modal-body .popup-form .form-control::placeholder {
  color: var(--white);
}
.search-modal .modal-body .popup-form .form-control:focus {
  border-color: var(--primary);
}
.search-modal .modal-body .popup-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.search-modal .modal-body .popup-form .form-control:focus::placeholder {
  color: transparent;
}
.search-modal .modal-body .popup-form .p-btn {
  border: none;
  box-shadow: unset !important;
  background-color: var(--white);
  color: var(--primary);
  top: 0;
  right: 0;
  position: absolute;
  font-size: 20px;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  line-height: 44px;
  border-radius: 5px;
  text-align: center;
}
.search-modal .modal-body .popup-form .p-btn:hover {
  color: var(--primary);
}

/*
Main Banner Area CSS
================================================================================*/
.main-banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 130px;
}
.main-banner-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.92);
}
.main-banner-area .h-shape-2 {
  top: 150px;
  right: 300px;
  position: absolute;
  animation: up 3s ease-in-out infinite;
  pointer-events: none;
}

.main-banner-content h1 {
  font-size: 120px;
  line-height: 1.17;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.main-banner-content p {
  color: var(--paragraph-deep);
  max-width: 505px;
  margin-bottom: 160px;
  position: relative;
  z-index: 1;
}
.main-banner-content .scroll-btn {
  display: inline-block;
  border: 1.2px solid var(--white);
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.12);
  font-size: 26px;
  width: 60px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 100px;
}
.main-banner-content .scroll-btn:hover {
  color: var(--primary);
  border: 1.2px solid var(--primary);
}
.main-banner-content .main-banner-image {
  right: -30px;
  bottom: -115px;
  position: absolute;
}
.main-banner-content .main-banner-image .circle-arrow {
  left: -50px;
  bottom: 185px;
  position: absolute;
}

.circle-arrow .right-up .h-shape-8 {
  top: -35px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  text-align: center;
  max-width: 110px;
  animation: astronaut 9s linear infinite;
  pointer-events: none;
}
.circle-arrow i {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-size: 48px;
  width: 145px;
  height: 145px;
  line-height: 155px;
  border-radius: 100%;
  background-color: var(--white);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--dark);
}
.circle-arrow i:hover {
  color: var(--primary);
}
.circle-arrow i:hover::after {
  border: 1px solid var(--primary);
}

/*
Banner Area CSS h-2
================================================================================*/
.banner-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.banner-area .arrow-narrow-btn .swiper-button-next, .banner-area .arrow-narrow-btn .swiper-button-prev {
  display: block !important;
  color: var(--white);
  font-size: 30px;
  transition: var(--transition);
}
.banner-area .arrow-narrow-btn .swiper-button-next::after, .banner-area .arrow-narrow-btn .swiper-button-prev::after {
  display: none;
}
.banner-area .arrow-narrow-btn .swiper-button-next:hover, .banner-area .arrow-narrow-btn .swiper-button-prev:hover {
  color: var(--primary);
}
.banner-area .arrow-narrow-btn .swiper-button-next {
  left: auto;
  right: -60px;
  position: absolute;
  bottom: 205px;
  top: auto;
}
.banner-area .arrow-narrow-btn .swiper-button-prev {
  left: auto;
  right: -60px;
  position: absolute;
  top: 205px;
}
.banner-area .social-links {
  top: 58%;
  left: 25px;
  position: absolute;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-lr;
}

.social-links li span {
  color: #dadada;
}
.social-links li a {
  color: #dadada;
}
.social-links li a:hover {
  color: var(--primary);
}

.banner-content {
  margin-top: 150px;
}
.banner-content .mb-4 {
  margin-bottom: 45px !important;
}
.banner-content .sub-title {
  letter-spacing: 0.1em;
}
.banner-content h1 {
  font-size: 80px;
  line-height: 1.13;
  margin-bottom: 22px;
}
.banner-content .banner-btn {
  gap: 30px;
  margin-bottom: 70px;
}
.banner-content .banner-btn .play {
  width: 20px;
  height: 20px;
  line-height: 16px;
  border-radius: 100%;
  color: var(--yellow-color);
  border: 2px solid var(--yellow-color);
  text-align: center;
  display: inline-block;
  font-size: 10px;
  transition: var(--transition);
}
.banner-content .banner-btn .play:hover {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.banner-image .circle-arrow {
  top: 50%;
  left: -72px;
  position: absolute;
  transform: translateY(-50%);
}

@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
/* 
Hero Area CSS h-3
===============================================================================*/
.hero-area::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  z-index: -1;
  /*background-color: var(--gray-color);*/
}

.hero-warp {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-warp::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /*background: linear-gradient(90deg, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.74) 27.18%, rgba(17, 17, 17, 0.68) 47.04%, rgba(17, 17, 17, 0.29) 65.51%);*/
  border-radius: 7px;
}
.hero-warp .hero-content {
  padding: 145px 0 145px 160px;
  max-width: 840px;
}
.hero-warp .hero-content h1 {
  font-size: 80px;
  line-height: 1.13;
  margin-bottom: 22px;
}
.hero-warp .hero-content p {
  margin-bottom: 42px;
}
.hero-warp .hero-content .hero-btn {
  gap: 30px;
}
.hero-warp .hero-content .hero-btn .explore {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 16px 30px 16px;
  border: 1px solid var(--white);
  color: var(--white);
}
.hero-warp .h-shape-3 {
  position: absolute;
  right: 215px;
  bottom: 100px;
  pointer-events: none;
  animation: beat 1s infinite;
}

.hero-items .hero-btn .swiper-button-next, .hero-items .hero-btn .swiper-button-prev {
  color: var(--primary);
  font-size: 25px;
  transition: var(--transition);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  background-color: var(--white);
  border: 1px solid var(--dark);
  text-align: center;
}
.hero-items .hero-btn .swiper-button-next::after, .hero-items .hero-btn .swiper-button-prev::after {
  display: none;
}
.hero-items .hero-btn .swiper-button-next:hover, .hero-items .hero-btn .swiper-button-prev:hover {
  color: var(--primary);
}
.hero-items .hero-btn .swiper-button-next {
  right: -25px;
  left: auto;
}
.hero-items .hero-btn .swiper-button-prev {
  left: -25px;
  right: auto;
}

/* 
Page Banner Area CSS
===============================================================================*/
.page-banner-area {
  padding: 80px 0;
}

.page-banner-content h1 {
  color: var(--white);
  font-size: 46px;
  margin-bottom: 18px;
}
.page-banner-content ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.page-banner-content ul li {
  vertical-align: middle;
  position: relative;
  color: var(--yellow-color);
  font-size: 18px;
}
.page-banner-content ul li::before {
  position: absolute;
  content: "";
  top: 6px;
  transform: rotate(25deg);
  right: -15px;
  width: 1px;
  height: 15px;
  border-radius: 100%;
  background-color: var(--white);
}
.page-banner-content ul li a {
  color: var(--white);
}
.page-banner-content ul li a:hover {
  color: var(--yellow-color);
}
.page-banner-content ul li:last-child::before {
  display: none;
}
.page-banner-content .page-banner-shape-2 {
  position: absolute;
  top: 0;
  right: 150px;
  pointer-events: none;
  animation: beat 1s infinite;
}

.page-banner-image .page-banner-shape-1 {
  position: absolute;
  top: 100px;
  right: 50px;
  pointer-events: none;
  animation: astronaut 5s linear infinite;
}

/*
Advice Area CSS
================================================================================*/
.advice-area {
  position: relative;
  overflow: hidden;
  transform: rotate(-7deg);
  bottom: -36px;
}
.advice-area .advice-content {
  display: flex;
  line-height: 60px;
  white-space: nowrap;
  justify-content: center;
  animation: marquee 15s linear infinite forwards;
}
.advice-area .advice-content:hover {
  animation-play-state: paused;
}
.advice-area .advice-content ul {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.advice-area .advice-content ul li {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 90px;
  font-weight: 900;
  font-family: var(--barlowFontFamily);
  margin-right: 50px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--paragraph-deep);
}
.advice-area .advice-content ul li img {
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
}
.advice-area .advice-content ul li:last-child {
  margin-right: 0;
}
.advice-area.style-two {
  transform: unset;
  bottom: 0;
}
.advice-area.style-two .advice-content ul li {
  -webkit-text-stroke: 1px var(--title-color);
}
.advice-area.style-three .advice-content ul li {
  -webkit-text-stroke: 1px var(--title-color);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
/*
Facilities Area CSS
================================================================================*/
.facilities-items {
  box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
}

.single-facilities-card {
  padding: 40px 35px 50px;
}
.single-facilities-card .facilities-image {
  margin-bottom: 30px;
}
.single-facilities-card .facilities-image img {
  transition: 500ms ease-in-out;
}
.single-facilities-card:hover .facilities-image img {
  animation: rotate-vertical 1.1s ease-out;
}

/*
Facilities Area CSS h-2
================================================================================*/
.sec-facilities-items .facilities-pagination {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 50px;
  bottom: 0;
}
.sec-facilities-items .facilities-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(40, 43, 45, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.sec-facilities-items .facilities-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--primary);
}
.sec-facilities-items .facilities-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.sec-facilities-items .facilities-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.sec-facilities-card {
  padding: 30px 30px 0;
  border: 1px solid rgba(40, 43, 45, 0.2);
  text-align: center;
}
.sec-facilities-card::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 46%;
  z-index: -1;
  border-radius: 0;
  background-color: #111111;
  transition: var(--transition);
}
.sec-facilities-card .sec-facilities-card-body {
  padding: 30px 12px 40px;
}
.sec-facilities-card:hover::before, .sec-facilities-card.active::before {
  background-color: var(--primary);
}

/*
Oil Facilities Area CSS h-3
================================================================================*/
.oil-facilities-items .oil-pagination {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 50px;
  bottom: 0;
}
.oil-facilities-items .oil-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(40, 43, 45, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.oil-facilities-items .oil-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--primary);
}
.oil-facilities-items .oil-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.oil-facilities-items .oil-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.oil-facilities-card .oil-facilities-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 320px;
  border-radius: 10px 0 0 10px;
}
.oil-facilities-card .oil-facilities-card-body {
  padding: 30px 30px 30px 15px;
}

/*
About Area CSS
================================================================================*/
.about-area .a-shape-1 {
  position: absolute;
  right: 125px;
  top: 0;
  bottom: 20%;
  margin: auto;
  animation: up 5s ease-in-out infinite;
}
.about-area .check li {
  gap: 15px;
  margin-bottom: 12px;
}
.about-area .check li .circle-check {
  color: var(--primary);
  font-size: 18px;
}
.about-area .check li:last-child {
  margin-bottom: 0;
}

.about-image .a-image-2 {
  position: relative;
  margin-top: -165px;
  left: 115px;
}
.about-image .a-image-2.a-image-5 {
  left: 290px;
  right: 0;
}
.about-image h1 {
  position: absolute;
  top: 43%;
  left: -30%;
  transform: translateY(-50%);
  transform: rotate(-90deg);
  font-size: 90px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px var(--primary);
}

.skills .skill-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 12px;
}
.skills .skill-bar {
  height: 9px;
  background-color: rgba(40, 43, 45, 0.1);
  border-radius: 3px;
}
.skills .skill-bar .skill-percentage {
  height: 9px;
  background-color: var(--yellow-color);
  border-radius: 3px;
  position: relative;
  animation: fillBars 2.5s 1;
}
.skills .skill-bar .skill-percentage::before {
  content: attr(data-name);
  position: absolute;
  font-size: 18px;
  font-weight: 500;
  top: -35px;
  right: 0;
  color: var(--title-color);
  transform: transition(50%);
}

@keyframes fillBars {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.about-btn {
  gap: 30px;
  margin-top: 45px;
}
.about-btn .call a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 54px;
  border-radius: 100%;
  text-align: center;
  border: 1px solid rgba(40, 43, 45, 0.5);
  color: var(--primary);
  font-size: 18px;
}
.about-btn .number a {
  color: var(--title-color);
  font-size: 17px;
}
.about-btn .number a:hover {
  color: var(--primary);
}

/*
Services Area CSS
================================================================================*/
.services-area .swiper-slide.swiper-slide-active .service-content {
  opacity: 0;
  visibility: hidden;
}
.services-area .swiper-slide.swiper-slide-active .style2 {
  opacity: 1;
  visibility: visible;
}
.services-area .services-pagination {
  position: relative;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  bottom: 0;
}
.services-area .services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(40, 43, 45, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.services-area .services-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--primary);
}
.services-area .services-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.services-area .services-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.service-card {
  box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
  margin: 0 5px 30px;
  border-radius: 20px;
}
.service-card .service-content {
  padding: 35px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
}
.service-card .service-content .default-btn {
  width: 50px;
  height: 50px;
  line-height: 36px;
  text-align: center;
  padding: 10px;
  font-size: 30px;
}
.service-card .style2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.service-card .style2 .read-more {
  color: var(--primary);
}

/*
Services Area CSS h-2
================================================================================*/
.our-services-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.our-services-area::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 240px;
  bottom: 0;
  z-index: -1;
  background-color: var(--white);
}
.our-services-area.services-page::after {
  display: none;
}
.our-services-area.services-page::before {
  display: none;
}
.our-services-area .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  z-index: -1;
}
.our-services-area .lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 100px;
  background-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.our-services-area .lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: run 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.our-services-area .lines .line:nth-child(1) {
  margin-left: 42%;
}
.our-services-area .lines .line:nth-child(1)::after {
  animation-delay: 2s;
}
.our-services-area .lines .line:nth-child(3) {
  margin-left: 20%;
}
.our-services-area .lines .line:nth-child(4) {
  margin-left: 70%;
}
.our-services-area .lines .line:nth-child(5) {
  margin-left: 90%;
}
.our-services-area .lines .line:nth-child(3)::after {
  animation-delay: 2.5s;
}

.sec-services-card {
  padding: 50px 40px;
  transition: var(--transition);
}
.sec-services-card .icon {
  width: 150px;
  height: 150px;
  line-height: 148px;
  margin: 0 auto 35px;
  transition: var(--transition);
}
.sec-services-card .icon img {
  max-width: 80px;
}
.sec-services-card p {
  margin-bottom: 35px;
  transition: var(--transition);
}
.sec-services-card .read-more.two {
  font-size: 25px;
  line-height: 52px;
}
.sec-services-card:hover, .sec-services-card.active {
  background-color: var(--primary) !important;
}
.sec-services-card:hover .icon, .sec-services-card.active .icon {
  background-color: var(--white);
}
.sec-services-card:hover h3 a, .sec-services-card.active h3 a {
  color: var(--white);
}
.sec-services-card:hover p, .sec-services-card.active p {
  color: var(--white);
}

.our-services-items .modern-pagination {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 50px;
  bottom: 0;
}
.our-services-items .modern-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(40, 43, 45, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.our-services-items .modern-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--primary);
}
.our-services-items .modern-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.our-services-items .modern-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

/*
Oil Services Area CSS h-3
================================================================================*/
.oil-services-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}

.services-tab .nav-tabs {
  border: none;
  justify-content: center;
  margin-bottom: 50px;
}
.services-tab .nav-tabs .nav-item {
  margin-right: 25px;
}
.services-tab .nav-tabs .nav-item .nav-link {
  border: none;
  padding: 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--white);
  border-radius: 10px;
  padding: 41px 42px;
  font-size: 24px;
  font-weight: 900;
  font-family: var(--barlowFontFamily);
  color: var(--white);
  transition: var(--transition);
}
.services-tab .nav-tabs .nav-item .nav-link:hover, .services-tab .nav-tabs .nav-item .nav-link.active {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.services-tab .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.services-tab .tab-service-content .mb-4 {
  margin-bottom: 35px !important;
}
.services-tab .tab-service-content .check-yellow li {
  margin-bottom: 15px;
}
.services-tab .tab-service-content .check-yellow li:last-child {
  margin-bottom: 0;
}
.services-tab .tab-service-image .popup-btn {
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  margin: auto;
}
.services-tab .tab-service-image .play {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--primary);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 100%;
  background-color: var(--white);
  font-size: 38px;
  z-index: 1;
}
.services-tab .tab-service-image .play::after {
  position: absolute;
  content: "";
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4823529412);
  animation: repl 1.5s infinite ease-in-out;
  z-index: -1;
}
.services-tab .tab-service-image .play:hover {
  background-color: var(--yellow-color);
  color: var(--white);
}

/*
Industry Area CSS
================================================================================*/
.industry-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.industry-area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: -1;
  background-color: var(--white);
}
.industry-area.industry-2::after {
  display: none;
}

.quote-warp {
  padding: 60px 40px;
  box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
}

.quote-form .form-control {
  height: 56px;
  font-size: 15px;
  background-color: #F3F3F3;
  padding: 10px 15px;
}
.quote-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.quote-form .form-control::placeholder {
  color: var(--paragraph);
}
.quote-form .form-control:focus {
  border-color: var(--primary);
}

.projects-card .projects-card-body {
  padding: 40px 35px;
  background-color: rgba(255, 255, 255, 0.12);
}
.projects-card .projects-card-body h3 a {
  color: var(--white);
}
.projects-card .projects-card-body h3 a:hover {
  color: var(--primary);
}
.projects-card .projects-card-body .default-btn {
  width: 50px;
  height: 50px;
  line-height: 42px;
  text-align: center;
  font-size: 30px;
  opacity: 0;
}
.projects-card:hover .default-btn {
  opacity: 1;
}

.br-left {
  border-radius: 10px 0 0 0;
}

.br-right {
  border-radius: 0 10px 0 0;
}

/*
h-2
================================================================================*/
.project-area .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  z-index: -1;
}
.project-area .lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 100px;
  background-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.project-area .lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: run 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.project-area .lines .line:nth-child(1) {
  margin-left: 42%;
}
.project-area .lines .line:nth-child(1)::after {
  animation-delay: 2s;
}
.project-area .lines .line:nth-child(3) {
  margin-left: 20%;
}
.project-area .lines .line:nth-child(4) {
  margin-left: 70%;
}
.project-area .lines .line:nth-child(5) {
  margin-left: 90%;
}
.project-area .lines .line:nth-child(3)::after {
  animation-delay: 2.5s;
}

/*
How it Work Area CSS
================================================================================*/
.works-area .post .number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-weight: 800;
  font-family: var(--barlowFontFamily);
  display: inline-block;
}
.works-area .a-shape-2 {
  position: absolute;
  right: 125px;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: up 5s ease-in-out infinite;
}
.works-area.works-two .default-btn::before {
  border-radius: 0;
}
.works-area.choose-us .mb-4 {
  margin-bottom: 35px !important;
}
.works-area.choose-us .works-image h1 {
  left: -30%;
}

.works-image .a-image-4 {
  position: relative;
  margin-bottom: -175px;
}
.works-image h1 {
  position: absolute;
  top: 43%;
  left: -25%;
  transform: translateY(-50%);
  transform: rotate(-90deg);
  font-size: 90px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px var(--primary);
}
.works-image .hi-work {
  left: auto;
  right: -40%;
}

/*
Fun Fact Area CSS
================================================================================*/
.fact-row.g-4, .fact-row .gx-4 {
  --bs-gutter-x: 75px;
}

.facts-card {
  gap: 30px;
}

/*
Fun Fact Area CSS h-1
================================================================================*/
.fun-fact-area.two::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 70px;
  bottom: 0;
  z-index: -1;
  background-color: var(--gray-color);
}
.fun-fact-area.two .facts-card {
  padding: 35px 30px;
}
.fun-fact-area.two .facts-card .icon {
  width: 70px;
  height: 70px;
  line-height: 80px;
  font-size: 35px;
  color: var(--title-color);
  transition: var(--transition);
  background-color: var(--yellow-color);
}
.fun-fact-area.two .facts-card:hover .icon {
  background-color: var(--primary);
  color: var(--white);
}
.fun-fact-area.three::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 70px;
  bottom: 0;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}

/*
Testimonials Area CSS
================================================================================*/
.testimonials-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.testimonials-area .testimonials-pagination {
  position: relative;
  margin-top: 50px;
  display: inline-block;
  text-align: center;
  bottom: 0;
}
.testimonials-area .testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.testimonials-area .testimonials-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--yellow-color);
}
.testimonials-area .testimonials-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--yellow-color);
}
.testimonials-area .testimonials-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.testimonials-card {
  padding: 40px 55px 40px 40px;
  background-color: rgba(255, 255, 255, 0.12);
}
.testimonials-card .star li {
  color: var(--yellow-color);
}
.testimonials-card .cuts {
  color: var(--primary);
  line-height: 0;
  font-size: 60px;
  transition: var(--transition);
}
.testimonials-card:hover .cuts {
  animation: pop 0.3s 1;
}

/*
Review Area CSS
================================================================================*/
.section-btn .swiper-button-next, .section-btn .swiper-button-prev {
  color: var(--title-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  background-color: var(--white);
  box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
  text-align: center;
  transition: var(--transition);
}
.section-btn .swiper-button-next::after, .section-btn .swiper-button-prev::after {
  display: none;
}
.section-btn .swiper-button-next:hover, .section-btn .swiper-button-prev:hover {
  color: var(--primary);
}
.section-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.section-btn .swiper-button-prev {
  left: auto;
  right: 65px;
}
.section-btn.style-2 .swiper-button-next, .section-btn.style-2 .swiper-button-prev {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid #FFFFFF;
  color: var(--white);
}

.reviews-area .testimonials-card {
  padding: 35px 30px 35px 30px;
}
.reviews-area .testimonials-card .cuts {
  color: var(--paragraph);
}
.reviews-area .testimonials-card:hover .cuts {
  color: var(--primary);
}

/*
project Area CSS
================================================================================*/
.project-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.project-area .container-fluid {
  padding-left: calc(var(--bs-gutter-x) * 0);
  padding-right: calc(var(--bs-gutter-x) * 0);
}
.project-area.oli-projects::before {
  background-color: transparent;
}
.project-area.oli-projects .container-fluid {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
.project-area.oli-projects .project-warp .slide {
  border-radius: 10px;
  margin-bottom: 25px;
}
.project-area.projects-page::before {
  background-color: transparent;
}

.project-warp {
  width: 100%;
  display: flex;
  padding: 0;
  gap: 25px;
}
.project-warp .project-inner {
  padding: 30px 30px;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}
.project-warp .project-inner .two {
  color: var(--white);
  background-color: var(--primary);
}
.project-warp .slide {
  height: 46vh;
  border-radius: 0;
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: var(--transition);
}
.project-warp .slide.active {
  flex: 3;
}
.project-warp .slide.active .project-inner {
  opacity: 1;
  visibility: visible;
}

/*
Team Area CSS
================================================================================*/
.team-card .team-card-body {
  padding: 30px 40px;
}
.team-card:hover .read-more {
  background-color: var(--primary);
  color: var(--white);
}
.team-card:hover .social {
  opacity: 1;
  visibility: visible;
}
.team-card .social {
  position: absolute;
  right: 46px;
  bottom: 100px;
}

.read-more.two {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  background-color: var(--yellow-color);
  text-align: center;
  font-size: 23px;
  color: var(--title-color);
}

.social {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.social li {
  margin-bottom: 10px;
}
.social li a {
  display: inline-block;
  color: var(--title-color);
  width: 36px;
  height: 36px;
  line-height: 40px;
  border-radius: 100%;
  background-color: var(--white);
  text-align: center;
  border: 1px solid var(--primary);
}
.social li a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.social li:last-child {
  margin-bottom: 0;
}

/*
Team Area CSS h-2
================================================================================*/
.candidate-card .candidate-card-body {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -30px;
  z-index: 1;
  position: relative;
  transition: var(--transition);
}
.candidate-card .candidate-card-body .social li {
  margin-bottom: 0;
}
.candidate-card .candidate-card-body.two {
  position: absolute;
  left: 30px;
  right: 30px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.candidate-card:hover .candidate-card-body, .candidate-card.active .candidate-card-body {
  opacity: 0;
}
.candidate-card:hover .candidate-card-body.two, .candidate-card.active .candidate-card-body.two {
  opacity: 1;
  visibility: visible;
}

.team-items .team-pagination {
  position: relative;
  margin-top: 50px;
  display: inline-block;
  text-align: center;
  bottom: 0;
}
.team-items .team-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(40, 43, 45, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.team-items .team-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--primary);
}
.team-items .team-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.team-items .team-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

/*
Team Area CSS h-3
================================================================================*/
.team-area.style-three .team-card .social {
  left: 40px;
  right: auto;
  bottom: auto;
  top: 40%;
  transform: translateY(-50%);
}

/*
Certification Area CSS
================================================================================*/
.certification-area .mb-4 {
  margin-bottom: 35px !important;
}

.certification-items .swiper-wrapper {
  justify-content: space-between;
  text-align: end;
}

/*
Blog Post Area CSS
================================================================================*/
.blog-card .blog-content {
  padding: 35px 40px;
}
.blog-card .blog-content .list li {
  position: relative;
}
.blog-card .blog-content .list li::before {
  position: absolute;
  content: "";
  top: 5px;
  right: -12px;
  width: 1px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--paragraph);
  transform: rotate(25deg);
}
.blog-card .blog-content .list li i {
  color: var(--primary);
  line-height: 1;
}
.blog-card .blog-content .list li:last-child::before {
  display: none;
}

.blog-items .blog-pagination {
  position: relative;
  margin-top: 50px;
  display: inline-block;
  text-align: center;
  bottom: 0;
}
.blog-items .blog-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  background-color: rgba(40, 43, 45, 0.25);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.blog-items .blog-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 0;
  left: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid var(--primary);
}
.blog-items .blog-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.blog-items .blog-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

/*
Post Area CSS h-2
================================================================================*/
.post-area .blog-card {
  transition: var(--transition);
}
.post-area .blog-card .blog-image {
  overflow: hidden;
}
.post-area .blog-card .blog-image img {
  transition: var(--transition);
}
.post-area .blog-card .blog-content {
  padding: 35px 35px 30px;
}
.post-area .blog-card:hover {
  transform: translateY(-5px);
}
.post-area .blog-card:hover .blog-image img {
  transform: scale(1.2);
}

/*
Newsletter Area CSS
================================================================================*/
.newsletter-bg-warp {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.newsletter-bg-warp::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.newsletter-bg-warp .contact-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: -1;
  background-color: var(--white);
}

.newsletter-area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: -1;
  background-color: var(--white);
}

.newsletter-bg {
  padding: 60px 60px;
}

.newsletter-form .form-control {
  color: var(--dark);
  height: 65px;
  padding: 15px 20px;
}
.newsletter-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.newsletter-form .form-control::placeholder {
  color: var(--paragraph);
}
.newsletter-form .form-control:focus {
  border-color: var(--primary);
}
.newsletter-form .default-btn {
  top: 0;
  right: 0;
  position: absolute;
  height: 65px;
}

.error-message {
  color: red;
  font-size: 0.875em;
  margin-top: 0.5em;
  display: none;
}

/*
Footer Area CSS
================================================================================*/
.footer-area .ps-1 {
  padding-left: 70px !important;
}
.footer-area .ps-2 {
  padding-left: 100px !important;
}
.footer-area .ps-3 {
  padding-left: 130px !important;
}
.footer-area .ps-5 {
  padding-left: 80px !important;
}
.footer-area.s-three .ps-2 {
  padding-left: 70px !important;
}
.footer-area.s-three .ps-5 {
  padding-left: 10px !important;
}
.footer-area .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  z-index: -1;
}
.footer-area .lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 100px;
  background-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.footer-area .lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: run 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.footer-area .lines .line:nth-child(1) {
  margin-left: 45%;
}
.footer-area .lines .line:nth-child(1)::after {
  animation-delay: 2s;
}
.footer-area .lines .line:nth-child(3) {
  margin-left: 20%;
}
.footer-area .lines .line:nth-child(4) {
  margin-left: 70%;
}
.footer-area .lines .line:nth-child(5) {
  margin-left: 90%;
}
.footer-area .lines .line:nth-child(3)::after {
  animation-delay: 2.5s;
}

.footer-weight {
  padding-bottom: 100px;
}
.footer-weight .mb-4 {
  margin-bottom: 30px !important;
}
.footer-weight .f-logo {
  margin-bottom: 30px;
}
.footer-weight .default-btn {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--white);
}
.footer-weight h3 {
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}
.footer-weight h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background-color: var(--white);
}
.footer-weight .causes li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 1px;
  margin-bottom: 15px;
}
.footer-weight .causes li i {
  top: 2px;
  left: 0;
  color: var(--white);
  position: absolute;
}
.footer-weight .causes li a {
  color: var(--white);
}
.footer-weight .causes li a:hover {
  color: var(--yellow-color);
}
.footer-weight .causes li:last-child {
  margin-bottom: 0;
}
.footer-weight .location li {
  margin-bottom: 18px;
}
.footer-weight .location li a {
  color: var(--white);
}
.footer-weight .location li a:hover {
  color: var(--yellow-color);
}
.footer-weight .location li:last-child {
  margin-bottom: 0;
}
.footer-weight .instagram li {
  position: relative;
  display: inline-flex;
  gap: 10px;
  margin-right: 5px;
}
.footer-weight .instagram li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(219, 0, 26, 0.5);
  transition: var(--transition);
  border-radius: 8px;
}
.footer-weight .instagram li .instagram {
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(-50%);
  text-align: center;
  line-height: 1;
  font-size: 20px;
  color: var(--white);
}
.footer-weight .instagram li .instagram:hover {
  color: var(--primary);
}
.footer-weight .instagram li:hover::before {
  opacity: 1;
  background-color: rgba(219, 0, 26, 0.5);
}
.footer-weight .instagram li:hover .instagram {
  opacity: 1;
  color: var(--white);
}
.footer-weight .newsletter-form .form-control {
  height: 55px;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--white);
  color: var(--white);
}
.footer-weight .newsletter-form .form-control::-moz-placeholder {
  color: var(--white);
}
.footer-weight .newsletter-form .form-control::placeholder {
  color: var(--white);
}
.footer-weight .newsletter-form .form-control:focus {
  border-color: var(--primary);
}
.footer-weight .newsletter-form .default-btn {
  top: 5px;
  right: 5px;
  position: absolute;
  height: 45px;
  width: 45px;
  background-color: var(--yellow-color);
  color: var(--title-color);
}
.footer-weight .newsletter-form .default-btn::before {
  border-radius: 0;
}
.footer-weight .social li {
  margin-bottom: 0;
}
.footer-weight .social li a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--white);
}
.footer-weight .social li a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/*
Copyright Area CSS
================================================================================*/
.copyright-area {
  padding: 30px 0;
}
.copyright-area p a:hover {
  color: var(--primary);
}
.copyright-area .social li {
  margin-bottom: 0;
}
.copyright-area .social li a {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}
.copyright-area .social li a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/*
Partner Area CSS
================================================================================*/
.partner-area .partner-items .swiper-wrapper {
  text-align: center;
  align-items: center;
  justify-content: space-between;
}
.partner-area .partner-items .swiper-wrapper .p-logo {
  transition: 0.3s ease-in-out;
  transition: filter 0.3s ease;
}
.partner-area .partner-items .swiper-wrapper .p-logo:hover {
  filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(7482%) hue-rotate(352deg) brightness(97%) contrast(119%);
  transform: scale(1);
}

/*
Pricing Area CSS
================================================================================*/
.pricing-card {
  padding: 30px 30px;
}
.pricing-card .pricing-card-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.pricing-card .pricing-card-header::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, #282B2D 0%, rgba(40, 43, 45, 0.2) 64.4%);
}
.pricing-card .pricing-card-price {
  padding: 134px 35px 35px;
}
.pricing-card .currency {
  font-size: 40px;
  font-weight: 900;
}
.pricing-card .price {
  font-size: 40px;
  font-weight: 900;
}
.pricing-card .date {
  font-size: 14px;
}
.pricing-card .pricing-card-list {
  padding: 30px 0;
}
.pricing-card .pricing-card-list li {
  position: relative;
  margin-bottom: 10px;
}
.pricing-card .pricing-card-list li i {
  top: 4px;
  right: 0;
  position: absolute;
}
.pricing-card .pricing-card-list li:last-child {
  margin-bottom: 0;
}

/*
Appointment Area CSS
================================================================================*/
.appointment-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.appointment-area::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.95);
}
.appointment-area .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  z-index: -1;
}
.appointment-area .lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 100px;
  background-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.appointment-area .lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: run 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.appointment-area .lines .line:nth-child(1) {
  margin-left: 42%;
}
.appointment-area .lines .line:nth-child(1)::after {
  animation-delay: 2s;
}
.appointment-area .lines .line:nth-child(3) {
  margin-left: 45%;
}
.appointment-area .lines .line:nth-child(4) {
  margin-left: 65%;
}
.appointment-area .lines .line:nth-child(5) {
  margin-left: 90%;
}
.appointment-area .lines .line:nth-child(3)::after {
  animation-delay: 2.5s;
}

.appointment-image .popup-btn {
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  margin: auto;
}
.appointment-image .play {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--primary);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 100%;
  background-color: var(--white);
  font-size: 38px;
  z-index: 1;
}
.appointment-image .play::after {
  position: absolute;
  content: "";
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4823529412);
  animation: repl 1.5s infinite ease-in-out;
  z-index: -1;
}
.appointment-image .play:hover {
  background-color: var(--yellow-color);
  color: var(--white);
}

.appointment-form .form-control {
  color: var(--white);
  height: 56px;
  border-radius: 0;
  background-color: #333536;
  border: 1px solid var(--white);
  margin-bottom: 25px;
  font-size: 15px;
  padding: 10px 15px;
}
.appointment-form .form-control::-moz-placeholder {
  color: var(--white);
}
.appointment-form .form-control::placeholder {
  color: var(--white);
}
.appointment-form .form-control:focus {
  border-color: var(--yellow-color);
}
.appointment-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.appointment-form .form-control:focus::placeholder {
  color: transparent;
}
.appointment-form .textarea {
  min-height: 200px;
}

/* 
Service Details Page
===============================================================================*/
.service-details-content .mb-1 {
  margin-bottom: 35px !important;
}
.service-details-content .check li {
  gap: 10px;
  margin-bottom: 14px;
}
.service-details-content .check li i {
  color: var(--primary);
  font-size: 20px;
}
.service-details-content .check li:last-child {
  margin-bottom: 0;
}

/* Sidebar CSS */
.sidebar .mb-1 {
  margin-bottom: 40px !important;
}
.sidebar .p-1 {
  padding: 40px 30px !important;
}
.sidebar h3 {
  padding-bottom: 12px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--primary);
  position: relative;
}
.sidebar .search-box .form-control {
  color: var(--white);
  padding: 10px 15px;
  height: 50px;
  background-color: var(--gray-color);
}
.sidebar .search-box .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.sidebar .search-box .form-control::placeholder {
  color: var(--paragraph);
}
.sidebar .search-box .form-control:focus {
  border-color: var(--primary);
}
.sidebar .search-box .read-more {
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  font-size: 20px;
  background-color: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 56px;
  border-radius: 5px;
}
.sidebar .search-box .read-more:hover {
  color: var(--info-color);
}
.sidebar .services ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.sidebar .services ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--primary);
  transform: translateY(-50%);
}
.sidebar .services ul li a {
  color: var(--paragraph);
}
.sidebar .services ul li a:hover {
  color: var(--primary);
}
.sidebar .services ul li:last-child {
  margin-bottom: 0;
}
.sidebar .tags ul li {
  display: inline-block;
}
.sidebar .tags ul li a {
  display: inline-block;
  background-color: var(--gray-color);
  border-radius: 5px;
  padding: 6px 15px;
  color: var(--paragraph);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.sidebar .tags ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
}
.sidebar .causes-form .form-control {
  color: var(--white);
  height: 56px;
  border-radius: 5px;
  background-color: var(--gray-color);
  margin-bottom: 20px;
  font-size: 15px;
  padding: 12px 20px;
}
.sidebar .causes-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.sidebar .causes-form .form-control::placeholder {
  color: var(--paragraph);
}
.sidebar .causes-form .form-control:focus {
  border-color: var(--primary);
}
.sidebar .causes-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.sidebar .causes-form .form-control:focus::placeholder {
  color: transparent;
}
.sidebar .causes-form .textarea {
  min-height: 150px;
}
.sidebar .causes-form .default-btn {
  border-radius: 5px;
}
.sidebar .causes-form .default-btn::before {
  border-radius: 5px;
}
.sidebar .project ul li {
  margin-bottom: 10px;
}
.sidebar .project ul li:last-child {
  margin-bottom: 0;
}
.sidebar .recent-post ul li {
  margin-bottom: 20px;
}
.sidebar .recent-post ul li:last-child {
  margin-bottom: 0;
}
.sidebar .recent-post .u-image-8 {
  width: 83px;
  height: 70px;
}
.sidebar .recent-post span {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.sidebar .recent-post h5 {
  font-size: var(--font-size);
  margin-bottom: 0;
}
.sidebar .recent-post h5 a {
  color: var(--dark);
}
.sidebar .recent-post h5 a:hover {
  color: var(--primary);
}
.sidebar .summarize-order ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(40, 43, 45, 0.1);
  position: relative;
}
.sidebar .summarize-order ul li span {
  top: 0;
  right: 0;
  position: absolute;
}
.sidebar .summarize-order ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.sidebar .filter-container .range-slider input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 5px;
  background-color: #ddd;
  outline: none;
  border-radius: 5px;
}
.sidebar .filter-container .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}
.sidebar .filter-container .price-values {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 18px;
}
.sidebar .filter-container .default-btn {
  border-radius: 5px;
  padding: 12px 30px 12px;
}
.sidebar .filter-container .default-btn::before {
  border-radius: 5px;
}

/*
FAQ Page
===============================================================================*/
.faq-content .accordion-item {
  border: none;
  margin-bottom: 20px;
  background-color: var(--white);
  box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
  border-radius: 10px;
}
.faq-content .accordion-item .accordion-button {
  border: none;
  box-shadow: none;
  border-radius: 5px;
  background-color: var(--white);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  padding: 22px 30px;
  position: relative;
}
.faq-content .accordion-item .accordion-button::before {
  content: "\ea69";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary);
  font-family: tabler-icons !important;
}
.faq-content .accordion-item .accordion-button::after {
  display: none;
}
.faq-content .accordion-item .accordion-button:not(.collapsed)::before {
  content: "\ea68";
}
.faq-content .accordion-item .accordion-body {
  padding: 0 40px 30px 30px;
}
.faq-content .accordion-item .accordion-body p {
  color: var(--paragraph);
}
.faq-content .accordion-item:last-child {
  margin-bottom: 0;
}

/*
Project Details Page
===============================================================================*/
.project-details-content .mb-1 {
  margin-bottom: 35px !important;
}
.project-details-content h1 {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 15px;
}

.project-details-image .popup-btn {
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  margin: auto;
}
.project-details-image .play {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--primary);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 100%;
  background-color: var(--white);
  transition: var(--transition);
  font-size: 38px;
  z-index: 1;
}
.project-details-image .play::after {
  position: absolute;
  content: "";
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4823529412);
  animation: repl 1.5s infinite ease-in-out;
  z-index: -1;
}
.project-details-image .play:hover {
  background-color: var(--yellow-color);
  color: var(--white);
}

/*
Register Page
================================================================================*/
.register-form {
  max-width: 650px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  margin-left: auto;
  margin-right: auto;
}
.register-form .form-control {
  padding: 12px 20px;
  height: 56px;
  color: var(--dark);
  border-radius: 5px;
  background-color: var(--gray-color);
  margin-bottom: 20px;
}
.register-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.register-form .form-control::placeholder {
  color: var(--paragraph);
}
.register-form .form-control:focus {
  border-color: var(--primary);
}
.register-form .form-check .form-check-input {
  width: 16px;
  height: 16px;
  border: 1px solid var(--paragraph);
}
.register-form .form-check .form-check-input:focus {
  border-color: var(--primary);
  background-color: var(--primary);
}
.register-form .forgot-password {
  color: var(--paragraph);
}
.register-form .forgot-password:hover {
  color: var(--primary);
}
.register-form .default-btn {
  border-radius: 5px;
}
.register-form .default-btn::before {
  border-radius: 5px;
}
.register-form .or {
  margin-bottom: 20px;
}
.register-form .or::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.1);
}
.register-form .or p {
  display: inline-block;
  background-color: var(--white);
  padding: 0 30px;
}
.register-form .google-btn {
  color: var(--white);
  padding: 16px 30px 16px;
  background-color: #3B5998;
  display: block;
  margin-bottom: 20px;
}
.register-form .google-btn:hover {
  color: var(--white);
}

.register-area.reset {
  padding-top: 250px;
}

/*
Register Page
================================================================================*/
.blog-details-content .mb-1 {
  margin-bottom: 35px !important;
}
.blog-details-content .blog-details-list {
  gap: 30px;
}
.blog-details-content .blog-details-list li {
  position: relative;
}
.blog-details-content .blog-details-list li::before {
  position: absolute;
  content: "";
  top: 4px;
  right: -15px;
  width: 1px;
  height: 15px;
  background-color: var(--paragraph);
  transform: rotate(25deg);
}
.blog-details-content .blog-details-list li i {
  font-size: 18px;
  position: relative;
  top: 2px;
}
.blog-details-content .blog-details-list li:last-child::before {
  display: none;
}

.quote-card {
  padding: 30px 35px;
}
.quote-card i {
  color: var(--primary);
  line-height: 0;
  font-size: 70px;
}
.quote-card p {
  color: var(--title-color);
}

.share-tag {
  padding: 12px 30px;
}
.share-tag .tags li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}
.share-tag .tags li .tag {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  text-align: center;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.share-tag .tags li a {
  color: var(--paragraph);
}
.share-tag .tags li a:hover {
  color: var(--primary);
}
.share-tag .tags li:last-child {
  margin-right: 0;
}
.share-tag .share {
  text-align: end;
}
.share-tag .share li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.share-tag .share li span {
  color: var(--paragraph);
}
.share-tag .share li a {
  display: inline-block;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 100%;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 32px;
  font-size: 12px;
}
.share-tag .share li a:hover {
  color: var(--white);
  background-color: var(--primary);
}
.share-tag .share li:last-child {
  margin-right: 0;
}

.r-comment {
  padding: 40px 40px;
}
.r-comment img {
  width: 100px;
  height: 100px;
}
.r-comment h4 {
  margin-bottom: 15px;
}
.r-comment .share li {
  display: inline-block;
  color: var(--paragraph);
  margin-right: 5px;
}
.r-comment .share li a {
  display: inline-block;
  color: var(--primary);
  width: 30px;
  height: 30px;
  line-height: 32px;
  border-radius: 100%;
  border: 1px solid var(--primary);
  text-align: center;
  font-size: 12px;
}
.r-comment .share li a:hover {
  color: var(--white);
  background-color: var(--primary);
}
.r-comment .share li:last-child {
  margin-right: 0;
}
.r-comment.two {
  padding: 40px 35px 40px 35px;
  position: relative;
}
.r-comment.two img {
  width: 80px;
  height: 80px;
}
.r-comment.two h4 {
  margin-bottom: 10px;
}
.r-comment.two span {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}
.r-comment.two .reply {
  top: 40px;
  right: 40px;
  position: absolute;
  color: var(--paragraph);
  font-weight: 600;
}
.r-comment.two .reply:hover {
  color: var(--primary);
}

.comments {
  padding: 40px 40px;
}
.comments h3 {
  font-size: 25px;
  line-height: 1;
  margin-bottom: 15px;
}
.comments span {
  display: block;
  margin-bottom: 25px;
}
.comments .form-control {
  color: var(--white);
  height: 56px;
  padding: 12px 20px;
  margin-bottom: 20px;
  background-color: var(--gray-color);
  border-radius: 5px;
}
.comments .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.comments .form-control::placeholder {
  color: var(--paragraph);
}
.comments .form-control:focus {
  border-color: var(--primary);
}
.comments .textarea {
  min-height: 200px;
}

/*
Contact Us Page
================================================================================*/
.contact-form {
  padding: 40px 50px;
}
.contact-form .form-control {
  color: var(--paragraph);
  height: 56px;
  padding: 12px 20px;
  border-radius: 5px;
  background-color: var(--gray-color);
  margin-bottom: 20px;
}
.contact-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.contact-form .form-control::placeholder {
  color: var(--paragraph);
}
.contact-form .form-control:focus {
  border-color: var(--primary);
}
.contact-form .textarea {
  min-height: 280px;
}
.contact-form .default-btn {
  border-radius: 5px;
}
.contact-form .default-btn::before {
  border-radius: 5px;
}

.address {
  padding: 27px 30px;
  margin-bottom: 30px;
}
.address i {
  display: inline-block;
  color: var(--white);
  width: 60px;
  height: 60px;
  line-height: 66px;
  border-radius: 100%;
  background-color: var(--yellow-color);
  transition: var(--transition);
  text-align: center;
  font-size: 20px;
}
.address a {
  display: block;
  color: var(--paragraph);
}
.address a:hover {
  color: var(--primary);
}
.address:last-child {
  margin-bottom: 0;
}
.address:hover i {
  background-color: var(--primary);
}

.contact-map-area iframe {
  width: 100%;
  height: 500px;
  display: block;
  border-radius: 10px;
}

/*
Products Page
================================================================================*/
.products-cart {
  padding: 10px 10px 0;
}
.products-cart .products-image .heart-list {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(-50%);
  text-align: center;
  transition: var(--transition);
  visibility: hidden;
}
.products-cart .products-image .heart-list li {
  display: inline-block;
  margin-right: 5px;
}
.products-cart .products-image .heart-list li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  background-color: var(--white);
  text-align: center;
  border: 1px solid var(--primary);
  font-size: 24px;
  color: var(--paragraph);
}
.products-cart .products-image .heart-list li a:hover {
  color: var(--primary);
}
.products-cart .products-image .heart-list li:last-child {
  margin-right: 0;
}
.products-cart .products-cart-body {
  padding: 35px 0 35px;
}
.products-cart .products-cart-body .star li i {
  color: var(--yellow-color);
  font-size: 18px;
  line-height: 1;
}
.products-cart .products-cart-body h3 {
  margin: 10px 0 15px;
}
.products-cart:hover .heart-list {
  opacity: 1;
  visibility: visible;
}

/*
Product Details Page
================================================================================*/
.shop-details-content {
  padding-left: 25px;
}
.shop-details-content .price {
  color: var(--title-color);
}
.shop-details-content .medium {
  color: var(--paragraph);
  font-size: 15px;
  text-decoration: line-through;
}
.shop-details-content .list-star li i {
  font-size: 18px;
  color: var(--yellow-color);
}
.shop-details-content .list-star li span {
  position: relative;
  top: -2px;
  padding-left: 5px;
}
.shop-details-content .stock li {
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 15px;
}
.shop-details-content .stock li span {
  font-weight: 400;
  color: var(--paragraph);
  margin-left: 30px;
}
.shop-details-content .stock li:last-child {
  margin-bottom: 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin: 20px 0 30px;
}
.quantity-selector label {
  color: var(--title-color);
  font-weight: 800;
  margin-right: 25px;
}
.quantity-selector button {
  border: 1px solid rgba(40, 43, 45, 0.15);
  width: 50px;
  height: 50px;
  font-size: 18px;
  transition: var(--transition);
  background-color: transparent;
  cursor: pointer;
}
.quantity-selector button:hover {
  background: #e0e0e0;
}
.quantity-selector input {
  width: 50px;
  height: 50px;
  text-align: center;
  border: 1px solid rgba(40, 43, 45, 0.15);
  font-size: 16px;
}
.quantity-selector .decrement {
  border-right: 0;
  background-color: transparent;
  border-radius: 5px 0 0 5px;
}
.quantity-selector .increment {
  border-left: 0;
  background-color: transparent;
  border-radius: 0 5px 5px 0;
}

.product-review-area .nav-tabs {
  border: none;
  justify-content: center;
  margin-bottom: 32px;
}
.product-review-area .nav-item {
  border: none;
  margin-right: 70px;
}
.product-review-area .nav-item:last-child {
  margin-right: 0;
}
.product-review-area .nav-link {
  border: none;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--title-color);
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
}
.product-review-area .nav-link.active, .product-review-area .nav-link:hover {
  color: var(--primary);
  background-color: transparent;
}

.description-body {
  padding: 50px 75px;
}
.description-body .rating-bar {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(40, 43, 45, 0.12);
}
.description-body .rating-bar .star li {
  font-size: 18px;
  color: var(--yellow-color);
}
.description-body .review-image li {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(40, 43, 45, 0.12);
}
.description-body .review-image li img {
  width: 60px;
  height: 60px;
}
.description-body .review-image li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/*
Checkout Page
================================================================================*/
.checkout-content .form-check {
  display: flex;
  padding: 16px 20px;
}
.checkout-content .form-check .form-check-input {
  margin-left: 0;
}
.checkout-content .form-check .form-check-label {
  padding-left: 10px;
}

.checkout-form {
  padding: 35px 35px;
}
.checkout-form .form-control {
  height: 50px;
  padding: 10px 15px;
  background-color: var(--gray-color);
  border-radius: 5px;
  margin-bottom: 20px;
}
.checkout-form .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.checkout-form .form-control::placeholder {
  color: var(--paragraph);
}
.checkout-form .form-control:focus {
  border-color: var(--primary);
}
.checkout-form .textarea {
  min-height: 200px;
}

/*
Cart Page
================================================================================*/
.cart-table thead tr th {
  padding: 15px 20px;
  font-weight: 900;
  color: var(--title-color);
  text-align: center;
  white-space: nowrap;
}
.cart-table tbody tr td {
  padding: 15px 15px;
  text-align: center;
  vertical-align: middle;
  color: var(--paragraph);
  white-space: nowrap;
}
.cart-table tbody tr .product-remove a {
  color: var(--primary);
  font-size: 20px;
}
.cart-table tbody tr .product-name a {
  color: var(--paragraph);
}
.cart-table tbody tr .product-name a:hover {
  color: var(--primary);
}
.cart-table tbody tr .product-quantity .quantity-selector button {
  width: 40px;
  height: 40px;
}
.cart-table tbody tr .product-quantity .quantity-selector input {
  width: 40px;
  height: 40px;
}

.cart-buttons .continue-shopping-box .apply-btn {
  top: 0;
  right: 0;
  position: absolute;
}
.cart-buttons .form-control {
  height: 40px;
  border: 1px solid rgba(40, 43, 45, 0.1);
  padding: 5px 20px;
  border-radius: 5px;
}
.cart-buttons .form-control::-moz-placeholder {
  color: var(--paragraph);
}
.cart-buttons .form-control::placeholder {
  color: var(--paragraph);
}
.cart-buttons .form-control:focus {
  border-color: var(--primary);
}
.cart-buttons .default-btn {
  border-radius: 5px;
  font-size: var(--font-size);
  padding: 10px 30px 11px;
}
.cart-buttons .default-btn::before {
  border-radius: 5px;
}

.summery-content .summery-icon {
  border: 1px solid rgba(40, 43, 45, 0.1);
  padding: 35px 30px 40px;
}
.summery-content .summery-icon h3 {
  padding-bottom: 12px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--primary);
  position: relative;
}
.summery-content .summery-icon ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(40, 43, 45, 0.1);
  position: relative;
}
.summery-content .summery-icon ul li span {
  top: 0;
  right: 0;
  position: absolute;
}
.summery-content .summery-icon ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.summery-content .summery-icon .default-btn {
  border-radius: 5px;
  font-size: var(--font-size);
  padding: 10px 30px 11px;
}
.summery-content .summery-icon .default-btn::before {
  border-radius: 5px;
}

/*
Terms & Condition Page
================================================================================*/
.terms-condition-content .mt-1 {
  margin-top: 35px !important;
}
.terms-condition-content .mb-1 {
  margin-bottom: 30px !important;
}

/*
404 Error Page CSS
================================================================================*/
.error-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.error-area .container {
  max-width: 700px;
}
.error-area .error-content-wrap {
  z-index: 1;
  position: relative;
}
.error-area .error-content-wrap p {
  margin: 25px 0 35px;
  font-size: 20px;
  font-weight: 500;
}
.error-area .error-content-wrap .default-btn {
  padding: 17px 50px 17px;
}
.error-area .health-shape-1 {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.b-top {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.bx {
  box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
}

.c-y {
  color: var(--yellow-color);
}

.c-p {
  color: var(--primary);
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.preloader .loader {
  display: flex;
  justify-content: space-between;
  width: 125px;
}
.preloader .loader span {
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.loader span:nth-child(1) {
  animation-delay: -0.32s;
}

.loader span:nth-child(2) {
  animation-delay: -0.16s;
  background-color: var(--info-color);
}

.loader span:nth-child(3) {
  animation-delay: -0.32s;
  background-color: var(--yellow-color);
}

.loader span:nth-child(4) {
  animation-delay: -0.16s;
  background-color: var(--dark-deep);
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
}
/*
Service Pagination CSS
============================================================*/
.service-pagination .pagination {
  justify-content: center;
}
.service-pagination .pagination .page-item {
  margin-right: 10px;
  border-radius: 0;
}
.service-pagination .pagination .page-item .page-link {
  font-weight: 500;
  border: none;
  color: var(--dark);
  width: 40px;
  height: 40px;
  font-weight: 700;
  line-height: 28px;
  border-radius: 100%;
  text-align: center;
  transition: var(--transition);
  background-color: var(--white);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}
.service-pagination .pagination .page-item .page-link span {
  font-size: 22px;
  position: relative;
  right: 2px;
  top: 3px;
  color: var(--dark);
  transition: var(--transition);
}
.service-pagination .pagination .page-item .page-link.active {
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
}
.service-pagination .pagination .page-item .page-link:hover {
  color: var(--white);
  background-color: var(--primary);
}
.service-pagination .pagination .page-item .page-link:hover span {
  color: var(--white);
}
.service-pagination .pagination .page-item:last-child {
  margin-right: 0;
}

/*
Go Top Button CSS
============================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 50%;
  right: 25px;
  background-color: var(--info-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  opacity: 0;
  font-size: 25px;
  text-align: center;
  visibility: hidden;
  transition: var(--transition);
  line-height: 42px;
  z-index: 4;
}
.go-top.active {
  top: 98%;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}
.go-top::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  background-color: var(--yellow-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.go-top:hover {
  color: var(--white);
}
.go-top:hover::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

/* Animation */
.element {
  animation: repl 1.5s infinite ease-in-out;
}

/* Keyframes Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes astronaut {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes up {
  0%, 100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes pop {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes rotate-vertical {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes repl {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */