/**
@File: Vixa Theme Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

*******************************************
**/
:root {
  --bodyFontFamily: "Prompt", sans-serif;
  --bodyColor: #565D6F;
  --mainColor: #FE3E11;
  --headingColor: #1A2238;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --borderColor: #E5E6E9;
  --bgColor-050511: #050511;
  --bgColor-fff3ed: #fff3ed;
  --bgColor-ffe4d4: #f9f9f9;
  --fontSize12: 12px;
  --fontSize14: 14px;
  --fontSize15: 15px;
  --fontSize16: 16px;
  --fontSize18: 18px;
  --mobileFontSize: 15px;
  --transition: all ease .5s;
  --borderRadius: 4px;
  --boxShadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

/* Global Area Style
============================================*/
body {
  font-family: var(--bodyFontFamily);
  font-size: var(--fontSize16);
  color: var(--bodyColor);
}

a {
  transition: var(--transition);
  color: var(--bodyColor);
}
a:hover {
  color: var(--mainColor);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--headingColor);
  font-weight: 600;
}

.h3, h3 {
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
  line-height: 1.3;
}
p:last-child {
  margin-bottom: 0;
}

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

.label {
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 10px;
}
.label span {
  color: #ff0000;
}

.form-control {
  height: 50px;
  color: var(--blackColor);
  font-size: 16px;
  padding: 8px 20px;
  width: 100%;
  transition: var(--transition);
  height: 60px;
  border: 1px solid #CCCED4;
  border-radius: 0;
  background-color: var(--whiteColor);
}
.form-control::-moz-placeholder {
  color: #838383;
  font-size: 16px;
}
.form-control::placeholder {
  color: #838383;
  font-size: 16px;
}
.form-control:focus {
  background-color: var(--whiteColor);
  box-shadow: unset;
  outline: 0;
  border-color: var(--mainColor);
}
.form-control.form-select {
  cursor: pointer;
}

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

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

.pt-0 .ptb-160 {
  padding-top: 0 !important;
}
.pt-0 .pb-160 {
  padding-bottom: 0 !important;
}

.transition-y {
  transition: var(--transition);
}
.transition-y:hover {
  transform: translateY(-5px);
}

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

.mb-0 .about-content-three .about-tab-content {
  margin-bottom: 0 !important;
}

/* Preloader Area Style
============================================*/
#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  background-color: var(--whiteColor);
}
#preloader .preloader {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
#preloader .preloader .loader {
  position: relative;
  overflow: hidden;
  display: block;
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}
#preloader .preloader .loader div {
  height: 100%;
}
#preloader .preloader .loader, #preloader .preloader .loader div {
  padding: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: rotate linear 3.5s infinite;
  border-top-color: var(--mainColor);
  border-border-bottom: var(--mainColor);
}
#preloader .preloader .waviy {
  margin-top: 20px;
  position: relative;
  text-align: center;
  -webkit-box-reflect: below -47px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  font-size: 40px;
  font-weight: 600;
}
#preloader .preloader .waviy span {
  position: relative;
  color: var(--blackColor);
  animation-delay: 0.1s;
  display: inline-block;
  animation: waviy 1s infinite;
}
#preloader .preloader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
#preloader .preloader .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}
#preloader .preloader .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}
#preloader .preloader .waviy span:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
  #preloader .preloader .waviy {
    font-size: 30px;
  }
}
/*
backtoptop Area Style
======================================================*/
#backtotop {
  position: fixed;
  top: 100%;
  right: 30px;
  bottom: 30px;
  margin: auto;
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  transform: translateY(-100%);
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
}

/* Shape Area Style
============================================*/
.shape {
  position: absolute;
  z-index: -1;
}
.shape.shape-1 {
  left: 0;
  bottom: 0;
  opacity: 0.5;
}
.shape.shape-3 {
  left: 0;
  bottom: 0;
}
.shape.shape-4 {
  right: 0;
  bottom: 0;
  opacity: 0.1;
}
.shape.shape-5 {
  right: 0;
  bottom: 0;
}
.shape.shape-6 {
  left: 0;
  bottom: 0;
  opacity: 0.1;
}
.shape.shape-7 {
  right: 0;
  bottom: 0;
  opacity: 0.4;
}
.shape.shape-8 {
  right: 0;
  bottom: 0;
  max-width: 800px;
}
.shape.shape-9 {
  left: 0;
  top: 0;
  border-radius: 100px 100px 0 100px;
}
.shape.shape-10 {
  right: 0;
  top: 0;
  border-radius: 100px;
}
.shape.shape-11 {
  left: 0;
  bottom: 0;
  border-radius: 100px;
}
.shape.shape-12 {
  right: 0;
  bottom: 0;
  border-radius: 100px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* BG Image Area Style
============================================*/
.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-050511 {
  background-color: var(--bgColor-050511);
}

.bg-fff3ed {
  background-color: var(--bgColor-fff3ed);
}

.bg-1a2238 {
  background-color: var(--headingColor);
}

.bg-ffe4d4 {
  background-color: var(--bgColor-ffe4d4);
}

.bg-fe3e11 {
  background-color: var(--mainColor);
}

/* Btn Style
============================================*/
.default-btn {
  font-size: var(--fontSize16);
  border: 1px solid var(--borderColor);
  transition: var(--transition);
  color: var(--whiteColor);
  background-color: var(--headingColor);
  font-weight: 500;
  padding: 15px 29px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  border-radius: 0;
}
.default-btn .icon-right {
  position: relative;
  padding-right: 25px;
}
.default-btn .icon-right .one {
  position: absolute;
  top: 0;
  right: 0;
  transition: var(--transition);
}
.default-btn .icon-right .two {
  position: absolute;
  top: 0;
  right: 5px;
  transition: var(--transition);
  opacity: 0;
}
.default-btn .icon-left {
  position: relative;
  padding-left: 25px;
}
.default-btn .icon-left .one {
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition);
}
.default-btn .icon-left .two {
  position: absolute;
  top: 0;
  left: 5px;
  transition: var(--transition);
  opacity: 0;
}
.default-btn.style-two {
  overflow: hidden;
}
.default-btn.style-two .icon-right {
  padding-right: 0;
}
.default-btn.style-two .icon-right .title {
  margin-right: 25px;
  margin-left: -99px;
  opacity: 0;
  transition: var(--transition);
}
.default-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.default-btn:hover .icon-right .one {
  right: 0;
  opacity: 0;
}
.default-btn:hover .icon-right .two {
  right: 0;
  opacity: 1;
}
.default-btn:hover .icon-left .one {
  left: 0;
  opacity: 0;
}
.default-btn:hover .icon-left .two {
  left: 0;
  opacity: 1;
}
.default-btn:hover.style-two .icon-right .title {
  margin-left: 0;
  opacity: 1;
}
.default-btn:hover.style-two.active .icon-right .two {
  filter: invert(0);
}
.default-btn.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-color: var(--mainColor);
}
.default-btn.active:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
  border-color: var(--headingColor);
}

.gap-0 .gap-80 {
  --bs-gutter-x: 1.5rem !important;
}

/* Read More Style
============================================*/
.read-more {
  text-decoration: none;
  font-size: var(--fontSize18);
  color: var(--headingColor);
  position: relative;
  font-weight: 500;
  z-index: 1;
}
.read-more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--headingColor);
  transition: var(--transition);
}
.read-more:hover {
  letter-spacing: 1.1px;
}
.read-more:hover::before {
  background-color: var(--mainColor);
}
.read-more.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

/* 
Main Content Text Style
=====================================================*/
.main-content-text h1, .main-content-text h2, .main-content-text h3, .main-content-text h4, .main-content-text h5, .main-content-text h6 {
  margin-bottom: 15px;
}
.main-content-text h1 {
  font-size: 30px;
}
.main-content-text h2 {
  font-size: 26px;
}
.main-content-text h3 {
  font-size: 20px;
}
.main-content-text h4 {
  font-size: 22px;
}
.main-content-text h5 {
  font-size: 20px;
}
.main-content-text h6 {
  font-size: 18px;
}
.main-content-text .gap-20 {
  margin-bottom: 30px;
}
.main-content-text p {
  color: #687693;
}
.main-content-text ul {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.main-content-text ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}
.main-content-text ul li:last-child {
  margin-bottom: 0;
}
.main-content-text ul li i {
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--mainColor);
  font-size: 25px;
}
.main-content-text ol {
  padding-left: 18px;
}
.main-content-text ol li {
  margin-bottom: 20px;
}
.main-content-text ol li::marker {
  color: var(--mainColor);
}
.main-content-text ol li:last-child {
  margin-bottom: 0;
}
.main-content-text a {
  color: var(--mainColor);
}
.main-content-text a:hover {
  text-decoration: underline;
}
.main-content-text .content-gap-mb-20 {
  margin-bottom: 20px;
}
.main-content-text .content-gap-mb-30 {
  margin-bottom: 30px;
}
.main-content-text .update {
  display: block;
  margin-bottom: 30px;
}

/* Error Area Style
============================================*/
.error-content {
  text-align: center;
  max-width: 860px;
  margin: auto;
}
.error-content h1 {
  font-size: 200px;
  line-height: 1;
  color: var(--mainColor);
  font-weight: 800;
}
.error-content h2 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 15px;
}
.error-content p {
  max-width: 635px;
  margin: auto;
  margin-bottom: 40px;
  font-size: 18px;
}

/* Section Title Area Style
==================================================*/
.mb-50 {
  margin-bottom: 50px;
}

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

.top-title {
  color: var(--mainColor);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  max-width: 650px;
  margin-top: -5px;
}
.section-title.mw-540 {
  max-width: 540px;
}
.section-title.mw-625 {
  max-width: 625px;
}
.section-title h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
.section-title p {
  margin-bottom: 30px;
}
.section-title p:last-child {
  margin-bottom: 0;
}
.section-title.white-title h2 {
  color: var(--whiteColor);
}
.section-title.white-title p {
  color: var(--whiteColor);
}

/*
Scroll Bar Style
======================================================*/
.scroll-bar {
  margin-top: 0 !important;
  overflow: auto;
  padding-right: 5px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.scroll-bar.h-600 {
  height: 600px !important;
}
.scroll-bar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}
.scroll-bar::-webkit-scrollbar-track {
  background: #F0F0F4;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}
.scroll-bar::-webkit-scrollbar-thumb {
  background: #e0e0e2;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}
.scroll-bar::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
  border-radius: 50px;
}
.scroll-bar.active {
  /* Handle */
  /* Handle on hover */
}
.scroll-bar.active::-webkit-scrollbar-track {
  background: #F0F0F4;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 0;
}
.scroll-bar.active::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 0;
}
.scroll-bar.active::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
  border-radius: 0;
}

/*
Page-navigation Area Style
======================================================*/
.pagination-area {
  border: 5px solid var(--borderColor);
  border-radius: 10px;
  margin-top: 20px;
}
.pagination-area .page-numbers {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
  text-decoration: none;
  transition: var(--transition);
  background-color: transparent;
  -webkit-clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
}
.pagination-area .page-numbers i {
  font-size: 22px;
  font-weight: normal;
  color: var(--headingColor);
  transition: var(--transition);
}
.pagination-area .page-numbers:hover {
  color: var(--whiteColor);
  background-color: var(--whiteColor);
}
.pagination-area .page-numbers:hover i {
  color: var(--headingColor);
}
.pagination-area .page-numbers.next {
  background-color: #F5E7CB;
  border: 0;
  border-radius: 0;
  border-radius: 6px;
  -webkit-clip-path: none;
          clip-path: none;
  line-height: 57px;
}
.pagination-area .page-numbers.next:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination-area .page-numbers:hover {
  color: var(--headingColor);
  background-color: var(--mainColor);
}
.pagination-area .page-numbers.current {
  background-color: var(--mainColor);
  color: var(--headingColor);
}

.paginations {
  margin-top: 86px;
}
.paginations li a {
  text-decoration: none;
}
.paginations li a.count {
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
}
.paginations li a.count.disabled {
  color: #838896;
}
.paginations li .default-btn.previous .icon-right {
  padding-right: 0;
  padding-left: 25px;
}
.paginations li .default-btn.previous .icon-right::before {
  right: auto !important;
  left: 0 !important;
  transform: rotate(180deg);
}
.paginations li .default-btn.previous .icon-right::after {
  right: auto !important;
  left: -5px !important;
  transform: rotate(180deg);
}

.paginations-area {
  margin-top: 86px;
}
.paginations-area .page-numbers {
  font-size: 18px;
  font-weight: 500;
  color: var(--headingColor);
  text-decoration: none;
  padding: 0 5px;
}
.paginations-area .page-numbers i {
  font-size: 22px;
  font-weight: normal;
  color: var(--paraColor);
  transition: var(--transition);
}
.paginations-area .page-numbers:hover {
  color: var(--primaryColor);
  background-color: rgba(229, 232, 255, 0.45);
}
.paginations-area .page-numbers:hover i {
  color: var(--primaryColor);
}
.paginations-area .page-numbers .prenext {
  font-size: var(--fontSize16);
  border: 1px solid var(--borderColor);
  transition: var(--transition);
  color: var(--whiteColor);
  background-color: var(--headingColor);
  font-weight: 500;
  padding: 15px 29px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  border-radius: 0;
}
.paginations-area .page-numbers .prenext .icon-right {
  position: relative;
  padding-right: 25px;
}
.paginations-area .page-numbers .prenext .icon-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  font-family: flaticon_vaxa;
  top: 0;
  right: 0;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.paginations-area .page-numbers .prenext .icon-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  font-family: flaticon_vaxa;
  top: 0;
  right: 5px;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.paginations-area .page-numbers .prenext:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.paginations-area .page-numbers .prenext:hover .icon-right::before {
  right: 0;
  opacity: 0;
}
.paginations-area .page-numbers .prenext:hover .icon-right::after {
  right: 0;
  opacity: 1;
}
.paginations-area .page-numbers.prev {
  top: 5px;
}
.paginations-area .page-numbers.prev .prenext .icon-right {
  position: relative;
  padding-left: 25px;
  padding-right: unset;
}
.paginations-area .page-numbers.prev .prenext .icon-right::before {
  right: auto !important;
  left: 0 !important;
  transform: rotate(180deg);
}
.paginations-area .page-numbers.prev .prenext .icon-right::after {
  right: auto !important;
  left: 5px !important;
  transform: rotate(180deg);
}
.paginations-area .page-numbers.prev .prenext:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.paginations-area .page-numbers.prev .prenext:hover .icon-right::before {
  left: 0;
  opacity: 0;
}
.paginations-area .page-numbers.prev .prenext:hover .icon-right::after {
  opacity: 1;
  right: auto !important;
  left: 0 !important;
}
.paginations-area .page-numbers.next {
  top: 5px;
}
.paginations-area .page-numbers.next .prenext {
  font-size: var(--fontSize16);
  border: 1px solid var(--borderColor);
  transition: var(--transition);
  color: var(--whiteColor);
  background-color: var(--headingColor);
  font-weight: 500;
  padding: 15px 29px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  border-radius: 0;
}
.paginations-area .page-numbers.next .prenext .icon-right {
  position: relative;
  padding-right: 25px;
}
.paginations-area .page-numbers.next .prenext .icon-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  font-family: flaticon_vaxa;
  top: 0;
  right: 0;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.paginations-area .page-numbers.next .prenext .icon-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  font-family: flaticon_vaxa;
  top: 0;
  right: 5px;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.paginations-area .page-numbers.next .prenext:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.paginations-area .page-numbers.next .prenext:hover .icon-right::before {
  right: 0;
  opacity: 0;
}
.paginations-area .page-numbers.next .prenext:hover .icon-right::after {
  right: 0;
  opacity: 1;
}
.paginations-area .page-numbers:hover {
  color: #838896;
  background-color: transparent;
}
.paginations-area .page-numbers.current {
  color: #838896;
  background-color: transparent;
}
.paginations-area.mt-0 {
  margin-bottom: 0;
}

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

/* Max width 767px */
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--fontSize15);
  }
  .pt-100 {
    padding-top: 70px;
  }
  .ptb-160 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pt-160 {
    padding-top: 70px;
  }
  .pb-160 {
    padding-bottom: 70px;
  }
  .pt-135 {
    padding-top: 35px;
  }
  .pb-135 {
    padding-bottom: 35px;
  }
  .pb-75 {
    padding-bottom: 10px;
  }
  .pb-100 {
    padding-bottom: 70px;
  }
  .default-btn {
    padding: 11px 20px;
    font-size: 15px;
  }
  .mb-50 {
    margin-bottom: 30px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .section-title .top-title {
    margin-bottom: 8px;
  }
  .section-title h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .paginations {
    margin-top: 0;
  }
  .paginations-area {
    margin-top: 20px;
  }
  .paginations-area .page-numbers {
    font-size: 16px;
  }
  .paginations-area .page-numbers .prenext {
    position: relative;
    top: -8px;
    font-size: 0;
    width: 45px;
    height: 45px;
  }
  .paginations-area .page-numbers .prenext .icon-right {
    position: relative;
    padding-right: 25px;
  }
  .paginations-area .page-numbers .prenext .icon-right::before {
    width: 35px;
    height: 35px;
    text-align: center;
    left: 0 !important;
    right: 0 !important;
    top: -10px;
    text-align: center;
  }
  .paginations-area .page-numbers .prenext .icon-right::after {
    display: none;
  }
  .paginations-area .page-numbers .prenext:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
  }
  .paginations-area .page-numbers .prenext:hover .icon-right::before {
    right: 0;
    right: 0;
    opacity: 1;
  }
  .paginations-area .page-numbers .prenext:hover .icon-right::after {
    display: none;
  }
  .paginations-area .page-numbers.prev {
    top: 0;
  }
  .paginations-area .page-numbers.prev .prenext .icon-right {
    padding-left: 0;
  }
  .paginations-area .page-numbers.prev .prenext .icon-right::before {
    left: -5px !important;
    right: 0 !important;
  }
  .paginations-area .page-numbers.prev .prenext .icon-right::after {
    display: none;
  }
  .paginations-area .page-numbers.prev .prenext:hover .icon-right::before {
    left: -5px !important;
    right: 0 !important;
    opacity: 1;
  }
  .paginations-area .page-numbers.prev .prenext:hover .icon-right::after {
    display: none;
  }
  .paginations-area .page-numbers.next {
    top: 0;
  }
  .paginations-area .page-numbers.next .prenext {
    font-size: 0;
    width: 45px;
    height: 45px;
  }
  .paginations-area .page-numbers.next .prenext .icon-right {
    position: relative;
    padding-right: 25px;
  }
  .paginations-area .page-numbers.next .prenext .icon-right::before {
    width: 35px;
    height: 35px;
    text-align: center;
    left: -27px !important;
    right: 0 !important;
    text-align: center;
    top: -10px;
  }
  .paginations-area .page-numbers.next .prenext .icon-right::after {
    display: none;
  }
  .paginations-area .page-numbers.next .prenext:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
  }
  .paginations-area .page-numbers.next .prenext:hover .icon-right::before {
    left: -27px !important;
    right: 0 !important;
    opacity: 1;
  }
  .paginations-area .page-numbers.next .prenext:hover .icon-right::after {
    display: none;
  }
  .paginations-area.mt-0 {
    margin-bottom: 0;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: var(--fontSize16);
  }
  .pt-100 {
    padding-top: 70px;
  }
  .ptb-160 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pt-160 {
    padding-top: 70px;
  }
  .pb-160 {
    padding-bottom: 70px;
  }
  .pt-135 {
    padding-top: 35px;
  }
  .pb-135 {
    padding-bottom: 35px;
  }
  .pb-75 {
    padding-bottom: 10px;
  }
  .pb-100 {
    padding-bottom: 70px;
  }
  .default-btn {
    padding: 11px 20px;
    font-size: 15px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .mb-50 {
    margin-bottom: 30px;
  }
  .section-title .top-title {
    margin-bottom: 8px;
  }
  .section-title h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .paginations {
    margin-top: 30px;
  }
  .paginations-area {
    margin-top: 20px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title.mb-90 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 1199px) {
  .shape {
    display: none;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1224px;
  }
  .mw-1744 {
    max-width: 1744px;
  }
  .ftmw-1744 {
    max-width: 1724px !important;
    margin: 0 auto;
  }
  .mt-0 .features-single-item {
    margin-bottom: 0 !important;
  }
}
/* Navbar Area Style
==================================== */
.navbar {
  z-index: 999;
  transition: var(--transition);
  border-bottom: 1px solid var(--borderColor);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 18px;
  padding-right: 18px;
}
.navbar .navbar-brand {
  margin-right: 20px;
  padding: 0;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #41495C;
  transition: var(--transition);
  position: relative;
  padding: 24px 20.5px;
  z-index: 1;
  font-size: var(--fontSize16);
  font-weight: 500;
}
.navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #FFF3ED;
  z-index: -1;
  border-top: 2px solid var(--whiteColor);
  transition: var(--transition);
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  position: absolute;
  vertical-align: 0;
  content: "\ea4e";
  margin-left: 0;
  right: -4px;
  border: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: remixicon !important;
  font-size: 18px;
  transition: var(--transition);
  display: none;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .nav-link.active::before {
  height: 100%;
  top: auto;
  bottom: 0;
  border-color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle::after {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .nav-link:hover::before {
  height: 100%;
  top: auto;
  bottom: 0;
  border-color: var(--mainColor);
}
.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item.active .nav-link::before {
  height: 100%;
  top: auto;
  bottom: 0;
  border-color: var(--mainColor);
}
.navbar .navbar-nav .nav-item.active .nav-link.dropdown-toggle::after {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item.active .dropdown-menu .nav-link {
  color: #41495C;
}
.navbar .navbar-nav .nav-item.active .dropdown-menu .nav-link::before {
  display: none;
}
.navbar .navbar-nav .nav-item.active .dropdown-menu .nav-link.dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 100%;
  opacity: 0;
  width: 250px;
  padding: 15px 20px;
  border-radius: 0;
  visibility: hidden;
  display: block !important;
  background-color: var(--whiteColor);
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  border: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
}
.navbar .navbar-nav .nav-item .dropdown-menu li.mw-606 {
  max-width: 606.61px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li.mw-1200 {
  max-width: 1200px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .preview-style {
  padding-bottom: 23px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .preview-style li {
  position: unset;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .preview-style li:nth-child(2) .dropdown-images {
  top: -50px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .preview-style li:nth-child(3) .dropdown-images {
  top: -90px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .preview-style li:hover::before {
  opacity: 1;
  right: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .preview-style li.active::before {
  opacity: 1;
  right: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  display: block;
  padding: 10px 0;
  position: relative;
  color: #565D6F;
  background-color: transparent !important;
  white-space: normal;
  font-size: var(--fontSize15);
  font-weight: 400;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item span {
  display: inline-block;
  padding-bottom: 2px;
  transition: var(--transition);
  position: relative;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item span::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item .dropdown-images {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  width: 135px;
  height: 148px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
  border: 5px solid #FFF3ED;
  padding: 5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-toggle {
  padding-right: 18px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-toggle::after {
  position: absolute;
  vertical-align: 0;
  content: "\ea6e";
  margin-left: 0;
  right: 12px;
  border: 0;
  top: 5px;
  transition: var(--transition);
  font-size: 20px;
  font-family: remixicon !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active span::before {
  width: 100%;
  right: auto;
  left: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active .dropdown-images {
  opacity: 1;
  right: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover span::before {
  width: 100%;
  right: auto;
  left: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover .dropdown-images {
  opacity: 1;
  right: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  visibility: hidden;
  right: -101%;
  left: auto;
  opacity: 0;
  top: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu.sub-dropdown-2 {
  opacity: 0 !important;
  visibility: hidden !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-item.dropdown-toggle {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-item.dropdown-toggle::after {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu.sub-dropdown-2 {
  opacity: 1 !important;
  visibility: visible !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown.dropdown-toggle::after {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  display: block;
  padding: 10px 0;
  position: relative;
  color: #565D6F;
  background-color: transparent !important;
  white-space: normal;
  font-size: var(--fontSize15);
  font-weight: 400;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item::before {
  display: none;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover::after {
  width: 30%;
  left: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active::after {
  width: 30%;
  left: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li.active .dropdown-item {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li.active .dropdown-item::after {
  width: 30%;
  left: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu .mega-listing .dropdown-item::after {
  display: none !important;
}
.navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--mainColor);
}
.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after {
  color: var(--mainColor) !important;
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar .navbar-nav .nav-item:hover.mega-menu .dropdown-menu {
  pointer-events: auto;
}
.navbar .navbar-nav .nav-item.mega-menu {
  position: unset;
}
.navbar .navbar-nav .nav-item.mega-menu .dropdown-menu {
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  margin: auto;
  padding: 30px;
  margin-top: 0;
  position: absolute;
  transform: unset !important;
  pointer-events: none;
}
.navbar .navbar-nav .nav-item.mega-menu .dropdown-menu .sub-menu li a {
  border-bottom: 1px dashed #eeeeee;
  padding-left: 0;
  padding-right: 0;
}
.navbar .navbar-nav .nav-item.mega-menu .dropdown-menu .sub-menu li:first-child a {
  padding-top: 0;
}
.navbar .navbar-nav .nav-item.mega-menu .dropdown-menu .sub-menu li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}
.navbar .navbar-toggler {
  color: var(--blackColor);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background-color: var(--bodyColor);
}
.navbar .others-options {
  position: relative;
  top: 4px;
}
.navbar .others-options .option-item {
  margin-right: 20px;
}
.navbar .others-options .option-item:last-child {
  margin-right: 0;
}
.navbar .others-options .option-item .cart {
  text-decoration: none;
  color: var(--bodyColor);
  position: relative;
  z-index: 1;
  margin-right: 7px;
}
.navbar .others-options .option-item .cart i {
  font-size: 28px;
  line-height: 1;
  transition: var(--transition);
}
.navbar .others-options .option-item .cart .mini-cart-count {
  font-size: 10px;
  position: absolute;
  top: -12px;
  right: -7px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-radius: 50px;
  text-align: center;
}
.navbar .others-options .option-item .cart:hover i {
  color: var(--mainColor);
}
.navbar .others-options .option-item .search i {
  font-size: 32px;
  color: var(--bodyColor);
  line-height: 1;
  transition: var(--transition);
}
.navbar .others-options .option-item .search i:hover {
  color: var(--mainColor);
}
.navbar .others-options .option-item .burger {
  position: relative;
  width: 72px;
  height: 72px;
  line-height: 106px;
  text-align: center;
  background-color: var(--mainColor);
  top: -4px;
  transition: var(--transition);
}
.navbar .others-options .option-item .burger i {
  font-size: 47px;
  color: var(--whiteColor);
  line-height: 1;
}
.navbar .others-options .option-item .burger:hover {
  background-color: var(--headingColor);
}
.navbar .others-options .option-item .search-input {
  color: var(--bodyColor);
  display: inline-block;
  line-height: 1;
}
.navbar .others-options .option-item .search-input .search-overlay {
  display: none;
}
.navbar .others-options .option-item .search-input .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: var(--whiteColor);
  z-index: 2;
  padding: 20px;
  box-shadow: var(--boxShadow);
}
.navbar .others-options .option-item .search-input .search-overlay.search-popup .search-form {
  position: relative;
}
.navbar .others-options .option-item .search-input .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: var(--headingColor);
  outline: 0;
  transition: var(--transition);
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}
.navbar .others-options .option-item .search-input .search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--mainColor);
}
.navbar .others-options .option-item .search-input .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--mainColor);
  border: none;
  width: 50px;
  outline: 0;
  color: var(--whiteColor);
  transition: var(--transition);
  padding: 0;
}
.navbar .others-options .option-item .search-input .search-overlay.search-popup .search-form .search-button:hover {
  background-color: var(--headingColor);
}
.navbar .others-options .option-item .search-input .search-btn {
  cursor: pointer;
  text-align: center;
  display: inline-block;
  font-size: 32px;
  color: var(--bodyColor);
  line-height: 1;
  transition: var(--transition);
}
.navbar .others-options .option-item .search-input .search-btn:hover {
  color: var(--mainColor);
}
.navbar .others-options .option-item .search-input .close-btn {
  cursor: pointer;
  transition: var(--transition);
  color: var(--headingColor);
  text-align: center;
  display: none;
  font-size: 32px;
  position: relative;
  top: -3px;
}
.navbar .others-options .option-item .search-input .close-btn:hover {
  color: var(--mainColor);
}
.navbar .others-options .option-item .search-input .close-btn.active {
  display: block;
  color: var(--mainColor);
}
.navbar.nav-style-two .navbar-brand {
  margin-right: 127px;
}
.navbar.nav-style-two .container-fluid {
  max-width: 1744px;
}
.navbar.nav-style-two .navbar-nav .nav-item .nav-link {
  padding: 38px 20.5px;
}
.navbar.nav-style-two .others-options {
  top: 5px;
}
.navbar.nav-style-two .others-options .option-item:last-child {
  margin-right: 0;
}
.navbar.nav-style-two .others-options .option-item .default-btn {
  position: relative;
  top: -4px;
  margin-right: 10px;
}
.navbar.nav-style-two .others-options .option-item .burger {
  height: 100px;
  line-height: 133px;
  top: -5px;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
  padding: 28px 20.5px;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .nav-link::before {
  background-color: transparent;
  border-color: var(--headingColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .nav-link.active::before {
  border-color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .nav-link:hover::before {
  border-color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item.active .nav-link::before {
  border-color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu.mw-1720 {
  max-width: 1720px;
  margin: auto;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu.active .nav-link {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu.active .nav-link::before {
  border-color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu.active .dropdown-menu .dropdown-item .nav-link {
  color: var(--headingColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu.active .dropdown-menu .dropdown-item .nav-link::before {
  display: none;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  display: block;
  padding: 10px 0;
  position: relative;
  color: #565D6F;
  background-color: transparent !important;
  white-space: normal;
  font-size: var(--fontSize15);
  font-weight: 400;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item::before {
  display: none;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover::after {
  width: 30%;
  left: 0;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active::after {
  width: 30%;
  left: 0;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li.active .dropdown-item {
  color: var(--mainColor);
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu li.active .dropdown-item::after {
  width: 30%;
  left: 0;
}
.navbar.nav-style-three.navbar .navbar-nav .nav-item .dropdown-menu .mega-listing .dropdown-item::after {
  display: none !important;
}
.navbar.nav-style-three .others-options {
  padding-right: 12px;
}
.navbar.nav-style-three .others-options .option-item .default-btn {
  position: relative;
  top: -3.5px;
}
.navbar.nav-style-three .others-options .option-item .default-btn:hover {
  background-color: var(--whiteColor);
  color: var(--headingColor);
}
.navbar.nav-style-three .others-options .option-item .default-btn:hover .icon-right::before {
  filter: invert(1);
}
.navbar.nav-style-three .others-options .option-item .default-btn:hover .icon-right::after {
  filter: invert(1);
}
.navbar.nav-style-three .others-options .option-item .default-btn:hover .icon-right.two {
  filter: invert(1);
}
.navbar.nav-style-three .others-options .option-item .default-btn.active .icon-right.two {
  filter: invert(1);
}
.navbar.nav-style-three .others-options .option-item .default-btn.active:hover .icon-right.two {
  filter: invert(1);
}
.navbar.nav-style-three .others-options .option-item i {
  color: var(--whiteColor);
}
.navbar.nav-style-three .others-options .option-item .search-btn {
  color: var(--whiteColor);
}
.navbar.nav-style-three .others-options .option-item .search-btn:hover {
  color: var(--mainColor);
}
.navbar.nav-style-three.bg-fff3ed::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: var(--whiteColor);
  z-index: -1;
}
.navbar.sticky {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background-color: var(--whiteColor) !important;
}
.navbar.sticky.nav-style-two {
  box-shadow: var(--boxShadow);
}

.navbar-one .mw-1200 {
  max-width: 606.61px;
}

.nav-style-two .mw-1200 {
  max-width: 1200px;
}

.nav-style-three .mw-1200 {
  max-width: 1720px;
  margin: auto;
}

.nav-style-three .others-options .option-item .default-btn:hover .icon-right .two svg {
  filter: invert(1);
}
.nav-style-three .others-options .option-item .default-btn.active:hover .icon-right .two svg {
  filter: invert(1);
}

.navbar.no-sticky.sticky {
  display: none !important;
}
.navbar.vixa-hide-adminbar.sticky {
  top: 32px;
}
.navbar.nav-style-three.sticky {
  box-shadow: none;
}

.vixa-hide-adminbar.offcanvas.offcanvas-end {
  top: 32px;
}

.logo-responsive-option {
  text-decoration: none;
  margin-bottom: 0;
  font-size: 35px;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*
Cart Offcanvas Style
======================================================*/
.cart-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--borderColor);
  padding: 20px 30px;
}
.cart-offcanvas .offcanvas-title {
  font-size: 20px;
  font-weight: 600;
}
.cart-offcanvas .offcanvas-body {
  padding: 30px;
}
.cart-offcanvas .offcanvas-body .widgettitle {
  display: none;
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__total {
  border: none;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  padding-top: 15px;
  padding-bottom: 15px;
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__total strong {
  font-weight: 700;
  color: var(--blackColor);
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__total .woocommerce-Price-amount {
  float: right;
  font-weight: 700;
  color: var(--blackColor);
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward {
  display: inline-block !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--whiteColor);
  padding: 15px 54px 15px 29px;
  transition: all ease 0.5s;
  text-align: center;
  background-color: var(--headingColor);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  border-radius: 0;
  position: relative;
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward::before {
  content: "";
  position: absolute;
  bottom: 0;
  font-family: flaticon_vaxa;
  top: 0;
  right: 25px;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward::after {
  content: "";
  position: absolute;
  bottom: 0;
  font-family: flaticon_vaxa;
  top: 0;
  right: 35px;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward.checkout {
  float: inline-end;
  background-color: var(--mainColor);
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward.checkout:hover {
  background-color: var(--headingColor);
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward:hover::before {
  right: 0;
  opacity: 0;
}
.cart-offcanvas .offcanvas-body .woocommerce-mini-cart__buttons .button.wc-forward:hover::after {
  right: 25px;
  opacity: 1;
}
.cart-offcanvas .cart-list {
  transition: var(--transition);
  position: relative;
  max-height: 814px;
  overflow-y: auto;
  padding-left: 0;
}
.cart-offcanvas .cart-list .cart-min-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--borderColor) !important;
  padding-bottom: 15px;
  position: relative;
  padding-left: 0 !important;
}
.cart-offcanvas .cart-list .cart-min-item a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--bodyColor);
}
.cart-offcanvas .cart-list .cart-min-item a.remove {
  top: 50% !important;
  transform: translateY(-75%) !important;
  transition: 0.7s;
  right: 10px !important;
  left: auto !important;
}
.cart-offcanvas .cart-list .cart-min-item a.remove i {
  font-size: 18px;
  color: var(--bodyColor);
  transition: 0.7s;
}
.cart-offcanvas .cart-list .cart-min-item a.remove:hover {
  background-color: transparent;
}
.cart-offcanvas .cart-list .cart-min-item a.remove:hover i {
  color: var(--mainColor);
}
.cart-offcanvas .cart-list .cart-min-item img {
  width: 60px;
  border: 1px solid var(--borderColor);
  padding: 5px;
}
.cart-offcanvas .cart-list .cart-min-item .quantity .woocommerce-Price-amount {
  font-weight: 500;
  color: var(--headingColor);
}
.cart-offcanvas .btn-close:focus {
  box-shadow: none;
}
.cart-offcanvas .btn-close:focus {
  box-shadow: none;
}

/*
Info Offcanvas Style
======================================================*/
.info-offcanvas.offcanvas.offcanvas-end {
  width: 640px !important;
}
.info-offcanvas .offcanvas-header {
  padding: 45px 50px;
  margin-bottom: 70px;
}
.info-offcanvas .offcanvas-body {
  padding: 45px;
  padding-top: 0;
}
.info-offcanvas .info-single-item {
  position: relative;
}
.info-offcanvas .info-single-item.oblig::before {
  content: "";
  position: absolute;
  top: 0;
  right: -66px;
  width: 1px;
  height: 100%;
  background-color: #E5E6E9;
  transform: rotate(20deg);
}
.info-offcanvas .info-single-item h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}
.info-offcanvas .info-single-item p {
  color: #6C7282;
  line-height: 1.4;
  max-width: 165px;
}
.info-offcanvas .contact-info {
  margin-bottom: 70px;
}
.info-offcanvas .contact-info h4 {
  font-weight: 500;
  font-size: 31px;
  margin-bottom: 20px;
}
.info-offcanvas .contact-info ul li {
  margin-bottom: 10px;
}
.info-offcanvas .contact-info ul li:last-child {
  margin-bottom: 0;
}
.info-offcanvas .contact-info ul li a {
  text-decoration: none;
}
.info-offcanvas .mt-50 {
  margin-top: 50px;
}
.info-offcanvas .py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.info-offcanvas .btn-close:focus {
  box-shadow: none;
}

/*
Search Offcanvas Style
======================================================*/
.src-offcanvas {
  max-width: 50%;
  margin: auto;
  border-radius: 20px 20px 0 0;
}
.src-offcanvas.offcanvas.offcanvas-bottom {
  height: auto;
}
.src-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--borderColor);
  padding: 10px 30px;
}
.src-offcanvas .offcanvas-header .offcanvas-title {
  font-weight: 600;
}
.src-offcanvas .offcanvas-body {
  padding: 30px;
}
.src-offcanvas .offcanvas-body .form-control {
  height: 58px;
}
.src-offcanvas .offcanvas-body .default-btn {
  margin-right: 1px;
}
.src-offcanvas .btn-close:focus {
  box-shadow: none;
}

/* For Mobile Navbar Area Style
==================================== */
.mobile-navbar .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.mobile-navbar .offcanvas-header .close-btn {
  transition: var(--transition);
  font-size: 30px;
  cursor: pointer;
  top: 2px;
}
.mobile-navbar .offcanvas-header .close-btn:hover {
  color: var(--mainColor);
}
.mobile-navbar .offcanvas-body {
  padding: 20px;
}
.mobile-navbar .offcanvas-body ul {
  list-style-type: none;
  margin-bottom: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu {
  padding-left: 0;
  overflow: hidden;
  box-shadow: var(--boxShadow);
  padding: 10px 25px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list {
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  height: 50px;
  clear: both;
  width: 100%;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list:last-child {
  border: none;
  margin-bottom: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list:after {
  top: 50%;
  right: 0;
  content: "\ea4e";
  color: var(--blackColor);
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  font-family: remixicon !important;
  font-style: normal;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a {
  height: 100%;
  display: block;
  padding-right: 40px;
  text-decoration: none;
  color: var(--blackColor);
  position: relative;
  top: 5px;
  font-size: 15px;
  font-weight: 400;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:hover, .mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a.active {
  color: var(--blackColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items {
  height: 0;
  overflow: hidden;
  padding: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list::after {
  right: 30px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items.sub-dropdown {
  width: 83% !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a {
  padding: 0 20px;
  font-size: 15px;
  white-space: normal;
  top: 0;
  font-size: 15px;
  font-weight: 400;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a.active {
  color: var(--mainColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a:hover {
  color: var(--mainColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items.sub-dropdown {
  box-shadow: var(--boxShadow);
  margin: 0 20px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon:after {
  display: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon.active .nav-link {
  color: var(--mainColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active:after {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items {
  transition: all 300ms;
  display: block;
  height: auto;
  clear: both;
  float: left;
  width: 100%;
  box-shadow: var(--boxShadow);
  padding-top: 20px;
  padding-bottom: 20px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items .mobile-menu-list::after {
  right: 30px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items li:last-child {
  border: none;
  margin-bottom: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > a {
  color: var(--mainColor);
}

/*
Responsive Navbar Area CSS
===================================================*/
.responsive-navbar {
  border: 0 !important;
  border: 0 !important;
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-header {
  padding: 25px 25px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.responsive-navbar .offcanvas-header .close-btn {
  transition: var(--transition);
  color: var(--titleColor);
  font-size: 25px;
  cursor: pointer;
  top: 2px;
}
.responsive-navbar .offcanvas-header .close-btn:hover {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-header .logo {
  text-decoration: none;
}
.responsive-navbar .offcanvas-body {
  padding: 30px 15px 15px;
}
.responsive-navbar .offcanvas-body .navbar-nav .menu-item-has-children {
  position: relative;
  padding: 4px 0 5px;
  z-index: 1;
}
.responsive-navbar .offcanvas-body .navbar-nav .menu-item-has-children::before {
  position: absolute;
  content: "\ea4d";
  z-index: -1;
  right: 0;
  font-family: "remixicon" !important;
  width: 30px;
  height: 30px;
  background-color: #f3f3f3;
  line-height: 30px;
  text-align: center;
  top: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li {
  margin-bottom: 17px;
  list-style-type: none;
  font-size: 15px;
}
.responsive-navbar .offcanvas-body .navbar-nav li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li a {
  text-decoration: none;
  width: 100% !important;
  display: block;
  padding: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu {
  display: none;
  background-color: #f8f8f8;
  margin-top: 12px;
  padding: 20px;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li {
  list-style-type: none;
  margin-bottom: 12px;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li .sub-menu {
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-item a {
  color: var(--mainColor);
  font-weight: 500;
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-item ul li a {
  color: var(--blackColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor a {
  color: var(--mainColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor ul li a {
  color: var(--blackColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor ul li.current_page_item a {
  color: var(--mainColor);
}
.responsive-navbar .offcanvas-body .others-option {
  margin-top: 20px;
}
.responsive-navbar .offcanvas-body .others-option .option-item {
  margin-right: 30px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:nth-child(2) {
  padding-right: 20px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:last-child {
  margin-right: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu .mega-listing {
  display: block !important;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu .preview-style li a img {
  display: none;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .navbar.vixa-hide-adminbar.sticky {
    top: 0;
  }
  .vixa-hide-adminbar.offcanvas.offcanvas-end {
    top: 45px;
  }
  .navbar .container-fluid {
    position: relative;
    max-width: 540px;
  }
  .navbar .navbar-brand {
    max-width: 120px;
  }
  .navbar .others-options .option-item {
    margin-right: 5px;
  }
  .navbar .others-options .option-item .search-input .search-overlay.search-popup {
    right: -47px;
  }
  .mobile-navbar .offcanvas-header {
    padding: 20px;
  }
  .mobile-navbar .offcanvas-body {
    padding: 20px;
  }
  .src-offcanvas {
    max-width: 100%;
  }
  .info-offcanvas .offcanvas-header {
    padding: 20px 30px;
    margin-bottom: 20px;
  }
  .info-offcanvas .offcanvas-body {
    padding: 30px;
    padding-top: 0;
  }
  .info-offcanvas .info-single-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .info-offcanvas .info-single-item p {
    font-size: 14px;
  }
  .info-offcanvas .info-single-item.oblig::before {
    display: none;
  }
  .info-offcanvas .mt-50 {
    margin-top: 20px;
  }
  .info-offcanvas .py-50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .info-offcanvas .contact-info {
    margin-bottom: 20px;
  }
  .info-offcanvas .contact-info h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .cart-offcanvas .offcanvas-body {
    padding: 15px;
  }
  .cart-offcanvas .offcanvas-header {
    padding: 15px;
  }
  .nav-mb {
    margin-bottom: 15px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .navbar .others-options .option-item {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
  .navbar.vixa-hide-adminbar.sticky {
    top: 46px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 782px) {
  .vixa-hide-adminbar.offcanvas.offcanvas-end {
    top: 45px;
  }
}
@media only screen and (min-width: 783px) and (max-width: 991px) {
  .navbar.vixa-hide-adminbar.sticky {
    top: 32px;
  }
  .vixa-hide-adminbar.offcanvas.offcanvas-end {
    top: 32px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Navbar Area */
  .navbar .container-fluid {
    position: relative;
    max-width: 720px;
  }
  .navbar .navbar-brand {
    max-width: 120px;
  }
  .navbar .others-options .option-item {
    margin-right: 15px;
  }
  .src-offcanvas {
    max-width: 100%;
  }
  .info-offcanvas .offcanvas-header {
    padding: 20px 30px;
    margin-bottom: 20px;
  }
  .info-offcanvas .offcanvas-body {
    padding: 30px;
    padding-top: 0;
  }
  .info-offcanvas .info-single-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .info-offcanvas .info-single-item p {
    font-size: 14px;
  }
  .info-offcanvas .info-single-item.oblig::before {
    display: none;
  }
  .info-offcanvas .mt-50 {
    margin-top: 20px;
  }
  .info-offcanvas .py-50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .info-offcanvas .contact-info {
    margin-bottom: 20px;
  }
  .info-offcanvas .contact-info h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-brand {
    margin-right: 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 24px 18.5px;
  }
  .navbar.nav-style-two .navbar-brand {
    margin-right: 15px;
  }
  .navbar.nav-style-two .others-options .option-item {
    margin-right: 15px;
  }
  .navbar.nav-style-two .others-options .option-item:last-child {
    margin-right: 0;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navbar.nav-style-two .navbar-brand {
    margin-right: 40px;
  }
  .navbar.nav-style-two .others-options .option-item {
    margin-right: 12px;
  }
  .navbar.nav-style-two .others-options .option-item .default-btn {
    margin-right: 0;
  }
}
/* Mobile and iPad Navbar Area Style */
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 15px 0;
  }
  .navbar .mw-1680 {
    border-radius: 0;
  }
  .navbar .others-options {
    position: absolute;
    right: 58px;
    top: 4px;
  }
  .navbar .others-options .option-item i {
    font-size: 16px;
  }
  .navbar .others-options .option-item span {
    font-size: 12px;
    margin-left: 3px;
  }
  .navbar .others-options .option-item .burger {
    width: auto;
    height: auto;
    line-height: normal;
    padding: 0;
    top: 0;
    background-color: transparent;
  }
  .navbar .others-options .option-item .burger i {
    font-size: 32px;
    color: var(--bodyColor);
  }
  .navbar.nav-style-two .others-options .option-item .burger {
    height: 0;
    line-height: normal;
    top: 0;
  }
  .navbar.nav-style-three {
    background-color: var(--headingColor);
    padding: 12px 0 !important;
  }
  .navbar.nav-style-three .navbar-toggler .burger-menu span {
    background-color: var(--whiteColor);
  }
  .navbar.nav-style-three .others-options {
    padding-right: 0;
  }
  .navbar.nav-style-three .others-options .option-item:nth-child(2) {
    margin-right: 0;
  }
  .navbar.nav-style-three.bg-fff3ed::before {
    display: none;
  }
  .navbar.nav-style-three.sticky {
    background-color: var(--headingColor) !important;
    top: -1px;
  }
}
/* Banner Area Style
============================================*/
.banner-content-wrap {
  padding-top: 85px;
  padding-bottom: 40px;
}

.banner-content {
  max-width: 730px;
}
.banner-content .top-title {
  color: var(--mainColor);
  display: block;
  margin-bottom: 13px;
}
.banner-content h2 {
  font-size: 61px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
.banner-content p {
  margin-bottom: 30px;
}

.hero-wrap {
  padding: 255px 200px;
  margin-right: 72px;
  position: relative;
  z-index: 1;
}
.hero-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: -72px;
  width: 72px;
  height: 100%;
  background-color: #FFF3ED;
  z-index: -1;
}
.hero-wrap .hero-info {
  line-height: 1;
  position: absolute;
  right: -43px;
  top: 142px;
}
.hero-wrap .hero-info li {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #CCCED4;
  writing-mode: vertical-lr;
}
.hero-wrap .hero-info li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.hero-wrap .hero-info li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #41495C;
  transform: rotate(180deg);
  display: block;
}
.hero-wrap .hero-info li a span {
  font-weight: 400;
  color: #565D6F;
}
.hero-wrap .hero-info li a:hover {
  color: var(--mainColor);
}
.hero-wrap.style-two {
  padding: 150px 138px;
}
.hero-wrap.style-two .hero-info {
  top: 50%;
  transform: translateY(-50%);
}

.banner-hero-content {
  max-width: 540px;
}
.banner-hero-content .title {
  border-radius: 4px;
  display: inline-block;
  padding: 2px 10.5px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  margin-bottom: 10px;
}
.banner-hero-content h2 {
  font-size: 61px;
  line-height: 120%;
  color: var(--whiteColor);
  margin-bottom: 20px;
  font-weight: 500;
}
.banner-hero-content p {
  color: var(--whiteColor);
  margin-bottom: 39px;
}
.banner-hero-content .video-btn {
  width: 56px;
  height: 56px;
  line-height: 63px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--whiteColor);
  border-radius: 50px;
  color: var(--whiteColor);
  transition: var(--transition);
  margin-left: 20px;
}
.banner-hero-content .video-btn i {
  font-size: 24px;
  position: relative;
  left: 3px;
}
.banner-hero-content .video-btn:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.banner-hero-content.style-two h2 {
  font-size: 39px;
  margin-bottom: 0;
}

.banner-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.banner-arrow .banner-prev {
  transform: rotate(180deg);
  margin-right: 1px;
}
.banner-arrow .controller-icon {
  width: 72px;
  height: 72px;
  line-height: 94px;
  background-color: var(--mainColor);
  text-align: center;
  transition: var(--transition);
}
.banner-arrow .controller-icon i {
  font-size: 32px;
  line-height: 0;
  color: var(--whiteColor);
  transition: var(--transition);
}
.banner-arrow .controller-icon:hover {
  background-color: var(--headingColor);
}

.hero-wrap-three .hero-info {
  line-height: 1;
  position: absolute;
  right: 0;
  top: 200px;
  z-index: 1;
}
.hero-wrap-three .hero-info li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCED4;
  writing-mode: vertical-lr;
}
.hero-wrap-three .hero-info li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.hero-wrap-three .hero-info li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #41495C;
  transform: rotate(180deg);
  display: block;
}
.hero-wrap-three .hero-info li a:hover {
  color: var(--mainColor);
}
.hero-wrap-three .hero-info li span {
  font-weight: 400;
  color: #565D6F;
  transform: rotate(180deg);
  display: block;
}

.banner-hero-content-three {
  width: 875px;
  height: 875px;
  border-radius: 500px;
  margin-left: -100px;
  position: relative;
}
.banner-hero-content-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(239, 36, 7, 0.8);
  border-radius: 500px;
}
.banner-hero-content-three .banner-hero-content-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  width: 570px;
  margin: auto;
}
.banner-hero-content-three .title {
  border-radius: 4px;
  display: inline-block;
  padding: 2px 10.5px;
  background-color: var(--headingColor);
  color: var(--whiteColor);
  margin-bottom: 10px;
}
.banner-hero-content-three h2 {
  font-size: 61px;
  line-height: 120%;
  color: var(--whiteColor);
  margin-bottom: 20px;
  font-weight: 500;
}
.banner-hero-content-three p {
  color: var(--whiteColor);
  margin-bottom: 39px;
}
.banner-hero-content-three .default-btn {
  border-color: var(--headingColor);
}
.banner-hero-content-three .default-btn:hover {
  border-color: var(--mainColor);
}
.banner-hero-content-three .video-btn {
  width: 56px;
  height: 56px;
  line-height: 63px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--whiteColor);
  border-radius: 50px;
  color: var(--whiteColor);
  transition: var(--transition);
  margin-left: 20px;
}
.banner-hero-content-three .video-btn i {
  font-size: 24px;
  position: relative;
  left: 3px;
}
.banner-hero-content-three .video-btn:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.banner-arrow-three {
  position: absolute;
  right: 0;
  bottom: 60px;
  z-index: 2;
}
.banner-arrow-three .banner-prev2 {
  transform: rotate(180deg);
}
.banner-arrow-three .controller-icon {
  width: 50px;
  height: 50px;
  line-height: 63px;
  background-color: var(--mainColor);
  text-align: center;
  transition: var(--transition);
}
.banner-arrow-three .controller-icon i {
  font-size: 22px;
  line-height: 0;
  color: var(--whiteColor);
  transition: var(--transition);
}
.banner-arrow-three .controller-icon:hover {
  background-color: var(--headingColor);
}

.banner-hero-img-three {
  margin-right: -203px;
}

.banner-content-inner {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 1;
  max-width: 588px;
}
.banner-content-inner span {
  color: #FF9B71;
  display: block;
  margin-bottom: 10px;
}
.banner-content-inner span a {
  color: #FF9B71;
  display: block;
  text-decoration: none;
}
.banner-content-inner h2 {
  color: var(--whiteColor);
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 39px;
  line-height: 120%;
}
.banner-content-inner h2 a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: var(--mainColor);
}
.banner-content-inner h2 a:hover {
  color: var(--mainColor);
}
.banner-content-inner ul li {
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
  color: #FF9B71;
  font-size: 13px;
}
.banner-content-inner ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -2px;
  background-color: #FFF3ED;
  width: 4px;
  height: 4px;
  border-radius: 50px;
}
.banner-content-inner ul li a {
  font-size: 13px;
  color: #FF9B71;
  text-decoration: none;
}
.banner-content-inner ul li:last-child::before {
  display: none;
}

.banner-menu {
  padding-top: 150px;
  padding-bottom: 70px;
}
.banner-menu li {
  margin-right: 45px;
}
.banner-menu li:last-child {
  margin-right: 0;
}
.banner-menu li a {
  color: #565D6F;
  font-size: 31px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.banner-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.banner-menu li a.active {
  color: var(--headingColor);
}
.banner-menu li a.active::before {
  right: auto;
  left: 0;
  width: 100%;
}
.banner-menu li a:hover {
  color: var(--headingColor);
}
.banner-menu li a:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.breadcrumb-list {
  margin-bottom: 15px;
}
.breadcrumb-list li {
  position: relative;
  margin-right: 30px;
}
.breadcrumb-list li::before {
  content: "\ea6e";
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  font-family: remixicon !important;
  color: var(--whiteColor);
  font-size: 20px;
}
.breadcrumb-list li a {
  color: var(--whiteColor);
  text-decoration: none;
  font-weight: 400;
}
.breadcrumb-list li a:hover {
  color: var(--mainColor);
}
.breadcrumb-list li span {
  color: var(--mainColor);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  white-space: inherit;
  word-break: break-all;
}
.breadcrumb-list li:last-child {
  margin-right: 0;
}
.breadcrumb-list li:last-child::before {
  display: none;
}

.page-banner-content {
  text-align: center;
  padding-top: 85px;
  padding-bottom: 85px;
}
.page-banner-content .breadcrumb-list {
  margin-bottom: 10px;
}
.page-banner-content .breadcrumb-list li a {
  color: var(--bodyColor);
}
.page-banner-content .breadcrumb-list li a:hover {
  color: var(--mainColor);
}
.page-banner-content .breadcrumb-list li::before {
  color: var(--bodyColor);
}
.page-banner-content h2 {
  font-size: 39px;
  margin-bottom: 0;
  font-weight: 500;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .banner-content-wrap {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .banner-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .banner-content-inner h2 a {
    color: var(--headingColor);
  }
  .hero-wrap {
    padding: 70px 20px;
    margin-right: 30px;
  }
  .hero-wrap::after {
    width: 30px;
    right: -30px;
  }
  .hero-wrap .hero-info {
    right: -24px;
    top: 10px;
  }
  .hero-wrap .hero-info li {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .hero-wrap .hero-info li a {
    font-size: 14px;
  }
  .hero-wrap.style-two {
    padding: 70px 20px;
  }
  .banner-hero-content h2 {
    font-size: 30px;
  }
  .banner-hero-content p {
    margin-bottom: 25px;
  }
  .banner-hero-content .video-btn {
    margin-left: 10px;
    width: 46px;
    height: 45px;
    line-height: 48px;
  }
  .banner-hero-content .video-btn i {
    font-size: 16px;
  }
  .banner-hero-content.style-two h2 {
    font-size: 30px;
  }
  .banner-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 47px;
  }
  .banner-arrow .controller-icon i {
    font-size: 15px;
  }
  .banner-hero-img-three {
    height: 400px !important;
  }
  .banner-hero-content-three {
    margin: 0;
    width: auto;
    height: auto;
    border-radius: 10px;
    padding: 70px 25px;
    border-radius: 0;
  }
  .banner-hero-content-three .banner-hero-content-wrap {
    position: relative;
    transform: unset;
    width: auto;
    max-width: 540px;
  }
  .banner-hero-content-three h2 {
    font-size: 30px;
  }
  .banner-hero-content-three p {
    margin-bottom: 20px;
  }
  .banner-hero-content-three .video-btn {
    margin-left: 10px;
    width: 46px;
    height: 45px;
    line-height: 48px;
  }
  .banner-hero-content-three .video-btn i {
    font-size: 16px;
  }
  .banner-hero-content-three::before {
    border-radius: 0;
  }
  .hero-wrap-three .hero-info {
    top: 30px;
    right: 12px;
  }
  .hero-wrap-three .hero-info li a {
    color: var(--whiteColor);
  }
  .hero-wrap-three .hero-info li span {
    color: var(--whiteColor);
  }
  .banner-arrow-three .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 47px;
    background-color: var(--headingColor);
  }
  .banner-arrow-three .controller-icon i {
    font-size: 15px;
  }
  .banner-content-inner {
    position: unset;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 70px;
    padding-top: 70px;
  }
  .banner-content-inner h2 {
    color: var(--headingColor);
    font-size: 25px;
    margin-bottom: 15px;
  }
  .banner-menu {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .banner-menu li {
    margin-right: 30px;
  }
  .banner-menu li a {
    font-size: 20px;
  }
  .breadcrumb-list {
    margin-bottom: 10px;
  }
  .page-banner-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-banner-content h2 {
    font-size: 30px;
  }
  .page-banner-content .breadcrumb-list {
    margin-bottom: 5px;
  }
  .banner-arrow-three {
    bottom: 0;
  }
}
@media only screen and (min-width: 566px) and (max-width: 767px) {
  .hero-wrap {
    padding: 85px 30px;
  }
  .hero-wrap .hero-info li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content-wrap {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .banner-content {
    text-align: center;
  }
  .banner-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .hero-wrap {
    padding: 100px 50px;
    margin-right: 30px;
  }
  .hero-wrap::after {
    width: 30px;
    right: -30px;
  }
  .hero-wrap .hero-info {
    right: -24px;
    top: 20px;
  }
  .hero-wrap .hero-info li {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .hero-wrap .hero-info li a {
    font-size: 14px;
  }
  .hero-wrap.style-two {
    padding: 100px 50px;
  }
  .banner-hero-content h2 {
    font-size: 45px;
  }
  .banner-hero-content p {
    margin-bottom: 25px;
  }
  .banner-hero-content .video-btn {
    margin-left: 10px;
    width: 46px;
    height: 45px;
    line-height: 48px;
  }
  .banner-hero-content .video-btn i {
    font-size: 16px;
  }
  .banner-hero-content.style-two h2 {
    font-size: 35px;
  }
  .banner-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 47px;
  }
  .banner-arrow .controller-icon i {
    font-size: 15px;
  }
  .banner-hero-img-three {
    height: 500px !important;
    background-position: top center;
  }
  .banner-hero-content-three {
    margin: 0;
    width: auto;
    height: auto;
    border-radius: 10px;
    padding: 70px 50px;
    border-radius: 0;
  }
  .banner-hero-content-three .banner-hero-content-wrap {
    position: relative;
    transform: unset;
    width: auto;
    max-width: 720px;
  }
  .banner-hero-content-three h2 {
    font-size: 45px;
  }
  .banner-hero-content-three p {
    margin-bottom: 30px;
  }
  .banner-hero-content-three .video-btn {
    margin-left: 10px;
    width: 46px;
    height: 45px;
    line-height: 48px;
  }
  .banner-hero-content-three .video-btn i {
    font-size: 16px;
  }
  .banner-hero-content-three::before {
    border-radius: 0;
  }
  .hero-wrap-three .hero-info {
    top: 30px;
    right: 12px;
  }
  .hero-wrap-three .hero-info li a {
    color: var(--whiteColor);
  }
  .hero-wrap-three .hero-info li span {
    color: var(--whiteColor);
  }
  .banner-arrow-three .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 47px;
    background-color: var(--headingColor);
  }
  .banner-arrow-three .controller-icon i {
    font-size: 15px;
  }
  .banner-content-inner h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .banner-menu {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .banner-menu li {
    margin-right: 30px;
  }
  .banner-menu li a {
    font-size: 25px;
  }
  .breadcrumb-list {
    margin-bottom: 10px;
  }
  .page-banner-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-banner-content h2 {
    font-size: 35px;
  }
  .page-banner-content .breadcrumb-list {
    margin-bottom: 5px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-wrap {
    padding: 200px 100px;
  }
  .banner-hero-content-three {
    margin-left: -255px;
  }
  .banner-hero-content-three .banner-hero-content-wrap {
    width: 545px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrap {
    padding: 200px 100px;
  }
  .banner-hero-content-three {
    margin-left: -155px;
  }
  .banner-hero-content-three .banner-hero-content-wrap {
    width: 545px;
  }
}
/* Features Area Style
============================================*/
.features-single-item {
  margin-bottom: 25px;
}
.features-single-item.mw-280 {
  max-width: 282px;
}
.features-single-item h3 {
  font-size: 31px;
  margin-bottom: 5px;
}
.features-single-item.oblig {
  position: relative;
}
.features-single-item.oblig::before {
  content: "";
  position: absolute;
  top: 35px;
  right: -60px;
  width: 1px;
  height: 71px;
  background-color: var(--borderColor);
  transform: rotate(15deg);
}
.features-single-item.style-award {
  background-color: var(--mainColor);
  padding: 65px 55px;
  padding-top: 125px;
  margin-top: -273px;
  -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}
.features-single-item.style-award p {
  color: var(--whiteColor);
  font-size: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #FF6A3D;
}
.features-single-item.style-award h3 {
  font-size: 49px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.features-single-item.style-award span {
  font-size: 20px;
  color: var(--whiteColor);
}

.gap-140 {
  --bs-gutter-x: 140px;
  padding-left: 102px;
}

.border-style {
  position: relative;
}
.border-style::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 690px;
  height: 1px;
  background-color: var(--borderColor);
}

.br-b .border-style::before {
  display: none;
}

.our-key-features-single-item {
  background-color: #FFF3ED;
  padding: 56px;
  padding-right: 35px;
  margin-bottom: 25px;
}
.our-key-features-single-item.text-center .icon {
  margin: 0 auto;
}
.our-key-features-single-item.text-end .icon {
  margin-left: auto;
}
.our-key-features-single-item .icon {
  width: 70px;
  height: 70px;
  background-color: var(--whiteColor);
  border-radius: 100px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  transition: var(--transition);
}
.our-key-features-single-item .icon.icon-right {
  margin-left: auto;
}
.our-key-features-single-item .icon i {
  font-size: 46px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  line-height: 0;
  color: var(--mainColor);
  transition: var(--transition);
}
.our-key-features-single-item h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.our-key-features-single-item:hover .icon {
  background-color: var(--mainColor);
}
.our-key-features-single-item:hover .icon i {
  color: var(--whiteColor);
}

.key-features-wrap {
  padding: 125px 117px;
  padding-bottom: 100px;
}

.key-features-single-item-two {
  margin-bottom: 25px;
  position: relative;
}
.key-features-single-item-two::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -55px;
  width: 1px;
  height: 100px;
  background-color: #f9f9f9;
  transform: rotate(20deg) translateY(-50%);
}
.key-features-single-item-two .icon {
  width: 70px;
  height: 70px;
  line-height: 94px;
  background-color: var(--whiteColor);
  border-radius: 100px;
  text-align: center;
  position: relative;
}
.key-features-single-item-two .icon i {
  font-size: 46px;
  color: var(--mainColor);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin-top: 5px;
}
.key-features-single-item-two.text-center .icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.key-features-single-item-two h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.key-features-single-item-two p {
  max-width: 293px;
}
.key-features-single-item-two:last-child::before {
  display: none;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .features-single-item.style-award {
    margin: 0;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 20px;
  }
  .features-single-item.style-award p {
    font-size: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .features-single-item.style-award span {
    font-size: 16px;
  }
  .features-single-item.oblig::before {
    display: none;
  }
  .features-single-item.mw-280 {
    max-width: 100%;
  }
  .features-single-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .gap-140 {
    --bs-gutter-x: 1.5rem;
    padding-left: 0;
  }
  .border-style::before {
    width: 100%;
  }
  .our-key-features-single-item {
    padding: 25px;
  }
  .our-key-features-single-item .icon {
    margin-bottom: 20px;
  }
  .our-key-features-single-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .key-features-single-item-two::before {
    display: none;
  }
  .key-features-single-item-two h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .key-features-single-item-two p {
    max-width: 100%;
  }
  .key-features-wrap {
    padding: 45px 30px;
    padding-bottom: 45px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-single-item.style-award {
    margin: 0;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 30px;
  }
  .features-single-item.oblig::before {
    display: none;
  }
  .features-single-item.mw-280 {
    max-width: 100%;
  }
  .features-single-item h3 {
    font-size: 22px;
  }
  .gap-140 {
    --bs-gutter-x: 1.5rem;
    padding-left: 0;
  }
  .border-style::before {
    width: 100%;
  }
  .our-key-features-single-item {
    padding: 30px;
  }
  .our-key-features-single-item .icon {
    margin-bottom: 20px;
  }
  .our-key-features-single-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .key-features-single-item-two::before {
    display: none;
  }
  .key-features-single-item-two h3 {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .key-features-single-item-two p {
    max-width: 239px;
  }
  .key-features-wrap {
    padding: 45px 30px;
    padding-bottom: 45px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-140 {
    --bs-gutter-x: 1.5rem;
    padding-left: 0;
  }
  .features-single-item.oblig::before {
    display: none;
  }
  .features-single-item.style-award {
    padding: 20px;
    padding-top: 125px;
    margin-top: -255px;
  }
  .features-single-item.style-award span {
    font-size: 18px;
  }
  .border-style::before {
    width: 615px;
  }
  .key-features-wrap {
    padding: 125px 30px;
    padding-bottom: 100px;
  }
  .key-features-single-item-two::before {
    display: none;
  }
  .key-features-single-item-two h3 {
    font-size: 22px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gap-140 {
    padding-left: 40px;
    --bs-gutter-x: 80px;
  }
  .features-single-item.style-award {
    margin-top: -302px;
  }
  .features-single-item.style-award span {
    font-size: 18px;
  }
  .features-single-item .oblig::before {
    right: -43px;
  }
  .our-key-features-single-item {
    padding: 40px;
  }
  .key-features-wrap {
    padding: 125px 30px;
    padding-bottom: 100px;
  }
  .key-features-single-item-two::before {
    display: none;
  }
  .key-features-single-item-two h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1755px) {
  .key-features-wrap {
    padding: 125px 30px;
    padding-bottom: 100px;
  }
  .key-features-single-item-two::before {
    display: none;
  }
}
/* About Us Area Style
============================================*/
.about-us-content {
  max-width: 485px;
}
.about-us-content .about-img-one {
  margin-bottom: 57px;
}
.about-us-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.about-us-content .mb-60 {
  margin-bottom: 60px;
}

.about-us-content-two {
  max-width: 587px;
  margin-left: auto;
}
.about-us-content-two h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
}
.about-us-content-two p:last-child {
  margin-bottom: 0;
}
.about-us-content-two p.mb-40 {
  margin-bottom: 40px;
}
.about-us-content-two h3 {
  font-size: 31px;
  margin-bottom: 5px;
}
.about-us-content-two .about-img-two {
  margin-top: 58px;
}

.about-img-three {
  max-width: 510px;
}
.about-img-three .career-img {
  max-width: 510px;
}

.about-content-three h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
}
.about-content-three p:last-child {
  margin-bottom: 0;
}
.about-content-three p.mb-40 {
  margin-bottom: 40px;
}
.about-content-three .total-operation {
  border-left: 3px solid var(--mainColor);
  padding-left: 12px;
  margin-bottom: 25px;
}
.about-content-three .total-operation h3 {
  font-size: 31px;
  margin-bottom: 5px;
}
.about-content-three .total-operation span {
  color: #565D6F;
}
.about-content-three .about-tabs {
  border: none;
  background-color: #FFF3ED;
  padding: 0 28px;
  margin-top: 35px;
}
.about-content-three .about-tabs .nav-item {
  margin-right: 62px;
}
.about-content-three .about-tabs .nav-item:last-child {
  margin-right: 0;
}
.about-content-three .about-tabs .nav-item .nav-link {
  border: none;
  color: var(--headingColor);
  font-size: 20px;
  line-height: 125%;
  position: relative;
  border-bottom: 1px solid #FFF3ED;
  padding: 12px 0;
  transition: var(--transition);
}
.about-content-three .about-tabs .nav-item .nav-link.active {
  background-color: transparent;
  border-color: var(--mainColor);
}
.about-content-three .about-tab-content {
  padding: 22px 25px;
  margin-bottom: 33px;
}
.about-content-three .about-tab-content p {
  max-width: 485px;
}

.about-img-four {
  max-width: 541px;
}
.about-img-four .expirience {
  width: 295px;
  height: 295px;
  line-height: 295px;
  text-align: center;
  background-color: rgba(239, 36, 7, 0.8);
  z-index: 1;
  border-radius: 200px;
  position: absolute;
  bottom: 0;
  right: -27px;
}
.about-img-four .expirience .expirience-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.about-img-four .expirience .expirience-content h3 {
  font-size: 55.172px;
  font-weight: 500;
  color: var(--whiteColor);
}
.about-img-four .expirience .expirience-content p {
  font-size: 22.519px;
  color: var(--whiteColor);
}

.our-history-img {
  max-width: 475px;
  box-shadow: 10px 10px 0 var(--mainColor);
}

.our-history-content {
  margin-top: 25px;
}
.our-history-content h2 {
  font-size: 39px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 120%;
}
.our-history-content p {
  margin-bottom: 35px;
}
.our-history-content p:last-child {
  margin-bottom: 0;
}
.our-history-content .fun-facts-wrap {
  padding-top: 35px;
}
.our-history-content .fun-facts-single-item h3 {
  font-size: 39px;
}
.our-history-content .fun-facts-single-item p {
  font-size: 14px;
}

.history-content-with-img {
  text-align: center;
  max-width: 382px;
}
.history-content-with-img .img {
  margin-bottom: 18px;
  position: relative;
}
.history-content-with-img .img::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -121px;
  transform: translateY(-50%);
  margin: auto;
  width: 11px;
  height: 11px;
  background-color: var(--mainColor);
  border-radius: 50px;
}
.history-content-with-img h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.history-content-with-img.style-two {
  margin-left: auto;
}
.history-content-with-img.style-two .img::before {
  right: auto;
  left: -121px;
}

.history-content-with-img-wrap {
  max-width: 995px;
  margin: auto;
  position: relative;
}
.history-content-with-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: var(--borderColor);
}

.our-history-of-title {
  font-size: 20px;
  line-height: 125%;
  font-weight: 400;
  margin-bottom: 90px;
  text-align: center;
  border-top: 1px solid var(--borderColor);
}

.mb-0 .about-content-three .about-tab-content {
  margin-bottom: 0 !important;
}

.gap-0 .gap-80 {
  --bs-gutter-x: 1.5rem !important;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .about-us-content {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .about-us-content .about-img-one {
    margin-bottom: 30px;
  }
  .about-us-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about-us-content .mb-60 {
    margin-bottom: 30px;
  }
  .about-us-content-two {
    max-width: 100%;
  }
  .about-us-content-two h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .about-us-content-two p.mb-40 {
    margin-bottom: 30px;
  }
  .about-us-content-two h3 {
    font-size: 20px;
  }
  .about-us-content-two .about-img-two {
    margin-top: 30px;
  }
  .about-img-three {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .about-content-three h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .about-content-three p.mb-40 {
    margin-bottom: 20px;
  }
  .about-content-three .total-operation h3 {
    font-size: 25px;
  }
  .about-content-three .about-tabs {
    margin-top: 0;
  }
  .about-content-three .about-tabs .nav-item {
    margin-right: 20px;
  }
  .about-content-three .about-tabs .nav-item .nav-link {
    font-size: 18px;
  }
  .about-content-three .about-tab-content {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .our-history-img {
    max-width: 100%;
    box-shadow: none;
  }
  .our-history-content h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .our-history-content p {
    margin-bottom: 15px;
  }
  .history-content-with-img {
    max-width: 100%;
  }
  .history-content-with-img .img {
    margin-bottom: 10px;
  }
  .history-content-with-img .img::before {
    display: none;
  }
  .history-content-with-img h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .history-content-with-img-wrap {
    margin-bottom: 25px;
    border: 1px solid var(--borderColor);
    padding: 15px;
  }
  .history-content-with-img-wrap::before {
    display: none;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-content {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .about-us-content .about-img-one {
    margin-bottom: 30px;
  }
  .about-us-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .about-us-content .mb-60 {
    margin-bottom: 30px;
  }
  .about-us-content-two {
    max-width: 100%;
  }
  .about-us-content-two h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .about-us-content-two p.mb-40 {
    margin-bottom: 30px;
  }
  .about-us-content-two h3 {
    font-size: 22px;
  }
  .about-us-content-two .about-img-two {
    margin-top: 30px;
  }
  .about-img-three {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .about-content-three h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .about-content-three p.mb-40 {
    margin-bottom: 25px;
  }
  .about-content-three .total-operation h3 {
    font-size: 30px;
  }
  .about-content-three .about-tabs {
    margin-top: 0;
  }
  .about-content-three .about-tab-content {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }
  .our-history-img {
    max-width: 100%;
    box-shadow: none;
  }
  .our-history-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .our-history-content p {
    margin-bottom: 15px;
  }
  .history-content-with-img .img::before {
    right: -18px;
  }
  .history-content-with-img.style-two .img::before {
    right: auto;
    left: -18px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-three h2 {
    font-size: 34px;
  }
  .history-content-with-img .img::before {
    right: -91px;
  }
  .history-content-with-img.style-two .img::before {
    right: auto;
    left: -91px;
  }
}
@media (min-width: 1399px) {
  .gap-55 {
    --bs-gutter-x: 55px;
  }
}
/* Solutions Area Style
============================================*/
.solutions-img {
  margin-bottom: 60px;
}

.solutions-single-item {
  border-left: 1px solid var(--borderColor);
  padding-left: 26px;
  transition: var(--transition);
  position: relative;
  margin-left: -25px;
  margin-bottom: 25px;
}
.solutions-single-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 0;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.solutions-single-item .icon {
  width: 105px;
  height: 105px;
  background-color: var(--whiteColor);
  position: relative;
  text-align: center;
  border-radius: 100px;
  margin-bottom: 30px;
}
.solutions-single-item .icon i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  line-height: 0;
  font-size: 56px;
  color: var(--mainColor);
}
.solutions-single-item h3 {
  font-size: 25px;
  margin-bottom: 35px;
}
.solutions-single-item h3 a {
  text-decoration: none;
  margin-bottom: 35px;
  color: var(--headingColor);
}
.solutions-single-item .structural-list {
  margin-bottom: 35px;
}
.solutions-single-item .structural-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 6px;
  color: #565D6F;
}
.solutions-single-item .structural-list li:last-child {
  margin-bottom: 0;
}
.solutions-single-item .structural-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 19px;
  height: 1px;
  border: 0.1px solid var(--mainColor);
}
.solutions-single-item:hover .style-two .icon-right .title {
  margin-left: 0;
  opacity: 1;
}
.solutions-single-item:hover::before {
  height: 100%;
  top: auto;
  bottom: 0;
}

.solutions-area .col-xl-3:first-child .solutions-single-item {
  padding-left: 0;
  border: none;
  margin-left: 0;
}
.solutions-area .col-xl-3:first-child .solutions-single-item::before {
  display: none;
}

.solutions-single-item-two {
  background-color: var(--whiteColor);
  padding: 102px;
}
.solutions-single-item-two .solutions-single-item {
  padding-left: 0;
  border: 0;
  margin-left: 0;
}
.solutions-single-item-two .solutions-single-item .icon {
  background-color: #FFF3ED;
}
.solutions-single-item-two .solutions-single-item::before {
  display: none;
}
.solutions-single-item-two.bg-fff3ed {
  background-color: #fff3ed;
}
.solutions-single-item-two.bg-fff3ed .icon {
  background-color: var(--whiteColor);
}

.solutions-img-two {
  max-width: 487px;
}

.solutions-single-item-three {
  margin-bottom: 25px;
  background-color: var(--whiteColor);
}
.solutions-single-item-three .solutions-content {
  padding: 39px 35px;
}
.solutions-single-item-three h3 {
  margin-bottom: 20px;
  font-size: 25px;
}
.solutions-single-item-three h3 a {
  text-decoration: none;
  color: var(--headingColor);
}
.solutions-single-item-three p {
  margin-bottom: 36px;
  max-width: 509px;
}
.solutions-single-item-three .default-btn.style-two .icon-right .title {
  margin-left: -110px;
}
.solutions-single-item-three:hover .default-btn.style-two .icon-right .title {
  margin-left: 0;
  opacity: 1;
}
.solutions-single-item-three.bg-fff3ed {
  background-color: #fff3ed;
}

.solutions-tabs {
  border: none;
}
.solutions-tabs .nav-item .nav-link {
  border: 0;
  padding: 12.6px 20px;
  border-radius: 0;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.solutions-tabs .nav-item .nav-link span {
  margin-right: 18px;
  color: #41495C;
  transition: var(--transition);
}
.solutions-tabs .nav-item .nav-link img {
  transition: var(--transition);
}
.solutions-tabs .nav-item .nav-link.bg-fff3ed {
  background-color: #fff3ed;
}
.solutions-tabs .nav-item .nav-link.active {
  background-color: var(--mainColor);
}
.solutions-tabs .nav-item .nav-link.active span {
  color: var(--whiteColor);
}
.solutions-tabs .nav-item .nav-link.active svg {
  filter: brightness(1000);
  transform: rotate(90deg);
}
.solutions-tabs .nav-item .nav-link.active.fff3ed {
  background-color: var(--mainColor);
}

.cards .card {
  position: sticky;
  top: 160px;
  border: 0;
  padding: 0;
  background-color: transparent;
}

.service-details-content {
  max-width: 486px;
  margin-left: auto;
}
.service-details-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.service-details-content .dec {
  margin-bottom: 37px;
}

/* FAQ Area Style
============================================*/
.faq-content .accordion {
  border: none;
}
.faq-content .accordion .accordion-item {
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #DDDDDD;
}
.faq-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-content .accordion .accordion-item .accordion-button {
  font-weight: 400;
  font-size: 20px;
  color: var(--headingColor);
  padding: 20px 0;
  border: none;
  box-shadow: none;
}
.faq-content .accordion .accordion-item .accordion-button::after {
  background-image: unset;
  content: "\ea13";
  font-family: remixicon !important;
  color: var(--headingColor);
  font-weight: 400;
}
.faq-content .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
  border-bottom: none;
}
.faq-content .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  border: none;
}
.faq-content .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: unset;
  content: "\f1af";
  font-family: remixicon !important;
  color: var(--headingColor);
}
.faq-content .accordion .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.faq-content .accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}
.faq-content .accordion .accordion-item .accordion-body {
  padding: 30px 0;
  padding-top: 0;
  padding-bottom: 20px;
}
.faq-content .accordion .accordion-item .accordion-body p {
  color: var(--bodyColor);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .solutions-single-item {
    margin-left: 0;
    border: 1px solid var(--borderColor) !important;
    padding: 20px !important;
  }
  .solutions-single-item .icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }
  .solutions-single-item .icon i {
    font-size: 40px;
  }
  .solutions-single-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .solutions-single-item .structural-list {
    margin-bottom: 20px;
  }
  .solutions-single-item-two {
    padding: 0;
  }
  .solutions-single-item-two .solutions-single-item {
    border: 0 !important;
  }
  .solutions-img-two {
    max-width: 100%;
  }
  .solutions-single-item-three .solutions-content {
    padding: 20px;
  }
  .solutions-single-item-three h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .solutions-single-item-three p {
    margin-bottom: 20px;
  }
  .solutions-tabs .nav-item .nav-link {
    padding: 9.6px 11px;
    font-size: 14px;
  }
  .cards .card {
    top: 60px;
  }
  .service-details-content {
    max-width: 100%;
  }
  .service-details-content h3 {
    font-size: 20px;
  }
  .service-details-content .dec {
    margin-bottom: 10px;
  }
  .faq-content .accordion .accordion-item .accordion-button {
    font-size: 17px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .solutions-single-item {
    margin-left: 0;
    border: 1px solid var(--borderColor) !important;
    padding: 20px !important;
  }
  .solutions-single-item .icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }
  .solutions-single-item .icon i {
    font-size: 40px;
  }
  .solutions-single-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .solutions-single-item .structural-list {
    margin-bottom: 20px;
  }
  .solutions-single-item-two {
    padding: 0;
  }
  .solutions-single-item-two .solutions-single-item {
    border: 0 !important;
  }
  .solutions-img-two {
    max-width: 100%;
  }
  .solutions-single-item-three .solutions-content {
    padding: 20px;
  }
  .solutions-single-item-three h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .solutions-single-item-three p {
    margin-bottom: 20px;
  }
  .solutions-tabs .nav-item .nav-link {
    padding: 9.6px 11px;
    font-size: 14px;
  }
  .cards .card {
    top: 104px;
  }
  .service-details-content {
    max-width: 100%;
  }
  .service-details-content h3 {
    font-size: 22px;
  }
  .service-details-content .dec {
    margin-bottom: 10px;
  }
  .faq-content .accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .solutions-single-item {
    margin-left: 0;
    border: 1px solid var(--borderColor) !important;
    padding: 30px !important;
  }
  .solutions-single-item .icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }
  .solutions-single-item .icon i {
    font-size: 40px;
  }
  .solutions-single-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .solutions-single-item .structural-list {
    margin-bottom: 20px;
  }
  .solutions-single-item-two .solutions-single-item {
    padding: 0 !important;
    border: 0 !important;
  }
  .solutions-single-item-three .solutions-content {
    padding: 24px;
  }
  .solutions-single-item-three h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .solutions-single-item-three p {
    margin-bottom: 20px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .solutions-single-item-three .solutions-content {
    padding: 24px;
  }
  .solutions-single-item-three h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .solutions-single-item-three p {
    margin-bottom: 20px;
  }
}
/* Green Steel Area Style
============================================*/
.green-steel-content {
  margin-top: -5px;
}
.green-steel-content h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 65px;
  color: var(--whiteColor);
}
.green-steel-content .accordion {
  max-width: 485px;
  border-left: 1px solid #565D6F;
  padding-left: 25px;
}
.green-steel-content .accordion .accordion-item {
  padding: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid #565D6F;
  background-color: transparent;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.green-steel-content .accordion .accordion-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -26px;
  width: 100%;
  height: 0;
  border-left: 1px solid var(--mainColor);
  transition: var(--transition);
}
.green-steel-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.green-steel-content .accordion .accordion-item .accordion-header {
  border: none;
  margin-bottom: 0;
}
.green-steel-content .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  border: none;
  line-height: 1.2;
  font-size: 25px;
  font-weight: 500;
  padding: 0;
  box-shadow: none;
  color: var(--whiteColor);
  border-radius: 0;
}
.green-steel-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.green-steel-content .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.green-steel-content .accordion .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.green-steel-content .accordion .accordion-item:first-of-type .accordion-button.collapsed {
  border-radius: 0;
}
.green-steel-content .accordion .accordion-item:last-of-type .accordion-button {
  border-radius: 0;
}
.green-steel-content .accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}
.green-steel-content .accordion .accordion-item.active .accordion-header .accordion-button {
  border: none;
}
.green-steel-content .accordion .accordion-item.active::before {
  top: auto;
  height: 100%;
  bottom: 0;
}
.green-steel-content .accordion .accordion-body {
  padding: 0;
  padding-top: 15px;
}
.green-steel-content .accordion .accordion-body p {
  color: var(--whiteColor);
}

.green-steel-img {
  max-width: 531px;
  margin-top: 30px;
  margin-left: 15px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .green-steel-img {
    max-width: 100%;
    margin-left: 0;
  }
  .green-steel-content h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .green-steel-content .accordion {
    padding-left: 15px;
    max-width: 100%;
  }
  .green-steel-content .accordion .accordion-item::before {
    left: -16px;
  }
  .green-steel-content .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .green-steel-img {
    max-width: 100%;
    margin-left: 0;
  }
  .green-steel-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .green-steel-content .accordion {
    padding-left: 15px;
    max-width: 100%;
  }
  .green-steel-content .accordion .accordion-item::before {
    left: -16px;
  }
  .green-steel-content .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1200px) {
  .green-steel-area {
    overflow: hidden;
  }
  .green-steel-img {
    max-width: 530px;
    margin: auto;
    margin-top: 30px;
  }
  #green-steel-area {
    overflow: hidden;
  }
}
/* Products Area Style
============================================*/
.product-single-item {
  margin-bottom: 30px;
}
.product-single-item .product-img {
  margin-bottom: 33px;
}
.product-single-item h3 {
  margin-bottom: 20px;
  font-size: 25px;
}
.product-single-item h3 a {
  text-decoration: none;
  color: var(--headingColor);
  transition: 0.7s;
}
.product-single-item h3 a:hover {
  color: var(--mainColor);
}
.product-single-item p {
  margin-bottom: 34px;
}
.product-single-item .btn-add-cart .add_to_cart_button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  color: var(--whiteColor);
  border: none;
  text-align: center;
  text-transform: capitalize;
  padding: 20px 38px;
  background-color: var(--mainColor);
  border-radius: 0px !important;
  font-weight: 500;
}
.product-single-item .btn-add-cart .add_to_cart_button:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}
.product-single-item .btn-add-cart .add_to_cart_button.added {
  display: none;
}
.product-single-item .btn-add-cart .added_to_cart {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  color: var(--whiteColor);
  border: none;
  text-align: center;
  text-transform: capitalize;
  padding: 16px 34px;
  background-color: var(--headingColor);
  border-radius: 0px !important;
  font-weight: 500;
}
.product-single-item .btn-add-cart .added_to_cart:hover {
  background-color: var(--mainColor);
}
.product-single-item .default-btn.style-two .icon-right .title {
  margin-left: -110px;
}
.product-single-item:hover .default-btn.style-two .icon-right .title {
  margin-left: 0;
  opacity: 1;
}

.product-details-content h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
}
.product-details-content .dec {
  margin-bottom: 38px;
}
.product-details-content h3 {
  font-size: 20px;
  line-height: 125%;
  font-weight: 400;
  margin-bottom: 25px;
}
.product-details-content ul {
  margin-bottom: 38px;
}
.product-details-content ul li {
  margin-bottom: 15px;
}
.product-details-content ul li:last-child {
  margin-bottom: 0;
}
.product-details-content ul li p span {
  font-weight: 500;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .product-single-item .product-img {
    margin-bottom: 20px;
  }
  .product-single-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .product-single-item p {
    margin-bottom: 20px;
  }
  .product-details-content h2 {
    font-size: 30px;
    margin-top: 30px;
  }
  .product-details-content .dec {
    margin-bottom: 20px;
  }
  .product-details-content ul {
    margin-bottom: 20px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-single-item .product-img {
    margin-bottom: 20px;
  }
  .product-single-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .product-single-item p {
    margin-bottom: 20px;
  }
  .product-details-content h2 {
    font-size: 30px;
    margin-top: 30px;
  }
  .product-details-content .dec {
    margin-bottom: 20px;
  }
  .product-details-content ul {
    margin-bottom: 20px;
  }
}
/* Blank Area Style
============================================*/
.testimonials-content {
  background-color: var(--mainColor);
  padding: 108px 102px;
  margin-left: -126px;
  position: relative;
  z-index: 1;
}
.testimonials-content .title {
  color: var(--whiteColor);
  display: block;
  margin-bottom: 8px;
}
.testimonials-content h2 {
  font-size: 39px;
  line-height: 120%;
  margin-bottom: 40px;
  color: var(--whiteColor);
  font-weight: 500;
}
.testimonials-content p {
  margin-bottom: 50px;
  color: var(--whiteColor);
  font-size: 20px;
  line-height: 125%;
}
.testimonials-content .info img {
  border-radius: 100px;
  width: 49px;
  height: 49px;
  border: 2px solid var(--whiteColor);
}
.testimonials-content .info h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--whiteColor);
  font-weight: 400;
}
.testimonials-content .info span {
  font-size: 13px;
  color: var(--whiteColor);
}
.testimonials-content .dialog {
  color: #C61608;
  font-size: 128px;
  position: absolute;
  top: 190px;
  left: -64px;
  transform: rotate(180deg);
}

.testimonials-arrow {
  position: absolute;
  right: 102px;
  bottom: 108px;
  z-index: 1;
}
.testimonials-arrow .testimonials-prev {
  transform: rotate(180deg);
}
.testimonials-arrow .controller-icon {
  width: 55px;
  height: 45px;
  line-height: 52px;
  background-color: var(--whiteColor);
  text-align: center;
  transition: var(--transition);
}
.testimonials-arrow .controller-icon i {
  font-size: 18px;
  line-height: 0;
  color: var(--mainColor);
  transition: var(--transition);
}
.testimonials-arrow .controller-icon:hover {
  background-color: var(--headingColor);
}

.testimonials-content-two h2 {
  font-size: 39px;
  line-height: 120%;
  color: var(--whiteColor);
  font-weight: 500;
  margin-bottom: -10px;
}
.testimonials-content-two .testimonials-img-three {
  margin-left: 97px;
  margin-bottom: -160px;
}

.testimonials-single-item {
  padding: 54px 68px;
  background-color: var(--mainColor);
  position: relative;
  z-index: 1;
}
.testimonials-single-item p {
  font-size: 20px;
  color: var(--whiteColor);
  margin-bottom: 44px;
}
.testimonials-single-item .info img {
  border-radius: 100px;
  width: 49px;
  height: 49px;
  border: 2px solid var(--whiteColor);
}
.testimonials-single-item .info h3 {
  font-size: 20px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.testimonials-single-item .info span {
  font-size: 13px;
  color: var(--whiteColor);
}
.testimonials-single-item i {
  font-size: 128px;
  color: #C61608;
  position: absolute;
  bottom: 45px;
  right: 68px;
  z-index: -1;
  line-height: 0;
  transform: rotate(180deg);
}
.testimonials-single-item.bg-1a2238 {
  background-color: #1a2238;
}

.review i {
  color: var(--mainColor);
  font-size: 20px;
}

.testimonials-slide-wrap {
  position: relative;
}
.testimonials-slide-wrap .slider {
  position: relative;
}
.testimonials-slide-wrap .slider .prev,
.testimonials-slide-wrap .slider .next {
  opacity: 0.3;
}
.testimonials-slide-wrap .slider .prev {
  transform: translate(0, -10%) scale(0.9);
}
.testimonials-slide-wrap .slider .next {
  transform: translate(0, 10%) scale(0.9);
}
.testimonials-slide-wrap .slide {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 0.7s ease-out;
}
.testimonials-slide-wrap .slide--active {
  opacity: 1;
  z-index: 9;
}
.testimonials-slide-wrap .prev-next-controls {
  position: absolute;
  right: -94px;
  top: 130px;
}
.testimonials-slide-wrap .prev-next-controls .slide-btn {
  cursor: pointer;
  width: 64px;
  height: 56px;
  line-height: 65px;
  background-color: var(--whiteColor);
  text-align: center;
  font-size: 18px;
  color: var(--mainColor);
  transition: var(--transition);
}
.testimonials-slide-wrap .prev-next-controls .slide-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.testimonials-slide-wrap .prev-next-controls .slide-btn.disabled {
  opacity: 0.5;
  cursor: default;
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.testimonials-slide-wrap .prev-next-controls .prev-btn {
  margin-bottom: 10px;
}
.testimonials-slide-wrap .prev-next-controls .prev-btn i {
  transform: scaleY(-1);
  display: block;
  position: relative;
  top: -8px;
}
.testimonials-slide-wrap.style-two {
  height: 466px;
  max-width: 840px;
  margin: auto;
}
.testimonials-slide-wrap.style-two .testimonials-single-item {
  padding: 70px 90px;
}
.testimonials-slide-wrap.style-two .testimonials-single-item p {
  font-size: 27px;
}
.testimonials-slide-wrap.style-two .prev-next-controls {
  left: -100px;
  right: -100px;
  top: 180px;
}
.testimonials-slide-wrap.style-two .prev-next-controls .slide-btn {
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: var(--headingColor);
  color: var(--whiteColor);
}
.testimonials-slide-wrap.style-two .prev-next-controls .prev-btn i {
  transform: rotate(90deg);
  top: 0;
  right: 4px;
}
.testimonials-slide-wrap.style-two .prev-next-controls .next-btn i {
  transform: rotate(-90deg) !important;
  top: 0;
  right: -4px;
  display: inline-block;
  position: relative;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .testimonials-content {
    margin-left: 0;
    padding: 20px;
  }
  .testimonials-content i {
    display: none;
  }
  .testimonials-content h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .testimonials-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .testimonials-content .info h3 {
    font-size: 18px;
  }
  .testimonials-img img {
    width: 100%;
  }
  .testimonials-arrow {
    position: unset;
    margin-top: 20px;
  }
  .testimonials-arrow .controller-icon {
    background-color: var(--headingColor);
    color: var(--whiteColor);
  }
  .testimonials-single-item {
    padding: 20px;
  }
  .testimonials-single-item p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .testimonials-single-item i {
    font-size: 50px;
  }
  .testimonials-content-two h2 {
    font-size: 25px;
  }
  .testimonials-slide-wrap {
    height: 400px;
  }
  .testimonials-slide-wrap .prev-next-controls {
    right: 0;
    top: auto;
    bottom: -30px;
    left: 0;
  }
  .testimonials-slide-wrap.style-two .testimonials-single-item {
    padding: 20px;
  }
  .testimonials-slide-wrap.style-two .testimonials-single-item p {
    font-size: 16px;
  }
  .testimonials-slide-wrap.style-two .prev-next-controls {
    left: 0;
    right: 0;
    z-index: 999;
    bottom: 0;
    top: auto;
  }
  .testimonials-slide-wrap.style-two {
    height: 430px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-content {
    margin-left: 0;
    padding: 50px;
  }
  .testimonials-content i {
    display: none;
  }
  .testimonials-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .testimonials-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .testimonials-content .info h3 {
    font-size: 18px;
  }
  .testimonials-img img {
    width: 100%;
  }
  .testimonials-arrow {
    right: 50px;
    bottom: 50px;
  }
  .testimonials-content-two h2 {
    font-size: 25px;
  }
  .testimonials-slide-wrap {
    height: 400px;
  }
  .testimonials-slide-wrap .prev-next-controls {
    right: 0;
    top: auto;
    bottom: -40px;
    left: 0;
  }
  .testimonials-slide-wrap.style-two .testimonials-single-item p {
    font-size: 20px;
  }
  .testimonials-slide-wrap.style-two .prev-next-controls {
    left: 0;
    right: 0;
    z-index: 999;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonials-single-item {
    padding: 30px;
  }
  .testimonials-single-item p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .testimonials-slide-wrap .prev-next-controls {
    right: auto;
    left: -94px;
  }
  .testimonials-slide-wrap.style-two .prev-next-controls {
    left: -65px;
    right: -65px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonials-slide-wrap .prev-next-controls {
    right: auto;
    left: -94px;
  }
}
/* Blog Area Style
============================================*/
.blog-single-item {
  margin-bottom: 25px;
}
.blog-single-item .blog-img {
  margin-bottom: 28px;
}
.blog-single-item .tags {
  margin-bottom: 8px;
  text-decoration: none;
  display: inline-block;
}
.blog-single-item .title {
  text-decoration: none;
  margin-bottom: 18px;
  display: block;
}
.blog-single-item .title h3 {
  font-size: 25px;
  transition: var(--transition);
}
.blog-single-item ul li {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
  text-decoration: none;
  font-size: 13px;
}
.blog-single-item ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2px;
  width: 4px;
  height: 4px;
  background-color: #D9D9D9;
  border-radius: 50px;
}
.blog-single-item ul li a {
  text-decoration: none;
  font-size: 13px;
}
.blog-single-item ul li span {
  font-size: 13px;
}
.blog-single-item ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-single-item ul li:last-child::before {
  display: none;
}
.blog-single-item:hover .title h3 {
  color: var(--mainColor);
}

.blog-arrow .blog-prev {
  transform: rotate(180deg);
  margin-right: 2px;
}
.blog-arrow .controller-icon {
  width: 52px;
  height: 52px;
  line-height: 65px;
  background-color: var(--headingColor);
  text-align: center;
  transition: var(--transition);
}
.blog-arrow .controller-icon i {
  font-size: 23px;
  line-height: 0;
  color: var(--whiteColor);
  transition: var(--transition);
}
.blog-arrow .controller-icon:hover {
  background-color: var(--mainColor);
}

.blog-details-content {
  max-width: 792px;
  margin: auto;
}
.blog-details-content .innovative-content {
  margin: 0;
}
.blog-details-content .innovative-content li {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}
.blog-details-content .innovative-content li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2px;
  width: 4px;
  height: 4px;
  background-color: #D9D9D9;
  border-radius: 50px;
}
.blog-details-content .innovative-content li span {
  font-size: 13px;
}
.blog-details-content .innovative-content li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-details-content .innovative-content li:last-child::before {
  display: none;
}
.blog-details-content .social-link {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.blog-details-content .social-link li {
  margin-right: 10px;
  margin-bottom: 0;
  list-style-type: none;
}
.blog-details-content .social-link li:last-child {
  margin-right: 0;
}
.blog-details-content .social-link li span {
  font-size: 13px;
  color: var(--headingColor);
  display: block;
  margin-right: 7px;
  position: relative;
  margin-top: 4px;
}
.blog-details-content .social-link li a {
  text-decoration: none;
  transition: 0.7s;
}
.blog-details-content .social-link li a i {
  font-size: 18px;
  font-style: normal;
  color: var(--bodyColor);
}
.blog-details-content .social-link li a:hover i {
  color: var(--mainColor);
}
.blog-details-content .border-bottom {
  border-color: var(--borderColor);
  padding-bottom: 30px;
  padding-top: 40px;
  margin-bottom: 60px;
}
.blog-details-content .mb-c-60 {
  margin-bottom: 60px;
}
.blog-details-content .mb-c-40 {
  margin-bottom: 40px;
}
.blog-details-content .mb-c-50 {
  margin-bottom: 50px;
}
.blog-details-content h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 15px;
}
.blog-details-content .advanced-list li {
  margin-bottom: 15px;
}
.blog-details-content .advanced-list li:last-child {
  margin-bottom: 0;
}
.blog-details-content h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 15px;
}
.blog-details-content .tags-wrap {
  background-color: #FFF3ED;
  padding: 18px 25px;
  list-style-type: none;
  clear: both;
}
.blog-details-content .tags-wrap li {
  list-style-type: none;
  margin: 0;
}
.blog-details-content .tags-wrap li a {
  border: 1px solid var(--mainColor);
  display: inline-block;
  padding: 7px 20px;
  text-decoration: none;
  border-radius: 50px;
  color: var(--bodyColor);
}
.blog-details-content .tags-wrap li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.blog-details-content .comments-wrap {
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 70px;
  margin-bottom: 50px;
}
.blog-details-content .comments-wrap h2 {
  font-size: 31px;
  font-weight: 500;
  margin-bottom: 50px;
}
.blog-details-content .comments-wrap h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.blog-details-content .comments-wrap span {
  position: relative;
  top: 2px;
  margin-left: 24px;
  color: #9A9FAA;
}
.blog-details-content .comments-wrap .reply {
  color: #FE3E11;
  text-decoration: none;
}
.blog-details-content .comments-form h2 {
  font-size: 31px;
  font-weight: 500;
  margin-bottom: 17px;
}
.blog-details-content .comments-form p {
  margin-bottom: 26px;
}
.blog-details-content .comments-form .form-group {
  margin-bottom: 25px;
}

.blog-right-sidebar {
  background-color: #FFF3ED;
  padding: 40px;
  margin-top: 100px;
  top: 72px;
}
.blog-right-sidebar h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.blog-right-sidebar .src-form {
  margin-bottom: 40px;
}
.blog-right-sidebar .categories-list {
  border-bottom: 1px solid #CCCED4;
  margin-bottom: 40px;
}
.blog-right-sidebar .categories-list li {
  border-top: 1px solid #CCCED4;
}
.blog-right-sidebar .categories-list li a {
  text-decoration: none;
  padding: 12px 0;
  color: #565D6F;
}
.blog-right-sidebar .categories-list li a:hover {
  color: var(--mainColor);
}
.blog-right-sidebar .tags-list li a {
  border: 1px solid var(--mainColor);
  display: inline-block;
  padding: 7px 20px;
  text-decoration: none;
  border-radius: 50px;
}
.blog-right-sidebar .tags-list li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.blog-right-sidebar .src-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.blog-right-sidebar .src-btn i {
  font-size: 25px;
  color: #565D6F;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .blog-single-item .blog-img {
    margin-bottom: 20px;
  }
  .blog-single-item .title {
    margin-bottom: 15px;
  }
  .blog-single-item .title h3 {
    font-size: 20px;
  }
  .blog-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 54px;
  }
  .blog-details-content .border-bottom {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .blog-details-content .mb-c-60 {
    margin-bottom: 40px;
  }
  .blog-details-content h2 {
    font-size: 22px;
  }
  .blog-details-content h3 {
    font-size: 18px;
  }
  .blog-details-content .comments-wrap h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .blog-details-content .comments-wrap h4 {
    font-size: 18px;
  }
  .blog-details-content .comments-form h2 {
    font-size: 22px;
  }
  .blog-right-sidebar {
    padding: 20px;
    margin-top: 30px;
  }
  .blog-right-sidebar .src-form {
    margin-bottom: 20px;
  }
  .blog-right-sidebar .categories-list {
    margin-bottom: 20px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-item .blog-img {
    margin-bottom: 20px;
  }
  .blog-single-item .title {
    margin-bottom: 15px;
  }
  .blog-single-item .title h3 {
    font-size: 22px;
  }
  .blog-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 54px;
  }
  .blog-details-content .border-bottom {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .blog-details-content .mb-c-60 {
    margin-bottom: 40px;
  }
  .blog-details-content h2 {
    font-size: 24px;
  }
  .blog-details-content h3 {
    font-size: 18px;
  }
  .blog-details-content .comments-wrap h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .blog-details-content .comments-wrap h4 {
    font-size: 18px;
  }
  .blog-details-content .comments-form h2 {
    font-size: 24px;
  }
  .blog-right-sidebar {
    padding: 30px;
    margin-top: 30px;
  }
  .blog-right-sidebar .src-form {
    margin-bottom: 20px;
  }
  .blog-right-sidebar .categories-list {
    margin-bottom: 20px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-single-item .blog-img {
    margin-bottom: 20px;
  }
  .blog-single-item .title {
    margin-bottom: 15px;
  }
  .blog-single-item .title h3 {
    font-size: 20px;
  }
  .blog-right-sidebar {
    padding: 20px;
  }
  .blog-right-sidebar .src-form {
    margin-bottom: 20px;
  }
  .blog-right-sidebar .categories-list {
    margin-bottom: 20px;
  }
  .blog-right-sidebar .tags-list li a {
    padding: 5px 6px;
  }
}
/* Industry Video Area Style
============================================*/
.video-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
}
.video-content h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 65px;
  color: var(--whiteColor);
}
.video-content .icon {
  width: 120px;
  height: 120px;
  line-height: 138px;
  text-align: center;
  background-color: var(--mainColor);
  border-radius: 100px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.video-content .icon::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -35px;
  background-image: url(../images/shape-1.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 72px;
  height: 54px;
  transition: var(--transition);
  z-index: -1;
}
.video-content .icon i {
  font-size: 54px;
  display: inline-block;
  color: var(--whiteColor);
  position: relative;
  left: 6px;
  transition: var(--transition);
}
.video-content .icon:hover {
  background-color: var(--whiteColor);
}
.video-content .icon:hover i {
  color: var(--headingColor);
}
.video-content .icon:hover::before {
  top: -40px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .video-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .video-content .icon {
    width: 60px;
    height: 60px;
    line-height: 66px;
  }
  .video-content .icon i {
    font-size: 20px;
    left: 2px;
  }
  .video-content .icon::before {
    display: none;
  }
}
/* Career Area Style
============================================*/
.career-img {
  max-width: 485px;
}

.career-content h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
}
.career-content p {
  margin-bottom: 30px;
  max-width: 486px;
}
.career-content .default-btn {
  margin-top: 20px;
}

.career-img-two {
  max-width: 410px;
  position: relative;
  z-index: 1;
}
.career-img-two p {
  background-color: #EF2407;
  max-width: 311px;
  height: 311px;
  border-radius: 300px;
  padding: 64px 40px;
  color: var(--whiteColor);
  font-size: 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: -131px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .career-img {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .career-content h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .career-content p {
    margin-bottom: 20px;
  }
  .career-content .default-btn {
    margin-top: 10px;
  }
  .career-img-two {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .career-img-two p {
    right: 0;
    bottom: 0;
    position: unset;
    padding: 10px;
    border-radius: 0;
    padding: 20px;
    height: auto;
    font-size: 18px;
    max-width: 100%;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .career-img {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .career-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .career-content p {
    margin-bottom: 20px;
  }
  .career-content .default-btn {
    margin-top: 10px;
  }
  .career-img-two {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .career-img-two p {
    right: 30px;
    bottom: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .career-img-two p {
    right: -45px;
  }
}
/* Footer Area Style
============================================*/
.footer-content h2 {
  font-size: 39px;
  margin-bottom: 0;
  color: var(--whiteColor);
  font-weight: 500;
  max-width: 588px;
  line-height: 120%;
}

.subscribe-form {
  position: relative;
  max-width: 408px;
  margin-left: auto;
}
.subscribe-form .form-control {
  padding: 16px;
  padding-left: 30px;
  padding-right: 0;
  border: 0;
  border-bottom: 1px solid #565D6F;
  background-color: transparent;
  color: var(--whiteColor);
}
.subscribe-form .form-control::-moz-placeholder {
  color: #B3B6BF;
}
.subscribe-form .form-control::placeholder {
  color: #B3B6BF;
}
.subscribe-form .form-control:focus {
  border-color: var(--mainColor);
}
.subscribe-form .flaticon-email {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: #FFC4A8;
  font-size: 22px;
}
.subscribe-form .subscribe-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--whiteColor);
  transition: var(--transition);
}
.subscribe-form .subscribe-btn span {
  font-size: 16px;
  font-weight: 500;
}
.subscribe-form .subscribe-btn i {
  position: relative;
  top: 2px;
  margin-left: 5px;
  font-size: 25px;
}
.subscribe-form .subscribe-btn:hover {
  color: var(--mainColor);
}

.subscribe-area-con .mchimp-errmessage, .subscribe-area-con .mchimp-sucmessage {
  margin-bottom: 0;
  margin-top: 20px;
  color: var(--whiteColor);
  max-width: 408px;
  margin-left: auto;
}

.footer-single-item {
  margin-bottom: 25px;
}
.footer-single-item h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--whiteColor);
  margin-bottom: 20px;
}
.footer-single-item p {
  color: #CCCED4;
  margin-bottom: 30px;
  max-width: 170px;
}
.footer-single-item .location {
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid var(--mainColor);
  padding-bottom: 5px;
  text-decoration: none;
}
.footer-single-item .location i {
  position: absolute;
  top: -3px;
  left: 0;
  color: #FE3E11;
  font-size: 24px;
}
.footer-single-item .location span {
  font-size: 16px;
  font-weight: 500;
  color: var(--whiteColor);
}
.footer-single-item .info {
  text-decoration: none;
  color: #CCCED4;
}
.footer-single-item .info.number {
  font-size: 20px;
  display: block;
  margin-top: 30px;
  color: var(--whiteColor);
}
.footer-single-item .info:hover {
  color: var(--mainColor);
}
.footer-single-item .import-link li {
  margin-bottom: 10px;
}
.footer-single-item .import-link li:last-child {
  margin-bottom: 0;
}
.footer-single-item .import-link li a {
  text-decoration: none;
  color: #CCCED4;
}
.footer-single-item .import-link li a:hover {
  color: var(--mainColor);
}

.copy-right p {
  color: #B3B6BF;
  margin-bottom: 0;
}
.copy-right p span {
  color: var(--whiteColor);
}
.copy-right p a {
  color: var(--mainColor);
  text-decoration: none;
}
.copy-right .terms li {
  padding-right: 25px;
  margin-right: 25px;
  position: relative;
}
.copy-right .terms li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #B3B6BF;
  border-radius: 50px;
}
.copy-right .terms li a {
  text-decoration: none;
  color: #B3B6BF;
}
.copy-right .terms li a:hover {
  color: var(--mainColor);
}
.copy-right .terms li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.copy-right .terms li:last-child::before {
  display: none;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .footer-content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .footer-single-item h3 {
    margin-bottom: 15px;
  }
  .footer-single-item p {
    margin-bottom: 15px;
  }
  .footer-single-item .info.number {
    margin-top: 10px;
    font-size: 16px;
  }
  .form-mobile {
    padding-bottom: 45px;
  }
  .subscribe-form {
    max-width: 100%;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    max-width: 100%;
  }
  .footer-single-item h3 {
    margin-bottom: 15px;
  }
  .footer-single-item p {
    margin-bottom: 15px;
  }
  .footer-single-item .info.number {
    margin-top: 10px;
    font-size: 16px;
  }
  .form-mobile {
    padding-bottom: 45px;
  }
  .subscribe-form {
    max-width: 100%;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-content h2 {
    font-size: 35px;
  }
}
/* Fun Facts Area Style
============================================*/
.fun-facts-single-item {
  margin-bottom: 25px;
  margin-top: -11px;
}
.fun-facts-single-item h3 {
  font-size: 61px;
  margin-bottom: 10px;
  color: var(--mainColor);
}
.fun-facts-single-item p {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borderColor);
  position: relative;
}
.fun-facts-single-item p::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.fun-facts-single-item.style-two {
  border: 1px solid var(--mainColor);
  text-align: center;
  padding: 77px 0;
  border-radius: 300px;
  margin-top: 0;
}
.fun-facts-single-item.style-two p {
  border: none;
}
.fun-facts-single-item.style-two p::before {
  display: none;
}
.fun-facts-single-item:hover p::before {
  right: auto;
  left: 0;
  width: 100%;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .fun-facts-single-item h3 {
    font-size: 35px;
  }
  .fun-facts-single-item.style-two {
    border-radius: 0;
    padding: 20px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fun-facts-single-item h3 {
    font-size: 40px;
  }
  .fun-facts-single-item.style-two {
    border-radius: 0;
    padding: 20px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fun-facts-single-item.style-two {
    border-radius: 0;
    padding: 20px 0;
  }
}
@media (min-width: 1399px) {
  .gap-80 {
    --bs-gutter-x: 80px;
  }
}
/* Projects Area Style
============================================*/
.project-single-item .project-img {
  margin-bottom: 33px;
}
.project-single-item h3 {
  margin-bottom: 20px;
  font-size: 25px;
}
.project-single-item h3 a {
  text-decoration: none;
  color: var(--headingColor);
}
.project-single-item p {
  margin-bottom: 34px;
  max-width: 509px;
}
.project-single-item .default-btn.style-two .icon-right .title {
  margin-left: -110px;
}
.project-single-item.style-two {
  position: relative;
  z-index: 1;
}
.project-single-item.style-two.mw-485 {
  margin-bottom: 115px;
  max-width: 485px;
}
.project-single-item.style-two.mw-485.mb-0 {
  margin-top: 115px;
}
.project-single-item.style-two .project-content {
  background-color: #2D354A;
  padding: 26px 30px;
  position: absolute;
  bottom: 30px;
  left: 0;
  max-width: 374px;
  transition: var(--transition);
}
.project-single-item.style-two h3 {
  margin-bottom: 12px;
}
.project-single-item.style-two h3 a {
  color: var(--whiteColor);
}
.project-single-item.style-two p {
  color: #B3B6BF;
  margin-bottom: 20px;
  transition: var(--transition);
}
.project-single-item.style-two .default-btn {
  padding: 8px 29px;
}
.project-single-item:hover .default-btn.style-two .icon-right .title {
  margin-left: 0;
  opacity: 1;
}
.project-single-item:hover.style-two .project-content {
  background-color: var(--mainColor);
}
.project-single-item:hover.style-two .project-content .default-btn {
  background-color: var(--headingColor);
}
.project-single-item:hover.style-two .project-content p {
  color: var(--whiteColor);
}
.project-single-item.mb-80 {
  margin-bottom: 80px;
}

.project-arrow .project-prev {
  transform: rotate(180deg);
  margin-right: 2px;
}
.project-arrow .controller-icon {
  width: 52px;
  height: 52px;
  line-height: 65px;
  background-color: var(--headingColor);
  text-align: center;
  transition: var(--transition);
}
.project-arrow .controller-icon i {
  font-size: 23px;
  line-height: 0;
  color: var(--whiteColor);
  transition: var(--transition);
}
.project-arrow .controller-icon:hover {
  background-color: var(--mainColor);
}

.product-details-img {
  max-width: 535px;
}

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

.projects-details-content-wrap h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.projects-details-content-wrap .projects-details-social li {
  margin-right: 10px;
}
.projects-details-content-wrap .projects-details-social li:last-child {
  margin-right: 0;
}
.projects-details-content-wrap .projects-details-social li span {
  font-size: 14px;
  color: var(--headingColor);
}
.projects-details-content-wrap .projects-details-social li a {
  text-decoration: none;
}
.projects-details-content-wrap .projects-details-social li a i {
  font-size: 18px;
  color: var(--bodyColor);
  transition: var(--transition);
}
.projects-details-content-wrap .projects-details-social li a:hover i {
  color: var(--mainColor);
}
.projects-details-content-wrap .project-details-img {
  margin-top: 50px;
  margin-bottom: 50px;
}

.projects-details-sidebar {
  background-color: var(--mainColor);
  padding: 58px 45px;
  margin-top: -150px;
}
.projects-details-sidebar.top-0 {
  top: 100px !important;
}
.projects-details-sidebar h3 {
  font-weight: 400;
  font-size: 20px;
  color: var(--whiteColor);
  border-bottom: 1px solid var(--whiteColor);
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.projects-details-sidebar ul li {
  margin-bottom: 20px;
}
.projects-details-sidebar ul li:last-child {
  margin-bottom: 0;
}
.projects-details-sidebar ul li span {
  font-weight: 600;
  color: var(--whiteColor);
}
.projects-details-sidebar ul li p {
  color: var(--whiteColor);
}

.galleys {
  margin-bottom: 25px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .project-single-item .project-img {
    margin-bottom: 20px;
  }
  .project-single-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .project-single-item p {
    margin-bottom: 20px;
  }
  .project-single-item.style-two .project-content {
    padding: 20px;
    position: unset;
    max-width: 100%;
  }
  .project-single-item.style-two.mw-485 {
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 25px;
  }
  .project-single-item.style-two.mw-485.mb-0 {
    margin-top: 25px;
    margin-bottom: 25px !important;
  }
  .project-single-item.mb-80 {
    margin-bottom: 30px;
  }
  .project-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 54px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .projects-details-content-wrap h3 {
    font-size: 20px;
  }
  .projects-details-content-wrap .project-details-img {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .projects-details-sidebar {
    padding: 20px;
    margin-top: 0;
    margin-bottom: 60px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-single-item .project-img {
    margin-bottom: 20px;
  }
  .project-single-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .project-single-item p {
    margin-bottom: 20px;
  }
  .project-single-item.style-two .project-content {
    padding: 20px;
    position: unset;
    max-width: 100%;
  }
  .project-single-item.style-two.mw-485 {
    max-width: 100%;
    margin-bottom: 0;
    margin-bottom: 25px;
  }
  .project-single-item.style-two.mw-485.mb-0 {
    margin-top: 0;
  }
  .project-single-item.mb-80 {
    margin-bottom: 30px;
  }
  .project-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 54px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .projects-details-content-wrap h3 {
    font-size: 22px;
  }
  .projects-details-content-wrap .project-details-img {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .projects-details-sidebar {
    padding: 30px;
    margin-top: 0;
    margin-bottom: 60px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-single-item.style-two .project-content {
    padding: 20px;
    max-width: 100%;
    bottom: 0;
  }
  .project-single-item.style-two.mw-485 {
    max-width: 100%;
    margin-bottom: 0;
    margin-bottom: 25px;
  }
  .project-single-item.style-two.mw-485.mb-0 {
    margin-top: 0;
  }
  .projects-details-sidebar {
    padding: 30px;
    margin-top: 0;
    margin-bottom: 60px;
  }
}
/* Partner Area Style
============================================*/
.partner-title {
  font-size: 20px;
  max-width: 792px;
  margin: auto;
  margin-bottom: 53px;
  text-align: center;
  margin-top: -5px;
}
.partner-title span {
  font-weight: 500;
}

.partners-single-item {
  border: 1px solid var(--borderColor);
  margin: -0.5px -0.5px;
}
.partners-single-item img {
  max-width: 238px;
}
.partners-single-item:hover {
  box-shadow: var(--boxShadow);
}
.partners-single-item.style-two {
  border-color: #565D6F;
}
.partners-single-item.style-two:hover {
  box-shadow: 0 0 20px 3px rgba(255, 255, 255, 0.5);
}

/* Team Area Style
============================================*/
.team-arrow .team-prev {
  transform: rotate(180deg);
  margin-right: 2px;
}
.team-arrow .controller-icon {
  width: 52px;
  height: 52px;
  line-height: 65px;
  background-color: var(--headingColor);
  text-align: center;
  transition: var(--transition);
}
.team-arrow .controller-icon i {
  font-size: 23px;
  line-height: 0;
  color: var(--whiteColor);
  transition: var(--transition);
}
.team-arrow .controller-icon:hover {
  background-color: var(--mainColor);
}

.team-single-team {
  background-color: #f9f9f9;
  padding-right: 58px;
  position: relative;
  margin-bottom: 25px;
}
.team-single-team .team-content {
  padding: 29px;
  padding-bottom: 38px;
}
.team-single-team .team-content h3 {
  font-size: 25px;
  margin-bottom: 1px;
}
.team-single-team .team-content span {
  color: var(--bodyColor);
}
.team-single-team .social-link {
  position: absolute;
  right: 19px;
  top: 110px;
}
.team-single-team .social-link li {
  margin-bottom: 27px;
}
.team-single-team .social-link li a {
  text-decoration: none;
}
.team-single-team .social-link li a i {
  font-size: 20px;
  color: var(--headingColor);
  transition: var(--transition);
}
.team-single-team .social-link li a:hover i {
  color: var(--mainColor);
}

.team-card-ld {
  display: none;
}

.lt-team-btn {
  font-size: var(--fontSize16);
  border: 1px solid var(--mainColor);
  transition: var(--transition);
  color: var(--mainColor);
  background-color: transparent;
  font-weight: 500;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  border-radius: 0;
  margin-bottom: 25px;
  margin-top: 10px;
}
.lt-team-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .team-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 54px;
  }
  .team-single-team .team-content {
    padding: 25px;
  }
  .team-single-team .team-content h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-arrow .controller-icon {
    width: 40px;
    height: 40px;
    line-height: 54px;
  }
  .team-single-team .team-content {
    padding: 25px;
  }
  .team-single-team .team-content h3 {
    font-size: 22px;
    margin-bottom: 4px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-single-team .team-content {
    padding: 25px;
  }
  .team-single-team .team-content h3 {
    font-size: 23px;
  }
}
/* Get A Quote Area Style
============================================*/
.get-a-quote-img {
  max-width: 510px;
}

.get-a-quote-form h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 45px;
}
.get-a-quote-form .form-group {
  margin-bottom: 30px;
}
.get-a-quote-form .form-group .label {
  margin-bottom: 7px;
}
.get-a-quote-form .form-group .form-control {
  border-color: #CCCED4;
  background-color: transparent;
  height: 56px;
  padding-left: 24px;
  padding-right: 24px;
  color: #9A9FAA;
}
.get-a-quote-form .form-group .form-control:focus {
  border-color: var(--mainColor);
}
.get-a-quote-form .form-group .form-control::-moz-placeholder {
  color: #9A9FAA;
  font-size: 15px;
}
.get-a-quote-form .form-group .form-control::placeholder {
  color: #9A9FAA;
  font-size: 15px;
}
.get-a-quote-form .form-group .form-control.file {
  padding-top: 15px;
}
.get-a-quote-form .form-group textarea.form-control {
  height: 120px;
}
.get-a-quote-form .form-group .default-btn {
  position: relative;
}
.get-a-quote-form .form-group .default-btn .icon-right {
  position: relative;
}
.get-a-quote-form .form-group .default-btn .icon-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.get-a-quote-form .form-group .default-btn .icon-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 5px;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.get-a-quote-form .form-group .default-btn:hover .icon-right::before {
  right: 0;
  opacity: 0;
}
.get-a-quote-form .form-group .default-btn:hover .icon-right::after {
  right: 0;
  opacity: 1;
}
.get-a-quote-form.style-two .top-title {
  color: var(--whiteColor);
}
.get-a-quote-form.style-two h2 {
  color: var(--whiteColor);
}
.get-a-quote-form.style-two .form-group .label {
  color: var(--whiteColor);
}
.get-a-quote-form.style-two .form-group .form-control {
  color: var(--whiteColor);
}
.get-a-quote-form.style-two .form-group .form-control::-moz-placeholder {
  color: #E5E6E9;
}
.get-a-quote-form.style-two .form-group .form-control::placeholder {
  color: #E5E6E9;
}
.get-a-quote-form.style-two .form-group .form-control:focus {
  border-color: var(--whiteColor);
}
.get-a-quote-form.style-two .form-group .default-btn {
  border: 1px solid var(--headingColor);
}
.get-a-quote-form.style-two .form-group .default-btn:hover {
  background-color: transparent;
  border: 1px solid var(--headingColor);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .get-a-quote-img {
    max-width: 100%;
  }
  .get-a-quote-form {
    margin-top: 30px;
  }
  .get-a-quote-form h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .get-a-quote-form .form-group {
    margin-bottom: 25px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .get-a-quote-img {
    max-width: 100%;
  }
  .get-a-quote-form {
    margin-top: 30px;
  }
  .get-a-quote-form h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .get-a-quote-form .form-group {
    margin-bottom: 25px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .get-a-quote-form h2 {
    font-size: 37px;
  }
}
/* Header Area Style
============================================*/
.top-header {
  padding: 10px 0;
}
.top-header span {
  color: #565D6F;
}
.top-header .social-link {
  line-height: 1;
  position: relative;
  top: 1px;
}
.top-header .social-link li {
  margin-right: 10px;
}
.top-header .social-link li:last-child {
  margin-right: 0;
}
.top-header .social-link li a i {
  font-size: 18px;
  color: var(--mainColor);
  transition: var(--transition);
}
.top-header .social-link li a:hover i {
  color: var(--headingColor);
}

.muddle-header {
  padding: 16.5px 0;
}
.muddle-header .header-info li {
  margin-right: 14px;
  padding-right: 14px;
  position: relative;
}
.muddle-header .header-info li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  width: 1px;
  height: 30px;
  background-color: #E5E6E9;
}
.muddle-header .header-info li i {
  font-size: 24px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: #f9f9f9;
  display: inline-block;
  border-radius: 50px;
  color: var(--mainColor);
  transition: var(--transition);
}
.muddle-header .header-info li p {
  margin-bottom: 4px;
  color: #565D6F;
}
.muddle-header .header-info li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: #41495C;
}
.muddle-header .header-info li span {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: #41495C;
}
.muddle-header .header-info li:hover a {
  color: var(--mainColor);
}
.muddle-header .header-info li:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.muddle-header .header-info li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.muddle-header .header-info li:last-child::before {
  display: none;
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .muddle-header .header-info li:last-child {
    margin-bottom: 0;
  }
  .muddle-header .header-info li p {
    margin-bottom: 0;
    font-size: 13px;
  }
  .muddle-header .header-info li a {
    font-size: 14px;
  }
  .muddle-header .header-info li span {
    font-size: 14px;
  }
  .muddle-header .header-info li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .muddle-header .header-info li {
    margin-bottom: 10px;
    background-color: #f9f9f9;
    margin-right: 0;
    padding-right: 0;
    padding: 5px 10px;
    border-radius: 3px;
  }
  .muddle-header .header-info li::before {
    display: none;
  }
  .muddle-header .header-info li:last-child {
    margin-bottom: 0;
  }
  .muddle-header .header-info li p {
    margin-bottom: 0;
    font-size: 13px;
  }
  .muddle-header .header-info li a {
    font-size: 14px;
  }
  .muddle-header .header-info li span {
    font-size: 14px;
  }
  .muddle-header .header-info li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 991px) {
  .top-header .mw-1744 {
    max-width: 1744px;
  }
}
/* what-we-do Area Style
============================================*/
.what-we-do-single-item {
  position: relative;
  margin-bottom: 25px;
}
.what-we-do-single-item .card-sp_img {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 164px;
  height: 100%;
}
.what-we-do-single-item .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--whiteColor);
  border-radius: 50px;
  margin-bottom: 30px;
}
.what-we-do-single-item h3 {
  color: var(--whiteColor);
  font-size: 24px;
  margin-bottom: 20px;
}
.what-we-do-single-item p {
  color: #CCCED4;
}
.what-we-do-single-item.mt-185 {
  margin-top: 185px;
}
.what-we-do-single-item.mt-85 {
  margin-top: 85px;
}
.what-we-do-single-item.mt-19 {
  margin-top: -19px;
}

.col-lg-4:last-child .what-we-do-single-item::before {
  display: none;
}

.what-we-do-area {
  overflow: hidden;
}
.what-we-do-area .row {
  --bs-gutter-x: 150px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .what-we-do-single-item {
    margin-top: 0 !important;
    border: 1px solid #868686;
    padding: 20px;
  }
  .what-we-do-single-item::before {
    display: none;
  }
  .what-we-do-single-item .icon {
    margin-bottom: 15px;
  }
  .what-we-do-single-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .what-we-do-single-item .card-sp_img {
    display: none;
  }
  .about-img-four {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .about-img-four .expirience {
    width: 150px;
    height: 150px;
    right: 0;
  }
  .about-img-four .expirience .expirience-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .about-img-four .expirience .expirience-content p {
    font-size: 11px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-we-do-single-item {
    margin-top: 0 !important;
    border: 1px solid #868686;
    padding: 25px;
  }
  .what-we-do-single-item::before {
    display: none;
  }
  .what-we-do-single-item .icon {
    margin-bottom: 20px;
  }
  .what-we-do-single-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .what-we-do-area .row {
    --bs-gutter-x: 1.5rem;
  }
  .about-img-four {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .about-img-four .expirience {
    width: 200px;
    height: 200px;
    right: 0;
  }
  .about-img-four .expirience .expirience-content h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .about-img-four .expirience .expirience-content p {
    font-size: 16px;
  }
  .what-we-do-single-item .card-sp_img {
    display: none;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .what-we-do-area .row {
    --bs-gutter-x: 70px;
  }
  .what-we-do-single-item h3 {
    font-size: 21px;
  }
  .about-img-four .expirience {
    right: 0;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .what-we-do-area .row {
    --bs-gutter-x: 100px;
  }
  .about-img-four .expirience {
    right: 0;
  }
}
/* Blank Area Style
============================================*/
@supports (animation-timeline: scroll()) {
  body {
    timeline-scope: --animat-rotate, --animat-zoom-out, --animat-zoom-out-minus;
  }
  .animat-rotate {
    view-timeline-name: --animat-rotate;
  }
  .animat-zoom-out {
    view-timeline-name: --animat-zoom-out;
  }
  .animat-zoom-out-minus {
    view-timeline-name: --animat-zoom-out-minus;
  }
  .img-animation {
    animation-timing-function: linear;
    animation-fill-mode: forwards;
  }
  .animation-rotate {
    animation-timeline: --animat-rotate;
    animation-name: rotate_animat;
  }
  .animation-zoom-out {
    animation-timeline: --animat-zoom-out;
    animation-name: zoom_out;
  }
  .animation-zoom-out-minus {
    animation-timeline: --animat-zoom-out-minus;
    animation-name: zoom_out_minus;
  }
  @keyframes rotate_animat {
    0% {
      transform: rotate(0deg);
    }
    20% {
      transform: rotate(20deg);
    }
    40% {
      transform: rotate(40deg);
    }
    60% {
      transform: rotate(60deg);
    }
    80% {
      transform: rotate(80deg);
    }
    90% {
      transform: rotate(90deg);
    }
    100% {
      transform: rotate(100deg);
    }
  }
  @keyframes zoom_out {
    0% {
      transform: scale(1);
    }
    20% {
      transform: scale(1);
    }
    40% {
      transform: scale(1.1);
    }
    60% {
      transform: scale(1.2);
    }
    80% {
      transform: scale(1.3);
    }
    90% {
      transform: scale(1.4);
    }
    100% {
      transform: scale(1.5);
    }
  }
  @keyframes zoom_out_minus {
    0% {
      transform: scale(0.9);
    }
    20% {
      transform: scale(0.9);
    }
    40% {
      transform: scale(1);
    }
    60% {
      transform: scale(1);
    }
    80% {
      transform: scale(1);
    }
    90% {
      transform: scale(1);
    }
    100% {
      transform: scale(1);
    }
  }
}
/* Contact Info Area Style
============================================*/
.info-single-item-two {
  padding-left: 31px;
  border-left: 2px solid var(--mainColor);
  margin-bottom: 25px;
}
.info-single-item-two h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.info-single-item-two p {
  max-width: 165px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .info-single-item-two {
    padding-left: 20px;
  }
  .info-single-item-two h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .info-single-item-two p {
    max-width: 100%;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .info-single-item-two {
    padding-left: 20px;
  }
  .info-single-item-two h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .info-single-item-two p {
    max-width: 100%;
  }
}
/* Cart Area Style
============================================*/
.spend-wrap {
  border: 1px dashed #CCCED4;
  padding: 24px 30px;
  margin-bottom: 40px;
  padding-bottom: 38px;
}
.spend-wrap p {
  font-size: 20px;
  margin-bottom: 35px;
  display: block;
}
.spend-wrap p strong {
  font-size: 20px;
  font-weight: 600;
  color: #1A2238;
}
.spend-wrap .progress-bar-custom {
  border: 3.5px solid #CCCED4;
  position: relative;
  z-index: 1;
}
.spend-wrap .progress-bar-custom::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 50%;
  height: 7px;
  background-color: var(--mainColor);
}
.spend-wrap .progress-bar-custom .icon {
  width: 42px;
  height: 42px;
  line-height: 48px;
  border: 1px solid #CCCED4;
  background-color: #FFF3ED;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
  text-align: center;
  border-radius: 100px;
  color: var(--mainColor);
  font-size: 24px;
}
.spend-wrap .progress-bar-custom .icon {
  height: 7px !important;
  background-color: #fe3e11 !important;
  border: none !important;
  border-radius: 0 !important;
  right: auto !important;
  left: -3px !important;
}
.spend-wrap .progress-bar-custom .icon i {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  line-height: 48px;
  border: 1px solid #CCCED4;
  background-color: #FFF3ED;
  text-align: center;
  border-radius: 100px;
  color: #fe3e11;
  font-size: 24px;
}

.progress-bar-custom::before {
  display: none;
}

.cart-table table thead tr {
  border-color: var(--borderColor);
}
.cart-table table thead tr th {
  font-size: 20px;
  font-weight: 400;
  color: var(--headingColor);
  border-color: var(--borderColor);
  padding: 18px 20px;
}
.cart-table table tbody tr {
  border-left: 1px solid var(--borderColor);
  border-right: 1px solid var(--borderColor);
}
.cart-table table tbody tr td {
  padding: 18px 20px;
  border-color: var(--borderColor);
}
.cart-table table tbody tr td .cart-product {
  width: 80px;
}
.cart-table table tbody tr td a {
  display: block;
  color: var(--mainColor);
  text-decoration: none;
}
.cart-table table tbody tr td .title {
  color: var(--headingColor);
}
.cart-table table tbody tr td .title:hover {
  color: var(--mainColor);
}
.cart-table table tbody tr td .price {
  color: var(--headingColor);
}
.cart-table table tbody tr td .remove i {
  font-size: 20px;
  color: #EF2407;
}

.coupon-form {
  border: 1px solid var(--borderColor);
  padding: 20px;
  border-top: none;
}
.coupon-form .form-control {
  height: 56px;
}

.cart-total {
  background-color: #FFF3ED;
}
.cart-total h3 {
  padding: 18px 30px;
  background-color: #f9f9f9;
  font-size: 20px;
  margin-bottom: 0;
}
.cart-total .table > :not(caption) > * > * {
  background-color: transparent;
  padding: 30px;
}
.cart-total tbody tr th {
  font-size: 16px;
  font-weight: 400;
}
.cart-total tbody tr td.price {
  font-size: 25px;
  font-weight: 500;
}
.cart-total tbody tr td .title {
  font-size: 16px;
  color: #565D6F;
}
.cart-total tbody tr td .country {
  color: var(--headingColor);
  font-size: 20px;
}
.cart-total tbody tr td .address {
  color: var(--headingColor);
}
.cart-total .p-30 {
  padding: 30px;
  padding-top: 0;
}
.cart-total .default-btn {
  width: 100%;
  display: block;
}

/*
Add To Cart Area CSS
=====================================================*/
.add-to-cart-counter {
  border: 1px solid #CCCED4;
  width: 100px;
}
.add-to-cart-counter input {
  color: var(--bodyColor);
  max-width: 35px;
  text-align: center;
  font-size: 16px;
  border: 0;
}
.add-to-cart-counter input:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.add-to-cart-counter .minusBtn, .add-to-cart-counter .plusBtn {
  width: 35px;
  height: 42px;
  line-height: 31.9px;
  background-color: transparent;
  font-size: 20px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .cart-table table {
    width: 791px;
  }
  .spend-wrap {
    padding: 20px;
    padding-bottom: 30px;
  }
  .spend-wrap p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .spend-wrap p span {
    font-size: 16px;
  }
  .spend-wrap p strong {
    font-size: 16px;
  }
  .cart-total h3 {
    padding: 20px;
  }
  .cart-total .table > :not(caption) > * > * {
    padding: 20px;
  }
  .cart-total tbody tr td.price {
    font-size: 20px;
  }
  .cart-total .p-30 {
    padding: 20px;
    padding-top: 0;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-total h3 {
    padding: 20px;
  }
  .cart-total .table > :not(caption) > * > * {
    padding: 20px;
  }
  .cart-total tbody tr td.price {
    font-size: 20px;
  }
  .cart-total .p-30 {
    padding: 20px;
    padding-top: 0;
  }
}
/* Checkout Area Style
============================================*/
.internal-option {
  margin-bottom: 90px;
}

.returning {
  background-color: #FFF3ED;
  padding: 10px 20px;
}
.returning i {
  font-size: 24px;
  position: relative;
  top: 4px;
  color: var(--headingColor);
}
.returning p a {
  text-decoration: none;
  color: var(--headingColor);
}
.returning p a:hover {
  color: var(--mainColor);
}

.checkout-form h3 {
  font-size: 31px;
  font-weight: 500;
  margin-bottom: 40px;
}

.total-count-wrap {
  padding: 30px;
  padding-top: 0;
}
.total-count-wrap .total-count {
  border-bottom: 1px solid #FFC4A8;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.total-count-wrap .total-count h4 {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 25px;
}

.payment-option {
  margin: 30px;
  border: 1px solid #FFC4A8;
  padding: 35px;
  margin-top: 0;
  margin-bottom: 40px;
}
.payment-option .form-check {
  margin-bottom: 15px;
}
.payment-option .form-check .form-check-input {
  border-radius: 0;
  border-color: #1A2238;
}
.payment-option .form-check .form-check-input:focus {
  box-shadow: none;
}
.payment-option .form-check .form-check-input:checked[type=radio] {
  background-image: unset;
  border-color: var(--mainColor);
}
.payment-option .form-check .form-check-input:checked {
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .checkout-form h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .total-count-wrap {
    padding: 20px;
    padding-top: 0;
  }
  .total-count-wrap .total-count {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .total-count-wrap .total-count h4 {
    font-size: 20px;
  }
  .payment-option {
    margin: 20px;
    padding: 20px;
    margin-top: 0;
  }
  .internal-option {
    margin-bottom: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-form h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .internal-option {
    margin-bottom: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .checkout-form h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .total-count-wrap {
    padding: 20px;
    padding-top: 0;
  }
  .total-count-wrap .total-count {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .total-count-wrap .total-count h4 {
    font-size: 20px;
  }
  .payment-option {
    margin: 20px;
    padding: 20px;
    margin-top: 0;
  }
  .internal-option {
    margin-bottom: 30px;
  }
}
/* Authentication Area Style
============================================*/
.authentication-form {
  max-width: 588px;
  margin: auto;
}
.authentication-form h3 {
  font-size: 25px;
  padding: 15px 30px;
  background-color: #f9f9f9;
  text-align: center;
  margin-bottom: 0;
}
.authentication-form .authentication-form-wrap {
  background-color: #FFF3ED;
  padding: 40px 100px;
}
.authentication-form .authentication-form-wrap .form-group {
  margin-bottom: 20px;
}
.authentication-form .authentication-form-wrap .lost {
  font-size: 16px;
  color: var(--headingColor);
  text-decoration: none;
  display: block;
}
.authentication-form .authentication-form-wrap .lost:hover {
  color: var(--mainColor);
}
.authentication-form .authentication-form-wrap .default-btn {
  width: 100%;
  display: block;
}
.authentication-form .authentication-form-wrap .returning {
  background-color: #f9f9f9;
}
.authentication-form .authentication-form-wrap .returning p {
  color: var(--headingColor);
}
.authentication-form .authentication-form-wrap .returning p a {
  font-weight: 600;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .authentication-form h3 {
    font-size: 22px;
  }
  .authentication-form .authentication-form-wrap {
    padding: 20px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .authentication-form h3 {
    font-size: 25px;
  }
  .authentication-form .authentication-form-wrap {
    padding: 30px;
  }
}
/* Job Area Style
============================================*/
.job-positions-single-item {
  background-color: #FFF3ED;
  padding: 40px;
  margin-bottom: 20px;
}
.job-positions-single-item:last-child {
  margin-bottom: 0;
}
.job-positions-single-item h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.job-positions-single-item h3 a {
  color: var(--headingColor);
  transition: 0.7s;
}
.job-positions-single-item h3:hover a {
  color: var(--mainColor);
}
.job-positions-single-item ul li i {
  font-size: 23px;
  position: relative;
  top: 4px;
  color: var(--mainColor);
}
.job-positions-single-item ul li span {
  color: #565D6F;
  margin-left: 10px;
}
.job-positions-single-item .default-btn {
  background-color: transparent;
  border: 1px solid var(--headingColor);
  color: var(--headingColor);
}
.job-positions-single-item .default-btn .icon-right .one {
  filter: invert(1);
}
.job-positions-single-item .default-btn .icon-right .two {
  filter: invert(1);
}
.job-positions-single-item .default-btn:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--whiteColor);
}
.job-positions-single-item .default-btn:hover .icon-right .one {
  filter: unset;
}
.job-positions-single-item .default-btn:hover .icon-right .two {
  filter: unset;
}
.job-positions-single-item .default-btn.active {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--whiteColor);
}
.job-positions-single-item .default-btn.active .icon-right .one {
  filter: unset;
}
.job-positions-single-item .default-btn.active .icon-right .two {
  filter: unset;
}

.job-positions-content {
  max-width: 790px;
  margin: auto;
  margin-top: 60px;
}
.job-positions-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.job-positions-content .mb-c-40 {
  margin-bottom: 40px;
}
.job-positions-content ul {
  margin-bottom: 0;
}
.job-positions-content ul li {
  margin-bottom: 12px;
}
.job-positions-content ul li:last-child {
  margin-bottom: 0;
}

.job-positions-area .expired-message span {
  font-size: 14px;
}
.job-positions-area .expired-message span i {
  color: var(--mainColor);
  margin-right: 5px;
}

#exampleModal .modal-dialog {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
#exampleModal .modal-content .modal-header {
  padding: 25px 40px;
  border-color: #ffe9e4;
}
#exampleModal .modal-content .modal-header .modal-title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}
#exampleModal .modal-body {
  padding: 40px;
}
#exampleModal .modal-body .get-a-quote-form h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 35px;
  color: var(--mainColor);
}
#exampleModal .modal-body .get-a-quote-form h3 span {
  color: var(--blackColor);
}
#exampleModal .modal-body .get-a-quote-form .form-group {
  margin-bottom: 30px;
}
#exampleModal .modal-body .get-a-quote-form .form-group .label {
  margin-bottom: 7px;
  color: var(--headingColor);
}
#exampleModal .modal-body .get-a-quote-form .form-group .form-control {
  border-color: #ffcbbf;
  background-color: transparent;
  height: 56px;
  padding-left: 24px;
  padding-right: 24px;
}
#exampleModal .modal-body .get-a-quote-form .form-group .form-control:focus {
  border-color: var(--mainColor);
}
#exampleModal .modal-body .get-a-quote-form .form-group .form-control::-moz-placeholder {
  color: var(--bodyColor);
  font-size: 15px;
}
#exampleModal .modal-body .get-a-quote-form .form-group .form-control::placeholder {
  color: var(--bodyColor);
  font-size: 15px;
}
#exampleModal .modal-body .get-a-quote-form .form-group .form-control.file {
  padding-top: 15px;
}
#exampleModal .modal-body .get-a-quote-form .form-group textarea.form-control {
  height: auto;
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn {
  position: relative;
  background-color: var(--headingColor);
  color: var(--whiteColor);
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn .icon-right {
  position: relative;
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn .icon-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn .icon-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 5px;
  transition: var(--transition);
  background-image: url(../images/right-arrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn:hover {
  background-color: var(--mainColor);
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn:hover .icon-right::before {
  right: 0;
  opacity: 0;
}
#exampleModal .modal-body .get-a-quote-form .form-group .default-btn:hover .icon-right::after {
  right: 0;
  opacity: 1;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .job-positions-single-item {
    padding: 20px;
  }
  .job-positions-single-item h3 {
    font-size: 20px;
  }
  .job-positions-content h3 {
    font-size: 22px;
  }
}
/* Min width 768px to Max width 992px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .job-positions-single-item {
    padding: 20px;
  }
  .job-positions-single-item h3 {
    font-size: 22px;
  }
  .job-positions-content h3 {
    font-size: 22px;
  }
}/*# sourceMappingURL=vixa-main-style.css.map */