/*!
 Theme Name:   HostPulse Fusion 
 Theme URI:    https://www.oxiee.com/
 Author:       OxiEE Ltd.           
 Author URI:   https://jane.example.com/ 
 Description:  Dual-platform, WHMCS-WordPress Native Premium Template
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hostpulsefusion
 Tags:         whmcs, wordpress, native integration
 * 
 * © 2024 OxiEE Ltd. All rights reserved.
 * 
 * REGULAR LICENSE:
 * This license permits the buyer to use the theme on a single WHMCS installation.
 * For additional installations, separate licenses must be purchased.
 * Every user must be registered in the OxiEE Marketplace system with only one authorized domain per license.
 * To change the authorized domain, please contact OxiEE Ltd.
 * 
 * IT IS STRICTLY PROHIBITED TO:
 * - Share, distribute, or make available the theme files to others in any form that could harm the license.
 * - Allow the theme to be redistributed without a proper license.
 * - Use this software without possessing a valid license, as it may result in legal action or takedown procedures.
 * 
 * Redistribution is expressly forbidden under this license, except with explicit prior written permission from OxiEE Ltd.
 * 
 * THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTIES, AND THE USE OF THIS SOFTWARE IS AT YOUR OWN RISK.
 * OXIEE LTD. DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 * NO LIABILITY IS ASSUMED FOR ANY DAMAGES OR INTERRUPTION CAUSED BY THE USE OF THIS SOFTWARE.
 * 
 * FOR MORE INFORMATION, VISIT https://www.oxiee.com/ OR CONTACT US AT corp@oxiee.com
 * 
 * !!! IMPORTANT NOTICE !!!
 * 
 * Unauthorized use of this theme is strictly prohibited and will result in strong legal actions such as:
 * 1. DMCA reports.
 * 2. Search engine delisting.
 * 3. Complaints to hosting and CDN providers.
 * 4. Possible legal proceedings.
 * 
 * Users found utilizing this theme without a proper license will face severe consequences under the law.
 */



@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #ad8c44;
  --primary-accent: #155bd5;
  --primary-dark: #866d36;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
  color: var(--primary);
}

/* 1) Make the figure a 16:9 box for Fusion blog single page */
article figure img {
  /* native aspect-ratio: great in modern browsers */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
}

/* 2) Fill it with the img, cropping via object-fit */
article figure img {
  width: 100%;
  height: 100%;

  /* cover: fill the box, cropping as needed */
  object-fit: cover;
  object-position: center center;

}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
}
.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}
.section-title-five h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-five p {
  color: var(--dark-3);
}



/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR ONE =====*/
.navbar-one {
  background: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one {
    padding: 20px 0;
  }
}
.navbar-one .navbar {
  position: relative;
  padding: 0;
}
.navbar-one .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-collapse {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 8;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
  }
}
.navbar-one .navbar .navbar-nav .nav-item {
  margin: 0 5px;
  position: relative;
}
.navbar-one .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 28px 15px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0%;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-nav .nav-item a.active::before {
  opacity: 0.1;
  visibility: visible;
  width: 100%;
}
.navbar-one .navbar .navbar-nav .nav-item a:hover::before {
  opacity: 0.1;
  visibility: visible;
  width: 100%;
}
.navbar-one .navbar .navbar-nav .nav-item a i {
  font-weight: 700;
  padding-left: 8px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item a {
    padding: 10px 10px;
    display: block;
  }
  .navbar-one .navbar .navbar-nav .nav-item a::before {
    border-radius: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item {
    margin-bottom: 5px;
  }
  .navbar-one .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  box-shadow: var(--shadow-4);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
    border-radius: 5px !important;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-weight: 500;
  position: relative;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
  text-transform: capitalize;
  border-radius: 5px;
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background-color: var(--primary-dark);
    color: var(--white);
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    color: var(--primary-dark);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
    color: var(--white);
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
    height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.navbar-one .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
  .mobile-btn:hover, .mobile-btn:active, .mobile-btn:focus {
	background: unset;
  }
  .mobile-btn {
	text-align: left;
	box-shadow: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-one .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 3px;
  }
}
@media (max-width: 767px) {
  .navbar-one .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 3px;
  }
}
.navbar-one .navbar .navbar-btn ul {

}
.navbar-one .navbar .navbar-btn ul li {
  display: inline-block;
  margin-right: 12px;
}
.navbar-one .navbar .navbar-btn ul li a {
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn:hover {
  background-color: transparent;
  color: var(--white);
}


/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding:100px 0 100px 0;
  background: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 130px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-eight {
    padding: 100px 0 60px 0;
  }
}
.header-eight .header-image img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-image {
    margin-top: 40px;
  }
}
.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}
.header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1  {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .header-eight .header-content h1  {
    font-size: 30px;
    line-height: 42px;
  }
}
.header-eight .header-content h1 span {
  display: block;
}
.header-eight .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.7;
}
.header-eight .button {
  margin-top: 40px;
}
.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}
.header-eight .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}
.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}
.header-eight .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

/*===========================
  about-05 css
===========================*/
.about-five {
  background-color: var(--light-3);
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five {
    padding-top: 100px;
    padding-bottom:70px;
  }
}
@media (max-width: 767px) {
  .about-five {
    padding-top: 80px;
    padding-bottom:60px;
  }
}
.about-five-content{
  padding-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about-five-content {
    padding-left: 0;
  }
}
.about-five-content .small-title {
  position: relative;
  padding-left: 30px;
}
.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}
.about-five-content .main-title {
  margin-top: 20px;
}
.about-five-content .about-five-tab {
  margin-top: 40px;
}
.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}
.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}
.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin-right: 20px;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }
}
.about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
}
.about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}
.about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}
.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 30px;
}
.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}
.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .about-image-five {
    margin-bottom: 60px;
    padding-left: 0;
  }
}
.about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .about-image-five::before {
    display: none;
  }
}
.about-image-five img {
  width: 100%;
  z-index: 2;
}


/*===========================
  services css 
===========================*/
.services-eight {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight {
    padding: 80px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .services-eight {
    padding: 60px 0 30px 0;
  }
}
.services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-eight .single-services:hover {
  box-shadow: var(--shadow-4);
}
.services-eight .single-services:hover .service-icon {
  color: var(--white);
  border-color: transparent;
  background: var(--primary);
}
.services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}
.services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
.services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}
.services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.services-eight .single-services .service-content p {
  color: var(--dark-3);
}



/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}
.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}
.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}
.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}
.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-one .video-content img {
  border-radius: 8px;
}
.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}
.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}

/*===== portfolio THREE =====*/
.portfolio-three {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-three {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .portfolio-three {
    padding: 60px 0;
  }
}
.portfolio-three .portfolio-menu {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-three .portfolio-menu {
    margin-bottom: 15px;
  }
}
.portfolio-three .portfolio-menu button {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  margin: 0 2px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}
@media (max-width: 767px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}
.portfolio-three .portfolio-menu button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}
.portfolio-three .portfolio-menu button:hover, .portfolio-three .portfolio-menu button.active {
  color: var(--primary);
}
.portfolio-three .portfolio-menu button:hover::before, .portfolio-three .portfolio-menu button.active::before {
  opacity: 1;
}
.portfolio-three .hide {
  display: none;
}
.portfolio-three .show {
  display: block;
}

.portfolio-style-three {
  margin-top: 30px;
}
.portfolio-style-three .portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.portfolio-style-three .portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-three .portfolio-image .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  border-radius: 8px;
}
.portfolio-style-three .portfolio-image .portfolio-content {
  padding: 16px;
}
.portfolio-style-three .portfolio-image .portfolio-icon {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
.portfolio-style-three .portfolio-image .portfolio-icon a {
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 5;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--primary);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-three .portfolio-image .portfolio-icon a:hover {
  background-color: var(--primary-dark);
}
.portfolio-style-three .portfolio-text {
  padding-top: 16px;
}
.portfolio-style-three .portfolio-title a {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}
.portfolio-style-three .text {
  color: var(--black);
  margin-top: 8px;
}
.portfolio-style-three:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}


/* ===== Buttons Css ===== */
.pricing-style-fifteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-fifteen .active.primary-btn, .pricing-style-fifteen .primary-btn:hover, .pricing-style-fifteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/* ===== Buttons Css ===== */
.pricing-style-fourteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-fourteen .active.primary-btn, .pricing-style-fourteen .primary-btn:hover, .pricing-style-fourteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.pricing-style-fourteen .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.pricing-style-fourteen .active.primary-btn-outline, .pricing-style-fourteen .primary-btn-outline:hover, .pricing-style-fourteen .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.pricing-style-fourteen .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 100px 0;
  background-color: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}
.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}
.pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}
.pricing-style-fourteen .table-head p {
  color: var(--dark-3);
}
.pricing-style-fourteen .price {
  padding-top: 30px;
}
.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}
.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}
.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}
.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}
.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}
.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}


/*===========================
  teams css 
===========================*/
.team-area {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .team-area {
    padding: 60px 0;
  }
}
.team-style-six {
  position: relative;
  box-shadow: var(--shadow-2);
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-six {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .team-style-six {
    margin-top: 30px;
  }
}
.team-style-six .team-image img {
  width: 100%;
}
.team-style-six .team-content {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .team-style-six .team-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.team-style-six .team-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}
.team-style-six .team-content .team-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .team-style-six .team-content .team-name {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-style-six .team-content .team-name {
    font-size: 20px;
  }
}
.team-style-six .team-content .sub-title {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .team-style-six .team-content .sub-title {
    font-size: 14px;
  }
}
.team-style-six .team-content .team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
}
.team-style-six .team-content .team-social .social {
  background-color: var(--white);
  display: inline-block;
  padding: 10px 20px 6px;
  border-radius: 50px;
}
.team-style-six .team-content .team-social .social li {
  display: inline-block;
  margin: 0 8px;
}
.team-style-six .team-content .team-social .social li a {
  font-size: 16px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.team-style-six .team-content .team-social .social li a:hover {
  color: var(--primary);
}
.team-style-six:hover .team-content {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .team-style-six:hover .team-content {
    padding-top: 35px;
  }
}
.team-style-six:hover .team-content::before {
  opacity: 1;
}
.team-style-six:hover .team-content .team-social {
  top: -20px;
  visibility: visible;
  opacity: 1;
}
.team-style-six:hover .team-content .team-name {
  color: var(--white);
}
.team-style-six:hover .team-content .sub-title {
  color: var(--white);
}

/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .call-action {
    padding: 60px 0;
  }
}
.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.call-action .inner-content {
  text-align: center;
}
.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}
.call-action .inner-content p {
  color: var(--white);
}
.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}


/*===== TESTIMONIAL STYLE FOUR =====*/
.testimonial-5 {
  background-color: var(--light-3);
  position: relative;
  padding-bottom: 160px;
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-5 {
    padding-bottom: 160px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .testimonial-5 {
    padding-bottom: 160px;
    padding-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-5 {
    padding-bottom: 120px;
  }
}
.testimonial-5 .testimonial-slider {
  margin: 0;
}
.testimonial-5 .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 90px;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  z-index: 9;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-5 .tns-nav {
    bottom: 70px;
  }
}
.testimonial-5 .tns-nav button {
  height: 6px;
  width: 14px;
  background-color: var(--primary);
  opacity: 0.3;
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0px 5px;
  transition: all 0.4s ease;
}
.testimonial-5 .tns-nav button.tns-nav-active {
  width: 25px;
  opacity: 1;
}
.testimonial-5 .single-testimonial {
  background-color: var(--white);
  padding: 70px 50px;
  transition: all 0.4s ease;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .testimonial-5 .single-testimonial {
    padding: 50px 40px;
  }
}
.testimonial-5 .single-testimonial .shape1 {
  position: absolute;
  left: 40px;
  top: 0;
}
.testimonial-5 .single-testimonial .shape2 {
  position: absolute;
  right: -20px;
  bottom: -20px;
}
.testimonial-5 .single-testimonial .inner-content {
  position: relative;
  z-index: 0;
}
.testimonial-5 .single-testimonial .qote-icon {
  font-size: 70px;
  color: var(--light-2);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.testimonial-5 .single-testimonial .text {
  font-weight: 500;
  line-height: 28px;
  color: var(--dark-3);
}
.testimonial-5 .single-testimonial .author {
  position: relative;
  padding-left: 70px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.testimonial-5 .single-testimonial .author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonial-5 .single-testimonial .author h4 {
  font-size: 18px;
  color: var(--dark-1);
  margin-top: 10px;
  padding-left: 20px;
}
.testimonial-5 .single-testimonial .author h4 span {
  color: var(--dark-3);
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

/*===== latest-news-area =====*/
.latest-news-area {
  background: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%) !important;
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}
.latest-news-area .single-news {
  margin-top: 30px;
}
.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.latest-news-area .single-news .image img {
    height: 100%;
    width: 100%;
    transition: all 0.4s ease;
    padding: 100px 40px;
    background: var(--primary);
}
.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}
.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}
.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}
.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}


/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
  background: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}
.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}
.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form-wrapper .contact-form .active.primary-btn, .contact-form-wrapper .contact-form .primary-btn:hover, .contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
.contact-section {
  position: relative;
  z-index: 3;
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding-top: 60px;
  }
}
.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-form-wrapper:hover {
  box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-wrapper {
    margin-left: 30px;
  }
}
.contact-form-wrapper .section-title {
  margin-bottom: 30px;
}
.contact-form-wrapper .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}
.contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
}
.contact-form-wrapper .section-title p {
  color: var(--dark-3);
}
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}
.map-style-9 {
  margin-top: -130px;
}

/*======================================
	Footer CSS
========================================*/
.footer-thirteen {
  z-index: 2;
  position: relative;
  background: var(--primary);
}
.footer-thirteen::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/footer/saas-overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.footer-thirteen .logo {
  margin-bottom: 26px;
}
.footer-thirteen .f-about {
  padding-right: 85px;
}
@media (max-width: 767px) {
  .footer-thirteen .f-about {
    padding: 0;
  }
}
.footer-thirteen .f-about p {
  color: var(--white);
}
.footer-thirteen .footer-social {
  margin-top: 30px;
}
.footer-thirteen .footer-social li {
  display: inline-block;
  margin-right: 10px;
}
.footer-thirteen .footer-social li:last-child {
  margin-right: 0;
}
.footer-thirteen .footer-social a {
  font-size: 16px;
  display: block;
  background: transparent;
  border: none;
  color: var(--white);
  position: relative;
  z-index: 3;
  height: 38px;
  width: 38px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.452);
  text-align: center;
  line-height: 38px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-thirteen .footer-social a:hover {
  color: var(--primary);
  background-color: var(--white);
  border-color: transparent;
}
.footer-thirteen .footer-middle {
  padding-bottom: 100px;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .footer-thirteen .footer-middle {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.footer-thirteen .footer-widget {
  margin-top: 30px;
}
.footer-thirteen .footer-widget h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.footer-thirteen .f-link li {
  margin-bottom: 18px;
  position: relative;
}
.footer-thirteen .f-link li:last-child {
  margin: 0;
}
.footer-thirteen .f-link a {
  display: inline-block;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.footer-thirteen .f-link a:hover {
  opacity: 0.7;
}
.footer-thirteen .f-contact ul {
  margin-top: 20px;
}
.footer-thirteen .f-contact li {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  padding-left: 35px;
}
.footer-thirteen .f-contact li i {
  display: inline-block;
  font-size: 18px;
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}
.footer-thirteen .f-contact li:last-child {
  margin: 0;
}
.footer-thirteen .footer-bottom {
  padding: 30px 0;
  background-color: transparent;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.footer-thirteen .footer-bottom .inner {
  text-align: center;
}
.footer-thirteen .footer-bottom .inner p {
  color: var(--white);
}
.footer-thirteen .footer-bottom .inner a {
  font-weight: 400;
  display: inline-block;
  margin-left: 6px;
  color: var(--white);
}
.footer-thirteen .footer-bottom .inner a:hover {
  text-decoration: underline;
}

/* ===== Buttons Css ===== */
.contact-form .single-form .input-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form .single-form .input-form .active.primary-btn, .contact-form .single-form .input-form .primary-btn:hover, .contact-form .single-form .input-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-form .single-form .input-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    contact-01 css 
===========================*/
.contact-area {
  padding-top: 50px;
  padding-bottom: 100px;
}
.contact-area .mt-15 {
  margin-top: 15px;
}
.contact-area .section-title .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 55px;
}
@media (max-width: 767px) {
  .contact-area .section-title .title {
    font-size: 24px;
    line-height: 35px;
  }
}

.contact-form .single-form label {
  font-size: 12px;
  color: var(--dark-2);
  line-height: 18px;
  margin-left: 44px;
}
.contact-form .single-form .input-form {
  position: relative;
}
.contact-form .single-form .input-form i {
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--dark-3);
}
.contact-form .single-form .input-form textarea, .contact-form .single-form .input-form input {
  width: 100%;
  height: 44px;
  padding-left: 45px;
  padding-right: 30px;
  color: var(--dark-3);
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid var(--gray-4);
  font-weight: 500;
}
.contact-form .single-form .input-form textarea::placeholder, .contact-form .single-form .input-form input::placeholder {
  opacity: 1;
  color: var(--dark-3);
}
.contact-form .single-form .input-form textarea {
  padding-top: 10px;
}
.form-input .help-block {
  margin-top: 2px;
}
.form-input .help-block .list-unstyled li {
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
}
.form-input label {
  font-size: 12px;
  line-height: 18px;
  color: var(--dark-3);
  margin-bottom: 8px;
  display: inline-block;
}
.form-input .input-items {
  position: relative;
}
.form-input .input-items input, .form-input .input-items textarea {
  width: 100%;
  height: 44px;
  border: 2px solid;
  padding-left: 44px;
  padding-right: 12px;
  position: relative;
  font-size: 16px;
}
.form-input .input-items textarea {
  padding-top: 8px;
  height: 130px;
  resize: none;
}
.form-input .input-items i {
  position: absolute;
  top: 11px;
  left: 13px;
  font-size: 20px;
  z-index: 9;
}
.form-input .input-items.default input, .form-input .input-items.default textarea {
  border-color: var(--gray-4);
  color: var(--dark-3);
}
.form-input .input-items.default input:focus, .form-input .input-items.default textarea:focus {
  border-color: var(--primary);
}
.form-input .input-items.default input::placeholder, .form-input .input-items.default textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.default i {
  color: var(--dark-3);
}
.form-input .input-items.active input, .form-input .input-items.active textarea {
  border-color: var(--primary-dark);
  color: var(--black);
}
.form-input .input-items.active input::placeholder, .form-input .input-items.active textarea::placeholder {
  color: var(--black);
  opacity: 1;
}
.form-input .input-items.active i {
  color: var(--primary-dark);
}
.form-input .input-items.error input, .form-input .input-items.error textarea {
  border-color: var(--error);
  color: var(--error);
}
.form-input .input-items.error input::placeholder, .form-input .input-items.error textarea::placeholder {
  color: var(--error);
  opacity: 1;
}
.form-input .input-items.error i {
  color: var(--error);
}
.form-input .input-items.success input, .form-input .input-items.success textarea {
  border-color: var(--success);
  color: var(--success);
}
.form-input .input-items.success input::placeholder, .form-input .input-items.success textarea::placeholder {
  color: var(--success);
  opacity: 1;
}
.form-input .input-items.success i {
  color: var(--success);
}
.form-input .input-items.disabled input, .form-input .input-items.disabled textarea {
  border-color: var(--dark-2);
  color: var(--dark-3);
  background: none;
}
.form-input .input-items.disabled input::placeholder, .form-input .input-items.disabled textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.disabled i {
  color: var(--dark-3);
}

.form-style-four .form-input label {
  padding-left: 44px;
  margin-bottom: 0;
}
.form-style-four .form-input .input-items input, .form-style-four .form-input .input-items textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.contact-info ul li .single-info {
  position: relative;
  margin-top: 19px;
}
.contact-info ul li .single-info .info-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.contact-info ul li .single-info .info-icon i {
  color: var(--dark-3);
  font-size: 18px;
  line-height: 24px;
}
.contact-info ul li .single-info .info-content {
  padding-left: 30px;
}
.contact-info ul li .single-info .info-content .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  font-weight: 500;
}
.contact-info .social li {
  display: inline-block;
  margin-right: 12px;
}
.contact-info .social li a {
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.096);
  text-align: center;
  border-radius: 5px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-info .social li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--light-3);
  padding: 120px 0;
}
.latest-news-area .section-title-three {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .latest-news-area .section-title-three {
    margin-bottom: 35px;
  }
}
.latest-news-area .section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .latest-news-area .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.latest-news-area .section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .latest-news-area .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.latest-news-area .section-title-three p {
  color: var(--dark-3);
}
.latest-news-area .single-news {
  margin-top: 30px;
}
.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}
.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}
.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}
.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}

/* ===== Buttons Css ===== */
.header-four .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-four .active.primary-btn, .header-four .primary-btn:hover, .header-four .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-four .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== HEADER FOUR =====*/
.header-four {
  position: relative;
}
.header-four .header-content-area {
  background: -webkit-linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
}
.header-four .header-content {
  padding-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-four .header-content {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .header-four .header-content {
    padding-top: 120px;
  }
}
.header-four .header-title {
  font-size: 44px;
  line-height: 55px;
  color: var(--black);
  font-weight: 600;
}
@media (max-width: 767px) {
  .header-four .header-title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-four .header-title {
    font-size: 36px;
    line-height: 45px;
  }
}
.header-four .text {
  color: var(--dark-3);
  margin-top: 8px;
}
.header-four .header-newsletter {
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
.header-four .header-newsletter i {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 24px;
  color: var(--primary);
}
.header-four .header-newsletter input {
  width: 100%;
  height: 48px;
  padding-left: 60px;
  padding-right: 30px;
  border-radius: 50px;
  border: 2px solid var(--light-3);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-3);
  padding-right: 170px;
}
.header-four .header-newsletter input:focus {
  border-color: var(--primary);
}
.header-four .header-newsletter .header-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.header-four .header-image {
  text-align: center;
  padding-top: 80px;
}
.header-four .header-image img {
  max-width: 700px;
}
@media (max-width: 767px) {
  .header-four .header-image {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-four .header-image {
    padding-top: 50px;
  }
}
.header-four .header-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .header-four .header-image img {
    object-fit: cover;
    object-position: center;
  }
}

/*===========================
  ALERTS css 
===========================*/
.alerts-title .title {
  font-size: 36px;
  line-height: 45px;
  color: var(--dark-3);
}
@media (max-width: 767px) {
  .alerts-title .title {
    font-size: 24px;
    line-height: 35px;
  }
}

/* Labels CSS */
.label {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid transparent;
  background: transparent;
}
.label.rounded-full {
  border-radius: 50px;
  padding: 4px 12px;
}
.label.icon-left i {
  padding-right: 6px;
}
.label.icon-right i {
  padding-left: 6px;
}
.label.primary-label {
  background: var(--primary);
  color: var(--white);
}
.label.primary-label-outline {
  color: var(--primary);
  border-color: var(--primary);
}
.label.success-label {
  background: var(--success);
  color: var(--white);
}
.label.success-label-outline {
  color: var(--success);
  border-color: var(--success);
}
.label.info-label {
  background: var(--info);
  color: var(--white);
}
.label.info-label-outline {
  color: var(--info);
  border-color: var(--info);
}
.label.caution-label {
  background: var(--caution);
  color: var(--white);
}
.label.caution-label-outline {
  color: var(--caution);
  border-color: var(--caution);
}
.label.error-label {
  background: var(--error);
  color: var(--white);
}
.label.error-label-outline {
  color: var(--error);
  border-color: var(--error);
}
.label.accent-label {
  background: var(--accent);
  color: var(--white);
}
.label.accent-label-outline {
  color: var(--accent);
  border-color: var(--accent);
}
.label.secondary-label {
  background: var(--secondary);
  color: var(--white);
}
.label.secondary-label-outline {
  color: var(--secondary);
  border-color: var(--secondary);
}

/* Alerts CSS */
.alert {
  padding: 32px;
  padding-left: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.alert.alert-dismissible {
  padding: 12px 48px 12px 0;
}
.alert.alert-dismissible .alert-icon {
  padding: 0px 12px 0 36px;
  line-height: 1;
}
.alert.alert-dismissible .alert-message h5 {
  margin-bottom: 0px;
}
.alert.alert-dismissible .btn-close {
  background: none;
  padding: 1rem;
}
.alert.alert-dismissible .btn-close:focus-within, .alert.alert-dismissible .btn-close:focus {
  box-shadow: none;
}
.alert.alert-dismissible .btn-close.dark i {
  color: var(--black);
}
.alert.alert-dismissible .btn-close i {
  color: var(--white);
  font-weight: 700;
}
.alert .alert-icon {
  padding: 32px;
}
.alert .alert-icon i {
  font-size: 20px;
  font-weight: 700;
}
.alert .alert-message h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.alert .alert-message p {
  color: var(--black);
  opacity: 0.88;
}
.alert.alert-primary-light {
  background: var(--primary-light);
}
.alert.alert-primary-light::before {
  background: var(--primary);
}
.alert.alert-primary-light .alert-icon {
  color: var(--primary);
}
.alert.alert-primary {
  background: var(--primary);
}
.alert.alert-primary::before {
  background: var(--primary-dark);
}
.alert.alert-primary .alert-icon {
  color: var(--white);
}
.alert.alert-primary .alert-message h5 {
  color: var(--white);
}
.alert.alert-primary .alert-message p {
  color: var(--white);
}
.alert.alert-accent-light {
  background: var(--accent-light);
}
.alert.alert-accent-light::before {
  background: var(--accent);
}
.alert.alert-accent-light .alert-icon {
  color: var(--accent);
}
.alert.alert-accent {
  background: var(--accent);
}
.alert.alert-accent::before {
  background: var(--accent-dark);
}
.alert.alert-accent .alert-icon {
  color: var(--white);
}
.alert.alert-accent .alert-message h5 {
  color: var(--white);
}
.alert.alert-accent .alert-message p {
  color: var(--white);
}
.alert.alert-secondary-light {
  background: var(--secondary-light);
}
.alert.alert-secondary-light::before {
  background: var(--secondary);
}
.alert.alert-secondary-light .alert-icon {
  color: var(--secondary);
}
.alert.alert-secondary {
  background: var(--secondary);
}
.alert.alert-secondary::before {
  background: var(--secondary-dark);
}
.alert.alert-secondary .alert-icon {
  color: var(--white);
}
.alert.alert-secondary .alert-message h5 {
  color: var(--white);
}
.alert.alert-secondary .alert-message p {
  color: var(--white);
}
.alert.alert-success-light {
  background: var(--success-light);
}
.alert.alert-success-light::before {
  background: var(--success);
}
.alert.alert-success-light .alert-icon {
  color: var(--success);
}
.alert.alert-success {
  background: var(--success);
}
.alert.alert-success::before {
  background: var(--success-dark);
}
.alert.alert-success .alert-icon {
  color: var(--white);
}
.alert.alert-success .alert-message h5 {
  color: var(--white);
}
.alert.alert-success .alert-message p {
  color: var(--white);
}
.alert.alert-info-light {
  background: var(--info-light);
}
.alert.alert-info-light::before {
  background: var(--info);
}
.alert.alert-info-light .alert-icon {
  color: var(--info);
}
.alert.alert-info {
  background: var(--info);
}
.alert.alert-info::before {
  background: var(--info-dark);
}
.alert.alert-info .alert-icon {
  color: var(--white);
}
.alert.alert-info .alert-message h5 {
  color: var(--white);
}
.alert.alert-info .alert-message p {
  color: var(--white);
}
.alert.alert-caution-light {
  background: var(--caution-light);
}
.alert.alert-caution-light::before {
  background: var(--caution);
}
.alert.alert-caution-light .alert-icon {
  color: var(--caution);
}
.alert.alert-caution {
  background: var(--caution);
}
.alert.alert-caution::before {
  background: var(--caution-dark);
}
.alert.alert-caution .alert-icon {
  color: var(--white);
}
.alert.alert-caution .alert-message h5 {
  color: var(--white);
}
.alert.alert-caution .alert-message p {
  color: var(--white);
}
.alert.alert-error-light {
  background: var(--error-light);
}
.alert.alert-error-light::before {
  background: var(--error);
}
.alert.alert-error-light .alert-icon {
  color: var(--error);
}
.alert.alert-error {
  background: var(--error);
}
.alert.alert-error::before {
  background: var(--error-dark);
}
.alert.alert-error .alert-icon {
  color: var(--white);
}
.alert.alert-error .alert-message h5 {
  color: var(--white);
}
.alert.alert-error .alert-message p {
  color: var(--white);
}
.alert.alert-dark-light {
  background: var(--light-3);
}
.alert.alert-dark-light::before {
  background: var(--dark-1);
}
.alert.alert-dark-light .alert-icon {
  color: var(--dark);
}
.alert.alert-dark {
  background: var(--dark-3);
}
.alert.alert-dark::before {
  background: var(--dark-1);
}
.alert.alert-dark .alert-icon {
  color: var(--white);
}
.alert.alert-dark .alert-message h5 {
  color: var(--white);
}
.alert.alert-dark .alert-message p {
  color: var(--white);
}

/* ======= Switch Buttons ========== */
.switch-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.switch-buttons > * {
  margin-right: 30px;
  margin-bottom: 30px;
}

.switch-btn {
  width: 54px;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.switch-btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.switch-btn input:checked ~ .switch-body .slide .inactive-icon {
  display: flex;
}
.switch-btn input:checked ~ .switch-body .slide {
  right: auto;
  left: 2px;
}
.switch-btn input:checked ~ .switch-body .slide .active-icon {
  display: none;
}
.switch-btn .slide {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2px;
  top: 2px;
  transition: all 0.3s;
}
.switch-btn .slide .icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 4px;
}
.switch-btn .slide .inactive-icon {
  display: none;
  background: #e0e0e0;
  color: var(--dark-3);
}
.switch-btn .slide .active-icon {
  background: var(--primary);
}
.switch-btn .switch-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fafafa;
  box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
  border-radius: 24px;
}

.switch-btn-text {
  width: auto;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.switch-btn-text input:checked ~ .switch-body .slide-text .active {
  display: none;
}
.switch-btn-text input:checked ~ .switch-body .slide-text .inactive {
  display: flex;
}
.switch-btn-text input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.switch-btn-text input:checked ~ .switch-body .slide .inactive-icon {
  display: flex;
}
.switch-btn-text input:checked ~ .switch-body .slide {
  right: auto;
  left: 2px;
}
.switch-btn-text input:checked ~ .switch-body .slide .active-icon {
  display: none;
}
.switch-btn-text .switch-body .slide-text .inactive {
  display: none;
  padding-left: 36px;
  padding-right: 6px;
  color: var(--dark-3);
}
.switch-btn-text .slide-text .text {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.switch-btn-text .switch-body .slide-text .active {
  padding-right: 36px;
  padding-left: 6px;
  color: var(--primary);
}
.switch-btn-text .slide {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2px;
  top: 2px;
  transition: all 0.3s;
}
.switch-btn-text .slide .icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 4px;
}
.switch-btn-text .slide .inactive-icon {
  display: none;
  background: #e0e0e0;
  color: var(--dark-3);
}
.switch-btn-text .slide .active-icon {
  background: var(--primary);
}
.switch-btn-text .switch-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fafafa;
  box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
  border-radius: 24px;
}

.switch-btn-secondary .slide .active-icon {
  background: var(--secondary);
}

.switch-btn-text-secondary .switch-body .slide-text .active {
  color: var(--secondary);
}
.switch-btn-text-secondary .slide .active-icon {
  background: var(--secondary);
}

.switch-btn-success .slide .active-icon {
  background: var(--success);
}

.switch-btn-text-success .switch-body .slide-text .active {
  color: var(--success);
}
.switch-btn-text-success .slide .active-icon {
  background: var(--success);
}

.switch-btn-error .slide .active-icon {
  background: var(--error);
}

.switch-btn-text-error .switch-body .slide-text .active {
  color: var(--error);
}
.switch-btn-text-error .slide .active-icon {
  background: var(--error);
}

/* ===== Buttons Css ===== */
.signin-area-five .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.signin-area-five .active.primary-btn, .signin-area-five .primary-btn:hover, .signin-area-five .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.signin-area-five .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.signin-area-five .error-btn {
  background: var(--error);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.signin-area-five .active.error-btn, .signin-area-five .error-btn:hover, .signin-area-five .error-btn:focus {
  background: var(--error-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.signin-area-five .deactive.error-btn {
  background: var(--error-light);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    SING IN SING UP css 
===========================*/
.input-group-text { 
	background: transparent;
}
input {
	box-shadow: none !important; /* Globally disable box-shadow */
}
.btn-reveal-pw {
    border: 1px solid #ced4da;
	line-height: 0px;
}

.counter-style .counter-five {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  padding: 23px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: var(--primary);
  margin: 5px;
}
.counter-style .counter-five .counter-icon {
  margin-bottom: 5px;
}
.counter-style .counter-five .counter-icon i {
  font-size: 66px;
  line-height: 60px;
  color: var(--white);
}
.counter-style .counter-five .counter-content {
  padding-left: 11px;
}
.counter-style .counter-five .counter-content .count {
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
  color: var(--white);
  margin-bottom: 4px;
}
.counter-style .counter-five .counter-content .text {
  font-size: 16px;
  color: var(--white);
}

/* SIDEBAR & GLOBAL BG */
#main-body { 
	background: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
}

.text-primary {
	color: var(--primary) !important;
}

.badge-info {
    background-color: var(--primary);
}

.fas {
	font-weight: 300;
}

.card-sidebar .card-header:first-child {
    border-top-left-radius: 20px;
    border-color: var(--primary);
    background: transparent;
    padding: 18px 10px;
}

.card-title {
    font-weight: 300;
    color: var(--primary);
}

.card-sidebar .card-header .card-title {
    color: var(--primary);
    font-weight: 400;
}

.sidebar .list-group-item {
    background: transparent;
    color: var(--primary);
}

.card-body { color: var(--primary); }



.card-sidebar { background: transparent; border: 0px; }


.card-sidebar .card-footer:last-child {
    background: transparent;
}

.card-sidebar .card-footer:last-child a {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #ffffff;
}
.card-footer { background: transparent; }

.card { border-radius: 10px !important; border: 0px; }

.card-header { background-color: transparent !important; }

.sidebar .list-group-item.active, .sidebar .list-group-item.active:focus, .sidebar .list-group-item.active:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 2px;
    border: 0px;
}

.alert { text-align: center; }

form[action="domainchecker.php"] .input-group .input-group-btn .btn:first-child, form[action="domainchecker.php"] .input-group .input-group-btn .btn:first-child:hover {
    background: var(--primary) !important;
    color: #ffffff;
}

form[action="domainchecker.php"] .input-group input {
    height: 44px;
    margin-top: 10px;
}

table {
    background: #ffffff;
    border: 0px !important;
    border-radius: 10px !important;
}

thead tr th {
    background: transparent !important;
    border: 0px !important;
}

tbody tr td {
    background: transparent;
    border: 0px;
}

.dataTables_wrapper .dataTables_filter label .form-control {
    border: 0px;
    border-radius: 10px;
}

.domain-pricing .tld-pricing-header .col-xs-4 {
    border: 0px !important;
    background: transparent;
    background-color: transparent;
}


.tld-pricing-header {

        border-color: #369;
    background-color: var(--primary) !important;
    color: #ffffff;
    border-radius: 10px;
}

.domain-pricing .tld-pricing-header div:nth-child(odd) {
    border-color: #369;
    background-color: transparent !important;
}

.domain-pricing .tld-pricing-header .col-sm-2, .domain-pricing .tld-pricing-header .col-sm-4, .domain-pricing .tld-pricing-header .col-xs-2, .domain-pricing .tld-pricing-header .col-xs-4 {
    background-color: var(--primary) !important;
 
}

.domain-promo-box {
    background: #ffffff;
    border: 0px;
    border-radius: 10px;
}

.sidebar-menu-item-badge .badge {
    background: var(--primary) !important;
    color: #ffffff !important;
}

/* Hide mobile nav buttons on screens larger than 992px */
@media (min-width: 992px) {
    .navbar-nav.d-lg-none {
        display: none !important;
    }
}

/* Show desktop nav buttons on screens larger than 992px */
@media (max-width: 992px) {
    .navbar-btn.d-lg-inline-block {
        display: none !important;
    }
}

/*======================================
    header Area CSS
========================================*/
.header-ten {
  position: relative;
  background: var(--light-2);
  overflow: hidden;
  padding: 100px 0 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-ten {
    padding: 150px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-ten {
    padding: 130px 0 60px 0;
  }
}
.header-ten .header-inner {
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
}
.header-ten .header-text {
  float: none;
}
.header-ten .header-text h6 {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
.header-ten .header-text h1 {
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--black);
  letter-spacing: -1px;
}
.header-ten .header-text p {
  color: var(--dark-3);
}
.header-ten .header-text .light-rounded-buttons {
  margin-top: 30px;
}
.header-ten .header-image {
  float: right;
  height: 500px;
  width: 500px;
  display: block;
  border-radius: 50%;
  background-image: url("../assets/images/header/04.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-ten .header-image {
    display: none;
  }
}
.header-ten .header-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url("../assets/images/header/shape2.png");
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
  z-index: -1;
  background-size: contain;
  background-position: center;
}
.header-ten .header-image .shape3 {
  position: absolute;
  bottom: 35px;
  right: 60px;
  z-index: -1;
}
.header-ten .verticle-lines .vlines {
  width: 3px;
  height: 100%;
  background: #473bf036;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-name: lineanim;
  animation-name: lineanim;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  opacity: 0.2;
}
.header-ten .verticle-lines .vlines.vlines.one {
  left: 20%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.header-ten .verticle-lines .vlines.vlines.two {
  left: 40%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.header-ten .verticle-lines .vlines.vlines.three {
  left: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.header-ten .verticle-lines .vlines.vlines.four {
  left: 80%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}
@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

/* ===== Buttons Css ===== */
.services-seven .single-service .light-rounded-buttons .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.services-seven .single-service .light-rounded-buttons .active.primary-btn, .services-seven .single-service .light-rounded-buttons .primary-btn:hover, .services-seven .single-service .light-rounded-buttons .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.services-seven .single-service .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
  services css 
===========================*/
.services-seven {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  /* Section Title Six */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-seven {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .services-seven {
    padding: 60px 0 60px 0;
  }
}
.services-seven .single-service {
  position: relative;
  text-align: left;
  padding: 50px;
  box-shadow: var(--shadow-2);
  border-radius: 5px;
  border: 1px solid var(--light-3);
  background-color: var(--white);
  overflow: hidden;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-seven .single-service {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .services-seven .single-service {
    padding: 35px;
  }
}
.services-seven .single-service::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s ease-in-out;
}
.services-seven .single-service:hover {
  box-shadow: var(--shadow-4);
}
.services-seven .single-service:hover::before {
  width: 100%;
}
.services-seven .single-service .serial {
  font-size: 45px;
  display: block;
  margin-bottom: 7px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--primary);
  font-weight: 800;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-seven .single-service:hover .serial {
  -webkit-text-stroke-color: transparent;
  -webkit-text-fill-color: var(--primary);
}
.services-seven .single-service h3 {
  color: var(--black);
  font-weight: 600;
}
.services-seven .single-service p {
  color: var(--dark-3);
  margin-top: 25px;
}
.services-seven .single-service .light-rounded-buttons {
  margin-top: 25px;
}

/*===========================
  about-03 css
===========================*/
.about-three {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-three {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .about-three {
    padding: 60px 0 60px 0;
  }
}
.about-feature-three .about-feature-image img {
  width: 100%;
  border-radius: 5px;
}

.about-feature-items-three {
  padding-left: 50px;
  padding-right: 100px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-feature-items-three {
    padding: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .about-feature-items-three {
    padding: 0;
    margin-top: 30px;
  }
}
.about-feature-items-three ul li {
  position: relative;
  margin-bottom: 40px;
}
.about-feature-items-three ul li:last-child {
  margin: 0;
}
.about-feature-items-three ul li span {
  max-width: 45px;
  min-width: 45px;
  max-height: 45px;
  min-height: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.about-feature-items-three ul li .content {
  display: inline-block;
  padding-left: 70px;
}
.about-feature-items-three ul li .content .list-title {
  margin-bottom: 10px;
}

/*===== VIDEO TWO =====*/
.video-two {
  background-color: var(--primary);
  position: relative;
  z-index: 9;
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .video-two {
    padding-top: 60px;
  }
}
.video-two .section-title {
  margin-bottom: 140px;
  padding: 0 265px;
}
.video-two .section-title span {
  font-weight: 600;
}
.video-two .section-title h2 {
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .section-title {
    padding: 0 50px;
    margin-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .video-two .section-title {
    padding: 0 30px;
    margin-bottom: 100px;
  }
  .video-two .section-title h2 {
    font-size: 20px;
  }
}
.video-two .section-title span {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
}
@media (max-width: 767px) {
  .video-two .section-title span {
    margin-bottom: 10px;
  }
}
.video-two .section-title p {
  margin-top: 15px;
}
.video-two::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 200px;
  width: 100%;
  background-color: var(--white);
  z-index: -1;
}
.video-two .inner-content-head {
  padding: 30px;
  border: 1px solid #eeeeee40;
  border-radius: 30px;
  background: #ffffff24;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content-head {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content-head {
    padding: 0;
    border: none;
  }
}
.video-two .inner-content {
  background-color: var(--white);
  padding: 100px 0;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.09);
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content {
    padding: 50px 30px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content {
    padding: 50px 0;
  }
}
.video-two .inner-content .shape1 {
  height: 120px;
  width: 120px;
  position: absolute;
  right: -60px;
  bottom: 58px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content .shape1 {
    width: 90px;
    height: 80px;
    right: -50px;
    bottom: 90px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content .shape1 {
    width: 80px;
    height: 80px;
    right: -50px;
    bottom: 20px;
  }
}
.video-two .inner-content .shape2 {
  width: 30px;
  position: absolute;
  left: 20px;
  top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content .shape2 {
    width: 25px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content .shape2 {
    width: 20px;
  }
}
.video-two .intro-video-play {
  position: relative;
  z-index: 9;
}
.video-two .intro-video-play .play-thumb a {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 83px;
  background: var(--primary);
  border-radius: 50%;
  padding-left: 5px;
  font-size: 22px;
  color: var(--white);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.video-two .intro-video-play .play-thumb a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid var(--primary);
  border-radius: 50%;
  -webkit-animation: pulse-border-2 1.5s linear infinite;
  -moz-animation: pulse-border-2 1.5s linear infinite;
  -o-animation: pulse-border-2 1.5s linear infinite;
  animation: pulse-border-2 1.5s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .intro-video-play .play-thumb a {
    height: 70px;
    width: 70px;
    font-size: 20px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .video-two .intro-video-play .play-thumb a {
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}
.video-two .intro-video-play .play-thumb a:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}
@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== Buttons Css ===== */
.pricing-style-fifteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-fifteen .active.primary-btn, .pricing-style-fifteen .primary-btn:hover, .pricing-style-fifteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== PRICING THIRTEEN =====*/
.pricing-fifteen {
  padding: 100px 0;
  /* Section Title Five */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen {
    padding: 60px 0 60px 0;
  }
}
.pricing-fifteen .section-title-three {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three {
    margin-bottom: 35px;
  }
}
.pricing-fifteen .section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.pricing-fifteen .section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.pricing-fifteen .section-title-three p {
  color: var(--dark-3);
}

.pricing-style-fifteen {
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
.pricing-style-fifteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .table-head {
  padding: 25px;
  border-bottom: 1px solid var(--gray-4);
}
.pricing-style-fifteen .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-style-fifteen p {
  font-weight: 400;
  line-height: 22px;
  color: var(--dark-3);
}
.pricing-style-fifteen .price {
  padding: 30px 0;
}
.pricing-style-fifteen .amount {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
}
.pricing-style-fifteen .duration {
  display: inline-block;
  font-size: 16px;
  color: var(--dark-3);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
}
.pricing-style-fifteen .primary-btn {
  font-size: 15px;
  text-transform: none;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
}
.pricing-style-fifteen .table-content {
  padding: 25px;
}
.pricing-style-fifteen .middle-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.pricing-style-fifteen .table-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px;
  color: var(--dark-3);
}
.pricing-style-fifteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fifteen .table-list li i {
  color: var(--primary);
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}

/*======================================
	Team CSS
========================================*/
.team-style-eight {
  padding: 100px 0;
  background: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-eight {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .team-style-eight {
    padding: 60px 0 60px 0;
  }
}
.team-style-eight .title-line {
  margin-bottom: 40px;
}
.team-style-eight .section-title {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-eight .section-title {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .team-style-eight .section-title {
    margin-bottom: 25px;
  }
}
.team-style-eight .section-title span {
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.team-style-eight .section-title h2 {
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 40px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
}
.team-style-eight .section-title h3 {
  font-size: 62px;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--gray-4);
  z-index: -1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--gray-4);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-eight .section-title h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .team-style-eight .section-title h3 {
    font-size: 35px;
  }
}
.team-style-eight .section-title h3.gray-bg {
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--primary) !important;
  opacity: 0.1 !important;
}
.team-style-eight .section-title p {
  color: var(--dark-3);
}
.team-style-eight .single-team {
  margin-top: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  display: inline-block;
  overflow: hidden;
  text-align: left;
  background: transparent;
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.team-style-eight .single-team .info-head {
  background: transparent;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 25px;
}
.team-style-eight .single-team .image {
  position: relative;
  text-align: center;
}
.team-style-eight .single-team .image::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: linear-gradient(transparent, var(--primary));
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-style-eight .single-team .image img {
  height: 100%;
  width: 100%;
}
.team-style-eight .single-team .image .social {
  position: absolute;
  left: 0;
  bottom: -30px;
  padding: 25px;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.team-style-eight .single-team .image .social li {
  display: inline-block;
  margin-right: 15px;
}
.team-style-eight .single-team .image .social li:last-child {
  margin-right: 0px;
}
.team-style-eight .single-team .image .social li a {
  color: var(--white);
  display: block;
  font-size: 16px;
}
.team-style-eight .single-team .image .social li a:hover {
  opacity: 0.7;
}
.team-style-eight .single-team .info-box {
  text-align: left;
}
.team-style-eight .single-team .info-box .name {
  display: block;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 3px;
  text-transform: capitalize;
}
.team-style-eight .single-team .info-box .designation {
  color: var(--dark-3);
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.team-style-eight .single-team:hover {
  box-shadow: var(--shadow-4);
}
.team-style-eight .single-team:hover .info-head:before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.team-style-eight .single-team:hover .info-head {
  border-color: transparent;
}
.team-style-eight .single-team:hover .image::before {
  opacity: 1;
  visibility: visible;
  height: 150px;
}
.team-style-eight .single-team:hover .social {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/* ===== Buttons Css ===== */
.call-action-four .call-action-form .action-btn .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.call-action-four .call-action-form .action-btn .active.primary-btn, .call-action-four .call-action-form .action-btn .primary-btn:hover, .call-action-four .call-action-form .action-btn .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.call-action-four .call-action-form .action-btn .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action-four {
  background-color: var(--primary);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action-four {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .call-action-four {
    padding: 60px 0 60px 0;
  }
}
.call-action-four .call-action-content .action-title {
  font-weight: 600;
  color: var(--white);
}
.call-action-four .call-action-content .text {
  color: var(--white);
  margin-top: 16px;
}
.call-action-four .call-action-form {
  position: relative;
  max-width: 480px;
  margin: 45px auto 0;
}
.call-action-four .call-action-form input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--white);
  background: none;
  padding: 0 25px;
  border-radius: 50px;
  color: var(--white);
}
@media (max-width: 767px) {
  .call-action-four .call-action-form input {
    height: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form input {
    height: 60px;
  }
}
.call-action-four .call-action-form input::placeholder {
  opacity: 1;
  color: var(--white);
}
.call-action-four .call-action-form .action-btn {
  position: absolute;
  top: 7px;
  right: 7px;
}
@media (max-width: 767px) {
  .call-action-four .call-action-form .action-btn {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form .action-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    margin-top: 0;
  }
}
.call-action-four .call-action-form .action-btn .primary-btn {
  background: var(--white);
  color: var(--primary);
}
.call-action-four .call-action-form .action-btn .primary-btn:hover {
  background: var(--white);
  color: var(--primary-dark);
}
@media (max-width: 767px) {
  .call-action-four .call-action-form .action-btn .primary-btn {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form .action-btn .primary-btn {
    width: auto;
  }
}

/*===== TESTIMONIAL STYLE FOUR =====*/
.testimonial-6 {
  background-color: var(--white);
  position: relative;
  padding-bottom: 100px;
  padding-top: 100px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-6 {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .testimonial-6 {
    padding: 60px 0 60px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-6 {
    padding-bottom: 120px;
  }
}
.testimonial-6 .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 80px;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-6 .tns-nav {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .testimonial-6 .tns-nav {
    bottom: 40px;
  }
}
.testimonial-6 .tns-nav button {
  height: 6px;
  width: 14px;
  background-color: var(--primary);
  opacity: 0.3;
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0px 5px;
  transition: all 0.4s ease;
}
.testimonial-6 .tns-nav button:hover {
  opacity: 1;
}
.testimonial-6 .tns-nav button.tns-nav-active {
  opacity: 1;
  width: 25px;
}
.testimonial-6 .testimonial-patern1 {
  width: 200px;
  position: absolute;
  left: -100px;
  bottom: -90px;
}
@media (max-width: 767px) {
  .testimonial-6 .testimonial-patern1 {
    display: none;
  }
}
.testimonial-6 .testimonial-patern2 {
  width: 200px;
  position: absolute;
  right: -100px;
  top: -90px;
}
@media (max-width: 767px) {
  .testimonial-6 .testimonial-patern2 {
    display: none;
  }
}
.testimonial-6 .single-testimonial {
  text-align: center;
  padding: 0px 80px 40px 80px;
}
@media (max-width: 767px) {
  .testimonial-6 .single-testimonial {
    padding: 0px 10px 20px 20px;
  }
}
.testimonial-6 .single-testimonial .text .brand-icon {
  margin-bottom: 30px;
}
.testimonial-6 .single-testimonial .text .brand-icon img {
  width: 140px;
}
.testimonial-6 .single-testimonial .text p {
  color: var(--dark-3);
}
.testimonial-6 .single-testimonial .author {
  margin-top: 30px;
  display: inline-block;
  position: relative;
}
.testimonial-6 .single-testimonial .author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: inline-block;
}
.testimonial-6 .single-testimonial .author .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  display: block;
  margin-top: 15px;
}
.testimonial-6 .single-testimonial .author .name span {
  color: var(--dark-3);
  display: block;
  margin-top: 4px;
}

/* ===== Buttons Css ===== */
.contact-us .form-main .form-group .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-us .form-main .form-group .active.primary-btn, .contact-us .form-main .form-group .primary-btn:hover, .contact-us .form-main .form-group .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-us .form-main .form-group .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    CONTACT css 
===========================*/
.contact-us {
  position: relative;
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .contact-us {
    padding: 60px 0 60px 0;
  }
}
.contact-us .inner-content {
  border-radius: 5px;
  overflow: hidden;
}
.contact-us .title {
  margin-bottom: 30px;
}
.contact-us .contact-inner-title {
  margin-bottom: 45px;
}
.contact-us .single-head {
  position: relative;
  z-index: 5;
}
.contact-us .single-info {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 70px;
  position: relative;
}
.contact-us .single-info i {
  font-size: 22px;
  display: inline-block;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  line-height: 50px;
  border-radius: 5px;
}
.contact-us .single-info ul {
  display: inline-block;
}
.contact-us .single-info ul li {
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}
.contact-us .single-info ul li a {
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-us .single-info ul li a:hover {
  color: var(--primary);
}
.contact-us .single-info ul li span {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
}
.contact-us .single-info ul li:last-child {
  margin-bottom: 0;
}
.contact-us .single-info .title {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--white);
}
.contact-us .single-info .title span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}
.contact-us .form-main {
  padding-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-us .form-main {
    padding: 0;
    margin-bottom: 30px;
  }
}
.contact-us .form-main .form-group {
  margin-bottom: 15px;
  display: block;
  position: relative;
}
.contact-us .form-main .form-group textarea,
.contact-us .form-main .form-group input {
  height: 55px;
  line-height: 55px;
  width: 100%;
  border: 2px solid var(--gray-4);
  padding: 0px 20px;
  color: var(--black);
  border-radius: 0px;
  font-weight: 400;
  border-radius: 5px;
}
.contact-us .form-main .form-group textarea:focus,
.contact-us .form-main .form-group input:focus {
  border-color: var(--primary);
}
.contact-us .form-main .form-group textarea {
  height: 180px;
  resize: none;
}

/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0 60px 0;
  }
}
.brand-area .section-title {
  text-align: left;
  margin-bottom: 0;
  padding-right: 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .section-title {
    margin-bottom: 40px;
  }
}
.brand-area .section-title span {
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
}
.brand-area .section-title h2 {
  margin-bottom: 18px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  padding-bottom: 14px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .section-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.brand-area .section-title h2:before {
  position: absolute;
  left: 0;
  margin-left: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: var(--primary);
  content: "";
}
.brand-area .section-title p {
  color: var(--dark-3);
}
.brand-area .section-title.white-text h2 {
  color: var(--white);
}
.brand-area .section-title.white-text h2::before {
  background-color: var(--white);
}
.brand-area .section-title.white-text span {
  color: var(--white);
}
.brand-area .section-title.white-text p {
  color: var(--white);
}
.brand-area .brand-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.brand-area .brand-list li {
  flex-basis: 33.33%;
}
@media (max-width: 767px) {
  .brand-area .brand-list li {
    flex-basis: 50%;
  }
}
.brand-area .brand-list li a {
  display: block;
  text-align: center;
  height: 150px;
  line-height: 150px;
  border: 1px solid var(--gray-4);
}
.brand-area .brand-list li a:hover {
  background-color: var(--primary-light);
}
.brand-area .brand-list li a:hover img {
  transform: scale(1);
  opacity: 1;
}
.brand-area .brand-list li a img {
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.7;
  max-width: 90%;
}
.brand-area .bg-color-white .brand-list::before {
  background: var(--light-1);
}

/* ===== Buttons Css ===== */
.pricing-style-four .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-four .active.primary-btn, .pricing-style-four .primary-btn:hover, .pricing-style-four .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.pricing-style-four .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== PRICING FOUR =====*/
.pricing-four {
  padding: 100px 0;
}

.pricing-style-four {
  box-shadow: var(--shadow-2);
  padding: 40px 40px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--primary);
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .pricing-style-four {
    padding: 35px 30px;
  }
}
.pricing-style-four .pricing-header .sub-title {
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}
.pricing-style-four .pricing-header .sub-title::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  margin: 0 auto;
  border-radius: 4px;
}
.pricing-style-four .pricing-header .price {
  display: block;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  margin-top: 30px;
  color: var(--white);
}
@media (max-width: 767px) {
  .pricing-style-four .pricing-header .price {
    font-size: 45px;
    margin-top: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-style-four .pricing-header .price {
    font-size: 50px;
    margin-top: 20px;
  }
}
.pricing-style-four .pricing-header .year {
  color: var(--white);
  margin-top: 3px;
}
.pricing-style-four .pricing-list {
  margin-top: 40px;
}
.pricing-style-four .pricing-list li {
  color: var(--white);
  margin-top: 16px;
}
.pricing-style-four .pricing-list li i {
  color: var(--white);
  margin-right: 8px;
}
.pricing-style-four .pricing-btn {
  margin-top: 42px;
}
.pricing-style-four .primary-btn {
  background-color: var(--white);
  color: var(--primary);
}
.pricing-style-four .primary-btn:hover {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-4);
}
.pricing-style-four .bottom-shape {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 101%;
  z-index: -1;
}

/*# sourceMappingURL=pricing-04.css.map */

#order-standard_cart .cart-sidebar .list-group-item {
    background: transparent;
    border: 0px;
}

#order-standard_cart .cart-sidebar .list-group-item {
    color: var(--primary);
}

/*======================================
    About Us CSS
========================================*/
.about-section {
  background: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
  padding: 180px 0;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 120px 0;
  }
}
.about-section .section-title {
  margin-bottom: 30px;
}
.about-section .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.about-section .section-title h2 {
  font-size: 45px;
  line-height: 55px;
}
@media (max-width: 767px) {
  .about-section .section-title h2 {
    font-size: 38px;
    line-height: 45px;
  }
}
.about-section .about-img-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  width: 46%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-img-wrapper {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .about-section .about-img-wrapper {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    margin-bottom: 50px;
  }
}
.about-section .about-img-wrapper img {
  width: 100%;
}
.about-section .about-img-wrapper .about-experience {
  width: 300px;
  border-radius: 27px;
  background: linear-gradient(to top left, var(--primary) 0%, var(--primary-dark) 100%);
  border: 5px solid #eff2f9;
  padding: 40px 20px;
  position: absolute;
  right: -40px;
  bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-section .about-img-wrapper .about-experience {
    right: 40px;
  }
}
.about-section .about-img-wrapper .about-experience h3 {
  color: var(--white);
  margin-bottom: 15px;
}
.about-section .about-img-wrapper .about-experience p {
  color: var(--white);
}
.about-section .about-content-wrapper .about-content > p {
  margin-bottom: 45px;
}
.about-section .about-content-wrapper .about-content .counter-up {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-section .about-content-wrapper .about-content .counter-up {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-section .about-content-wrapper .about-content .counter-up {
    display: flex;
  }
}
.about-section .about-content-wrapper .about-content .counter-up .counter {
  margin-right: 10px;
}
.about-section .about-content-wrapper .about-content .counter-up .counter:last-child {
  margin-right: 0;
}
.about-section .about-content-wrapper .about-content .counter-up .counter span {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.about-section .about-content-wrapper .about-content .counter-up .counter h4 {
  font-weight: 500;
  margin-bottom: 10px;
}

/*===========================
  features css 
===========================*/
.features-twelve {
  background-color: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  /* Section Title Two */
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .features-twelve {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.features-twelve .section-title-two {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-twelve .section-title-two {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .features-twelve .section-title-two {
    margin-bottom: 35px;
  }
}
.features-twelve .section-title-two span {
  text-transform: capitalize;
  color: var(--white);
  background: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 4px;
}
.features-twelve .section-title-two h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-twelve .section-title-two h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .features-twelve .section-title-two h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.features-twelve .section-title-two p {
  color: var(--dark-3);
}

.features-style-twelve {
  padding: 50px 30px;
  border: 2px solid var(--gray-4);
  border-radius: 10px;
  background-color: var(--white);
  text-align: left;
  margin-top: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-style-twelve {
    padding: 40px 20px;
  }
}
.features-style-twelve:hover {
  box-shadow: var(--shadow-4);
}
.features-style-twelve .feature-icon {
  width: 80px;
  height: 80px;
  box-shadow: var(--shadow-2);
  border-radius: 5px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 35px;
  margin-bottom: 30px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.features-style-twelve .feature-icon i {
  transition: all 0.4s ease-in-out;
}
.features-style-twelve h4 {
  display: block;
  margin-bottom: 20px;
}
.features-style-twelve p {
  color: var(--dark-3);
}
.features-style-twelve:hover {
  border-color: var(--primary);
}

/* ===== Buttons Css ===== */
.call-action-three .call-action-content .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.call-action-three .call-action-content .active.primary-btn, .call-action-three .call-action-content .primary-btn:hover, .call-action-three .call-action-content .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.call-action-three .call-action-content .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== call action three =====*/
.call-action-three {
  background-color: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: 100px;
  padding-bottom: 50px;
}
.call-action-three .call-action-content {
  margin-bottom: 50px;
}
.call-action-three .call-action-content .action-title {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 25px;
  font-size: 35px;
  line-height: 45px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action-three .call-action-content .action-title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .call-action-three .call-action-content .action-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.call-action-three .call-action-content .text {
  margin-bottom: 40px;
}

/*# sourceMappingURL=call-to-action-03.css.map */

/* ===== Buttons Css ===== */
.header-twelve .header-text .light-rounded-buttons .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-twelve .header-text .light-rounded-buttons .active.primary-btn, .header-twelve .header-text .light-rounded-buttons .primary-btn:hover, .header-twelve .header-text .light-rounded-buttons .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-twelve .header-text .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-twelve {
  background-color: var(--primary);
}
.header-twelve .header-inner {
  height: 700px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-twelve .header-inner {
    height: auto;
  }
}
.header-twelve .header-text {
  margin-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-twelve .header-text {
    margin: 0;
    padding: 60px 0;
  }
}
.header-twelve .header-text .small {
  color: var(--white);
  display: block;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
}
.header-twelve .header-text h1 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
}
.header-twelve .header-text h1 span {
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.header-twelve .header-text p {
  opacity: 0.7;
  color: var(--white);
}
.header-twelve .header-text ul {
  display: block;
  margin-bottom: 20px;
}
.header-twelve .header-text ul li {
  display: inline-block;
  color: var(--white);
  margin-right: 10px;
  font-size: 13px;
  position: relative;
  padding-left: 15px;
  line-height: 26px;
}
.header-twelve .header-text ul li:last-child {
  margin-right: 0;
}
.header-twelve .header-text ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  height: 6px;
  width: 6px;
  background-color: var(--white);
  border-radius: 50%;
  margin-top: -4px;
}
.header-twelve .header-text .light-rounded-buttons {
  margin-top: 30px;
}
.header-twelve .header-text .light-rounded-buttons .primary-btn {
  background-color: var(--white);
  color: var(--primary);
}
.header-twelve .personal-image {
  margin-top: 0px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-twelve .personal-image {
    display: none;
  }
}

/*===========================
  features css 
===========================*/
.features-eleven {
  background-color: var(--light-3);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  /* Section Title Two */
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .features-eleven {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.features-eleven .section-title-two {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-eleven .section-title-two {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .features-eleven .section-title-two {
    margin-bottom: 35px;
  }
}
.features-eleven .section-title-two span {
  text-transform: capitalize;
  color: var(--white);
  background: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 4px;
}
.features-eleven .section-title-two h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-eleven .section-title-two h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .features-eleven .section-title-two h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.features-eleven .section-title-two p {
  color: var(--dark-3);
}
.features-eleven .tab-head {
  position: relative;
}
.features-eleven .nav-head {
  text-align: center;
  border: 2px solid var(--gray-4);
  padding: 10px 10px;
  border-radius: 10px;
  max-width: max-content;
  margin: auto;
  display: flex;
}
.features-eleven .nav {
  margin-bottom: 0px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .features-eleven .nav {
    width: 100%;
    display: inline-block;
  }
}
.features-eleven .nav-link {
  background: transparent;
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  border-radius: 0px;
  padding: 18px 55px;
  position: relative;
  bottom: 0;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .features-eleven .nav-link {
    width: 100%;
    display: block;
  }
}
.features-eleven .nav-link:hover {
  color: var(--primary);
}
.features-eleven .nav-link i {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: var(--primary);
}
.features-eleven .nav-link.active,
.features-eleven .show > .nav-link {
  color: var(--white);
  background: var(--primary);
}
.features-eleven .nav-link.active i,
.features-eleven .show > .nav-link i {
  color: var(--white);
}
.features-eleven .tab-content-inner {
  margin-top: 80px;
}
.features-eleven .tab-content-inner .tab-image img {
  width: 100%;
  border-radius: 6px;
}
.features-eleven .tab-content-inner .tab-text {
  padding-left: 50px;
}
.features-eleven .tab-content-inner .tab-text h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  display: block;
  line-height: 45px;
}
.features-eleven .tab-content-inner .tab-text p {
  margin: 30px 0;
  color: var(--dark-3);
}
.features-eleven .tab-content-inner .tab-text ul {
  margin-top: 40px;
}
.features-eleven .tab-content-inner .tab-text ul li {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-3);
  position: relative;
  padding-left: 100px;
}
.features-eleven .tab-content-inner .tab-text ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  display: block;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
}
.features-eleven .tab-content-inner .tab-text ul li span {
  font-size: 17px;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.features-eleven .tab-content-inner .tab-text ul li:last-child {
  margin: 0;
}

/* ===== Buttons Css ===== */
.header-eleven .header-text .light-rounded-buttons .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eleven .header-text .light-rounded-buttons .active.primary-btn, .header-eleven .header-text .light-rounded-buttons .primary-btn:hover, .header-eleven .header-text .light-rounded-buttons .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eleven .header-text .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eleven {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eleven {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .header-eleven {
    padding: 80px 0;
  }
}
.header-eleven .shape {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eleven .shape {
    height: 100px;
  }
}
.header-eleven .header-inner {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
}
.header-eleven .header-text h1 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}
.header-eleven .header-text h1 span {
  font-weight: 300;
}
.header-eleven .header-text p {
  color: var(--white);
  opacity: 0.7;
}
.header-eleven .header-text .light-rounded-buttons {
  margin-top: 30px;
}
.header-eleven .header-text .light-rounded-buttons .primary-btn {
  background-color: var(--white);
  color: var(--primary);
}
.header-eleven .mobile-screen {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eleven .mobile-screen {
    display: none;
  }
}

/* ===== Buttons Css ===== */
.call-action .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .active.primary-btn-outline, .call-action .primary-btn-outline:hover, .call-action .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.call-action .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  background-color: var(--white);
  padding: 100px 0;
}
.call-action .inner-content {
  position: relative;
  padding: 50px;
  border-radius: 10px;
  background-color: var(--primary);
  z-index: 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .inner-content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .call-action .inner-content {
    padding: 30px;
    text-align: center;
  }
}
.call-action .inner-content .bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.call-action .text h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .text h2 {
    font-size: 25px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .call-action .text h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.call-action .text h2 span {
  display: block;
  color: var(--primary);
}
.call-action .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
@media (max-width: 767px) {
  .call-action .primary-btn-outline {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=call-to-action-06.css.map */

body {
	    background: linear-gradient(#fff4dd 0%, rgba(255, 255, 255, 0) 100%);
background-size: cover;
background-repeat: no-repeat;
}
.featured-tld {
    margin: 0 0 20px 0;
    border-radius: 40px;
    background-color: #fff;
    box-shadow: none;
}

.margin-whmcs { padding: 120px 0px; }

.spotlight-tlds {
    margin: 15px 0;
    padding: 0px;
    background-color: transparent;
}

.spotlight-tld {
    border: 0px;
    border-radius: 20px;
}

.spotlight-tld .btn:not(.domain-contact-support) {
    background-color: var(--primary);
    border: 0px;
    border-radius: 20px;
}

.domain-promo-box {
    background-color: #ffffff !important;
    border: 0px !important;
    border-radius: 20px !important;
}

/* ===== Buttons Css ===== */
.header-seven .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-seven .active.primary-btn, .header-seven .primary-btn:hover, .header-seven .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-seven .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== HEADER SEVEN =====*/
.header-seven .header-content-area {
  background-color: var(--light-2);
}
.header-seven .header-content {
  position: relative;
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .header-seven .header-content {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.header-seven .image-one {
  width: 150px;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-seven .image-one {
    width: 120px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
  }
}
.header-seven .image-tow {
  width: 340px;
  right: -150px;
  top: 30%;
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-seven .image-tow {
    width: 200px;
    top: 50%;
    right: -40px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.header-seven .header-content-wrapper {
  max-width: 730px;
  margin: 0 auto;
  border: 1px solid var(--light-3);
  border-radius: 16px;
  background-color: var(--white);
  padding: 85px 140px;
}
@media (max-width: 767px) {
  .header-seven .header-content-wrapper {
    padding: 50px 30px;
  }
}
.header-seven .header-title {
  font-size: 44px;
  line-height: 55px;
  color: var(--black);
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .header-seven .header-title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-seven .header-title {
    font-size: 36px;
    line-height: 45px;
  }
}
.header-seven .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 8px;
  position: relative;
  z-index: 2;
}
.header-seven .header-btn {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* ===== Buttons Css ===== */
.features-style-one .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.features-style-one .active.primary-btn-outline, .features-style-one .primary-btn-outline:hover, .features-style-one .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.features-style-one .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  Features One CSS 
===========================*/
.features-one {
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
}
.features-one .section-title {
  padding-bottom: 10px;
}
.features-one .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-one .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-one .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 24px;
}

.features-style-one {
  background-color: var(--white);
  padding: 40px 20px;
  margin-top: 40px;
  box-shadow: var(--shadow-2);
  border-radius: 4px;
  transition: all 0.3s;
}
.features-style-one:hover {
  box-shadow: var(--shadow-4);
}
.features-style-one .features-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  color: var(--primary);
  border: 2px solid rgba(187, 187, 187, 0.192);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .features-style-one .features-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 35px;
  }
}
.features-style-one:hover .features-icon {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
}
.features-style-one .features-content {
  margin-top: 24px;
}
.features-style-one .features-title {
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .features-style-one .features-title {
    font-size: 22px;
  }
}
.features-style-one .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.features-style-one .features-btn {
  margin-top: 32px;
}

/* ===== Buttons Css ===== */
.call-action-one .call-action-content .call-action-btn .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.call-action-one .call-action-content .call-action-btn .active.primary-btn, .call-action-one .call-action-content .call-action-btn .primary-btn:hover, .call-action-one .call-action-content .call-action-btn .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.call-action-one .call-action-content .call-action-btn .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== call action one =====*/
.call-action-one {
  background-color: transparent;
  padding-top: 50px;
  padding-bottom: 100px;
}
.call-action-one .call-action-content .call-action-text {
  margin-top: 50px;
}
.call-action-one .call-action-content .call-action-text .action-title {
  font-weight: 600;
  color: var(--black);
}
.call-action-one .call-action-content .call-action-text .text-lg {
  color: var(--dark-3);
  margin-top: 16px;
}
.call-action-one .call-action-content .call-action-btn {
  margin-top: 50px;
}

/* ===== Buttons Css ===== */
.header-one .header-content-area .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.header-one .header-content-area .active.primary-btn-outline, .header-one .header-content-area .primary-btn-outline:hover, .header-one .header-content-area .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.header-one .header-content-area .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== HEADER ONE =====*/
.header-one {
  position: relative;
}
.header-one .header-content-area {
  background-color: var(--primary);
  position: relative;
  padding: 130px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-one .header-content-area {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .header-one .header-content-area {
    padding: 60px 0;
  }
}
.header-one .header-content-area .primary-btn-outline {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--primary);
}
.header-one .header-content-area .primary-btn-outline:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.header-one .header-wrapper {
  position: relative;
}
.header-one .header-content {
  max-width: 540px;
  position: relative;
  z-index: 5;
}
.header-one .header-title {
  color: var(--white);
  font-weight: 800;
}
.header-one .text-lg {
  color: var(--white);
  font-weight: 300;
  margin-top: 16px;
}
.header-one .header-btn {
  margin-top: 40px;
}
.header-one .header-image {
  text-align: center;
}
.header-one .header-image .image {
  max-width: 730px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-one .header-image .image {
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-one .header-image .image {
    max-width: 550px;
  }
}
.header-one .header-image .image img {
  width: 100%;
}
.header-one .header-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
}
.header-one .header-shape img {
  width: 100%;
}

/* ===== Buttons Css ===== */
.features-style-eight .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.features-style-eight .active.primary-btn-outline, .features-style-eight .primary-btn-outline:hover, .features-style-eight .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.features-style-eight .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  Features Eight CSS 
===========================*/
.features-eight {
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
}
.features-eight .section-title {
  padding-bottom: 10px;
}
.features-eight .section-title .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-eight .section-title .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-eight .section-title .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  margin-top: 24px;
}

.features-style-eight {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 8px;
}
.features-style-eight .features-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.features-style-eight .features-icon i {
  font-size: 70px;
  line-height: 70px;
  color: var(--primary);
}
.features-style-eight .features-icon .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.features-style-eight .features-content {
  margin-top: 24px;
}
.features-style-eight .features-title {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .features-style-eight .features-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-style-eight .features-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-style-eight .features-title {
    font-size: 24px;
  }
}
.features-style-eight .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.features-style-eight .features-btn {
  margin-top: 32px;
}

.legal p {
    padding-bottom: 40px;
}

.legal ul {
    margin-top: -30px;
    padding-bottom: 40px;
    padding-left: 20px;
}

.legal h3 {
    padding-bottom: 20px;
}

.legal h1 {
    margin-bottom: 40px;
}

.btn-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-default {
	background-color: #ffffff;
}

#order-standard_cart .order-summary {
	background-color: #ffffff !important;
	border: 0px !important;
	border-radius: 10px;
}

#order-standard_cart .summary-container {
	background: transparent !important;
}

#order-standard_cart .view-cart-tabs .tab-content {
    background-color: #ffffff !important;
    padding: 15px;
    border-radius: 10px;
}

#order-standard_cart .view-cart-items {
	border: 0px !important;
}

#btnEmptyCart {
	background: var(--primary) !important;
}

#order-standard_cart .view-cart-items-header {
	background: var(--primary) !important;
}

#order-standard_cart .sub-heading {
	border-color: #ffffff !important;
}

#order-standard_cart .sub-heading span {
	background: #ffffff !important;
	color: var(--primary) !important;
	border-radius: 4px;
}

#order-standard_cart .prepend-icon .field {
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

/* ===== Buttons Css ===== */
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn-outline, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== SLIDER ONE =====*/
.slider-one .bd-example .carousel .carousel-inner {
  background-color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item {
  height: auto;
  padding: 300px 0;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    padding: 200px 0;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    padding: 150px 0;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  opacity: 0.8;
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    height: 400px;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .text {
  color: var(--white);
  display: block;
  margin: 20px 0;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
  display: inline-block;
  margin: 16px 8px 0;
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
    margin: 16px 3px 0;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover {
  border-color: transparent;
  background-color: var(--white);
  color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
  top: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid var(--white);
  font-size: 20px;
  color: var(--white);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
  left: 30px;
  opacity: 1;
  z-index: 99;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-one .bd-example .carousel .carousel-control-prev:hover, .slider-one .bd-example .carousel .carousel-control-next:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    left: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    left: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.slider-one .bd-example .carousel .carousel-control-next {
  right: 30px;
  left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 40px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 20px;
  }
}
.slider-one .bd-example .carousel .carousel-indicators {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-indicators {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-indicators {
    margin-bottom: 30px;
  }
}
.slider-one .bd-example .carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 50px;
  border: 0;
  margin: 0px 5px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-one .bd-example .carousel .carousel-indicators li.active {
  width: 20px;
  background-color: var(--white);
  border-radius: 5px;
}
.slider-one .bd-example .carousel .carousel-indicators li:hover {
  opacity: 1;
}

.kb-category a:hover {
    background-color: transparent;
}

.color-switcher {
  position: fixed;
  top: 100px;
  right: -200px;
  width: 200px;
  padding: 10px;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
}

.color-switcher.active {
  right: 0px;
}

.color-switcher h3 {
  color: var(--main-color);
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #3333;
  padding: 5px 0;
  text-align: center;
}

.color-switcher .switcher-btn {
  position: absolute;
  top: 0;
  left: -75px;
  color: var(--main-color);
  background: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 35px;
}

.color-switcher .theme-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.color-switcher .switcher-btn i {
  animation: rotate 2s linear infinite;
}

.color-switcher .theme-buttons-container .theme-buttons {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}


/* ===== Buttons Css ===== */
.error-area .error-content .button .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.error-area .error-content .button .active.primary-btn-outline, .error-area .error-content .button .primary-btn-outline:hover, .error-area .error-content .button .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.error-area .error-content .button .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== ERROR TWO Style =====*/
/*======================================
	ERROR 404 THREE CSS
========================================*/
.error-area {
  height: 100vh;
  text-align: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  z-index: 2;
}
.error-area .shape1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-area .shape1 {
    width: 60px;
    top: -30px;
  }
}
.error-area .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-area .shape2 {
    width: 60px;
    bottom: -30px;
  }
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.error-area .error-content h1 {
  font-size: 100px;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 100px;
}
@media (max-width: 767px) {
  .error-area .error-content h1 {
    font-size: 60px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h1 {
    font-size: 45px;
    line-height: 30px;
  }
}
.error-area .error-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--light-2);
  font-weight: 600;
  line-height: 35px;
}
@media (max-width: 767px) {
  .error-area .error-content h2 {
    font-size: 18px;
    line-height: 22px;
  }
}
.error-area .error-content .button {
  margin-top: 30px;
}
.error-area .error-content .button .primary-btn-outline {
  color: var(--white);
  border-color: var(--gray-4);
}
.error-area .error-content .button .primary-btn-outline:hover {
  color: var(--primary);
  background-color: var(--white);
  border-color: transparent;
}

.error-area .error-content p {
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--gray-2);
}

/*# sourceMappingURL=error-03.css.map */