@charset "UTF-8";
/* ======================== variables ============================ */
/* ======================== variables ============================ */
/*============ Google fonts ============*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;600;700&display=swap");
/*======= CSS variables =======*/
/*======= Main CSS =======*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

body {
  font-family: "Raleway", sans-serif;
  background: #232323 !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: #9DC33B;
  border-radius: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif !important;
}

.butt-r {
  float: right;
}

.position-r {
  position: relative;
}

.next-prev ul li a i {
  color: #fff;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px !important;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1380px !important;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1500px !important;
  }
}
.display-3 {
  font-size: 7rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  font-family: sans-serif !important;
  color: #9dc33b;
  margin-top: 100px !important;
}

.display-5 {
  color: #9dc33b;
}

.error-page {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1490196078);
}

.pagination.deals {
  padding: 0 15px;
}
.pagination.deals i {
  color: #9dc33b;
}
.pagination.deals .page-link.active {
  background: #9dc33b;
  color: #fff !important;
  border: 1px solid #9dc33b;
}

.pagi-nation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 50px 0;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #9dc33a !important;
  border-color: #9dc33a !important;
}

.page-link {
  color: #1a1a1a !important;
}

.btn {
  color: #fff;
  font-family: "Roboto Flex", sans-serif;
  font-size: 16px !important;
  font-weight: 100 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  padding: 12px 24px !important;
  margin: 0 0px;
  border-radius: 30px !important;
  border: 1px solid transparent !important;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .btn {
    padding: 10px 17px !important;
  }
}
@media (max-width: 991px) {
  .btn {
    padding: 10px 15px !important;
  }
}
@media (max-width: 639px) {
  .btn {
    padding: 8px 11px !important;
  }
}

.btn:focus {
  color: #fff;
}

.btn:hover {
  color: #9DC33B;
  box-shadow: 0 0 10px -5px #9DC33B;
  border: 1px solid #9DC33B !important;
}

.btn:before {
  content: "";
  background: #9DC33B;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.2s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.btn:hover:before {
  transition-duration: 0.3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}

.btn span {
  display: block;
  position: relative;
}
@media (max-width: 1199px) {
  .btn span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .btn span {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .btn span {
    font-size: 13px;
  }
}

.btn:hover span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@keyframes MoveUpInitial {
  100% {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 0px;
  }
}
.btn8 {
  color: #333;
  border: 1px solid #8bd0de !important;
  font-family: "Roboto Flex", sans-serif;
  font-size: 16px !important;
  font-weight: 100 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  padding: 12px 24px !important;
  margin: 0 0px;
  border-radius: 30px !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .btn8 {
    padding: 10px 17px !important;
  }
}
@media (max-width: 991px) {
  .btn8 {
    padding: 10px 15px !important;
  }
}
@media (max-width: 639px) {
  .btn8 {
    padding: 8px 11px !important;
  }
}

.btn8:focus {
  color: #fff;
}

.btn8:hover {
  color: #8bd0de;
  box-shadow: 0 0 10px -5px #8bd0de;
  border: 1px solid #8bd0de !important;
}

.btn8:before {
  content: "";
  background: #6ed2e2;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.2s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.btn8:hover:before {
  transition-duration: 0.3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}

.btn8 span {
  display: block;
  position: relative;
}
@media (max-width: 1199px) {
  .btn8 span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .btn8 span {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .btn8 span {
    font-size: 13px;
  }
}

.btn8:hover span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@keyframes MoveUpInitial {
  100% {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .btn8 {
    margin-bottom: 0px;
  }
}
.dealbtn {
  padding: 5px 18px !important;
  margin: -6px 0 0 0;
}

.read-more__link {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 100 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  padding: 12px 24px !important;
  margin: 0 0px;
  border-radius: 30px !important;
  border: 1px solid transparent !important;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .read-more__link {
    padding: 10px 17px !important;
  }
}
@media (max-width: 991px) {
  .read-more__link {
    padding: 10px 15px !important;
  }
}
@media (max-width: 639px) {
  .read-more__link {
    padding: 8px 11px !important;
  }
}

.read-more__link:focus {
  color: #fff;
}

.read-more__link:hover {
  color: #9DC33B;
  box-shadow: 0 0 10px -5px #9DC33B;
  border: 1px solid #9DC33B !important;
}

.read-more__link:before {
  content: "";
  background: #9DC33B;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 50px;
  transition: all 0.2s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.read-more__link:hover:before {
  transition-duration: 0.3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}

.read-more__link span {
  display: block;
  position: relative;
}
@media (max-width: 1199px) {
  .read-more__link span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .read-more__link span {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .read-more__link span {
    font-size: 13px;
  }
}

.read-more__link:hover span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@keyframes MoveUpInitial {
  100% {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .read-more__link {
    margin-bottom: 0px;
  }
}
.section-home {
  position: relative;
  min-height: 100vh;
  background: url(bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-home:before {
  content: "";
  position: absolute;
  background: linear-gradient(to top, #23252B, transparent);
  width: 100%;
  height: 80px;
  bottom: 0;
}

.section-home h1 {
  color: #fff;
  font-size: 10vw;
  font-weight: 800;
  text-shadow: 0 5px 25px rgba(157, 10, 10, 0.2);
  opacity: 0.3;
}

.d-flex-right {
  display: flex !important;
  justify-content: right;
}
@media (max-width: 1599px) {
  .d-flex-right {
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .d-flex-right {
    justify-content: right;
  }
}

.top-men {
  list-style: none;
  padding: 4px 10px;
  margin-right: 4px;
  border-radius: 10px 0px 10px 0px;
  margin-top: 6px;
}
.top-men a {
  text-decoration: none;
  color: #fff;
}
.top-men a:hover {
  text-decoration: none;
  color: #fff;
}

.section-two {
  min-height: 100vh;
  background: #23252B;
}

.section-two h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  margin: 30px 0;
}

.section-two p {
  color: #fff;
  font-size: 1em;
  margin: 30px 0;
}

.header-top {
  position: absolute;
  right: 0;
  top: 6px;
  z-index: 98;
  width: 100%;
}
@media (max-width: 1199px) {
  .header-top {
    left: 0;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
}
.header-top ul li::marker {
  display: none;
  color: #333;
}

header {
  z-index: 97;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #232323;
  text-shadow: 0 5px 25px rgba(157, 10, 10, 0.2);
  padding: 0 100px;
  transition: 0.6s;
  display: flex !important;
  justify-content: end;
  align-items: center;
  height: 50px;
}
@media (max-width: 1599px) {
  header {
    padding: 0 0 0 60px;
  }
}
@media (max-width: 991px) {
  header {
    top: 0;
  }
}
@media (max-width: 639px) {
  header {
    top: 0;
    justify-content: end;
  }
}
header .head-box {
  position: relative;
}
@media (max-width: 991px) {
  header .head-box {
    padding: 0;
  }
}
@media (max-width: 639px) {
  header .head-box {
    padding: 0;
  }
}

header .logo {
  color: #fff;
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  position: absolute;
  left: -210px;
  top: -69px;
  z-index: 99;
}
@media (max-width: 1599px) {
  header .logo {
    left: -140px;
  }
}
@media (max-width: 1199px) {
  header .logo {
    top: -69px;
  }
}
@media (max-width: 991px) {
  header .logo {
    left: 0px;
    top: -5px;
  }
}
@media (max-width: 639px) {
  header .logo {
    left: 0px;
    top: -5px;
  }
}

header .logo.home .one {
  display: none;
}
header .logo .one {
  width: 120px;
}
@media (max-width: 1599px) {
  header .logo .one {
    width: 110px;
  }
}
@media (max-width: 1199px) {
  header .logo .one {
    width: 100px;
  }
}
@media (max-width: 991px) {
  header .logo .one {
    width: 85px;
  }
}
@media (max-width: 639px) {
  header .logo .one {
    width: 70px;
  }
}
header .logo .two {
  display: none;
}

#animatedImage {
  width: 130px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
@media (max-width: 1599px) {
  #animatedImage {
    width: 120px;
    left: -50px;
  }
}
@media (max-width: 1199px) {
  #animatedImage {
    width: 110px;
    left: -8px;
  }
}
@media (max-width: 991px) {
  #animatedImage {
    width: 90px;
    top: 5px;
    left: -15px;
  }
}
@media (max-width: 639px) {
  #animatedImage {
    width: 80px;
    top: 6px;
    left: -7px;
  }
}

#animatedImage {
  transition: opacity 1s ease-in-out;
  /* Example transition */
}

#animatedImage {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#logo:hover + #animatedImage {
  opacity: 1;
  transform: translate(70px) !important;
  transition: ease-in-out 1s all;
}
@media (max-width: 1599px) {
  #logo:hover + #animatedImage {
    transform: translate(70px) !important;
  }
}
@media (max-width: 1199px) {
  #logo:hover + #animatedImage {
    transform: translate(60px) !important;
  }
}
@media (max-width: 991px) {
  #logo:hover + #animatedImage {
    left: -16px;
    transform: translate(52px) !important;
  }
}
@media (max-width: 639px) {
  #logo:hover + #animatedImage {
    left: -20px;
    transform: translate(56px) !important;
  }
}

#animatedImageAll {
  width: 130px;
  height: auto;
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: -1;
}
@media (max-width: 1599px) {
  #animatedImageAll {
    width: 130px;
    left: -20px;
    top: 0;
  }
}
@media (max-width: 1199px) {
  #animatedImageAll {
    width: 120px;
    left: -20px;
    top: 0;
  }
}
@media (max-width: 991px) {
  #animatedImageAll {
    width: 100px;
    top: 5px;
    left: -15px;
  }
}
@media (max-width: 639px) {
  #animatedImageAll {
    width: 80px;
    top: 6px;
    left: -7px;
  }
}

#animatedImageAll {
  transition: opacity 1s ease-in-out;
  /* Example transition */
}

#animatedImageAll {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#logo:hover + #animatedImageAll {
  opacity: 1;
  transform: translate(70px) !important;
  transition: ease-in-out 1s all;
}
@media (max-width: 1599px) {
  #logo:hover + #animatedImageAll {
    transform: translate(70px) !important;
  }
}
@media (max-width: 1199px) {
  #logo:hover + #animatedImageAll {
    transform: translate(60px) !important;
  }
}
@media (max-width: 991px) {
  #logo:hover + #animatedImageAll {
    left: -20px;
    transform: translate(60px) !important;
  }
}
@media (max-width: 639px) {
  #logo:hover + #animatedImageAll {
    left: -20px;
    transform: translate(56px) !important;
  }
}

#showProductImage {
  width: 630px;
  height: 100%;
  position: fixed;
  top: 10px;
  z-index: -1;
  right: 30px;
  border-radius: 8px;
  display: none;
}
#showProductImage .show_img img {
  width: 230px;
  height: auto;
  border: 1px solid rgba(157, 195, 59, 0.4901960784);
  border-radius: 8px;
}
#showProductImage .show_brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
#showProductImage .show_brand img {
  width: 150px;
  height: auto;
  border: 1px solid rgba(157, 195, 59, 0.4901960784);
  border-radius: 8px;
}
#showProductImage .showProducUl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px;
}
#showProductImage .showProducUl li {
  list-style: none;
  width: 130px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#showProductImage .showProducUl li a {
  text-decoration: none;
}
#showProductImage .showProducUl li a:hover {
  text-decoration: none;
}
#showProductImage .showProducUl li a img {
  width: 100%;
  filter: gray;
  -webkit-filter: grayscale(1);
  -webkit-transition: all 0.5s ease-in-out;
}
#showProductImage .showProducUl li a img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  border: 1px solid rgba(157, 195, 59, 0.2392156863);
  border-radius: 4px;
}

#showProductImage {
  display: none;
}

#showImage:hover + #showProductImage {
  display: block;
}

header .navigation {
  position: relative;
  line-height: 40px;
  transition: 0.6s;
  transition-property: line-height;
  display: flex;
  justify-content: center;
}

header.sticky {
  top: 0;
  z-index: 999;
}

header.sticky .logo {
  line-height: 60px;
  transition: all 3s ease-in-out;
  top: 5px;
}
@media (max-width: 1199px) {
  header.sticky .logo {
    top: -5px;
  }
}

header.sticky .logo .one {
  display: none;
}

header.sticky #animatedImageAll {
  display: none;
}

header.sticky .logo .two {
  width: 180px;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  height: auto;
}
@media (max-width: 1599px) {
  header.sticky .logo .two {
    left: -12px;
    width: 130px;
    top: 15px;
  }
}
@media (max-width: 1199px) {
  header.sticky .logo .two {
    left: 0px;
    width: 150px;
    top: 12px;
  }
}
@media (max-width: 991px) {
  header.sticky .logo .two {
    left: 0px;
  }
}
@media (max-width: 639px) {
  header.sticky .logo .two {
    left: 0px;
    width: 130px;
    top: 12px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

header.sticky .navigation {
  line-height: 60px;
}

header .navigation .menu {
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 0;
}

.menu-item > a {
  color: #fff !important;
  font-size: 14px;
  text-decoration: none;
  margin: 14px;
  padding: 25px 8px;
  text-transform: uppercase;
}
@media (max-width: 1599px) {
  .menu-item > a {
    font-size: 13px;
    margin: 7px;
  }
}
.menu-item > a i {
  padding-left: 8px;
  color: #9DC33B;
}
.menu-item > a .fa-home {
  padding-left: 8px !important;
  color: #9DC33B !important;
  font-size: 20px !important;
}
@media (max-width: 1199px) {
  .menu-item > a .fa-home {
    padding: 0 !important;
  }
}

.menu-item > a:hover {
  color: #9DC33B;
  transition: 0.3s;
  text-decoration: none;
}

.menu-item .sub-menu {
  position: absolute;
  background: #fff;
  top: 45px;
  line-height: 20px;
  list-style: none;
  border-radius: 0px 0px 10px 10px;
  text-shadow: 0 5px 25px rgba(157, 10, 10, 0.2);
  pointer-events: none;
  transform: translateY(20px);
  display: none;
  transition: 0.7s;
  transition-property: transform, opacity;
  width: 90%;
  left: 0px;
  right: 0;
  padding: 10px 0 10px 0;
  margin: 0 auto;
}

.menu-item .sub-menu.our_company_ul {
  width: 280px;
  left: auto;
  right: auto;
  min-height: 170px !important;
}

.menu-item .sub-menu.our_company_ul .sub-item.our_company_li {
  width: 90%;
}

header.sticky .menu-item .sub-menu {
  top: 50px;
}

.menu-item:hover .sub-menu {
  pointer-events: all;
  transform: translateY(0);
  display: block;
  min-height: 300px;
}

.menu-item:hover .sub-item.more:hover .supplier-logos {
  display: block;
}

.menu-item .sub-menu .sub-item {
  position: relative;
  cursor: pointer;
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
  width: 22%;
  padding: 5px 20px;
  border-right: 1px solid #fff;
  display: block;
  background: linear-gradient(to right, #92ad50 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  border-bottom: none;
  border-left: 3px solid #9dc33b !important;
  margin: 0px 0 0px 15px;
}

.menu-item .sub-menu .sub-item a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  width: 90%;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  display: contents;
  align-items: center;
}
.menu-item .sub-menu .sub-item a:hover {
  color: #fff;
}
.menu-item .sub-menu .sub-item a i {
  margin: 2px 0 0 15px;
}

.menu-item .sub-menu .sub-item:hover {
  background-position: left bottom;
  border-right: 1px solid rgb(203, 203, 203);
  position: relative;
}

.menu-item .sub-menu .sub-item:hover .more-item {
  position: relative;
  z-index: 999;
}

.menu-item .sub-menu .sub-item.more2 {
  width: 230px;
  padding: 4px 10px;
  margin: 0px 0 0px 3px;
}

.menu-item .sub-menu .sub-item.more2 i {
  top: 8px;
}

.menu-item .sub-menu .sub-item.more2 a {
  color: #333 !important;
}

.menu-item .sub-menu .sub-item.more2:hover a {
  color: #fff;
}

.more .more-menu .more-item.active #showProductImage .showProducUl li a img {
  border: 2px solid red;
}

.more .more-menu .more-item:hover a {
  color: #fff !important;
}

.more2 .more-menu .more-item a {
  color: #333 !important;
}

.more2 .more-menu .more-item:hover a {
  color: #fff;
}

.more .more-menu {
  position: absolute;
  background: #ffffff;
  list-style: none;
  top: 0;
  left: 100%;
  white-space: nowrap;
  border-radius: 0 0px 10px 10px;
  pointer-events: none;
  transform: translateY(0px);
  display: none;
  transition: 1.4s;
  transition-property: transform, opacity;
}

.more:hover .more-menu {
  pointer-events: all;
  transform: translateY(0);
  display: block;
  width: 254px;
  position: fixed;
  left: 23%;
  height: 100%;
  background: #fff !important;
  top: 0px;
  padding: 8px 0 0 0;
}

.more .more-menu .more-item {
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(20, 24, 6, 0.1490196078);
  display: block;
  background: linear-gradient(to right, #92ad50 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  border-bottom: none;
  border-left: 3px solid #9dc33b !important;
  margin: 0px 0 0px 3px;
}
.more .more-menu .more-item a {
  color: #333 !important;
}
.more .more-menu .more-item a:hover {
  color: #fff !important;
}

.menu-item .sub-menu .sub-item:hover a {
  color: #333 !important;
}

.more .more-menu .more-item:hover {
  background: #9DC33B;
}

.more:hover .more2 .more-menu {
  opacity: 0;
  left: 0%;
  top: 32px;
  height: auto;
  position: absolute;
}

.menu-item .sub-menu .sub-item .fa-angle-right {
  position: absolute;
  right: 10px;
  top: 7px;
  font-size: 14px;
}

.more2 .more-menu {
  position: absolute;
  background: #ffffff;
  list-style: none;
  top: 0;
  left: 100%;
  white-space: nowrap;
  border-radius: 0 0px 10px 10px;
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
  transition-property: transform, opacity;
}

.more2:hover .more-menu {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1 !important;
  top: 0;
}
@media (max-width: 639px) {
  .more2:hover .more-menu {
    top: 0px;
  }
}

.more2 .more-menu .more-item {
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-left: 1px solid rgba(20, 24, 6, 0.1490196078);
  margin: 0 0 0px 0;
  padding-left: 20px;
}

.more2 .more-menu .more-item:hover {
  background: #9DC33B;
}

.menu-btn {
  display: none;
}

#riv_ReadmoreButton {
  position: absolute;
  bottom: -150px;
  width: 300px;
  left: -40px;
}

@media (min-width: 1061px) {
  .l-d-none {
    display: none;
  }
}
@media (max-width: 1060px) {
  .menu-item .sub-menu.our_company_ul {
    min-height: auto !important;
  }
  #showProductImage {
    display: none !important;
  }
  .l-d-none {
    display: block;
  }
  .menu-item .sub-menu .sub-item.more2 a {
    margin-left: 20px;
  }
  .menu-item .sub-menu .sub-item.more2 {
    padding: 10px 10px 10px 10px;
    margin: 0;
    border-right: none;
  }
  .more:hover .more-menu {
    width: auto;
    position: inherit;
    left: 0;
    top: unset;
    background: rgba(255, 255, 255, 0.1) !important;
  }
  .more:hover .more2 .more-menu {
    opacity: 1;
    background: #d3f382;
    left: 0;
    padding-right: 0;
    top: 0;
    position: initial;
  }
  header .navigation .menu {
    position: fixed;
    display: block;
    background: #232323;
    min-width: 350px;
    height: 100vh;
    top: 0;
    right: -100%;
    padding: 90px 10px 90px 10px;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.5s;
    transition-property: right, visibility;
  }
  header.sticky .navigation {
    line-height: 45px;
  }
  header .navigation .menu.active {
    right: 0;
    visibility: visible;
  }
  .menu-item {
    position: relative;
    margin-bottom: 20px;
  }
  .menu-item .sub-menu {
    opacity: 1;
    position: relative;
    top: 0;
    transform: translateX(10px);
    background: #9DC33B;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    width: 100%;
    left: 0;
  }
  header.sticky .menu-item .sub-menu {
    top: 0;
  }
  .menu-item .sub-menu .sub-item {
    box-shadow: none;
    width: auto;
    margin-right: 5px;
    margin-left: 0;
    border-right: none;
    background: none;
  }
  .menu-item .sub-menu .sub-item:hover {
    background: none;
  }
  .menu-item .sub-menu .sub-item a:hover {
    color: #333;
    transition: 0.3s;
  }
  .more .more-menu {
    opacity: 1 !important;
    position: relative;
    left: 0;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: none;
    margin-top: 15px;
    padding-right: 0px;
    margin-right: 15px;
  }
  .more .more-menu .more-item {
    box-shadow: none;
    padding: 6px 10px 6px 10px;
    margin: 0 0 5px 0;
    border-right: none;
    background: none;
  }
  .more .more-menu .more-item:hover {
    background: none;
  }
  .more .more-menu .more-item a {
    margin-left: 20px;
  }
  .close-btn {
    position: absolute;
    background: url(../img/close.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: 25px;
    background-position: center;
    top: 0;
    right: 0;
    margin: 25px;
    cursor: pointer;
  }
  .menu-btn {
    background: url(../img/menu.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
    display: block;
    float: right;
  }
  header {
    padding: 15px 20px;
  }
  header.sticky {
    padding: 10px 20px;
  }
}
.navigation {
  position: relative;
}

.supplier-logos {
  display: none;
  position: fixed;
  top: 0;
  right: 20px;
  width: 630px;
  height: auto;
  z-index: 1;
  border-radius: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.supplier-logos .sub-supplier {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #fff;
}

.sub-item.more:hover .supplier-logos {
  display: flex;
  height: 100%;
}

.supplier-logo {
  width: 21%;
  margin: 10px 5px 5px 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 10px 10px;
}

.supplier-logo img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}

.supplier-logo:hover {
  border: 1px solid rgba(157, 195, 59, 0.5607843137);
}

.supplier-logo:hover img {
  filter: grayscale(0);
}

@media only screen and (min-width: 1360px) and (max-width: 1600px) {
  .d-flex-right {
    justify-content: right;
  }
  .humberger {
    top: 3px;
    height: 44px;
  }
}
@media only screen and (min-width: 1360px) and (max-width: 1400px) {
  .menu-item .sub-menu {
    width: 90%;
    left: 110px;
  }
  #showProductImage {
    width: 533px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1359px) {
  #showProductImage {
    width: 550px;
  }
  .humberger {
    top: 3px !important;
    height: 38px !important;
  }
  .menu-item .sub-menu {
    width: 100%;
    left: 80px;
  }
}
@media only screen and (min-width: 1061px) and (max-width: 1400px) {
  .menu-item .sub-menu .sub-item a {
    font-size: 13px;
    height: 28px;
  }
}
.search-box .clear {
  clear: both;
  margin-top: 20px;
}

.search-box ul {
  list-style: none;
  padding: 0px;
  width: 250px;
  position: inherit;
  margin: 0;
  background: white;
  margin: 0 0 0 20px;
  flex-direction: column;
}
@media (max-width: 639px) {
  .search-box ul {
    margin: 0;
  }
}
@media (max-width: 374px) {
  .search-box ul {
    margin: 0;
  }
}

.search-box {
  position: relative;
  top: -8px;
}

.search-box i {
  position: absolute;
  top: 0px;
  right: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 36px;
  color: #9dc33b;
  cursor: pointer;
  border-radius: 20px;
  display: none;
}

.search-box ul li {
  background: #fff;
  padding: 7px 10px;
  margin: 0 0 2px 0;
  border-bottom: 1px solid #232323;
  display: flex;
  width: 100%;
}

.search-box ul li:last-child {
  border: none;
}

/* .search-box ul li:nth-child(even) {
    background: cadetblue;
    color: white;
} */
.search-box ul li:hover {
  cursor: pointer;
}

.search-box ul li a {
  text-decoration: none;
  color: #333;
}

.search-box input[type=text] {
  padding: 5px;
  width: 250px;
  letter-spacing: 1px;
  margin: 0 40px 0 20px;
  border-radius: 20px;
}
@media (max-width: 639px) {
  .search-box input[type=text] {
    margin: 20px 40px 0 0px;
  }
}
@media (max-width: 374px) {
  .search-box input[type=text] {
    margin: 20px 40px 0 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1364px) {
  .menu-item > a {
    font-size: 13px;
  }
  header .logo .one {
    width: 100px;
  }
  #animatedImageAll {
    width: 120px;
    left: -20px;
    top: 0;
  }
}
@media only screen and (min-width: 1061px) and (max-width: 1199px) {
  #showProductImage .show_img img {
    width: 180px;
  }
}
@media only screen and (min-width: 1921px) {
  .supplier-logos {
    width: 56.5%;
  }
}
@media only screen and (min-width: 1920px) and (max-width: 2060px) {
  header {
    padding: 0 0 0 270px;
  }
  .menu-item .sub-menu .sub-item {
    letter-spacing: -0.4px;
  }
}
@media only screen and (max-width: 1920px) {
  .supplier-logos {
    width: 56.5%;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  header {
    padding: 0 0 0 200px;
  }
  .supplier-logo {
    width: 21%;
    margin: 13px 8px 8px 8px;
  }
  .supplier-logo img {
    width: 100%;
    height: 45px;
  }
}
@media only screen and (max-width: 1600px) {
  .supplier-logos {
    width: 54.5%;
  }
  .header_bar.navbar-scroll .twoo {
    width: 160px !important;
    left: -30px !important;
  }
}
@media only screen and (min-width: 1481px) and (max-width: 1599px) {
  header {
    padding: 0 0 0 180px;
  }
  .supplier-logo {
    width: 22%;
    margin: 10px 5px 5px 5px;
    padding: 5px 8px;
  }
  .supplier-logo img {
    width: 100%;
    height: 50px;
  }
}
@media only screen and (max-width: 1400px) {
  .supplier-logos {
    width: 53%;
  }
  .header_bar.navbar-scroll .twoo {
    width: 150px !important;
    left: -10px !important;
    top: 22px !important;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1480px) {
  header {
    padding: 0 0 0 140px;
  }
  .menu-item .sub-menu .sub-item {
    width: 21.5%;
  }
  .supplier-logo {
    width: 22%;
    margin: 10px 5px 5px 5px;
    padding: 5px 8px;
  }
  .supplier-logo img {
    width: 100%;
    height: 70px;
  }
}
@media only screen and (max-width: 1366px) {
  .supplier-logos {
    width: 49.5%;
  }
  .header_bar.navbar-scroll .twoo {
    width: 140px !important;
    left: -10px !important;
    top: 22px !important;
  }
}
@media only screen and (max-width: 1280px) {
  .supplier-logos {
    width: 52%;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1358px) {
  .supplier-logos {
    width: 52.2%;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1365px) {
  .supplier-logo {
    width: 22%;
    margin: 10px 5px 5px 5px;
    padding: 5px 8px;
  }
  .supplier-logo img {
    width: 100%;
    height: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1280px) {
  header .logo {
    left: -40px;
  }
  .menu-item .sub-menu .sub-item {
    width: 23%;
  }
  .supplier-logo {
    width: 22%;
    margin: 10px 5px 5px 5px;
    padding: 5px 8px;
  }
  .supplier-logo img {
    width: 100%;
    height: 70px;
  }
  .more:hover .more-menu {
    left: 23.5%;
  }
}
@media only screen and (max-width: 1200px) {
  .supplier-logos {
    width: 51.5%;
  }
  .header_bar.navbar-scroll .twoo {
    width: 120px !important;
    left: -50px !important;
    top: 19px !important;
  }
  header .head-box {
    left: -50px;
  }
  .humberger {
    right: 1vw !important;
  }
}
@media only screen and (max-width: 1024px) {
  .header_bar.navbar-scroll .twoo {
    width: 180px !important;
    left: -20px !important;
    top: 19px !important;
  }
  header .head-box {
    left: 0px;
  }
  .menu-item:hover .sub-menu {
    min-height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header_bar.navbar-scroll .twoo {
    width: 150px !important;
    left: -20px !important;
    top: 19px !important;
  }
}
@media only screen and (max-width: 600px) {
  .header_bar.navbar-scroll .twoo {
    width: 120px !important;
    left: 0px !important;
    top: 19px !important;
  }
}
@media only screen and (min-width: 1061px) and (max-width: 1199px) {
  .menu-item > a {
    font-size: 10px;
    margin: 3px;
  }
  header.sticky .logo .two {
    left: -60px;
    width: 120px;
    top: 25px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .supplier-logos {
    display: none !important;
  }
}
@media only screen and (min-width: 1060px) and (max-width: 1199px) {
  header .logo {
    left: -40px;
  }
  .header_bar.navbar-scroll .twoo {
    width: 130px;
    left: -30px;
    top: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1059px) {
  header .logo {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .supplier-logos {
    display: none !important;
  }
}
@media only screen and (min-width: 150px) and (max-width: 767px) {
  .supplier-logos {
    display: none !important;
  }
}
/*======= Home =======*/
.home {
  height: 100vh;
  position: relative;
  top: -30px;
}
@media (max-width: 1599px) {
  .home {
    height: 100vh;
  }
}
@media (max-width: 1199px) {
  .home {
    height: 90vh;
  }
}
@media (max-width: 991px) {
  .home {
    height: 75vh;
  }
}
@media (max-width: 639px) {
  .home {
    height: 70vh;
  }
}
.home:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 0%, rgba(238, 237, 237, 0.02) 100%, rgb(148, 148, 148) 100%);
  z-index: 99;
}
@media (max-width: 991px) {
  .home:before {
    height: 50px;
  }
}
.home .swiper {
  z-index: 9;
}
.home.openHouse-top-title {
  position: relative;
  overflow: hidden !important;
  height: 100vh;
}
@media (max-width: 1199px) {
  .home.openHouse-top-title {
    height: 100vh;
  }
}
@media (max-width: 991px) {
  .home.openHouse-top-title {
    height: 100vh;
  }
}
@media (max-width: 639px) {
  .home.openHouse-top-title {
    height: 101vh;
  }
}
.home.openHouse-top-title .top-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
}
@media (max-width: 639px) {
  .home.openHouse-top-title .top-title-content {
    justify-content: center;
    align-items: center;
    top: 50%;
  }
}
.home.openHouse-top-title .top-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
  text-shadow: 4px 3px 4px #000;
}
@media (max-width: 1599px) {
  .home.openHouse-top-title .top-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .home.openHouse-top-title .top-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .home.openHouse-top-title .top-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .home.openHouse-top-title .top-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.home.openHouse-top-title .top-title-content h6 {
  font-size: 1rem;
  color: #fff;
  text-shadow: 4px 3px 4px #000;
}
@media (max-width: 1599px) {
  .home.openHouse-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .home.openHouse-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .home.openHouse-top-title .top-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .home.openHouse-top-title .top-title-content h6 {
    font-size: 13px;
  }
}
.home.openHouse-top-title .top-title-content h6 .freez {
  color: #fff;
  text-shadow: 4px 3px 4px #000;
}
.home.openHouse-top-title .top-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.home.openHouse-top-title .top-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}
.home.openHouse-top-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.3607843137);
  z-index: 99;
}
.home.openHouse-top-title .video-bg {
  height: 100vh;
  z-index: 9;
  position: absolute;
  width: 100%;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .show {
  background: none !important;
}
.home .rigister-button {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: 5%;
}
.home .openh-24 .modal-content {
  border-radius: 8px;
}
.home .openh-24 h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  margin: 10px 0 20px 0;
  font-family: sans-serif !important;
}
@media (max-width: 1599px) {
  .home .openh-24 h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .home .openh-24 h1 {
    font-size: 1.4rem;
  }
}
.home .openh-24 .carousel-item img {
  width: 100%;
}
.home .openh-24 .close {
  color: #9DC33B;
  opacity: 1;
  font-size: 18px;
  padding: 7px 12px;
  position: relative;
  top: 10px;
  right: 10px;
  border: 1px solid #9DC33B;
  padding: 6px 10px !important;
  margin: -1rem -1rem 0rem auto !important;
  border-radius: 20px;
}
.home .openh-24 .btn {
  background: #9DC33B;
  color: #fff;
  display: flex;
  text-align: center;
  width: 160px;
  justify-content: center;
  align-items: center;
}
.home .openh-24 a {
  margin: 20px 0 10px 0;
}

.openHouse-title .openHouse-sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  z-index: 999;
  padding: 0 0 30px 0;
}
.openHouse-title .openHouse-sub-title h1 {
  color: #fff;
  font-weight: 700;
  margin: 0 0 40px 0;
  text-align: center;
  text-shadow: 4px 3px 4px #000;
  font-size: 4rem;
}
@media (max-width: 1599px) {
  .openHouse-title .openHouse-sub-title h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1199px) {
  .openHouse-title .openHouse-sub-title h1 {
    font-size: 3.5rem;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 991px) {
  .openHouse-title .openHouse-sub-title h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 639px) {
  .openHouse-title .openHouse-sub-title h1 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
}
.openHouse-title .openHouse-sub-title h2 {
  color: #9DC33B;
  font-family: sans-serif !important;
  font-weight: 600 !important;
}
@media (max-width: 639px) {
  .openHouse-title .openHouse-sub-title h2 {
    font-size: 1.4rem;
  }
}
.openHouse-title .openHouse-sub-title h5 {
  color: #fff;
  font-family: sans-serif !important;
}
@media (max-width: 639px) {
  .openHouse-title .openHouse-sub-title h5 {
    font-size: 1.1rem;
  }
}
.openHouse-title .openHouse-sub-title h6 {
  color: #fff;
  font-family: sans-serif !important;
}
@media (max-width: 639px) {
  .openHouse-title .openHouse-sub-title h6 {
    font-size: 14px;
  }
}

.open-catalogues {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 0px 0;
}
@media (max-width: 991px) {
  .open-catalogues {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 639px) {
  .open-catalogues {
    flex-direction: column;
  }
}
.open-catalogues .catalogue {
  padding: 0 10px;
  position: relative;
  margin: 0px 20px 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.open-catalogues .catalogue img {
  width: 100%;
}
.open-catalogues .catalogue a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 30px;
}
@media (max-width: 991px) {
  .open-catalogues .catalogue a {
    padding: 13px 15px;
  }
}
.open-catalogues .catalogue a span i {
  position: unset;
  -webkit-clip-path: unset;
          clip-path: unset;
  display: unset;
  background: none;
  color: #9DC33B;
}
.open-catalogues .catalogue a span i:hover {
  background: rgba(189, 225, 98, 0.9411764706);
}
.open-catalogues .catalogue a h5 {
  margin: 10px 0 0 0;
  color: #fff;
  font-size: 18px;
}
.open-catalogues .catalogue a h5:hover {
  color: rgba(255, 255, 255, 0.774);
}
.open-catalogues .catalogue iframe {
  width: 100%;
  margin: 0 30px 25px 30px;
}
.open-catalogues .catalogue .cat-button {
  font-size: 1.2rem;
}

/*======= Background slider =======*/
.bg-slider {
  z-index: 777;
  position: relative;
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 639px) {
  .bg-slider {
    min-height: 70vh;
  }
}

.bg-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media (max-width: 639px) {
  .bg-slider .swiper-slide {
    height: 80vh;
  }
}

.bg-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.swiper-wrapper {
  position: relative;
}

.swiper-slide .text-content {
  position: absolute;
  color: var(--white-color);
  margin: 0 200px;
  transition: 0.3s ease;
  overflow: hidden;
  bottom: 110px;
}
@media (max-width: 1599px) {
  .swiper-slide .text-content {
    margin: 0 100px;
  }
}
@media (max-width: 639px) {
  .swiper-slide .text-content {
    margin: 0 20px 0 0px !important;
    padding: 50px 30px !important;
    bottom: 80px !important;
  }
}

.text-content .btn {
  padding: 10px 15px !important;
}
@media (max-width: 1199px) {
  .text-content .btn {
    padding: 10px 17px !important;
  }
}
@media (max-width: 991px) {
  .text-content .btn {
    padding: 10px 15px !important;
  }
}
@media (max-width: 639px) {
  .text-content .btn {
    padding: 8px 11px !important;
  }
}

.text-content .btn span {
  font-size: 16px;
}
@media (max-width: 1199px) {
  .text-content .btn span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .text-content .btn span {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .text-content .btn span {
    font-size: 13px;
  }
}

.swiper-slide .text-content .title {
  font-size: 4.55rem;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: var(--text-shadow);
  margin-bottom: 20px;
  transform: translateY(-50px);
  opacity: 0;
}

.swiper-slide .text-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid rgba(157, 195, 59, 0.6509803922);
  -webkit-clip-path: polygon(0 0, 70% 0, 36% 100%, 0 100%);
          clip-path: polygon(0 0, 70% 0, 36% 100%, 0 100%);
  transform: translateX(-1500px);
  opacity: 0;
  display: none;
}

.swiper-slide-active .text-content .line {
  transform: translateX(0px);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide-active .text-content .title {
  transform: translateY(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .title span {
  font-size: 0.3em;
  font-weight: 300;
}

.swiper-slide .text-content p {
  max-width: 700px;
  color: #FFFFFF;
  padding: 0 0 10px 0;
  transform: translateX(-80px);
  opacity: 0;
  font-size: 22px;
}

.swiper-slide-active .text-content p {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn {
  border: none;
  outline: none;
  background: var(--white-color);
  color: var(--dark-color);
  font-size: 1em;
  font-weight: 500;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  border-radius: 10px;
  cursor: pointer;
  transform: translateX(50px);
  opacity: 0;
}

.swiper-slide-active .text-content .read-btn {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i {
  font-size: 1.6em;
  transition: 0.3s ease;
}

.swiper-slide .text-content .read-btn:hover i {
  transform: translateX(5px);
}

.dark-layer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.3607843137);
}
@media (max-width: 1599px) {
  .dark-layer:before {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .dark-layer:before {
    height: 90%;
  }
}
@media (max-width: 991px) {
  .dark-layer:before {
    height: 75%;
  }
}
@media (max-width: 639px) {
  .dark-layer:before {
    height: 88%;
  }
}

.bg-slider-thumbs {
  z-index: 1;
  position: absolute;
  bottom: 7em;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.thumbs-container {
  padding: 10px 3px;
  border-radius: 10px;
  border: none !important;
}

.thumbs-container img {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  background: none;
  border: 2px solid #ffffff;
  padding: 4px;
}

/*======= Media icons =======*/
.media-icons {
  z-index: 999;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 90px;
}

.media-icons a {
  color: var(--white-color);
  font-size: 1.7em;
  margin: 10px 0;
}

.video-bg {
  height: auto;
  z-index: 9;
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media (max-width: 1599px) {
  .video-bg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .video-bg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .video-bg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 639px) {
  .video-bg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.video-bg.service {
  height: auto;
  z-index: 9;
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
  right: 0;
}
@media (max-width: 1599px) {
  .video-bg.service {
    bottom: 160px;
  }
}
@media (max-width: 1199px) {
  .video-bg.service {
    bottom: 200px;
  }
}
@media (max-width: 991px) {
  .video-bg.service {
    bottom: 400px;
    height: 55vh;
  }
}
@media (max-width: 639px) {
  .video-bg.service {
    bottom: 430px;
    height: 45vh;
  }
}
.video-bg.democenter {
  height: auto;
  z-index: 9;
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
  right: 0;
}
@media (max-width: 1599px) {
  .video-bg.democenter {
    bottom: 160px;
  }
}
@media (max-width: 1199px) {
  .video-bg.democenter {
    bottom: 200px;
  }
}
@media (max-width: 991px) {
  .video-bg.democenter {
    bottom: 400px;
    height: 55vh;
  }
}
@media (max-width: 639px) {
  .video-bg.democenter {
    bottom: 430px;
    height: 45vh;
  }
}

.video-bg::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  /* Span the full grid */
  grid-area: var(--fullGrid);
  /* Center Content */
  display: grid;
  justify-content: center;
  align-content: center;
  text-align: center;
  /* Semi-transparent background */
  background-color: rgba(0, 0, 0, 0.55);
}

@media screen and (max-width: 1530px) {
  .swiper-slide .text-content .title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1365px) {
  .swiper-slide .text-content .title {
    font-size: 3.2rem;
  }
}
/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px) {
  .swiper-slide .text-content .title {
    font-size: 3em;
  }
  .swiper-slide .text-content {
    margin: 0 80px;
  }
  .bg-slider-thumbs {
    bottom: 3em;
  }
}
/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width: 785px) {
  .media-icons {
    margin-right: 20px;
  }
  .media-icons a {
    font-size: 1.5em;
  }
  .swiper-slide .text-content {
    margin: 0 20px;
    bottom: 320px;
  }
  .swiper-slide .text-content .title {
    font-size: 2em;
    text-align: left;
  }
  .swiper-slide .text-content .title span {
    font-size: 0.35em;
  }
  .swiper-slide .text-content p {
    font-size: 0.9em;
    font-weight: 200;
  }
  .swiper-slide .text-content .read-btn {
    font-size: 0.9em;
    padding: 5px 15px;
  }
}
.o-house.show {
  height: 100vh !important;
  position: fixed !important;
  background: rgba(4, 4, 4, 0.4784313725) !important;
  border-radius: 0 !important;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(4, 4, 4, 0.4784313725) !important;
  opacity: 1 !important;
  height: 100vh !important;
  position: fixed !important;
}

.modal-open {
  overflow: unset !important;
}

.event-modal {
  max-width: 600px;
}

.event-modal h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  margin: 10px 0 20px 0;
  font-family: sans-serif !important;
}

.event-modal .modal-content {
  background: #fff;
  border: 3px solid #fff !important;
  border-radius: 0 !important;
}

.event-modal .modal-header {
  padding: 0 !important;
}

.event-modal .modal-body {
  padding: 0 !important;
}

.event-modal .carousel-item {
  height: auto;
  width: 100%;
}

.event-modal .carousel-inner {
  height: auto;
}

.event-modal .carousel-item img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-modal a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 10px 0;
}

.event-modal .btn {
  background: #9DC33B;
  color: #fff;
  display: flex;
  text-align: center;
  width: 160px;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff !important;
}
@media (max-width: 639px) {
  .event-modal .btn {
    width: 140px;
    border: 2px solid #fff !important;
  }
}

.event-modal .close {
  color: #000000;
  opacity: 1;
  font-size: 18px;
  position: absolute;
  top: 15px;
  right: 15px;
  border: none !important;
  padding: 6px 10px !important;
  margin: -1rem -1rem 0rem auto !important;
  border-radius: 0 !important;
  z-index: 9 !important;
  background: #fff !important;
}

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
  .modal-dialog {
    top: 30px;
    max-width: 560px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .modal-dialog {
    top: 50px;
    max-width: 410px !important;
  }
  .countdown-el span {
    font-size: 12px !important;
    text-shadow: none !important;
  }
  .big-text {
    font-size: 26px !important;
  }
  .countdown-el {
    margin: 20px 3px 10px 3px !important;
    padding: 12px 9px !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .modal-dialog {
    top: 50px;
    max-width: 500px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .modal-dialog {
    top: 50px;
    max-width: 450px !important;
  }
}
@media only screen and (min-width: 150px) and (max-width: 767px) {
  .event-modal h1 {
    font-size: 1.4rem;
  }
  .modal-dialog {
    top: 60px;
    left: 5px;
    max-width: 100%;
  }
}
.countdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.big-text {
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  margin: 10px 20px 0px 20px;
  font-family: sans-serif !important;
}
@media (max-width: 1599px) {
  .big-text {
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .big-text {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .big-text {
    font-size: 30px;
  }
}
@media (max-width: 639px) {
  .big-text {
    font-size: 20px;
  }
}

.countdown-el {
  text-align: center;
  background: #a6c249;
  margin: 20px 5px 10px 5px;
  border-radius: 50%;
  padding: 18px 15px;
  border: 5px solid rgba(255, 255, 255, 0.4196078431);
  text-shadow: 1px 2px 1px #fff;
}
@media (max-width: 1599px) {
  .countdown-el {
    margin: 20px 6px 10px 6px;
    padding: 20px 17px;
  }
}
@media (max-width: 1199px) {
  .countdown-el {
    margin: 20px 6px 10px 6px;
    padding: 18px 15px;
  }
}
@media (max-width: 991px) {
  .countdown-el {
    margin: 20px 6px 10px 6px;
    padding: 18px 15px;
  }
}
@media (max-width: 639px) {
  .countdown-el {
    margin: 20px 3px 10px 2px;
    padding: 8px 3px;
  }
}

.countdown-el span {
  font-size: 15px;
  text-shadow: none;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .countdown-el span {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .countdown-el span {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .countdown-el span {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .countdown-el span {
    font-size: 11px;
  }
}

@media (max-width: 1700px) {
  body {
    background-position: 100vw;
  }
}
@media (max-width: 1280px) {
  body {
    background-position: 100vw;
    background-size: cover;
  }
}
@media (max-width: 850px) {
  body {
    background-position: 100vw;
  }
}
@media (max-width: 530px) {
  body {
    background-position: 100vw;
  }
  h1 {
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
    margin-top: 80px;
  }
}
@media (max-width: 380px) {
  body {
    background-position: 100vw;
  }
  h1 {
    position: relative;
    left: 3px;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 40px;
  }
  .big-text {
    font-size: 5.5rem;
  }
  .countdown-el span {
    font-weight: bold;
  }
  .seconds-c {
    color: #b30000;
  }
}
.about-area-h {
  padding: 90px 0;
  background: #232323;
  position: relative;
}
@media (max-width: 639px) {
  .about-area-h {
    padding: 10px 0 30px 0;
  }
}
.about-area-h .about-img .first {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 1199px) {
  .about-area-h .about-img .first {
    display: none;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-img .first {
    justify-content: start;
    padding: 0 20px;
    display: none;
  }
}
.about-area-h .about-img .first img {
  width: 120%;
  border-radius: 12px;
  margin: 0 0px 30px 0;
  height: auto !important;
}
@media (max-width: 1599px) {
  .about-area-h .about-img .first img {
    width: 110%;
  }
}
@media (max-width: 991px) {
  .about-area-h .about-img .first img {
    width: 75%;
    display: none;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-img .first img {
    width: 75%;
    display: none;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-img .second {
    justify-content: center;
    padding: 0px;
  }
}
.about-area-h .about-img .second .ab-img-1 img {
  width: 90%;
  border-radius: 12px;
  margin: 0 0 30px 0;
  height: auto !important;
}
@media (max-width: 991px) {
  .about-area-h .about-img .second .ab-img-1 img {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-img .second .ab-img-1 img {
    width: 100%;
    order: 1;
    margin-top: 40px;
  }
}
.about-area-h .about-img .second .ab-img-2 img {
  width: 90%;
  border-radius: 50px 0;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .about-area-h .about-img .second .ab-img-2 img {
    width: 100%;
    display: none;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-img .second .ab-img-2 img {
    width: 100%;
    display: none;
  }
}
.about-area-h .about-img .abt-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: inherit;
}
@media (max-width: 991px) {
  .about-area-h .about-img .abt-img-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-img .abt-img-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .about-area-h .about-content {
    margin-top: 30px;
    order: -1;
  }
}
@media (max-width: 639px) {
  .about-area-h .about-content {
    margin-top: 30px;
    order: -1;
  }
}
.about-area-h .about-content h4 {
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.about-area-h .about-content h4::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 100px;
  background: #9DC33B;
}
.about-area-h .about-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.about-area-h .about-content h2 {
  text-transform: uppercase;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  line-height: 58px;
  padding: 20px 0 20px 0;
  color: #FFFFFF;
}
@media (max-width: 639px) {
  .about-area-h .about-content h2 {
    font-size: 2.2rem;
    line-height: 40px;
  }
}
.about-area-h .about-content p {
  color: #FFFFFF;
}

.ab-page-first-area {
  padding: 90px 0;
  background: #232323;
  margin-top: 140px;
}
@media (max-width: 1599px) {
  .ab-page-first-area {
    margin-top: 0;
    padding-top: 0;
  }
}
@media (max-width: 1199px) {
  .ab-page-first-area {
    margin-top: 0px;
    padding-top: 0px;
  }
}
@media (max-width: 991px) {
  .ab-page-first-area {
    margin-top: 50px;
  }
}
@media (max-width: 639px) {
  .ab-page-first-area {
    padding: 0px 0 30px 0;
    margin-top: 0;
  }
}
.ab-page-first-area .ab-page-first {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ab-page-first-area .ab-page-first h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 100;
  line-height: 65px;
}
@media (max-width: 1599px) {
  .ab-page-first-area .ab-page-first h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1199px) {
  .ab-page-first-area .ab-page-first h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .ab-page-first-area .ab-page-first h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 639px) {
  .ab-page-first-area .ab-page-first h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .ab-page-first-area .ab-page-first h2 {
    line-height: 36px;
    padding-left: 5px;
  }
}
.ab-page-first-area .ab-page-second {
  position: relative;
  z-index: 1;
}
@media (max-width: 639px) {
  .ab-page-first-area .ab-page-second {
    padding-left: 20px;
  }
}
.ab-page-first-area .ab-page-second p {
  color: #fff;
  line-height: 26px;
  color: #8f8f8f;
}
.ab-page-first-area .ab-page-second p span {
  color: #9DC33B;
}
.ab-page-first-area .ab-page-second p a {
  color: #9DC33B;
  text-decoration: none;
}

#myVideo {
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  height: auto;
}
@media (max-width: 639px) {
  #myVideo {
    width: 100%;
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

h2 {
  font-size: 3rem;
}
@media (max-width: 639px) {
  h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraBold.woff2") format("woff2"), url("../fonts/Raleway-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../fonts/Raleway-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.woff2") format("woff2"), url("../fonts/Raleway-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
.services-area {
  padding: 90px 0;
  background: url(../img/services-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 639px) {
  .services-area {
    padding: 60px 0 30px 0;
  }
}
.services-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8392156863);
}
.services-area .section-title {
  position: relative;
}
.services-area .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .services-area .section-title h2 {
    font-size: 2.9rem;
  }
}
@media (max-width: 991px) {
  .services-area .section-title h2 {
    font-size: 2.7rem;
  }
}
@media (max-width: 639px) {
  .services-area .section-title h2 {
    font-size: 2.2rem;
  }
}
.services-area .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.services-area .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.services-area .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 9rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.371);
  opacity: 0.5;
}
@media (max-width: 1199px) {
  .services-area .section-title .text-hide {
    font-size: 6rem;
  }
}
@media (max-width: 991px) {
  .services-area .section-title .text-hide {
    font-size: 7rem;
  }
}
@media (max-width: 639px) {
  .services-area .section-title .text-hide {
    font-size: 4.2rem;
  }
}
.services-area .main-services {
  padding: 150px 0 0 0;
}
@media (max-width: 639px) {
  .services-area .main-services {
    padding: 100px 0 0 0;
  }
}
.services-area .main-services .home-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  margin-bottom: 40px;
}
.services-area .main-services .home-service-content h3 {
  color: #d1d1d1;
  font-size: 32px;
}
.services-area .main-services .home-service-content p {
  color: #d1d1d1;
  line-height: 28px;
}
.services-area .main-services .home-service-content .serv-box-text {
  border: 1px solid rgba(204, 204, 204, 0.2509803922);
  padding: 30px 40px;
}
.services-area .main-services .home-service-image .home-service-image-first {
  margin-bottom: 30px;
}
.services-area .main-services .home-service-image .home-service-image-first img {
  width: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.services-area .main-services .home-service-image .home-service-image-second .serv-first-image {
  margin-bottom: 30px;
}
.services-area .main-services .home-service-image .home-service-image-second .serv-first-image img {
  width: 100%;
  border-radius: 10px;
}
.services-area .main-services .home-service-image .home-service-image-second .serv-second-image img {
  width: 100%;
  border-radius: 10px;
}

.service-inner-area {
  padding: 90px 0 50px 0;
}
@media (max-width: 639px) {
  .service-inner-area {
    padding: 0px 0 30px 0;
  }
}
.service-inner-area .book-service {
  position: absolute;
  top: -190px;
  background: rgba(25, 31, 7, 0.6117647059);
  padding: 30px 40px;
  border-radius: 5px;
  left: 0;
  right: 0;
  z-index: 989;
}
@media (max-width: 1199px) {
  .service-inner-area .book-service {
    top: -240px;
  }
}
@media (max-width: 639px) {
  .service-inner-area .book-service {
    position: initial;
  }
}
.service-inner-area .book-service .form-group {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  text-align: left;
  color: red;
}
.service-inner-area .book-service .form-group input {
  color: red !important;
}
.service-inner-area .book-service .form-group .form-control {
  background: no-repeat;
  border: 1px solid #9dc33b;
  padding: 22px 20px 22px 40px;
  color: #ababab;
  margin: 0 0 10px 0;
  height: 75px;
}
@media (max-width: 1199px) {
  .service-inner-area .book-service .form-group .form-control {
    padding: 10px 20px 10px 40px;
    height: 55px;
  }
}
.service-inner-area .book-service .form-group i {
  position: absolute;
  left: 28px;
  color: #cfcfcf;
  font-size: 19px;
  top: 27px;
}
@media (max-width: 1199px) {
  .service-inner-area .book-service .form-group i {
    left: 30px;
    font-size: 15px;
    top: 20px;
  }
}
.service-inner-area .book-service .form-group textarea {
  overflow: auto;
  resize: vertical;
  height: 90px !important;
  border: 1px solid #9dc33b;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
}
.service-inner-area .book-service .form-group button {
  margin: 30px 0px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-inner-area .book-service .form-group button span {
  padding: 0 40px 0 40px;
}
@media (max-width: 1199px) {
  .service-inner-area .book-service .form-group select.form-control:not([size]):not([multiple]) {
    height: 55px !important;
  }
}
.service-inner-area .book-service h2 {
  color: #d5d5d5;
  font-size: 2.4rem;
  margin-bottom: 0px;
}
@media (max-width: 1199px) {
  .service-inner-area .book-service h2 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .service-inner-area .book-service h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .service-inner-area .book-service h2 {
    font-size: 1.5rem;
  }
}
.service-inner-area .book-service .sub-button {
  display: flex;
  justify-content: center;
}
.service-inner-area .book-service .sub-button .btn span {
  padding: 0 30px;
}

.our-service-area {
  margin-top: 380px;
}
@media (max-width: 1199px) {
  .our-service-area {
    margin-top: 290px;
  }
}
@media (max-width: 991px) {
  .our-service-area {
    margin-top: 260px;
  }
}
@media (max-width: 639px) {
  .our-service-area {
    margin-top: 0px;
  }
}
.our-service-area .testi-first {
  position: relative;
  margin: 0 0 60px 0;
  height: 500px;
}
@media (max-width: 1599px) {
  .our-service-area .testi-first {
    height: 340px;
  }
}
@media (max-width: 1199px) {
  .our-service-area .testi-first {
    height: 290px;
  }
}
@media (max-width: 991px) {
  .our-service-area .testi-first {
    height: 440px;
  }
}
@media (max-width: 639px) {
  .our-service-area .testi-first {
    height: 320px;
  }
}
.our-service-area .testi-first h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 100;
  margin-top: 25px;
  position: absolute;
  transform: translate(12%, 70%) !important;
  left: 0;
  top: 50%;
  padding: 0 130px;
  text-align: center;
}
@media (max-width: 1599px) {
  .our-service-area .testi-first h3 {
    font-size: 1.5rem;
    padding: 0 80px;
    transform: translate(2%, 70%) !important;
  }
}
@media (max-width: 1199px) {
  .our-service-area .testi-first h3 {
    font-size: 1.3rem;
    padding: 0 80px;
    transform: translate(2%, 50%) !important;
  }
}
@media (max-width: 991px) {
  .our-service-area .testi-first h3 {
    font-size: 1.5rem;
    padding: 0 60px;
    transform: translate(15%, 70%) !important;
  }
}
@media (max-width: 639px) {
  .our-service-area .testi-first h3 {
    font-size: 1.2rem;
    padding: 0 60px;
    transform: translate(2%, 50%) !important;
  }
}
.our-service-area .testi-first img {
  width: 100%;
}
@media (max-width: 1199px) {
  .our-service-area .testi-first img {
    height: -webkit-fill-available;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.our-service-area .our-serv-second {
  padding: 50px 0 0 70px;
}
@media (max-width: 1199px) {
  .our-service-area .our-serv-second {
    padding: 0px 30px 0 30px;
  }
}
@media (max-width: 991px) {
  .our-service-area .our-serv-second {
    padding: 0px 30px 0 30px;
  }
}
.our-service-area .our-serv-second h2 {
  position: relative;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .our-service-area .our-serv-second h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .our-service-area .our-serv-second h2 {
    font-size: 2rem;
  }
}
@media (max-width: 639px) {
  .our-service-area .our-serv-second h2 {
    font-size: 1.5rem;
  }
}
.our-service-area .our-serv-second h2::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 154px;
  background: #9DC33B;
}
.our-service-area .our-serv-second h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.our-service-area .our-serv-second p {
  line-height: 28px;
  color: #fff;
}
.our-service-area .our-serv-second a {
  color: #ffffff;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1px solid #9DC33B;
  text-decoration: none;
}
.our-service-area .our-serv-second a:hover {
  text-decoration: none;
}
.our-service-area .our-serv-second a i {
  padding-left: 10px;
  color: #9DC33B;
}
.our-service-area .our-serv-second .more-abt a {
  color: #ffffff;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1px solid #9DC33B;
  text-decoration: none;
}
.our-service-area .our-serv-second .more-abt a:hover {
  text-decoration: none;
}
.our-service-area .our-serv-second .more-abt a i {
  padding-right: 10px;
  color: #9DC33B;
}
.our-service-area .hero-video {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(43%, -50%) !important;
}
.our-service-area .hero-video .video-play-btn1 {
  left: 0px;
  color: #FFFFFF;
  text-decoration: none;
  transform: scale(1.25);
  animation: zoomInUp 1s linear infinite alternate;
}
.our-service-area .hero-video .video-play-btn1 i {
  font-size: 23px;
  color: #FFFFFF;
}
.our-service-area .pulse1 {
  display: flex;
  justify-content: start;
  align-items: center;
}
.our-service-area .pulse1 i {
  background: #9DC33B;
  padding: 15px 17px 15px 19px;
  border: 4px solid #6a6a6a;
  border-radius: 50%;
  animation: animate-pulse 3s linear infinite;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
  40% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
  80% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
  100% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
}
.repair-area {
  padding: 90px 0 90px 0;
}
@media (max-width: 639px) {
  .repair-area {
    padding: 60px 0 30px 0;
  }
}
.repair-area .repair .repair-1 img {
  width: 100%;
  border-radius: 5px;
}
.repair-area .repair .repair-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 0 0px 0 20px;
}
@media (max-width: 1199px) {
  .repair-area .repair .repair-2 {
    padding: 0 30px 0 10px;
  }
}
@media (max-width: 991px) {
  .repair-area .repair .repair-2 {
    padding: 0 10px 0 10px;
  }
}
@media (max-width: 639px) {
  .repair-area .repair .repair-2 {
    padding: 0 10px 0 10px;
  }
}
.repair-area .repair .repair-2 i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 25px;
}
@media (max-width: 991px) {
  .repair-area .repair .repair-2 i {
    font-size: 25px;
    left: 10px;
    top: 35px;
  }
}
@media (max-width: 639px) {
  .repair-area .repair .repair-2 i {
    font-size: 20px;
    left: 20px;
    top: 25px;
  }
}
.repair-area .repair .repair-2 h3 {
  font-size: 1.6rem;
  color: #9DC33B;
  padding-left: 60px;
}
@media (max-width: 1199px) {
  .repair-area .repair .repair-2 h3 {
    font-size: 1.5rem;
    padding: 15px 3px 0 50px;
  }
}
@media (max-width: 991px) {
  .repair-area .repair .repair-2 h3 {
    font-size: 1.2rem;
    padding: 0px 3px 0 50px;
  }
}
@media (max-width: 639px) {
  .repair-area .repair .repair-2 h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 50px;
  }
}
.repair-area .repair .repair-2 p {
  line-height: 28px;
  color: #fff;
}
@media (max-width: 639px) {
  .repair-area .repair .repair-2 p {
    padding-left: 10px;
  }
}
.repair-area .repair .repair-2 img {
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 15px;
}
@media (max-width: 1599px) {
  .repair-area .repair .repair-2 img {
    top: 7px;
  }
}
@media (max-width: 991px) {
  .repair-area .repair .repair-2 img {
    top: 18px;
  }
}
@media (max-width: 639px) {
  .repair-area .repair .repair-2 img {
    top: 7px;
    width: 35px;
    height: 35px;
    left: 17px;
  }
}
.repair-area .installation {
  position: relative;
}
@media (max-width: 991px) {
  .repair-area .installation {
    margin-top: 30px;
  }
}
@media (max-width: 639px) {
  .repair-area .installation {
    margin-top: 30px;
  }
}
.repair-area .installation img {
  width: 90%;
}
@media (max-width: 991px) {
  .repair-area .installation img {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .repair-area .installation img {
    width: 100%;
  }
}
.repair-area .installation h3 {
  font-size: 1.8rem;
  color: #9DC33B;
  padding: 20px 0 10px 0;
}
@media (max-width: 1199px) {
  .repair-area .installation h3 {
    font-size: 1.5rem;
    padding: 15px 3px 0 0px;
  }
}
@media (max-width: 991px) {
  .repair-area .installation h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 0px;
  }
}
@media (max-width: 639px) {
  .repair-area .installation h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 0px;
  }
}
.repair-area .installation p {
  line-height: 28px;
  color: #fff;
}
.repair-area .installation .install-icon {
  position: absolute;
  bottom: 130px;
  right: 60px;
  color: #fff;
  font-size: 40px;
  background: #1c2208;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1599px) {
  .repair-area .installation .install-icon {
    bottom: 190px;
    width: 80px;
    height: 80px;
    right: 50px;
  }
}
@media (max-width: 1199px) {
  .repair-area .installation .install-icon {
    top: 215px;
    width: 70px;
    height: 70px;
    right: 50px;
  }
}
@media (max-width: 991px) {
  .repair-area .installation .install-icon {
    width: 100px;
    height: 100px;
    right: 0px;
    top: 390px;
  }
}
@media (max-width: 639px) {
  .repair-area .installation .install-icon {
    top: 180px;
    width: 70px;
    height: 70px;
    right: 10px;
  }
}

.training-area {
  padding: 90px 0;
  background: #1c2208;
}
@media (max-width: 1199px) {
  .training-area {
    padding: 50px 0 20px 0;
  }
}
@media (max-width: 991px) {
  .training-area {
    padding: 40px 0;
  }
}
@media (max-width: 639px) {
  .training-area {
    padding: 30px 0;
  }
}
.training-area .training-box .training-pic img {
  width: 100%;
}
.training-area .form-horizontal .form-control {
  color: #898989;
  font-size: 15px;
  height: 55px;
  padding: 20px 8px 20px 40px;
  border-radius: 0;
  background-color: #1a1f08;
  background-clip: padding-box;
  border: none;
  width: 100%;
  border: 1px solid #648314;
  margin-bottom: 10px;
}
.training-area .form-group label {
  color: red;
  font-size: 14px;
}
.training-area .form-horizontal textarea {
  overflow: auto;
  resize: vertical;
  width: 100%;
  border: none;
  padding: 10px 10px;
  color: #fff;
  border: 1px solid #648314;
}
.training-area .form-horizontal .form-group {
  width: 100%;
  height: auto;
  padding: 0;
}
.training-area .form-horizontal .form-group [type=reset],
.training-area .form-horizontal .form-group [type=submit],
.training-area .form-horizontal .form-group button,
.training-area .form-horizontal .form-group html [type=button] {
  -webkit-appearance: button;
  background: none;
  border: none;
}
.training-area .form-horizontal .form-group i {
  color: #8d8d8d;
  font-size: 17px;
  position: absolute;
  left: 11px;
  top: 19px;
}
.training-area .form-horizontal .form-group.border-none {
  border: none;
}
.training-area .form-horizontal .btn:focus,
.training-area .form-horizontal .btn:hover {
  color: #333;
  background-color: #fff;
  text-transform: capitalize !important;
}
.training-area h3 {
  font-size: 1.6rem;
  color: #9DC33B;
  padding: 20px 0 0 0px;
}
@media (max-width: 1199px) {
  .training-area h3 {
    font-size: 1.5rem;
    padding: 15px 3px 0 0px;
  }
}
@media (max-width: 991px) {
  .training-area h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 0px;
  }
}
@media (max-width: 639px) {
  .training-area h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 0px;
  }
}
.training-area p {
  line-height: 28px;
  color: #fff;
  margin-top: 10px;
}
.training-area .training-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media (max-width: 991px) {
  .training-area .training-details {
    margin-top: 30px;
  }
}
@media (max-width: 639px) {
  .training-area .training-details {
    margin-top: 30px;
  }
}
.training-area .training-details i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 25px;
}
.training-area .training-details h3 {
  font-size: 1.6rem;
  color: #9DC33B;
  padding: 0px 0 0 60px;
}
@media (max-width: 1199px) {
  .training-area .training-details h3 {
    font-size: 1.5rem;
    padding: 10px 3px 0 60px;
  }
}
@media (max-width: 991px) {
  .training-area .training-details h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 60px;
  }
}
@media (max-width: 639px) {
  .training-area .training-details h3 {
    font-size: 1.2rem;
    padding: 10px 3px 0 55px;
  }
}
.training-area .training-details p {
  line-height: 28px;
  color: #fff;
  margin-top: 10px;
}
.training-area .training-details img {
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 75px;
}
@media (max-width: 1599px) {
  .training-area .training-details img {
    width: 40px;
    height: 40px;
    top: 0px;
  }
}
@media (max-width: 991px) {
  .training-area .training-details img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 639px) {
  .training-area .training-details img {
    width: 40px;
    height: 40px;
  }
}

.testimonial-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 1599px) {
  .testimonial-area {
    padding: 40px 0 50px 0;
  }
}
.testimonial-area h4 {
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
  color: #FFFFFF;
  text-align: center;
}
.testimonial-area h4::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 154px;
  background: #9DC33B;
  right: 0;
  margin: 0 auto;
}
.testimonial-area h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  right: 0;
  margin: 0 auto;
}
.testimonial-area h2 {
  text-transform: uppercase;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  line-height: 58px;
  padding: 20px 0 40px 0;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1199px) {
  .testimonial-area h2 {
    font-size: 2.4rem;
    line-height: 40px;
  }
}
@media (max-width: 639px) {
  .testimonial-area h2 {
    font-size: 2.2rem;
    line-height: 40px;
    padding: 20px 0 30px 0;
  }
}
.testimonial-area .video-testi {
  color: #FFFFFF;
  text-align: center;
  padding: 20px 0 0 0;
  font-size: 20px;
}
@media (max-width: 1599px) {
  .testimonial-area .video-testi {
    font-size: 18px;
    padding: 15px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .testimonial-area .video-testi {
    font-size: 18px;
    padding: 15px 0 0 0;
  }
}
@media (max-width: 991px) {
  .testimonial-area .video-testi {
    font-size: 16px;
    padding: 15px 0 0 0;
  }
}
@media (max-width: 639px) {
  .testimonial-area .video-testi {
    font-size: 15px;
    padding: 15px 0 0 0;
  }
}
.testimonial-area .testi-first {
  position: relative;
  background: url(../img/testi-video-bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1199px) {
  .testimonial-area .testi-first {
    top: -100px;
  }
}
@media (max-width: 991px) {
  .testimonial-area .testi-first {
    top: -200px;
  }
}
@media (max-width: 639px) {
  .testimonial-area .testi-first {
    background-size: cover;
    height: 200px;
    margin: 0px 0 50px 0;
    top: 0px;
  }
}
.testimonial-area .testi-first::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.testimonial-area .testi-first .testi-img {
  width: 100%;
}
.testimonial-area .testi-first h4 {
  position: relative;
  top: 100px;
}
@media (max-width: 1599px) {
  .testimonial-area .testi-first h4 {
    top: 180px;
  }
}
@media (max-width: 1199px) {
  .testimonial-area .testi-first h4 {
    top: 180px;
  }
}
@media (max-width: 991px) {
  .testimonial-area .testi-first h4 {
    top: 270px;
  }
}
@media (max-width: 639px) {
  .testimonial-area .testi-first h4 {
    top: -40px;
    font-size: 18px;
  }
}
.testimonial-area .hero-video {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(43%, -50%) !important;
}
.testimonial-area .hero-video .video-play-btn1 {
  left: 0px;
  color: #FFFFFF;
  text-decoration: none;
  transform: scale(1.25);
  animation: zoomInUp 1s linear infinite alternate;
}
.testimonial-area .hero-video .video-play-btn1 i {
  font-size: 23px;
  color: #FFFFFF;
}
.testimonial-area .pulse1 {
  display: flex;
  justify-content: start;
  align-items: center;
}
.testimonial-area .pulse1 i {
  background: #9DC33B;
  padding: 15px 17px 15px 19px;
  border: 4px solid #6a6a6a;
  border-radius: 50%;
  animation: animate-pulse 3s linear infinite;
}
.testimonial-area .testi-second {
  position: relative;
  z-index: 1;
}
.testimonial-area .testimonial {
  border: 1px solid #4a4a4a;
  padding: 70px 25px 100px;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-area .testimonial:after {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #9DC33B;
  position: absolute;
  top: 20px;
  left: 25px;
}
.testimonial-area .testimonial .description {
  font-size: 15px;
  color: #fff;
  line-height: 28px;
}
.testimonial-area .testimonial .pic {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -30px;
  left: 25px;
}
.testimonial-area .testimonial .pic img {
  width: 100%;
  height: auto;
}
.testimonial-area .testimonial .testimonial-title {
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 150px;
}
.testimonial-area .testimonial .testimonial-title small {
  display: block;
  font-size: 14px;
  color: #9DC33B;
  margin-top: 7px;
}
.testimonial-area .owl-theme .owl-controls .owl-page.active span {
  background: #9DC33B;
}
.testimonial-area .testimonial-title-area .section-title {
  position: relative;
}
.testimonial-area .testimonial-title-area .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -10px;
}
@media (max-width: 1599px) {
  .testimonial-area .testimonial-title-area .section-title h2 {
    font-size: 3.5rem;
    top: 30px;
  }
}
@media (max-width: 1199px) {
  .testimonial-area .testimonial-title-area .section-title h2 {
    font-size: 2.9rem;
    top: 20px;
  }
}
@media (max-width: 991px) {
  .testimonial-area .testimonial-title-area .section-title h2 {
    font-size: 2.7rem;
    top: 20px;
  }
}
@media (max-width: 639px) {
  .testimonial-area .testimonial-title-area .section-title h2 {
    font-size: 2.2rem;
    top: 0px;
  }
}
.testimonial-area .testimonial-title-area .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.testimonial-area .testimonial-title-area .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 19px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.testimonial-area .testimonial-title-area .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.371);
  opacity: 0.5;
}
@media (max-width: 1599px) {
  .testimonial-area .testimonial-title-area .section-title .text-hide {
    font-size: 6rem;
    top: 43px;
  }
}
@media (max-width: 1199px) {
  .testimonial-area .testimonial-title-area .section-title .text-hide {
    font-size: 5rem;
    top: 35px;
  }
}
@media (max-width: 991px) {
  .testimonial-area .testimonial-title-area .section-title .text-hide {
    font-size: 4.5rem;
    top: 34px;
  }
}
@media (max-width: 639px) {
  .testimonial-area .testimonial-title-area .section-title .text-hide {
    font-size: 2.8rem;
    top: 15px;
  }
}
.testimonial-area .videolibrarySwiper {
  margin: 130px 0 0 0;
}
@media (max-width: 1599px) {
  .testimonial-area .videolibrarySwiper {
    margin: 170px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .testimonial-area .videolibrarySwiper {
    margin: 150px 0 0 0;
  }
}
@media (max-width: 991px) {
  .testimonial-area .videolibrarySwiper {
    margin: 140px 0 0 0;
  }
}
@media (max-width: 639px) {
  .testimonial-area .videolibrarySwiper {
    margin: 100px 0 0 0;
  }
}
.testimonial-area .k-more {
  margin: 20px 0 0 0;
}
.testimonial-area .video-library-box {
  margin: 0px 0 20px 0;
  padding: 0 30px;
}
@media (max-width: 1599px) {
  .testimonial-area .video-library-box {
    margin: 0px 0 30px 0;
    padding: 0 25px;
  }
}
@media (max-width: 1199px) {
  .testimonial-area .video-library-box {
    margin: 0px 0 50px 0;
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  .testimonial-area .video-library-box {
    margin: 0px 0 35px 0;
    padding: 0 20px;
  }
}
@media (max-width: 639px) {
  .testimonial-area .video-library-box {
    margin: 0px 0 40px 0;
  }
}
.testimonial-area.video-library-area {
  margin: 0 0 70px 0;
  padding: 0;
}
@media (max-width: 639px) {
  .testimonial-area.video-library-area {
    margin: 0;
  }
}

#testimonial-slider {
  margin: 50px 0 0 50px;
}
@media (max-width: 1199px) {
  #testimonial-slider {
    margin: 50px 0 0 20px;
  }
}
@media (max-width: 991px) {
  #testimonial-slider {
    margin: 50px 0 0 0px;
  }
}
@media (max-width: 639px) {
  #testimonial-slider {
    margin: 50px 0 0 0px;
  }
}
#testimonial-slider .testimonial {
  border: 1px solid #4a4a4a;
  padding: 70px 25px 100px;
  margin-bottom: 30px;
  position: relative;
}
#testimonial-slider .testimonial:after {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #9DC33B;
  position: absolute;
  top: 20px;
  left: 25px;
}
#testimonial-slider .testimonial .description {
  font-size: 15px;
  color: #fff;
  line-height: 28px;
}
#testimonial-slider .testimonial .pic {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -30px;
  left: 25px;
}
#testimonial-slider .testimonial .pic img {
  width: 100%;
  height: auto;
}
#testimonial-slider .testimonial .testimonial-title {
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: -20px;
  left: 150px;
}
#testimonial-slider .testimonial .testimonial-title::after {
  background: none !important;
}
#testimonial-slider .testimonial .testimonial-title small {
  display: block;
  font-size: 14px;
  color: #9DC33B;
  margin-top: 7px;
}
#testimonial-slider .testimonial .testimonial-title small label {
  display: block;
}
#testimonial-slider .owl-theme .owl-controls .owl-page.active span {
  background: #9DC33B;
}

.client-say .section-title-client {
  position: relative;
}
.client-say .section-title-client h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 2.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: auto;
}
@media (max-width: 1199px) {
  .client-say .section-title-client h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .client-say .section-title-client h2 {
    font-size: 2rem;
    top: 15px;
  }
}
@media (max-width: 639px) {
  .client-say .section-title-client h2 {
    font-size: 1.6rem;
    top: 18px;
  }
}
.client-say .section-title-client h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.client-say .section-title-client h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.client-say .section-title-client .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 7rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.371);
  opacity: 0.5;
}
@media (max-width: 1199px) {
  .client-say .section-title-client .text-hide {
    font-size: 5.5rem;
  }
}
@media (max-width: 991px) {
  .client-say .section-title-client .text-hide {
    font-size: 5rem;
    top: 30px;
  }
}
@media (max-width: 639px) {
  .client-say .section-title-client .text-hide {
    font-size: 3rem;
    top: 25px;
  }
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
  40% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
  80% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
  100% {
    box-shadow: 0 0 0 0 #ccc, 0 0 0 0 #ccc;
  }
}
/* ======================== brand-area start ============================ */
.brands-area {
  padding: 30px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .brands-area {
    padding: 30px 0 30px 0;
  }
}
.brands-area .brand-head {
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 639px) {
  .brands-area .brand-head {
    justify-content: center;
  }
}
.brands-area .brand-head h2 {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 700;
}
@media (max-width: 639px) {
  .brands-area .brand-head h2 {
    font-size: 2.2rem;
  }
}
.brands-area .brand-logo {
  background: #fff;
  padding: 30px;
}

.logo-slider .slick-slide {
  margin: 10px;
}
.logo-slider .slick-slide .slick-prev {
  display: none;
}
.logo-slider .item {
  background-color: #fff;
  padding: 10px;
}
.logo-slider .item:hover {
  display: block;
}
.logo-slider img {
  width: 100%;
}

.slick-next:before,
.slick-prev:before {
  opacity: 1 !important;
  color: #9DC33B !important;
}

/* ======================== brand-area end ============================ */
.lets-talk {
  padding: 0 0 70px 0;
  background: #232323;
}
@media (max-width: 1199px) {
  .lets-talk {
    padding: 0px 0 50px 0;
  }
}
@media (max-width: 639px) {
  .lets-talk {
    padding: 30px 0 30px 0;
  }
}
.lets-talk.abt {
  padding: 70px 0 70px 0;
}
.lets-talk .lets-details h6 {
  color: #9DC33B;
  letter-spacing: 3px;
  font-size: 15px;
}
.lets-talk .lets-details h2 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .lets-talk .lets-details h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1199px) {
  .lets-talk .lets-details h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 991px) {
  .lets-talk .lets-details h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 639px) {
  .lets-talk .lets-details h2 {
    font-size: 2rem;
  }
}
.lets-talk .lets-details h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(120, 241, 14, 0.423);
  font-size: 4.5rem;
  letter-spacing: -1px;
}
@media (max-width: 1599px) {
  .lets-talk .lets-details h2 span {
    font-size: 3rem;
  }
}
@media (max-width: 1199px) {
  .lets-talk .lets-details h2 span {
    font-size: 2.8rem;
  }
}
@media (max-width: 991px) {
  .lets-talk .lets-details h2 span {
    font-size: 1.9rem;
  }
}
@media (max-width: 639px) {
  .lets-talk .lets-details h2 span {
    font-size: 2rem;
    display: block;
    letter-spacing: 1px;
  }
}
.lets-talk .lets-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 639px) {
  .lets-talk .lets-button {
    padding: 20px 0 0 7px;
    justify-content: start;
  }
}
.lets-talk .lets-button .btn {
  border-radius: 0 !important;
}

.footer-area {
  padding: 30px 0;
  background: #232323;
  position: relative;
}
@media (max-width: 639px) {
  .footer-area {
    padding: 60px 0 30px 0;
  }
}
.footer-area .footer-address {
  position: relative;
  z-index: 2;
}
.footer-area .footer-address h4 {
  padding-bottom: 20px;
}
.footer-area .footer-address h4 img {
  width: 80%;
}
@media (max-width: 991px) {
  .footer-area .footer-address h4 img {
    width: 70%;
  }
}
@media (max-width: 639px) {
  .footer-area .footer-address h4 img {
    width: 60%;
  }
}
.footer-area .footer-address ul {
  position: relative;
}
.footer-area .footer-address ul li {
  list-style: none;
  line-height: 32px;
  position: relative;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .footer-area .footer-address ul li {
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-address ul li {
    line-height: 25px;
  }
}
.footer-area .footer-address ul li i {
  position: absolute;
  top: 5px;
  left: -30px;
  color: #9DC33B;
}
.footer-area .footer-address ul li a {
  text-decoration: none;
  color: #d1d1d1;
  font-weight: 100;
  font-size: 15px;
  font-family: sans-serif;
}
@media (max-width: 1199px) {
  .footer-area .footer-address ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-address ul li a {
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .footer-area .footer-address ul li a {
    font-size: 14px;
  }
}
.footer-area .footer-links {
  position: relative;
  z-index: 2;
}
.footer-area .footer-links h4 {
  color: #9DC33B;
  font-weight: 600;
  padding-bottom: 20px;
}
.footer-area .footer-links ul li {
  line-height: 35px;
  list-style: none;
}
@media (max-width: 1199px) {
  .footer-area .footer-links ul li {
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-links ul li {
    line-height: 24px;
  }
}
.footer-area .footer-links ul li i {
  color: #9DC33B;
  margin-right: 13px;
  animation: arrow-anim 0.3s ease-in-out alternate infinite;
}
.footer-area .footer-links ul li a {
  text-decoration: none;
  color: #d1d1d1;
  font-weight: 100;
  transition: all 0.5s ease-in-out;
}
.footer-area .footer-links ul li a:hover {
  margin-left: 10px;
}
@media (max-width: 1199px) {
  .footer-area .footer-links ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-links ul li a {
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .footer-area .footer-links ul li a {
    font-size: 14px;
  }
}
.footer-area .footer-pro h4 {
  color: #9DC33B;
  font-weight: 600;
  padding-bottom: 20px;
}
.footer-area .footer-pro ul li {
  line-height: 35px;
  list-style: none;
}
@media (max-width: 1199px) {
  .footer-area .footer-pro ul li {
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-pro ul li {
    line-height: 24px;
  }
}
.footer-area .footer-pro ul li i {
  color: #9DC33B;
  margin-right: 13px;
  animation: arrow-anim 0.3s ease-in-out alternate infinite;
}
.footer-area .footer-pro ul li a {
  text-decoration: none;
  color: #d1d1d1;
  font-weight: 100;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1199px) {
  .footer-area .footer-pro ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-pro ul li a {
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .footer-area .footer-pro ul li a {
    font-size: 14px;
  }
}
.footer-area .footer-pro ul li a:hover {
  margin-left: 10px;
}
.footer-area .footer-blog h4 {
  color: #9DC33B;
  font-weight: 600;
  padding-bottom: 20px;
}
.footer-area .footer-blog ul li {
  line-height: 35px;
  list-style: none;
  margin-bottom: 42px;
  position: relative;
  left: 0px;
}
@media (max-width: 1199px) {
  .footer-area .footer-blog ul li {
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-blog ul li {
    line-height: 24px;
  }
}
@media (max-width: 639px) {
  .footer-area .footer-blog ul li {
    margin-bottom: 18px;
  }
}
.footer-area .footer-blog ul li img {
  width: 70px;
  margin-right: 10px;
  position: absolute;
}
@media (max-width: 639px) {
  .footer-area .footer-blog ul li img {
    position: inherit;
    width: 40px;
  }
}
.footer-area .footer-blog ul li a {
  text-decoration: none;
  color: #d1d1d1;
  font-weight: 100;
  position: relative;
  left: 90px;
}
@media (max-width: 1199px) {
  .footer-area .footer-blog ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-blog ul li a {
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .footer-area .footer-blog ul li a {
    left: 0px;
    font-size: 14px;
  }
}
.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 58%;
  background: #545457;
  z-index: 0;
}
@media (max-width: 1199px) {
  .footer-area::before {
    width: 63%;
  }
}
@media (max-width: 991px) {
  .footer-area::before {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .footer-area::before {
    width: 100%;
  }
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: #fff !important;
  text-decoration: none;
}

.footer-bottom-area {
  background: #232323;
}
.footer-bottom-area ul {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  padding: 20px 0 0px 0;
}
@media (max-width: 639px) {
  .footer-bottom-area ul {
    display: block;
    text-align: center;
  }
}
.footer-bottom-area ul li {
  list-style: none;
}
.footer-bottom-area ul li a {
  text-decoration: none;
  color: #878787;
  font-size: 14px;
}
.footer-bottom-area .copy-right {
  border-top: 1px solid #2e3a0d;
  padding: 20px 0 0 0;
}
.footer-bottom-area .copy-right p {
  color: #878787;
  text-align: center;
}
.footer-bottom-area .copy-right p a {
  text-decoration: none;
  color: #FFFFFF;
}
.footer-bottom-area .copy-right p .yes {
  color: #9DC33B;
}
.footer-bottom-area .copy-right p .leap {
  color: red;
}

.searchbox {
  position: relative;
  min-width: 50px;
  width: 0%;
  height: 50px;
  float: right;
  overflow: hidden;
  transition: width 0.3s;
}

.searchbox1 {
  position: relative;
  min-width: 50px;
  width: 0%;
  height: 50px;
  float: right;
  overflow: hidden;
  transition: width 0.3s;
}

.searchbox-input {
  top: 0;
  right: 0;
  border-radius: 26px;
  border: none;
  outline: 0;
  background: #FFFFFF;
  width: 83%;
  height: 38px;
  margin: 0;
  padding: 0 0 0 10px;
  font-size: 16px;
  color: #333;
}

.searchbox-input1 {
  top: 0;
  right: 0;
  border-radius: 26px;
  border: none;
  outline: 0;
  background: #FFFFFF;
  width: 83%;
  height: 38px;
  margin: 0;
  padding: 0 0 0 10px;
  font-size: 16px;
  color: #333;
}

.searchbox-input::-webkit-input-placeholder {
  color: #333;
}

.searchbox-input1::-webkit-input-placeholder {
  color: #333;
}

.searchbox-input:-moz-placeholder {
  color: #333;
}

.searchbox-input1:-moz-placeholder {
  color: #333;
}

.searchbox-input::-moz-placeholder {
  color: #333;
}

.searchbox-input1::-moz-placeholder {
  color: #333;
}

.searchbox-input:-ms-input-placeholder {
  color: #333;
}

.searchbox-input1:-ms-input-placeholder {
  color: #333;
}

.searchbox-icon,
.searchbox-submit {
  width: 42px;
  height: 38px;
  display: block;
  position: absolute;
  top: 0;
  font-family: verdana;
  font-size: 17px;
  right: 8px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 26px;
  outline: 0;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #9dc33b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchbox-icon1,
.searchbox-submit1 {
  width: 42px;
  height: 38px;
  display: block;
  position: absolute;
  top: 0;
  font-family: verdana;
  font-size: 17px;
  right: 8px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 26px;
  outline: 0;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #9dc33b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchbox-icon i {
  color: #FFFFFF !important;
  background: none !important;
  font-size: 16px !important;
  position: absolute;
  top: 32%;
  left: 33%;
}

.searchbox-icon1 i {
  color: #FFFFFF !important;
  background: none !important;
  font-size: 16px !important;
  position: absolute;
  top: 32%;
  left: 33%;
}

.searchbox-open {
  width: 100%;
}

.searchbox-open1 {
  width: 100%;
}

.byline {
  position: absolute;
  top: 150px;
  left: 30%;
  text-align: center;
  font-size: 18px;
}

.byline1 {
  position: absolute;
  top: 150px;
  left: 30%;
  text-align: center;
  font-size: 18px;
}

.byline a {
  text-decoration: none;
  color: #d74b4b;
}

.byline1 a {
  text-decoration: none;
  color: #d74b4b;
}

.team-area {
  padding: 50px 0;
  border-top: 1px solid #9DC33B;
  border-bottom: 1px solid #9DC33B;
  margin: 50px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .team-area {
    padding: 60px 0 30px 0;
  }
}
.team-area h2 {
  position: relative;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 1199px) {
  .team-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .team-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 639px) {
  .team-area h2 {
    font-size: 1.8rem;
  }
}
.team-area h2::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 90px;
  background: #9DC33B;
  margin: 0 auto;
  right: 0;
}
.team-area h2::after {
  content: "";
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.team-area.account {
  border: none;
}
.team-area.account h2 {
  position: relative;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 1199px) {
  .team-area.account h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .team-area.account h2 {
    font-size: 2rem;
  }
}
@media (max-width: 639px) {
  .team-area.account h2 {
    font-size: 1.8rem;
  }
}
.team-area.account h2::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 200px;
  background: #9DC33B;
  margin: 0 auto;
  right: 0;
}
.team-area.account h2::after {
  content: "";
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.team-area.account .container {
  background: #1e2408;
  padding: 40px 0;
}
.team-area.service {
  border: none;
}
@media (max-width: 639px) {
  .team-area.service {
    padding: 0;
  }
}
.team-area.service h2 {
  position: relative;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 1599px) {
  .team-area.service h2 {
    font-size: 2rem;
  }
}
.team-area.service h2::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 200px;
  background: #9DC33B;
  margin: 0 auto;
  right: 0;
}
.team-area.service h2::after {
  content: "";
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.team-area.marketing {
  border: none;
}
@media (max-width: 639px) {
  .team-area.marketing {
    padding: 0;
  }
}
.team-area.marketing h2 {
  position: relative;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 1599px) {
  .team-area.marketing h2 {
    font-size: 2rem;
  }
}
.team-area.marketing h2::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 200px;
  background: #9DC33B;
  margin: 0 auto;
  right: 0;
}
.team-area.marketing h2::after {
  content: "";
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.team-area.marketing .operation {
  border: 1px solid #9DC33B;
  padding: 30px 60px 0 50px;
  margin: 0 30px 0 0;
}
@media (max-width: 1599px) {
  .team-area.marketing .operation {
    border: 1px solid #9DC33B;
    padding: 30px 30px 0 20px;
    margin: 0 30px 0 0;
  }
}
@media (max-width: 1199px) {
  .team-area.marketing .operation {
    border: none;
  }
}
@media (max-width: 991px) {
  .team-area.marketing .operation {
    margin: 0 0 40px 0;
    padding: 0;
  }
}
.team-area.marketing .operation h2 {
  margin-bottom: 50px;
}
.team-area.marketing .market {
  border: 1px solid #9DC33B;
  padding: 30px 60px 0 50px;
  margin: 0 0px 0px 30px;
}
@media (max-width: 1599px) {
  .team-area.marketing .market {
    border: 1px solid #9DC33B;
    padding: 30px 30px 0 20px;
    margin: 0 30px 0 0;
  }
}
@media (max-width: 1199px) {
  .team-area.marketing .market {
    border: none;
  }
}
@media (max-width: 991px) {
  .team-area.marketing .market {
    margin: 0;
    padding: 0;
  }
}
.team-area.marketing .market h2 {
  margin-bottom: 50px;
}
.team-area .sales-team {
  margin-top: 60px;
}
@media (max-width: 639px) {
  .team-area .sales-team {
    margin-top: 20px;
  }
}
.team-area .service-team {
  margin-top: 60px;
}
@media (max-width: 639px) {
  .team-area .service-team {
    margin-top: 20px;
  }
}
.team-area .account-team {
  margin-top: 60px;
}
@media (max-width: 639px) {
  .team-area .account-team {
    margin-top: 20px;
  }
}

.our-team {
  text-align: center;
  overflow: hidden;
  position: relative;
  margin: 0 0 50px 20px;
}
@media (max-width: 1599px) {
  .our-team {
    margin: 0 0 50px 10px;
  }
}

.our-team img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out 0s;
}

.our-team:hover img {
  transform: scale(1.2);
}

.our-team .social {
  list-style: none;
  padding: 30px 15px;
  margin: 0;
  background: #191F07;
  border-bottom-right-radius: 50px;
  position: absolute;
  top: 0;
  left: -50%;
  transition: all 0.4s ease-in-out 0s;
}
@media (max-width: 1599px) {
  .our-team .social {
    padding: 22px 10px;
  }
}
@media (max-width: 1199px) {
  .our-team .social {
    padding: 18px 8px;
  }
}
@media (max-width: 639px) {
  .our-team .social {
    padding: 25px 12px;
  }
}

.our-team:hover .social {
  left: 0;
}

.our-team:hover .team-content {
  width: 100%;
  margin: 0;
}

.our-team .social li {
  display: block;
}

.our-team .social li a {
  display: block;
  padding: 5px 0;
  font-size: 18px;
  color: #9DC33B;
  transition: all 0.3s ease-in-out 0s;
}
@media (max-width: 1599px) {
  .our-team .social li a {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .our-team .social li a {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .our-team .social li a {
    font-size: 17px;
  }
}

.our-team .social li:first-child a {
  padding-top: 0;
}

.our-team .social li:last-child a {
  padding-bottom: 0;
}

.our-team .social li a:hover {
  color: #000;
}

.our-team .team-content {
  width: 100%;
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
}

.our-team .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 5px 0;
  text-align: left;
}
@media (max-width: 1199px) {
  .our-team .title {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .our-team .title {
    font-size: 15px;
  }
}

.our-team .post {
  display: block;
  font-size: 14px;
  color: #9DC33B;
  text-align: left;
}

@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}
.story-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .story-area {
    padding: 60px 0 30px 0;
  }
}
.story-area .story-first h4 {
  position: relative;
  font-weight: 500;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #FFFFFF;
}
.story-area .story-first h4::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 80px;
  background: #9DC33B;
}
.story-area .story-first h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.story-area .story-first h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 600;
  margin-left: 20px;
}
@media (max-width: 1599px) {
  .story-area .story-first h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1199px) {
  .story-area .story-first h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .story-area .story-first h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 639px) {
  .story-area .story-first h2 {
    font-size: 1.8rem;
  }
}
.story-area .story-first p {
  color: #9b9b9b;
  padding-left: 20px;
  line-height: 27px;
}
.story-area .story-second {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 1199px) {
  .story-area .story-second {
    display: block;
  }
}
@media (max-width: 991px) {
  .story-area .story-second {
    display: block;
  }
}
.story-area .story-second img {
  width: 80%;
}
@media (max-width: 1199px) {
  .story-area .story-second img {
    width: 90%;
    margin-left: 10%;
  }
}
@media (max-width: 991px) {
  .story-area .story-second img {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .story-area .story-second img {
    width: 100%;
    margin-left: 0%;
  }
}

.we-do-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .we-do-area {
    padding: 60px 0 30px 0;
  }
}
.we-do-area .we-do-first {
  order: 1;
}
.we-do-area .we-do-first h4 {
  position: relative;
  font-weight: 500;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFFFFF;
}
@media (max-width: 639px) {
  .we-do-area .we-do-first h4 {
    margin-left: 10px;
  }
}
.we-do-area .we-do-first h4::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  height: 2px;
  width: 80px;
  background: #9DC33B;
}
.we-do-area .we-do-first h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.we-do-area .we-do-first h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 1599px) {
  .we-do-area .we-do-first h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1199px) {
  .we-do-area .we-do-first h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .we-do-area .we-do-first h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 639px) {
  .we-do-area .we-do-first h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .we-do-area .we-do-first h2 {
    padding-left: 10px;
  }
}
.we-do-area .we-do-first p {
  color: #9b9b9b;
  padding-left: 20px;
  line-height: 27px;
}
@media (max-width: 639px) {
  .we-do-area .we-do-first p {
    padding-left: 10px;
  }
}
.we-do-area .we-do-second {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.we-do-area .we-do-second img {
  width: 80%;
}

#top {
  font-weight: bold;
  font-size: 25px;
  bottom: 10px;
  right: 30px;
  border-bottom: 0;
  padding: 10px;
  color: #FFFFFF;
  z-index: 9;
}
@media (max-width: 639px) {
  #top {
    right: 0px;
  }
}
#top img {
  width: 100px;
  height: auto;
}
@media (max-width: 639px) {
  #top img {
    width: 70px;
  }
}

.about-top-title {
  background: url(../img/team.jpg);
  animation: headtitle 30s linear infinite alternate-reverse;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  background-repeat: round;
  background-size: cover;
}
@media (max-width: 1199px) {
  .about-top-title {
    height: 500px;
    background-repeat: inherit;
  }
}
@media (max-width: 991px) {
  .about-top-title {
    height: 400px;
    background-repeat: inherit;
  }
}
@media (max-width: 639px) {
  .about-top-title {
    height: 300px;
    background-repeat: inherit;
  }
}
.about-top-title .top-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-top-title .top-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .about-top-title .top-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .about-top-title .top-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .about-top-title .top-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .about-top-title .top-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.about-top-title .top-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .about-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .about-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .about-top-title .top-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .about-top-title .top-title-content h6 {
    font-size: 13px;
  }
}
.about-top-title .top-title-content h6 .freez {
  color: #fff;
}
.about-top-title .top-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.about-top-title .top-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.company-banner .company-top-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 40%);
}
.company-banner .company-top-title .top-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.company-banner .company-top-title .top-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .company-banner .company-top-title .top-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .company-banner .company-top-title .top-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .company-banner .company-top-title .top-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .company-banner .company-top-title .top-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.company-banner .company-top-title .top-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .company-banner .company-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .company-banner .company-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .company-banner .company-top-title .top-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .company-banner .company-top-title .top-title-content h6 {
    font-size: 13px;
  }
}
.company-banner .company-top-title .top-title-content h6 .freez {
  color: #fff;
}
.company-banner .company-top-title .top-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.company-banner .company-top-title .top-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.contact-top-title {
  position: relative;
  height: 60vh;
}
@media (max-width: 1599px) {
  .contact-top-title {
    height: 50vh;
  }
}
@media (max-width: 1199px) {
  .contact-top-title {
    height: 50vh;
  }
}
@media (max-width: 991px) {
  .contact-top-title {
    height: 30vh;
  }
}
@media (max-width: 639px) {
  .contact-top-title {
    height: 35vh;
  }
}
.contact-top-title .contact-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
@media (max-width: 1199px) {
  .contact-top-title .contact-title-content {
    top: 34%;
  }
}
@media (max-width: 991px) {
  .contact-top-title .contact-title-content {
    top: 34%;
  }
}
@media (max-width: 639px) {
  .contact-top-title .contact-title-content {
    justify-content: center;
    align-items: center;
    top: 90px;
  }
}
.contact-top-title .contact-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
  padding: 0 220px;
  word-break: break-word !important;
}
@media (max-width: 1599px) {
  .contact-top-title .contact-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .contact-top-title .contact-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .contact-top-title .contact-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .contact-top-title .contact-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 1599px) {
  .contact-top-title .contact-title-content h1 {
    padding: 0 140px;
    font-size: 3.5rem !important;
  }
}
@media (max-width: 1199px) {
  .contact-top-title .contact-title-content h1 {
    padding: 0 80px;
    font-size: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .contact-top-title .contact-title-content h1 {
    padding: 0 80px;
    font-size: 2rem !important;
  }
}
@media (max-width: 639px) {
  .contact-top-title .contact-title-content h1 {
    padding: 0 10px;
    font-size: 1.5rem !important;
  }
}
.contact-top-title .contact-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .contact-top-title .contact-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .contact-top-title .contact-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .contact-top-title .contact-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .contact-top-title .contact-title-content h6 {
    font-size: 13px;
  }
}
.contact-top-title .contact-title-content h6 .freez {
  color: #fff;
}
.contact-top-title .contact-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.contact-top-title .contact-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.privacy-top-title {
  position: relative;
  height: 60vh;
}
@media (max-width: 1599px) {
  .privacy-top-title {
    height: 50vh;
  }
}
@media (max-width: 1199px) {
  .privacy-top-title {
    height: 50vh;
  }
}
@media (max-width: 991px) {
  .privacy-top-title {
    height: 30vh;
  }
}
@media (max-width: 639px) {
  .privacy-top-title {
    height: 35vh;
  }
}
.privacy-top-title .privacy-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}
@media (max-width: 639px) {
  .privacy-top-title .privacy-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.privacy-top-title .privacy-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .privacy-top-title .privacy-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .privacy-top-title .privacy-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .privacy-top-title .privacy-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .privacy-top-title .privacy-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.privacy-top-title .privacy-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .privacy-top-title .privacy-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .privacy-top-title .privacy-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .privacy-top-title .privacy-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .privacy-top-title .privacy-title-content h6 {
    font-size: 13px;
  }
}
.privacy-top-title .privacy-title-content h6 .freez {
  color: #fff;
}
.privacy-top-title .privacy-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.privacy-top-title .privacy-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.news-top-title {
  position: relative;
  height: 60vh;
}
@media (max-width: 1599px) {
  .news-top-title {
    height: 50vh;
  }
}
@media (max-width: 1199px) {
  .news-top-title {
    height: 50vh;
  }
}
@media (max-width: 991px) {
  .news-top-title {
    height: 30vh;
  }
}
@media (max-width: 639px) {
  .news-top-title {
    height: 35vh;
  }
}
.news-top-title .news-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}
@media (max-width: 639px) {
  .news-top-title .news-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.news-top-title .news-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .news-top-title .news-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .news-top-title .news-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .news-top-title .news-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .news-top-title .news-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.news-top-title .news-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .news-top-title .news-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .news-top-title .news-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .news-top-title .news-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .news-top-title .news-title-content h6 {
    font-size: 13px;
  }
}
.news-top-title .news-title-content h6 .freez {
  color: #fff;
}
.news-top-title .news-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.news-top-title .news-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.services-top-title .serv-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
}
@media (max-width: 639px) {
  .services-top-title .serv-container {
    height: 48vh;
  }
}
@media (max-width: 1599px) {
  .services-top-title .serv-container.about-video {
    height: 90vh;
  }
}
@media (max-width: 1199px) {
  .services-top-title .serv-container.about-video {
    height: 83vh;
  }
}
@media (max-width: 991px) {
  .services-top-title .serv-container.about-video {
    height: 60vh;
  }
}
@media (max-width: 639px) {
  .services-top-title .serv-container.about-video {
    height: 55vh;
  }
}
.services-top-title .top-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 99;
}
.services-top-title .top-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1599px) {
  .services-top-title .top-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .services-top-title .top-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .services-top-title .top-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .services-top-title .top-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.services-top-title .top-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .services-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .services-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .services-top-title .top-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .services-top-title .top-title-content h6 {
    font-size: 13px;
  }
}
.services-top-title .top-title-content h6 .freez {
  color: #fff;
}
.services-top-title .top-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.services-top-title .top-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.product-top-title {
  position: relative;
  height: 55vh;
}
@media (max-width: 1599px) {
  .product-top-title {
    height: 55vh;
  }
}
@media (max-width: 1199px) {
  .product-top-title {
    height: 55vh;
  }
}
@media (max-width: 991px) {
  .product-top-title {
    height: auto;
  }
}
@media (max-width: 639px) {
  .product-top-title {
    height: auto;
  }
}
.product-top-title .product-title-content {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  text-align: left;
  background: rgba(157, 195, 59, 0.3098039216);
  padding: 30px 20px;
}
@media (max-width: 991px) {
  .product-top-title .product-title-content {
    top: 45%;
  }
}
@media (max-width: 639px) {
  .product-top-title .product-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
    width: 94%;
  }
}
.product-top-title .product-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .product-top-title .product-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .product-top-title .product-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .product-top-title .product-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .product-top-title .product-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.product-top-title .product-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .product-top-title .product-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .product-top-title .product-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .product-top-title .product-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .product-top-title .product-title-content h6 {
    font-size: 13px;
  }
}
.product-top-title .product-title-content h6 .freez {
  color: #fff;
}
.product-top-title .product-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.product-top-title .product-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}
.product-top-title .swiper-slide img {
  width: 100%;
  height: 58vh;
}
@media (max-width: 1599px) {
  .product-top-title .swiper-slide img {
    width: 100% !important;
    height: 60vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .product-top-title .swiper-slide img {
    width: 100% !important;
    height: 60vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .product-top-title .swiper-slide img {
    width: 100% !important;
    height: 33vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 639px) {
  .product-top-title .swiper-slide img {
    width: 100% !important;
    height: 36vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.product-top-title .titleBanner .swiper-pagination-clickable .swiper-pagination-bullet {
  display: block !important;
  width: 15px;
  height: 15px;
  background: #9DC33B;
  opacity: 0.6;
}
.product-top-title .titleBanner .swiper-pagination-bullet-active {
  background: #9dc33b !important;
  border: 2px solid #fff;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
}
.product-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
.product-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
.product-top-title .titleBanner .swiper-pagination-custom,
.product-top-title .titleBanner .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1599px) {
  .product-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
  .product-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .product-top-title .titleBanner .swiper-pagination-custom,
  .product-top-title .titleBanner .swiper-pagination-fraction {
    bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .product-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
  .product-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .product-top-title .titleBanner .swiper-pagination-custom,
  .product-top-title .titleBanner .swiper-pagination-fraction {
    bottom: 20px;
  }
}
@media (max-width: 991px) {
  .product-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
  .product-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .product-top-title .titleBanner .swiper-pagination-custom,
  .product-top-title .titleBanner .swiper-pagination-fraction {
    bottom: 20px;
  }
}
.product-top-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 0%, rgba(238, 237, 237, 0.02) 100%, rgb(148, 148, 148) 100%);
  z-index: 3;
}

.team-top-title {
  position: relative;
}
.team-top-title img {
  width: 100%;
  height: 75vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 639px) {
  .team-top-title img {
    height: 35vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.team-top-title .top-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
@media (max-width: 639px) {
  .team-top-title .top-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.team-top-title .top-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .team-top-title .top-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .team-top-title .top-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .team-top-title .top-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .team-top-title .top-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.team-top-title .top-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .team-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .team-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .team-top-title .top-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .team-top-title .top-title-content h6 {
    font-size: 13px;
  }
}
.team-top-title .top-title-content h6 .freez {
  color: #fff;
}
.team-top-title .top-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.team-top-title .top-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}
.team-top-title.under-construction img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 639px) {
  .team-top-title.under-construction img {
    height: 70vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.demo-center-top-title {
  position: relative;
}
.demo-center-top-title img {
  width: 100%;
  height: 75vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 639px) {
  .demo-center-top-title img {
    height: 35vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.demo-center-top-title .demo-center-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
@media (max-width: 639px) {
  .demo-center-top-title .demo-center-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.demo-center-top-title .demo-center-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .demo-center-top-title .demo-center-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .demo-center-top-title .demo-center-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .demo-center-top-title .demo-center-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .demo-center-top-title .demo-center-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.demo-center-top-title .demo-center-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .demo-center-top-title .demo-center-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .demo-center-top-title .demo-center-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .demo-center-top-title .demo-center-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .demo-center-top-title .demo-center-title-content h6 {
    font-size: 13px;
  }
}
.demo-center-top-title .demo-center-title-content h6 .freez {
  color: #fff;
}
.demo-center-top-title .demo-center-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.demo-center-top-title .demo-center-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.book-a-sales-visit-top-title {
  position: relative;
  height: 60vh;
}
@media (max-width: 1599px) {
  .book-a-sales-visit-top-title {
    height: 50vh;
  }
}
@media (max-width: 1199px) {
  .book-a-sales-visit-top-title {
    height: 50vh;
  }
}
@media (max-width: 991px) {
  .book-a-sales-visit-top-title {
    height: 30vh;
  }
}
@media (max-width: 639px) {
  .book-a-sales-visit-top-title {
    height: 35vh;
  }
}
.book-a-sales-visit-top-title .book-a-sales-visit-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
@media (max-width: 639px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.book-a-sales-visit-top-title .book-a-sales-visit-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 {
    font-size: 13px;
  }
}
.book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 .freez {
  color: #fff;
}
.book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.book-a-sales-visit-top-title .book-a-sales-visit-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.suppliers-top-title {
  position: relative;
  height: 60vh;
  margin: 0 0 80px 0;
}
@media (max-width: 1599px) {
  .suppliers-top-title {
    height: 50vh;
  }
}
@media (max-width: 1199px) {
  .suppliers-top-title {
    height: 50vh;
  }
}
@media (max-width: 991px) {
  .suppliers-top-title {
    height: 30vh;
  }
}
@media (max-width: 639px) {
  .suppliers-top-title {
    height: 35vh;
  }
}
.suppliers-top-title .suppliers-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
@media (max-width: 639px) {
  .suppliers-top-title .suppliers-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.suppliers-top-title .suppliers-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .suppliers-top-title .suppliers-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .suppliers-top-title .suppliers-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .suppliers-top-title .suppliers-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .suppliers-top-title .suppliers-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.suppliers-top-title .suppliers-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .suppliers-top-title .suppliers-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .suppliers-top-title .suppliers-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .suppliers-top-title .suppliers-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .suppliers-top-title .suppliers-title-content h6 {
    font-size: 13px;
  }
}
.suppliers-top-title .suppliers-title-content h6 .freez {
  color: #fff;
}
.suppliers-top-title .suppliers-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.suppliers-top-title .suppliers-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.brand-search .wrapper {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transform: translate(0%, -200%);
}
@media (max-width: 639px) {
  .brand-search .wrapper {
    max-width: 280px;
  }
}

.brand-search .wrapper .search-input {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.brand-search .search-input input {
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.brand-search .search-input.active input {
  border-radius: 5px 5px 0 0;
}

.brand-search .search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.brand-search .search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  background: #fff;
  width: 100%;
}

.brand-search .autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.brand-search .search-input.active .autocom-box li {
  display: block;
}

.brand-search .autocom-box li:hover {
  background: #efefef;
}

.brand-search .search-input .icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #9dc33b;
  cursor: pointer;
}

.product-detail-top-title {
  position: relative;
  height: 70vh;
}
@media (max-width: 1599px) {
  .product-detail-top-title {
    height: auto;
  }
}
@media (max-width: 1199px) {
  .product-detail-top-title {
    height: 65vh;
  }
}
@media (max-width: 991px) {
  .product-detail-top-title {
    height: auto;
  }
}
@media (max-width: 639px) {
  .product-detail-top-title {
    height: auto;
  }
}
.product-detail-top-title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 0%, rgba(238, 237, 237, 0.02) 100%, rgb(148, 148, 148) 100%);
  z-index: 2;
}
@media (max-width: 991px) {
  .product-detail-top-title:before {
    height: 50px;
  }
}
.product-detail-top-title .product-detail-title-content {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  text-align: left;
  background: rgba(157, 195, 59, 0.3098039216);
  padding: 30px 20px;
}
@media (max-width: 991px) {
  .product-detail-top-title .product-detail-title-content {
    top: 40%;
  }
}
@media (max-width: 639px) {
  .product-detail-top-title .product-detail-title-content {
    justify-content: center;
    align-items: center;
    top: 90px;
    width: 94%;
  }
}
.product-detail-top-title .product-detail-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .product-detail-top-title .product-detail-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .product-detail-top-title .product-detail-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .product-detail-top-title .product-detail-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .product-detail-top-title .product-detail-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.product-detail-top-title .product-detail-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .product-detail-top-title .product-detail-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .product-detail-top-title .product-detail-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .product-detail-top-title .product-detail-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .product-detail-top-title .product-detail-title-content h6 {
    font-size: 13px;
  }
}
.product-detail-top-title .product-detail-title-content h6 .freez {
  color: #fff;
}
.product-detail-top-title .product-detail-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.product-detail-top-title .product-detail-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}
.product-detail-top-title .swiper-slide img {
  width: 100%;
  height: 58vh;
}
@media (max-width: 1599px) {
  .product-detail-top-title .swiper-slide img {
    width: 100% !important;
    height: 60vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .product-detail-top-title .swiper-slide img {
    width: 100% !important;
    height: 60vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .product-detail-top-title .swiper-slide img {
    width: 100% !important;
    height: 33vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 639px) {
  .product-detail-top-title .swiper-slide img {
    width: 100% !important;
    height: 36vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.product-detail-top-title .titleBanner .swiper-pagination-clickable .swiper-pagination-bullet {
  display: block !important;
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 0.6;
}
.product-detail-top-title .titleBanner .swiper-pagination-bullet-active {
  background: #9dc33b !important;
  border: 2px solid #fff;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
}
.product-detail-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
.product-detail-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
.product-detail-top-title .titleBanner .swiper-pagination-custom,
.product-detail-top-title .titleBanner .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1599px) {
  .product-detail-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
  .product-detail-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .product-detail-top-title .titleBanner .swiper-pagination-custom,
  .product-detail-top-title .titleBanner .swiper-pagination-fraction {
    bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .product-detail-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
  .product-detail-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .product-detail-top-title .titleBanner .swiper-pagination-custom,
  .product-detail-top-title .titleBanner .swiper-pagination-fraction {
    bottom: 20px;
  }
}
@media (max-width: 991px) {
  .product-detail-top-title .titleBanner .swiper-horizontal > .swiper-pagination-bullets,
  .product-detail-top-title .titleBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .product-detail-top-title .titleBanner .swiper-pagination-custom,
  .product-detail-top-title .titleBanner .swiper-pagination-fraction {
    bottom: 20px;
  }
}

.special-deal-top-title {
  position: relative;
}
.special-deal-top-title img {
  width: 100%;
  height: 75vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 639px) {
  .special-deal-top-title img {
    height: 35vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.special-deal-top-title .top-title-content {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
@media (max-width: 639px) {
  .special-deal-top-title .top-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.special-deal-top-title .top-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .special-deal-top-title .top-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .special-deal-top-title .top-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .special-deal-top-title .top-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .special-deal-top-title .top-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.special-deal-top-title .top-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .special-deal-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .special-deal-top-title .top-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .special-deal-top-title .top-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .special-deal-top-title .top-title-content h6 {
    font-size: 13px;
  }
}
.special-deal-top-title .top-title-content h6 .freez {
  color: #fff;
}
.special-deal-top-title .top-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.special-deal-top-title .top-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

@keyframes headtitle {
  0% {
    background-position: 150px;
  }
  100% {
    background-position: -150px;
  }
}
.order-tracker-top-title {
  position: relative;
  height: 45vh;
}
@media (max-width: 1599px) {
  .order-tracker-top-title {
    height: 40vh;
  }
}
@media (max-width: 1199px) {
  .order-tracker-top-title {
    height: 40vh;
  }
}
@media (max-width: 991px) {
  .order-tracker-top-title {
    height: 30vh;
  }
}
@media (max-width: 639px) {
  .order-tracker-top-title {
    height: 25vh;
  }
}
.order-tracker-top-title .order-tracker-title-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}
@media (max-width: 639px) {
  .order-tracker-top-title .order-tracker-title-content {
    justify-content: center;
    align-items: center;
    top: 110px;
  }
}
.order-tracker-top-title .order-tracker-title-content h1 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 1599px) {
  .order-tracker-top-title .order-tracker-title-content h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  .order-tracker-top-title .order-tracker-title-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .order-tracker-top-title .order-tracker-title-content h1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 639px) {
  .order-tracker-top-title .order-tracker-title-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.order-tracker-top-title .order-tracker-title-content h6 {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1599px) {
  .order-tracker-top-title .order-tracker-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .order-tracker-top-title .order-tracker-title-content h6 {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .order-tracker-top-title .order-tracker-title-content h6 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .order-tracker-top-title .order-tracker-title-content h6 {
    font-size: 13px;
  }
}
.order-tracker-top-title .order-tracker-title-content h6 .freez {
  color: #fff;
}
.order-tracker-top-title .order-tracker-title-content h6 span i {
  color: #9DC33B;
  padding: 0 6px;
}
.order-tracker-top-title .order-tracker-title-content h6 span a {
  color: #FFFFFF;
  text-decoration: none;
}

.banner-image {
  height: auto !important;
}
@media (max-width: 1599px) {
  .banner-image {
    height: 520px !important;
  }
}
@media (max-width: 1199px) {
  .banner-image {
    height: 420px !important;
  }
}
@media (max-width: 991px) {
  .banner-image {
    height: 300px !important;
  }
}
@media (max-width: 639px) {
  .banner-image {
    height: 140px !important;
    margin: 50px 0 0 0;
  }
}
@media (max-width: 374px) {
  .banner-image {
    height: 140px !important;
    margin: 50px 0 0 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1360px) {
  .banner-image {
    height: 460px !important;
  }
}
.get-in-touch {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .get-in-touch {
    padding: 60px 0 30px 0;
  }
}
.get-in-touch .call {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  background: #191e08;
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .get-in-touch .call {
    height: 170px;
  }
}
.get-in-touch .call i {
  color: #9DC33B;
  font-size: 29px;
  border: 1px solid rgba(157, 195, 59, 0.2784313725);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  border-radius: 50%;
}
.get-in-touch .call a {
  color: #d1d1d1;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .get-in-touch .call a {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .get-in-touch .call a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .get-in-touch .call a {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .get-in-touch .call a {
    font-size: 18px;
  }
}
.get-in-touch .call-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  background: #191e08;
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .get-in-touch .call-mobile {
    height: 170px;
  }
}
.get-in-touch .call-mobile i {
  color: #9DC33B;
  font-size: 29px;
  border: 1px solid rgba(157, 195, 59, 0.2784313725);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  border-radius: 50%;
}
.get-in-touch .call-mobile a {
  color: #d1d1d1;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .get-in-touch .call-mobile a {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .get-in-touch .call-mobile a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .get-in-touch .call-mobile a {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .get-in-touch .call-mobile a {
    font-size: 18px;
  }
}
.get-in-touch .fax {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  background: #191e08;
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .get-in-touch .fax {
    height: 170px;
  }
}
.get-in-touch .fax i {
  color: #9DC33B;
  font-size: 29px;
  border: 1px solid rgba(157, 195, 59, 0.2784313725);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  border-radius: 50%;
}
.get-in-touch .fax a {
  color: #d1d1d1;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .get-in-touch .fax a {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .get-in-touch .fax a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .get-in-touch .fax a {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .get-in-touch .fax a {
    font-size: 18px;
  }
}
.get-in-touch .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  background: #191e08;
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .get-in-touch .mail {
    height: 170px;
  }
}
.get-in-touch .mail i {
  color: #9DC33B;
  font-size: 29px;
  border: 1px solid rgba(157, 195, 59, 0.2784313725);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  border-radius: 50%;
}
.get-in-touch .mail a {
  color: #d1d1d1;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 100;
}
@media (max-width: 1599px) {
  .get-in-touch .mail a {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .get-in-touch .mail a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .get-in-touch .mail a {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .get-in-touch .mail a {
    font-size: 18px;
  }
}

.cnt-address-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 1199px) {
  .cnt-address-area {
    padding: 20px 0 30px 0;
  }
}
@media (max-width: 991px) {
  .cnt-address-area {
    padding: 20px 0 30px 0;
  }
}
@media (max-width: 639px) {
  .cnt-address-area {
    padding: 20px 0 30px 0;
  }
}

.cnt-address-first .cnt-send {
  display: flex;
  justify-content: end;
}
.cnt-address-first .cnt-send span {
  padding: 0 30px;
}
.cnt-address-first .cnt-send .btn:before {
  background: none !important;
}
.cnt-address-first .form-horizontal .form-group label {
  color: red !important;
}
.cnt-address-first .position-relative {
  text-align: center;
}
.cnt-address-first .position-relative .fa-refresh {
  font-size: 24px !important;
  padding-top: 13px !important;
  position: absolute !important;
  top: 4px !important;
  left: 140px !important;
  color: #9dc33b !important;
  right: -40px !important;
}
.cnt-address-first .position-relative .mycaptcha {
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}

.form-horizontal {
  background-color: rgba(255, 255, 255, 0);
  padding: 20px 0 0;
  box-shadow: none;
  position: relative;
}

.form-horizontal textarea {
  overflow: auto;
  resize: vertical;
  width: 100%;
  background: #1a1f08;
  border: none;
  padding: 10px 10px;
  color: #fff;
}

.form-horizontal .heading h2 {
  color: #d1d1d1;
  font-size: 3rem;
  text-align: left;
  margin: 0 0 20px 0;
}
@media (max-width: 1199px) {
  .form-horizontal .heading h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 991px) {
  .form-horizontal .heading h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 639px) {
  .form-horizontal .heading h2 {
    font-size: 2rem;
  }
}

.form-horizontal h5 {
  color: #d1d1d1;
  margin: 0 0 40px 0;
  font-size: 1.2rem;
}
@media (max-width: 639px) {
  .form-horizontal h5 {
    font-size: 1rem;
  }
}

.form-horizontal .form-group {
  width: 80%;
  margin: 10px 0 15px;
  position: relative;
}
@media (max-width: 639px) {
  .form-horizontal .form-group {
    width: 100%;
  }
}

.form-horizontal .form-group > i {
  color: #8d8d8d;
  font-size: 20px;
  position: absolute;
  left: 25px;
  top: 28px;
}

.form-horizontal .form-control {
  color: #898989;
  font-size: 15px;
  height: 75px;
  padding: 20px 8px 20px 40px;
  border-radius: 0;
  background-color: #1a1f08;
  background-clip: padding-box;
  border: none;
  width: 100%;
}

select.form-control:not([size]):not([multiple]) {
  height: 75px !important;
}

.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 15px;
  text-transform: uppercase;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 15px;
  text-transform: uppercase;
}

.form-horizontal .form-control:focus {
  box-shadow: none;
  border-color: rgba(157, 195, 58, 0.1882352941);
  background-color: rgba(255, 255, 255, 0.0196078431);
}

.form-horizontal .form-terms {
  color: #909090;
  font-size: 14px;
  width: 80%;
  margin: 0 auto 10px;
}

.form-horizontal .form-terms input[type=checkbox] {
  margin: 3px 5px 0 0;
  display: inline-block;
}

.form-horizontal .form-terms a {
  color: #9DC33B;
}

.form-horizontal .form-terms a:hover {
  text-decoration: underline;
}

.form-horizontal .btn {
  color: #fff;
  background-color: #9DC33B;
  font-size: 16px;
  padding: 7px 30px;
  margin: 0 0 10px;
  border-radius: 25px;
  border: 2px solid transparent;
  display: inline-block;
  float: left;
  transition: all 0.5s;
}

.form-horizontal .btn:focus,
.form-horizontal .btn:hover {
  color: #333;
  background-color: #fff;
  text-transform: uppercase !important;
}

.form-horizontal .form-login {
  color: #909090;
  font-size: 14px;
  margin: 10px 0;
  display: inline-block;
  float: right;
}

.form-horizontal .form-login a {
  color: #9dc33b;
}

.form-horizontal .form-login a:hover {
  text-decoration: underline;
}

.form-horizontal .form-footer {
  background-color: #9dc33b;
  text-align: center;
  padding: 20px 25px 25px;
}

.form-horizontal .form-footer:before {
  content: "OR";
  color: #9dc33b;
  background-color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 31px;
  height: 35px;
  width: 35px;
  margin: -35px auto 0;
  border: 3px solid #9dc33b;
  border-radius: 50%;
  display: block;
}

.form-horizontal .form-footer span {
  color: #fff;
  font-size: 17px;
  margin: 0 0 15px 0;
  display: block;
}

.form-horizontal .social {
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-horizontal .social li {
  display: inline-block;
  margin: 0 3px;
}

.form-horizontal .social a {
  color: #9dc33b;
  background-color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 36px;
  height: 40px;
  width: 40px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.5s;
}

.form-horizontal .social a:hover {
  color: #fff;
  background-color: #9dc33b;
  border-color: #fff;
}

textarea {
  overflow: auto;
  resize: vertical;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(157, 195, 59, 0.1882352941);
  padding: 10px 10px;
}

@media screen and (max-width: 576px) {
  .form-horizontal .form-group .btn,
  .form-horizontal .form-group .form-login {
    text-align: center;
    display: block;
    float: none;
    margin: 0 auto 15px;
  }
}
.cnt-address-second {
  position: relative;
  z-index: 1;
}
.cnt-address-second .office-address.white {
  color: #d1d1d1;
  line-height: 30px;
}
.cnt-address-second .office-address h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #9DC33B;
}
.cnt-address-second .office-address ul {
  list-style: none;
}
.cnt-address-second .office-address ul li i {
  width: 30px;
}
.cnt-address-second .office-address ul li a {
  text-decoration: none;
  color: #d1d1d1;
}
.cnt-address-second .office-address ul li a::hover {
  color: #d1d1d1;
}
.cnt-address-second p {
  color: #d1d1d1;
}
.cnt-address-second h3 {
  color: #d1d1d1;
}

.map-second {
  padding: 100px 0 0 0;
}
@media (max-width: 1199px) {
  .map-second {
    padding: 30px 0 0 0;
  }
}
@media (max-width: 991px) {
  .map-second {
    padding: 30px 0 0 0;
  }
}
@media (max-width: 639px) {
  .map-second {
    padding: 30px 0 0 0;
  }
}

#submit-msg {
  display: none;
  position: absolute;
  bottom: -50px;
  width: 300px;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
  background: #9dc33b;
  padding: 15px 10px;
  color: #fff;
  border-radius: 5px;
  height: 50px;
  text-align: center;
}

@keyframes arrow-anim {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(3px);
  }
}
@keyframes arrow-anim-track {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(3px);
  }
}
.gallery-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .gallery-area {
    padding: 60px 0 30px 0;
  }
}
.gallery-area .gallery-filter {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
@media (max-width: 639px) {
  .gallery-area .gallery-filter {
    justify-content: center;
  }
}
.gallery-area .gallery-filter .filtr {
  position: absolute;
  left: 0;
}
@media (max-width: 639px) {
  .gallery-area .gallery-filter .filtr {
    margin-right: 0;
    width: 75%;
    position: inherit;
    bottom: 15px;
  }
}
.gallery-area .gallery-filter .filtr .form-group {
  margin-bottom: 0;
}
.gallery-area .gallery-filter .filtr select.form-control:not([size]):not([multiple]) {
  height: 42px !important;
  padding: 0 40px !important;
}
.gallery-area .gallery-filter li {
  margin-right: 20px;
}
.gallery-area .gallery-filter li:last-child {
  margin: 0;
}
.gallery-area .nav-pills .nav-link {
  margin: 0 !important;
  border-radius: 6px !important;
}
.gallery-area .gallery-box {
  margin: 0 10px 40px 0;
}
.gallery-area .gallery-box img {
  width: 100%;
}
.gallery-area .gallery-box .hero-video {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #9DC33B;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.gallery-area .gallery-box .hero-video a {
  color: #FFFFFF;
}
.gallery-area .latest-blogs {
  background: #191e08;
  padding: 20px 20px 30px 20px;
  margin-top: 30px;
}
.gallery-area .latest-blogs .l-blog {
  margin-bottom: 30px;
}
.gallery-area .latest-blogs .l-blog ul {
  padding: 0 15px;
  list-style: none;
}
.gallery-area .latest-blogs .l-blog ul li {
  line-height: 30px;
}
.gallery-area .latest-blogs .l-blog ul li i {
  color: #9DC33B;
  font-size: 15px;
  margin-right: 10px;
  animation: arrow-anim 0.3s ease-in-out alternate infinite;
}
.gallery-area .latest-blogs .l-blog ul li a {
  color: #d1d1d1;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.gallery-area .latest-blogs h3 {
  color: #d1d1d1;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 17px;
  border-bottom: 4px solid #232323;
  margin-bottom: 20px;
}
.gallery-area .latest-blogs .latest-img img {
  width: 100%;
}
.gallery-area .latest-blogs .latest-head h5 a {
  font-size: 17px;
  line-height: 23px;
  color: #d1d1d1;
}
.gallery-area .latest-blogs.cat {
  margin-top: 30px;
}
.gallery-area .latest-blogs.tag {
  margin-top: 40px;
}
.gallery-area .latest-blogs.tag a {
  color: #141414;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  background: #9DC33B;
  margin: 6px 6px;
  padding: 8px 10px;
  border-radius: 4px;
}
.gallery-area .gallery-second {
  margin-top: 92px;
}
@media (max-width: 991px) {
  .gallery-area .gallery-second {
    margin-top: 30px;
  }
}
@media (max-width: 639px) {
  .gallery-area .gallery-second {
    margin-top: 0;
  }
}
.gallery-area .gallery-second .gallery-search-box {
  background: #191e08;
  padding: 20px 20px 30px 20px;
}
.gallery-area .gallery-second .gallery-search-box h3 {
  color: #d1d1d1;
  font-size: 25px;
  font-weight: 500;
}
.gallery-area .gallery-second .gallery-search-box .form-inline {
  position: relative;
}
@media (max-width: 991px) {
  .gallery-area .gallery-second .gallery-search-box .form-inline {
    flex-direction: row !important;
  }
}
.gallery-area .gallery-second .gallery-search-box .form-inline .form-control {
  width: 100%;
}
.gallery-area .gallery-second .gallery-search-box .form-inline button {
  background: #9DC33B;
  color: #fff;
  padding: 5px 8px 5px 8px !important;
  border-radius: 5px !important;
  font-size: 16px !important;
}
.gallery-area .gallery-second .gallery-search-box .form-inline button.btn::before {
  content: "";
  background: none;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.2s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.gallery-area .gallery-second .gallery-search-box .form-inline button.btn-outline-success:hover {
  color: #fff;
  background-color: #232323;
  border-color: #ffffff !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #333 !important;
  background: #9DC33B !important;
  border-radius: 10px 0px 10px 0px;
  margin-right: 13px;
}

.nav-pills .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  background: rgba(157, 195, 59, 0.4784313725);
  border-radius: 10px 0px !important;
  margin-right: 13px;
}

.nav-link {
  display: block;
  padding: 10px 32px !important;
}

.openhouse-gallery-area {
  margin: 20px 0 50px 0;
}
.openhouse-gallery-area h2 {
  color: #9DC33B;
  text-align: center;
  margin: 0px 0 30px 0;
}
@media (max-width: 639px) {
  .openhouse-gallery-area h2 {
    font-size: 1.5rem !important;
  }
}
.openhouse-gallery-area .openhouse-gallery-img {
  margin: 0 0 40px 0;
}
@media (max-width: 639px) {
  .openhouse-gallery-area .openhouse-gallery-img {
    margin: 0 0 20px 0;
  }
}
.openhouse-gallery-area .openhouse-gallery-img img {
  width: 100%;
  border-radius: 6px;
}
.openhouse-gallery-area .openhouse-gallery-img h5 {
  color: #fff;
  margin: 15px 0 0 0;
  text-align: center;
}

.news-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .news-area {
    padding: 60px 0 30px 0;
  }
}
.news-area .social-media-feeds {
  border: 1px solid rgba(157, 195, 59, 0.3803921569);
  border-radius: 10px;
  background: #000;
  margin-bottom: 40px;
}
.news-area .social-media-feeds .social-head {
  padding: 10px 15px 0px 15px;
}
@media (max-width: 991px) {
  .news-area .social-media-feeds .social-head .s-logo {
    padding: 6px 9px 0 12px;
  }
}
@media (max-width: 639px) {
  .news-area .social-media-feeds .social-head .s-logo {
    padding: 0px 0 0 16px;
  }
}
.news-area .social-media-feeds .social-head .s-logo img {
  width: 100%;
}
.news-area .social-media-feeds .social-head .s-head-box {
  padding-top: 7px;
}
@media (max-width: 991px) {
  .news-area .social-media-feeds .social-head .s-head-box {
    padding: 5px 0 0 3px;
  }
}
.news-area .social-media-feeds .social-head .s-head-box .s-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .news-area .social-media-feeds .social-head .s-head-box .s-head {
    padding: 0 14px 0 0;
  }
}
.news-area .social-media-feeds .social-head .s-head-box .s-head h6 {
  text-align: left;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 639px) {
  .news-area .social-media-feeds .social-head .s-head-box .s-head h6 {
    font-size: 14px;
  }
}
.news-area .social-media-feeds .social-head .s-head-box .s-head h6 a {
  text-decoration: none;
  color: #d1d1d1;
}
.news-area .social-media-feeds .social-head .s-head-box .s-head p {
  font-size: 14px;
  margin-bottom: 4px;
}
@media (max-width: 639px) {
  .news-area .social-media-feeds .social-head .s-head-box .s-head p {
    font-size: 12px;
  }
}
.news-area .social-media-feeds .social-head .s-head-box .s-head p a {
  text-decoration: none;
  color: #d1d1d1;
}
.news-area .social-media-feeds .social-head .s-head-box p {
  text-align: left;
  font-size: 13px;
}
.news-area .social-media-feeds .social-head .s-head-box p a {
  text-decoration: none;
  color: #d1d1d1;
}
.news-area .social-media-feeds .social-image img {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  height: 250px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (max-width: 1199px) {
  .news-area .social-media-feeds .social-image img {
    height: 300px;
  }
}
.news-area .social-media-feeds .like-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  margin: 0 0 11px 0;
}
.news-area .social-media-feeds .like-area .like {
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0 7px 0;
}
.news-area .social-media-feeds .like-area .like i {
  margin: 0 10px 10px 0;
}
.news-area .social-media-feeds .like-area .like h6 {
  font-size: 14px;
  font-family: sans-serif !important;
}
.news-area .social-media-feeds .like-area .like a {
  color: #d1d1d1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.news-area .social-media-feeds .like-area .like a:hover {
  color: #ccc;
}
.news-area .social-media-feeds .like-area .comment {
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0 7px 0;
}
.news-area .social-media-feeds .like-area .comment i {
  margin-bottom: 10px;
}
.news-area .social-media-feeds .like-area .comment h6 {
  font-size: 14px;
}
.news-area .social-media-feeds .like-area .comment a {
  color: #d1d1d1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.news-area .social-media-feeds .like-area .comment a:hover {
  color: #ccc;
}
.news-area .social-media-feeds .like-area .share {
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0 7px 0;
}
.news-area .social-media-feeds .like-area .share i {
  margin-bottom: 10px;
}
.news-area .social-media-feeds .like-area .share h6 {
  font-size: 14px;
}
.news-area .social-media-feeds .like-area .share a {
  color: #d1d1d1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.news-area .social-media-feeds .like-area .share a:hover {
  color: #ccc;
}
.news-area .social-media-feeds .social-content-area {
  padding: 0 20px;
  margin: 0;
  color: #d1d1d1;
  height: 200px;
}
@media (max-width: 1599px) {
  .news-area .social-media-feeds .social-content-area {
    height: 230px;
  }
}
@media (max-width: 1199px) {
  .news-area .social-media-feeds .social-content-area {
    height: 180px;
  }
}
@media (max-width: 991px) {
  .news-area .social-media-feeds .social-content-area {
    height: 250px;
  }
}
@media (max-width: 639px) {
  .news-area .social-media-feeds .social-content-area {
    height: 200px;
  }
}
.news-area .social-media-feeds .social-content-area h6 a {
  font-weight: 400;
  font-size: 17px;
  text-decoration: none;
  color: #9DC33B;
}
.news-area .social-media-feeds .social-content-area p a {
  font-size: 14px;
  text-decoration: none;
  color: #d1d1d1;
}
.news-area .social-media-feeds .social-content-area .social-read-more {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 15px;
}
.news-area .social-media-feeds .social-content-area .social-read-more i {
  padding-left: 7px;
  font-size: 18px;
  color: #9DC33B;
}

.pro-all-search-news {
  display: flex;
  justify-content: end;
  margin: 0 0 40px 0;
  padding: 0 !important;
}
.pro-all-search-news .pro-all-search {
  padding: 0 !important;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 639px) {
  .pro-all-search-news .pro-all-search {
    margin: 5px 0;
  }
}
.pro-all-search-news .pro-all-search .form-inline {
  width: 100%;
  display: flex;
  flex-direction: row !important;
}
.pro-all-search-news .pro-all-search .form-inline .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.pro-all-search-news .pro-all-search .form-inline button {
  background: #9DC33B;
  color: #fff;
  padding: 5px 15px 5px 8px !important;
  border-radius: 5px !important;
  font-size: 16px !important;
}
@media (max-width: 639px) {
  .pro-all-search-news .pro-all-search .form-inline button {
    margin: 0 0 0 5px;
  }
}
.pro-all-search-news .pro-all-search .form-inline .btn::before {
  background: none !important;
}
.pro-all-search-news .pro-all-search .form-inline .btn-outline-success:hover {
  color: #fff;
  background-color: #232323;
  border-color: #ffffff !important;
}
.pro-all-search-news .pro-all-search a {
  font-size: 16px !important;
  color: #9DC33B !important;
}

.newsLetter-area {
  padding: 50px 0 40px 0;
  background: #232323;
  margin-bottom: 50px;
}
@media (max-width: 639px) {
  .newsLetter-area {
    padding: 40px 0;
    margin-bottom: 20px;
  }
}
.newsLetter-area h2 {
  color: #fff;
  font-size: 2.2rem;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .newsLetter-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .newsLetter-area h2 {
    font-size: 2rem;
    font-weight: 500;
  }
}
@media (max-width: 639px) {
  .newsLetter-area h2 {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.newsLetter-area p {
  color: #fff;
}
.newsLetter-area .letter-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .newsLetter-area .letter-img {
    display: none;
  }
}
@media (max-width: 639px) {
  .newsLetter-area .letter-img {
    display: none;
  }
}
.newsLetter-area .letter-img img {
  width: 60%;
}
@media (max-width: 1199px) {
  .newsLetter-area .letter-img img {
    width: 90%;
  }
}

.newsArea {
  padding: 70px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin: 30px 0 0 0;
}
@media (max-width: 1599px) {
  .newsArea {
    padding: 50px 0 50px 0;
    margin: 30px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .newsArea {
    padding: 50px 0 40px 0;
    margin: 30px 0 0 0;
  }
}
@media (max-width: 991px) {
  .newsArea {
    padding: 20px 0 40px 0;
    margin: 0;
  }
}
@media (max-width: 639px) {
  .newsArea {
    padding: 10px 0 30px 0;
    margin: 0;
  }
}
.newsArea::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: url(../img/news-bg.jpg);
}
@media (max-width: 991px) {
  .newsArea::before {
    top: 50%;
    width: 100%;
    height: 50%;
  }
}
@media (max-width: 639px) {
  .newsArea::before {
    top: 31%;
    width: 100%;
    height: 69%;
  }
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box {
    padding-top: 0px;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box {
    padding-top: 30px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box {
    padding-top: 30px;
  }
}
.newsArea .newsHome-box .newsHome {
  margin: 0 50px 0 0;
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box .newsHome {
    margin: 50px 20px 0 0px;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .newsHome {
    margin: 50px 0 0 0px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .newsHome {
    margin: 30px 0 0 0px;
  }
}
.newsArea .newsHome-box .newsHome img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 50px 0 0 0;
}
@media (max-width: 1599px) {
  .newsArea .newsHome-box .newsHome img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box .newsHome img {
    height: auto;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .newsHome img {
    height: auto;
    margin: 10px 0 60px 0;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .newsHome img {
    height: auto;
  }
}
.newsArea .newsHome-box .newsHome .swiper-button-next {
  transform: translateX(-50px);
  right: -40px !important;
}
.newsArea .newsHome-box .newsHome .swiper-button-next:after,
.newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-prev:after {
  content: "next";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9DC33B;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 45% 50%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 45% 50%, 0% 0%);
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .newsHome .swiper-button-next:after,
  .newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-prev:after {
    width: 20px;
    height: 30px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .newsHome .swiper-button-next:after,
  .newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-prev:after {
    width: 13px;
    height: 22px;
  }
}
.newsArea .newsHome-box .newsHome .swiper-button-prev:after,
.newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9DC33B;
  -webkit-clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 100% 100%, 0% 50%, 100% 0%);
          clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 100% 100%, 0% 50%, 100% 0%);
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .newsHome .swiper-button-prev:after,
  .newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-next:after {
    width: 20px;
    height: 30px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .newsHome .swiper-button-prev:after,
  .newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-next:after {
    width: 13px;
    height: 22px;
  }
}
.newsArea .newsHome-box ul li {
  margin: 0 0 30px 0;
}
@media (max-width: 991px) {
  .newsArea .newsHome-box ul li {
    width: 47%;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box ul li {
    width: 100%;
  }
}
.newsArea .newsHome-box h3 {
  color: #d1d1d1;
  font-size: 32px;
  margin: 0 0 40px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box h3 {
    font-size: 30px;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box h3 {
    font-size: 26px;
    margin: 0 0 30px 0;
  }
}
.newsArea .newsHome-box h3::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 2px;
  height: 3px;
  width: 80px;
  background: #9DC33B;
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box h3::after {
    top: 38px;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box h3::after {
    top: 34px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box h3::after {
    top: 32px;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .fairs-events .news-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 0 0;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .fairs-events .news-sec {
    display: inline;
  }
}
.newsArea .newsHome-box .fairs-events h3 {
  color: #d1d1d1;
  font-size: 32px;
  margin: 0 0 40px 0;
  position: relative;
  left: 36px;
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box .fairs-events h3 {
    font-size: 30px;
    margin: 0px 0 30px 0;
    left: 6px;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .fairs-events h3 {
    font-size: 28px;
    margin: 40px 0 0px 0;
    left: 0px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .fairs-events h3 {
    font-size: 26px;
    margin: 40px 0 0px 0;
    left: 0px;
  }
}
.newsArea .newsHome-box .fairs-events h3::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 2px;
  height: 3px;
  width: 80px;
  background: #9DC33B;
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box .fairs-events h3::after {
    top: 38px;
    left: 2px;
    width: 75px;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box .fairs-events h3::after {
    top: 34px;
    left: 2px;
    width: 70px;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box .fairs-events h3::after {
    top: 32px;
    left: 2px;
    width: 60px;
  }
}
.newsArea .newsHome-box.news-latest {
  padding: 120px 0 0 0;
}
@media (max-width: 1599px) {
  .newsArea .newsHome-box.news-latest {
    padding: 120px 0 0px 0;
  }
}
@media (max-width: 1199px) {
  .newsArea .newsHome-box.news-latest {
    padding: 80px 0 0px 0;
  }
}
@media (max-width: 991px) {
  .newsArea .newsHome-box.news-latest {
    padding: 80px 0 70px 0;
  }
}
@media (max-width: 639px) {
  .newsArea .newsHome-box.news-latest {
    padding: 50px 0 10px 0;
  }
}
.newsArea .latestNews .swiper-button-prev {
  transform: translateX(50px);
  left: -50px !important;
}
.newsArea .latestNews .swiper-slide img {
  width: 100%;
  height: 280px;
}
@media (max-width: 1599px) {
  .newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 220px;
  }
}
@media (max-width: 991px) {
  .newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 260px;
  }
}
@media (max-width: 639px) {
  .newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 280px;
  }
}
.newsArea .latestNews .swiper-slide h4 {
  margin: 15px 0 10px 5px;
}
.newsArea .latestNews .swiper-slide h4 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
}
.newsArea .latestNews .swiper-slide h4:hover {
  text-decoration: none;
}
.newsArea .latestNews .swiper-slide h6 {
  margin: 0px;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0px;
  background: #9dc33b;
  padding: 7px 10px;
}
.newsArea .latestNews .swiper-slide h6:hover {
  color: #0c0c0c;
  font-weight: 400;
  text-decoration: none;
  background: #ffffff;
}
.newsArea .latestNews .swiper-slide .box {
  text-align: center;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.newsArea .latestNews .swiper-slide .box:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 69%, rgba(0, 0, 0, 0.76) 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}
.newsArea .latestNews .swiper-slide .box:hover:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.09) 11%, rgba(0, 0, 0, 0.12) 13%, rgba(0, 0, 0, 0.19) 20%, rgba(0, 0, 0, 0.29) 28%, rgba(0, 0, 0, 0.29) 29%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.46) 43%, rgba(0, 0, 0, 0.53) 47%, rgba(0, 0, 0, 0.75) 69%, rgba(0, 0, 0, 0.87) 84%, rgba(0, 0, 0, 0.98) 99%, rgba(0, 0, 0, 0.94) 100%);
}
.newsArea .latestNews .swiper-slide .box:hover .box-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
.newsArea .latestNews .swiper-slide .box img {
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1599px) {
  .newsArea .latestNews .swiper-slide .box img {
    height: 260px;
  }
}
@media (max-width: 1199px) {
  .newsArea .latestNews .swiper-slide .box img {
    height: 230px;
  }
}
@media (max-width: 991px) {
  .newsArea .latestNews .swiper-slide .box img {
    height: 260px;
  }
}
@media (max-width: 639px) {
  .newsArea .latestNews .swiper-slide .box img {
    height: 220px;
  }
}
.newsArea .latestNews .swiper-slide .box .box-content {
  width: 100%;
  padding: 20px;
  margin-bottom: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 1;
}
.newsArea .latestNews .swiper-slide .box .box-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4784313725);
}
.newsArea .latestNews .swiper-slide .box .title1 {
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  transform: translateY(145px);
  transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .newsArea .latestNews .swiper-slide .box .title1 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .newsArea .latestNews .swiper-slide .box .title1 {
    font-size: 20px;
  }
}
.newsArea .latestNews .swiper-slide .box .title1 span {
  font-size: 18px;
  color: #9DC33B;
}
.newsArea .latestNews .swiper-slide .box .post {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  transform: translateY(145px);
  transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}
.newsArea .latestNews .swiper-slide .box:hover .title1,
.newsArea .latestNews .swiper-slide .box:hover .post {
  transform: translateY(0);
}
.newsArea .latestNews .swiper-slide .box .social {
  list-style: none;
  padding: 0 0 5px 0;
  margin: 30px 0 25px;
  opacity: 0;
  position: relative;
  transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s;
  z-index: 999;
}
.newsArea .latestNews .swiper-slide .box:hover .social {
  opacity: 1;
  transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
.newsArea .latestNews .swiper-slide .box .social:before {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
}
.newsArea .latestNews .swiper-slide .box .social li {
  display: inline-block;
}
@media (max-width: 991px) {
  .newsArea .latestNews .swiper-slide .box .social li {
    width: 100%;
  }
}
.newsArea .latestNews .swiper-slide .box .social li a {
  display: block;
  width: 100%;
  height: 34px;
  line-height: 34px;
  background: #9DC33B;
  padding: 0 10px;
  font-size: 15px;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease 0s;
}
.newsArea .latestNews .swiper-slide .box .social li a:hover {
  background: #5e7c0a;
}
.newsArea .latestNews .swiper-slide .box .social li:last-child a {
  margin-right: 0;
}
@media only screen and (max-width: 990px) {
  .newsArea .latestNews .swiper-slide .box {
    margin-bottom: 30px;
  }
}
.newsArea .section-title {
  position: relative;
}
.newsArea .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 2.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: auto;
}
@media (max-width: 1199px) {
  .newsArea .section-title h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .newsArea .section-title h2 {
    font-size: 2rem;
    top: 15px;
    margin: 0 0 40px 0;
  }
}
@media (max-width: 639px) {
  .newsArea .section-title h2 {
    font-size: 1.6rem;
    top: 18px;
    margin: 0 0 40px 0;
  }
}
.newsArea .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.newsArea .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.newsArea .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 7rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.371);
  opacity: 0.5;
}
@media (max-width: 1199px) {
  .newsArea .section-title .text-hide {
    font-size: 5.5rem;
  }
}
@media (max-width: 991px) {
  .newsArea .section-title .text-hide {
    font-size: 5rem;
    top: 30px;
  }
}
@media (max-width: 639px) {
  .newsArea .section-title .text-hide {
    font-size: 3rem;
    top: 25px;
  }
}
.newsArea .container {
  overflow: initial;
}
@media (max-width: 1599px) {
  .newsArea .container {
    overflow: initial;
  }
}
@media (max-width: 1199px) {
  .newsArea .container {
    overflow: initial;
  }
}
@media (max-width: 991px) {
  .newsArea .container {
    overflow: hidden;
  }
}
@media (max-width: 639px) {
  .newsArea .container {
    overflow: hidden;
  }
}

.latest-newsArea {
  padding: 140px 0 100px 0;
  background: #232323;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .latest-newsArea {
    padding: 60px 0 40px 0;
  }
}
@media (max-width: 991px) {
  .latest-newsArea {
    padding: 50px 0 30px 0;
  }
}
@media (max-width: 639px) {
  .latest-newsArea {
    padding: 40px 0 30px 0;
  }
}
.latest-newsArea .newsHome-box {
  padding-top: 130px;
}
.latest-newsArea .newsHome-box .newsHome img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1599px) {
  .latest-newsArea .newsHome-box .newsHome img {
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .newsHome-box .newsHome img {
    height: 490px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box .newsHome img {
    height: 400px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box .newsHome img {
    height: 400px;
  }
}
.latest-newsArea .newsHome-box .newsHome .swiper-button-next {
  transform: translateX(-50px);
  right: -40px !important;
}
.latest-newsArea .newsHome-box .newsHome .swiper-button-next:after,
.latest-newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-prev:after {
  content: "next";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9DC33B;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 45% 50%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 45% 50%, 0% 0%);
}
.latest-newsArea .newsHome-box .newsHome .swiper-button-prev:after,
.latest-newsArea .newsHome-box .newsHome .swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9DC33B;
  -webkit-clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 100% 100%, 0% 50%, 100% 0%);
          clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 100% 100%, 0% 50%, 100% 0%);
}
.latest-newsArea .newsHome-box ul li {
  margin: 0 0 30px 0;
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box ul li {
    width: 47%;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box ul li {
    width: 100%;
  }
}
.latest-newsArea .newsHome-box h3 {
  color: #d1d1d1;
  font-size: 32px;
  margin: 0 0 40px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .latest-newsArea .newsHome-box h3 {
    font-size: 30px;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box h3 {
    font-size: 26px;
    margin: 0 0 30px 0;
  }
}
.latest-newsArea .newsHome-box h3::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 2px;
  height: 3px;
  width: 80px;
  background: #9DC33B;
}
@media (max-width: 1199px) {
  .latest-newsArea .newsHome-box h3::after {
    top: 38px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box h3::after {
    top: 34px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box h3::after {
    top: 32px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box .fairs-events .news-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 0 0;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box .fairs-events .news-sec {
    display: inline;
  }
}
.latest-newsArea .newsHome-box .fairs-events h3 {
  color: #d1d1d1;
  font-size: 32px;
  margin: 0 0 40px 0;
  position: relative;
  left: 36px;
}
@media (max-width: 1199px) {
  .latest-newsArea .newsHome-box .fairs-events h3 {
    font-size: 30px;
    margin: 0px 0 30px 0;
    left: 6px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box .fairs-events h3 {
    font-size: 28px;
    margin: 40px 0 0px 0;
    left: 0px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box .fairs-events h3 {
    font-size: 26px;
    margin: 40px 0 0px 0;
    left: 0px;
  }
}
.latest-newsArea .newsHome-box .fairs-events h3::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 2px;
  height: 3px;
  width: 80px;
  background: #9DC33B;
}
@media (max-width: 1199px) {
  .latest-newsArea .newsHome-box .fairs-events h3::after {
    top: 38px;
    left: 2px;
    width: 75px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box .fairs-events h3::after {
    top: 34px;
    left: 2px;
    width: 70px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box .fairs-events h3::after {
    top: 32px;
    left: 2px;
    width: 60px;
  }
}
.latest-newsArea .newsHome-box.news-latest {
  padding: 120px 0 0 0;
}
@media (max-width: 1599px) {
  .latest-newsArea .newsHome-box.news-latest {
    padding: 120px 0 0px 0;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .newsHome-box.news-latest {
    padding: 100px 0 0px 0;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .newsHome-box.news-latest {
    padding: 100px 0 0px 0;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .newsHome-box.news-latest {
    padding: 80px 0 10px 0;
  }
}
.latest-newsArea .latestNews .swiper-button-prev {
  transform: translateX(50px);
  left: -50px !important;
}
.latest-newsArea .latestNews .swiper-slide img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1599px) {
  .latest-newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 210px;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 210px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 230px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .latestNews .swiper-slide img {
    width: 100%;
    height: 260px;
  }
}
.latest-newsArea .latestNews .swiper-slide h4 {
  margin: 15px 0 10px 5px;
}
.latest-newsArea .latestNews .swiper-slide h4 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
}
.latest-newsArea .latestNews .swiper-slide h4:hover {
  text-decoration: none;
}
.latest-newsArea .latestNews .swiper-slide h6 {
  margin: 0px;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0px;
  background: #9dc33b;
  padding: 7px 10px;
}
.latest-newsArea .latestNews .swiper-slide h6:hover {
  color: #0c0c0c;
  font-weight: 400;
  text-decoration: none;
  background: #ffffff;
}
.latest-newsArea .latestNews .swiper-slide .box {
  text-align: center;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.latest-newsArea .latestNews .swiper-slide .box:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 69%, rgba(0, 0, 0, 0.76) 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}
.latest-newsArea .latestNews .swiper-slide .box:hover:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.09) 11%, rgba(0, 0, 0, 0.12) 13%, rgba(0, 0, 0, 0.19) 20%, rgba(0, 0, 0, 0.29) 28%, rgba(0, 0, 0, 0.29) 29%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.46) 43%, rgba(0, 0, 0, 0.53) 47%, rgba(0, 0, 0, 0.75) 69%, rgba(0, 0, 0, 0.87) 84%, rgba(0, 0, 0, 0.98) 99%, rgba(0, 0, 0, 0.94) 100%);
}
.latest-newsArea .latestNews .swiper-slide .box:hover .box-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
.latest-newsArea .latestNews .swiper-slide .box img {
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1599px) {
  .latest-newsArea .latestNews .swiper-slide .box img {
    height: 260px;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .latestNews .swiper-slide .box img {
    height: 230px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .latestNews .swiper-slide .box img {
    height: 260px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .latestNews .swiper-slide .box img {
    height: 220px;
  }
}
.latest-newsArea .latestNews .swiper-slide .box .box-content {
  width: 100%;
  padding: 20px;
  margin-bottom: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 1;
}
.latest-newsArea .latestNews .swiper-slide .box .box-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4784313725);
}
.latest-newsArea .latestNews .swiper-slide .box .title1 {
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  transform: translateY(145px);
  transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .latest-newsArea .latestNews .swiper-slide .box .title1 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .latestNews .swiper-slide .box .title1 {
    font-size: 20px;
  }
}
.latest-newsArea .latestNews .swiper-slide .box .title1 span {
  font-size: 18px;
  color: #9DC33B;
}
.latest-newsArea .latestNews .swiper-slide .box .post {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  transform: translateY(145px);
  transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}
.latest-newsArea .latestNews .swiper-slide .box:hover .title1,
.latest-newsArea .latestNews .swiper-slide .box:hover .post {
  transform: translateY(0);
}
.latest-newsArea .latestNews .swiper-slide .box .social {
  list-style: none;
  padding: 0 0 5px 0;
  margin: 30px 0 25px;
  opacity: 0;
  position: relative;
  transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s;
  z-index: 999;
}
.latest-newsArea .latestNews .swiper-slide .box:hover .social {
  opacity: 1;
  transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
.latest-newsArea .latestNews .swiper-slide .box .social:before {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
}
.latest-newsArea .latestNews .swiper-slide .box .social li {
  display: inline-block;
}
@media (max-width: 991px) {
  .latest-newsArea .latestNews .swiper-slide .box .social li {
    width: 100%;
  }
}
.latest-newsArea .latestNews .swiper-slide .box .social li a {
  display: block;
  width: 100%;
  height: 34px;
  line-height: 34px;
  background: #9DC33B;
  padding: 0 10px;
  font-size: 15px;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease 0s;
}
.latest-newsArea .latestNews .swiper-slide .box .social li a:hover {
  background: #5e7c0a;
}
.latest-newsArea .latestNews .swiper-slide .box .social li:last-child a {
  margin-right: 0;
}
@media only screen and (max-width: 990px) {
  .latest-newsArea .latestNews .swiper-slide .box {
    margin-bottom: 30px;
  }
}
.latest-newsArea .section-title {
  position: relative;
}
.latest-newsArea .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
@media (max-width: 1599px) {
  .latest-newsArea .section-title h2 {
    font-size: 3.5rem;
    top: 20px;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .section-title h2 {
    font-size: 2.9rem;
    top: 20px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .section-title h2 {
    font-size: 2.7rem;
    top: 20px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .section-title h2 {
    font-size: 2.2rem;
    top: 18px;
  }
}
.latest-newsArea .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.latest-newsArea .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.latest-newsArea .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.371);
  opacity: 0.5;
}
@media (max-width: 1199px) {
  .latest-newsArea .section-title .text-hide {
    font-size: 7rem;
    top: 43px;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .section-title .text-hide {
    font-size: 6rem;
    top: 35px;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .section-title .text-hide {
    font-size: 6rem;
    top: 34px;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .section-title .text-hide {
    font-size: 4.2rem;
    top: 25px;
  }
}
.latest-newsArea .container {
  overflow: initial;
}
@media (max-width: 1599px) {
  .latest-newsArea .container {
    overflow: initial;
  }
}
@media (max-width: 1199px) {
  .latest-newsArea .container {
    overflow: initial;
  }
}
@media (max-width: 991px) {
  .latest-newsArea .container {
    overflow: hidden;
  }
}
@media (max-width: 639px) {
  .latest-newsArea .container {
    overflow: hidden;
  }
}

.news-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .news-area {
    padding: 60px 0 30px 0;
  }
}
.news-area .social-feeds {
  padding: 0 0px;
  margin-bottom: 50px;
  height: 600px;
  overflow-x: scroll;
}
.news-area .social-feeds iframe {
  width: 100%;
}
.news-area .social-feeds h2 {
  background: rgba(157, 195, 59, 0.1019607843);
  padding: 10px 30px;
  border-radius: 10px 0px 0px 0px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 25px;
  border: 2px solid #9dc33b;
}

.product-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .product-area {
    padding: 60px 0 30px 0;
  }
}
.product-area .left-filter {
  background: #191F07;
  padding: 45px 25px;
}
@media (max-width: 1599px) {
  .product-area .left-filter {
    padding: 40px 30px 30px 30px;
  }
}
@media (max-width: 1199px) {
  .product-area .left-filter {
    padding: 30px 20px 30px 20px;
  }
}
@media (max-width: 991px) {
  .product-area .left-filter {
    padding: 50px 30px 30px 30px;
  }
}
@media (max-width: 639px) {
  .product-area .left-filter {
    padding: 50px 30px 30px 30px;
  }
}
.product-area .left-filter .pro-all-search {
  padding: 0 !important;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 10px;
}
.product-area .left-filter .pro-all-search .form-inline {
  width: 100%;
  display: flex;
  flex-direction: row !important;
}
.product-area .left-filter .pro-all-search .form-inline .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.product-area .left-filter .pro-all-search .form-inline button {
  background: #9DC33B;
  color: #fff;
  padding: 5px 8px 5px 8px !important;
  border-radius: 5px !important;
  font-size: 16px !important;
}
.product-area .left-filter .pro-all-search .form-inline .btn::before {
  background: none;
}
.product-area .left-filter .pro-all-search .form-inline .btn-outline-success:hover {
  color: #fff;
  background-color: #232323;
  border-color: #ffffff !important;
}
.product-area .left-filter .accordian .transition,
.product-area .left-filter .accordian .artlist,
.product-area .left-filter .accordian ul li i:before,
.product-area .left-filter .accordian ul li i:after {
  transition: all 0.25s ease-in-out;
}
.product-area .left-filter .accordian {
  position: relative;
  margin-top: 30px;
}
.product-area .left-filter .accordian span {
  position: absolute;
  top: 0;
  right: 0;
}
.product-area .left-filter .accordian span a {
  font-size: 16px;
  color: #9DC33B;
}
.product-area .left-filter .accordian .no-select,
.product-area .left-filter .accordian h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.product-area .left-filter .accordian h3 {
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  font-size: 15px;
  color: #d1d1d1;
}
.product-area .left-filter .accordian h4 {
  color: #fff;
  text-align: left;
  padding: 0px 0 5px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #3a4244;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .product-area .left-filter .accordian h4 {
    padding: 30px 0 15px 0;
  }
}
@media (max-width: 991px) {
  .product-area .left-filter .accordian h4 {
    padding: 20px 0 15px 0;
  }
}
@media (max-width: 639px) {
  .product-area .left-filter .accordian h4 {
    padding: 10px 0 15px 0;
  }
}
.product-area .left-filter .accordian .artlist {
  font-size: 17px;
  position: relative;
  z-index: 2;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin: 14px 0;
  overflow-x: scroll;
}
.product-area .left-filter .accordian .form-check-label {
  margin-bottom: 0;
  color: #fff;
}
.product-area .left-filter .accordian ul {
  list-style: none !important;
  perspective: 900;
  padding: 0;
  margin: 0;
}
.product-area .left-filter .accordian ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #3a4244;
}
.product-area .left-filter .accordian ul li:nth-of-type(1) {
  animation-delay: 0.5s;
  border-top: none;
}
.product-area .left-filter .accordian ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.product-area .left-filter .accordian ul li:nth-of-type(3) {
  animation-delay: 1s;
}
.product-area .left-filter .accordian ul li:last-of-type {
  padding-bottom: 0;
}
.product-area .left-filter .accordian ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 3px;
  right: 0;
}
.product-area .left-filter .accordian ul li i:before,
.product-area .left-filter ul li i:after {
  content: "";
  position: absolute;
  background-color: #9DC33B;
  width: 3px;
  height: 9px;
}
.product-area .left-filter .accordian ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.product-area .left-filter .accordian ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.product-area .left-filter .accordian ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.product-area .left-filter .accordian ul li input[type=checkbox]:checked ~ .artlist {
  font-size: 17px;
  position: relative;
  z-index: 2;
  max-height: 240px;
  opacity: 1;
  transform: translate(0, 0);
  margin: 14px 0;
  overflow-x: scroll;
}
.product-area .left-filter .accordian ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
.product-area .left-filter .accordian ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
.product-area .grid-list-box {
  padding: 10px 0px 0 40px;
}
@media (max-width: 1199px) {
  .product-area .grid-list-box {
    padding: 0 40px 0 40px;
  }
}
@media (max-width: 991px) {
  .product-area .grid-list-box {
    padding: 0 40px 0 40px;
  }
}
@media (max-width: 639px) {
  .product-area .grid-list-box {
    padding: 60px 20px 40px 20px;
  }
}
.product-area .grid-list-box .baseline {
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .product-area .grid-list-box .baseline {
    padding: 0 10px 0 20px;
  }
}
@media (max-width: 991px) {
  .product-area .grid-list-box .baseline {
    padding: 0 10px 0 20px;
  }
}
@media (max-width: 639px) {
  .product-area .grid-list-box .baseline {
    padding: 0 10px 0 20px;
  }
}
.product-area .grid-list-box h6 {
  color: #d1d1d1;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 0px;
  line-height: 22px;
}
.product-area .grid-list-box h6 a {
  text-decoration: none;
  color: #d1d1d1;
}
.product-area .grid-list-box h6 .desable {
  pointer-events: none;
}
.product-area .grid-list-box h6 i {
  color: #9DC33B;
  font-size: 12px;
  padding: 0 7px;
}
.product-area .grid-list-box a {
  color: #fff !important;
  text-decoration: none;
}
.product-area .grid-list-box a:hover {
  color: #fff !important;
  text-decoration: none;
}
.product-area .grid-list-box h2 {
  color: #d1d1d1;
  font-size: 2.5rem;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .product-area .grid-list-box h2 {
    font-size: 1.5rem;
  }
}
.product-area .grid-list-box .sort-area {
  margin-bottom: 20px;
  display: flex;
  justify-content: end;
}
.product-area .grid-list-box .sort-area .sort {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 639px) {
  .product-area .grid-list-box .sort-area .sort {
    padding: 0 20px;
  }
}
.product-area .grid-list-box .sort-area .sort h6 i {
  color: #9DC33B;
  font-size: 16px;
  padding-right: 15px;
}
.product-area .grid-list-box .sort-area .sort button,
.product-area .grid-list-box .sort-area .sort select {
  text-transform: none;
  padding: 7px 50px 7px 20px;
  border-radius: 7px;
  background: #232323;
  border: 1px solid rgba(157, 195, 59, 0.3411764706);
  color: #d1d1d1;
  font-size: 14px;
}
.product-area .grid-list-box .sort-area .sort button :focus-visible,
.product-area .grid-list-box .sort-area .sort select :focus-visible {
  border: none !important;
}
.product-area .grid-list-box .srt-line {
  position: relative;
}
@media (max-width: 991px) {
  .product-area .grid-list-box .srt-line {
    display: none;
  }
}
@media (max-width: 639px) {
  .product-area .grid-list-box .srt-line {
    display: none;
  }
}
.product-area .grid-list-box .srt-line::before {
  position: absolute;
  content: "";
  top: 52px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #9DC33B;
}
.product-area .grid-list-box .next-prev ul {
  margin-top: 50px;
}
.product-area .grid-list-box .next-prev ul li a {
  color: #fff;
}
.product-area .grid-list-box .next-prev ul li a:hover {
  text-decoration: none;
}
.product-area .grid-list-box .next-prev ul li a i {
  color: #9DC33B;
}
.product-area .grid-list-box .pagi-nation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 50px 0;
}
.product-area .grid-list-box .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #9dc33a !important;
  border-color: #9dc33a !important;
}
.product-area .grid-list-box .page-link {
  color: #1a1a1a !important;
}
.product-area .grid-list-box .brand-tags-box {
  border: 1px solid #414141;
  border-radius: 5px;
  padding: 15px;
  background-color: #191f07;
  margin-top: 15px;
}
.product-area .grid-list-box .brand-tags-box .brand-tags-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.product-area .grid-list-box .brand-tags-box .brand-tags-title button {
  background-color: #4c4c4b;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
}
.product-area .grid-list-box .brand-tags-box .brand-tags {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.product-area .grid-list-box .brand-tags-box .brand-tags li {
  list-style: none;
  padding: 5px 0px 5px 10px;
  border-radius: 4px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  background: #9dc33a;
}
.product-area .grid-list-box .brand-tags-box .brand-tags li button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #2b2b2b;
  font-size: 14px;
  width: 30px;
}
.product-area select.form-control:not([size]):not([multiple]) {
  height: 40px !important;
  margin-bottom: 15px !important;
}
.product-area .form-control {
  display: block;
  width: 100% !important;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background: no-repeat;
  background-clip: padding-box;
  border-bottom: 1px solid #393e25;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.product-area .form-check-box {
  height: 150px;
  overflow-y: auto;
  overflow-x: clip;
  margin: 40px 0 30px 0;
}

.navbar {
  padding: 30px 0 10px 0 !important;
}

.form-inline {
  flex-flow: initial !important;
}
@media (max-width: 991px) {
  .form-inline {
    flex-direction: column !important;
    justify-content: left !important;
    align-items: baseline !important;
  }
}
.form-inline button {
  background: #9DC33B;
  color: #222;
  padding: 5px 10px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  border: 1px solid #4c4b4b;
  cursor: pointer;
}
@media (max-width: 991px) {
  .form-inline button {
    margin-top: 10px !important;
  }
}

.range-wrap {
  margin: 50px 0 20px 0;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .range-wrap {
    margin: 50px 0 0px 0;
  }
}
.range-wrap h6 {
  margin: 0;
  padding: 0 0 30px 0;
}

input[type=range] {
  -webkit-appearance: none;
  margin: 20px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: #232323;
  border-radius: 25px;
}

input[type=range]::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgb(0, 0, 0);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #232323;
}

.range-value {
  position: absolute;
  top: 27%;
}

.range-value span {
  width: 30px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #232323;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}

.range-value span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #232323;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}

.button {
  margin: 0;
  background: #9dc33b;
  padding: 8px 15px 4px 14px;
  border-radius: 2em;
  color: #ffffff;
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid #9DC33B;
}

.button:hover {
  color: #fff;
  background: #293601;
  border: 1px solid #9DC33B;
}

.button i {
  margin-right: 4px;
  opacity: 1;
  font-size: 16px;
}

.button span {
  position: relative;
  top: -2px;
}

.download-cards {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -2rem;
  padding: 15px 0 0 0;
  border-left: 1px solid rgba(251, 251, 251, 0.2);
  border-top: 1px solid rgba(251, 251, 251, 0.2);
}

.download-card {
  display: flex;
  flex-direction: column;
  width: calc(100% - 1em);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2em;
  margin: 0 1em 2em;
  padding: 22px;
}
@media (max-width: 639px) {
  .download-card {
    margin: 0 0 50px 0;
    padding: 15px;
    width: auto;
  }
}

.download-card-img-box {
  overflow: hidden;
  cursor: pointer;
}

.download-card a.button {
  text-decoration: none;
  margin-top: 20px;
}

@media (min-width: 700px) {
  .download-cards[data-view=grid-view] .download-card {
    float: left;
    width: calc(100% - 2em);
  }
  .download-cards[data-view=grid-view] .download-card:nth-child(3) {
    clear: both;
  }
  .download-cards[data-view=grid-view] .download-card:nth-child(4) {
    clear: initial;
  }
}
@media (min-width: 700px) {
  .download-cards[data-view=list-view] .download-card {
    padding-left: 380px;
    height: 250px;
  }
}
@media (min-width: 1000px) {
  .download-cards[data-view=grid-view] .download-card {
    width: calc(50% - 2em);
  }
  .download-cards[data-view=grid-view] .download-card:nth-child(3) {
    clear: initial;
  }
  .download-cards[data-view=grid-view] .download-card:nth-child(4) {
    clear: both;
  }
}
@media only screen and (min-width: 1199px) and (max-width: 1600px) {
  .download-cards[data-view=grid-view] .download-card {
    width: calc(33.3333333333% - 2em);
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1920px) {
  .download-cards[data-view=grid-view] .download-card {
    width: calc(33.3333333333% - 2em);
  }
}
.download-card__image {
  display: flex;
  align-items: center;
  text-align: center;
  height: 200px;
  background-size: cover;
  transition: 0.3s ease-in-out all;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .download-card__image {
    height: 160px;
  }
}
@media (max-width: 1199px) {
  .download-card__image {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .download-card__image {
    height: 280px;
  }
}
@media (max-width: 639px) {
  .download-card__image {
    height: 280px;
  }
}
.download-card__image:hover {
  transform: scale(1.1) rotate(0deg);
}
.download-card__image img {
  width: 100%;
}

@media (min-width: 700px) {
  .download-card__image {
    justify-content: center;
  }
}
@media (min-width: 700px) {
  .download-cards[data-view=list-view] .download-card__image {
    width: 350px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
  }
  .download-cards[data-view=list-view] .mob-nmbr {
    display: block;
    text-decoration: none;
    padding: 5px 0 15px 0;
    color: #9DC33B;
    font-family: sans-serif;
    letter-spacing: 1px;
  }
}
.download-card__content {
  padding: 10px 0 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
.download-card__content .brand {
  color: #d1d1d1;
}
.download-card__content .mob-nmbr {
  display: none;
}
.download-card__content footer .button span {
  font-size: 15px !important;
  margin: 0;
}

.download-card__category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin: 0 0 1em;
  display: block;
  color: #fff;
}

.download-card__category::before {
  content: "|| ";
  color: #9DC33B;
}

.download-card__title {
  line-height: 24px;
  margin: 0 0 0.5em;
  padding: 5px 0 0 0;
  font-size: 16px;
  color: #d1d1d1;
}

.download-card__description {
  line-height: 1.5;
  padding: 0;
  margin: 0 0 1.5em;
  clear: both;
  color: #8b8e9c;
  font-size: 16px;
}

.dc-view-switcher {
  display: none;
  margin-bottom: 2em;
  margin-top: 42px;
  text-align: right;
}

@media (min-width: 700px) {
  .dc-view-switcher {
    display: block;
  }
}
.dc-view-switcher > button {
  font-family: "fontAwesome";
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  vertical-align: middle;
  color: #9DC33B;
  opacity: 0.3;
  outline: none;
  transition: opacity 0.4s ease;
  padding: 0;
}

.dc-view-switcher > button:nth-child(1) {
  margin-right: 0.5rem;
}

.dc-view-switcher > button[data-trigger=list-view]::before {
  content: "\f00b";
}

.dc-view-switcher > button[data-trigger=grid-view]::before {
  content: "\f009";
}

.dc-view-switcher > button[data-trigger].active {
  opacity: 1;
}

.home-product-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .home-product-area {
    padding: 60px 0 30px 0;
  }
}
.home-product-area .section-title {
  position: relative;
}
.home-product-area .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .home-product-area .section-title h2 {
    font-size: 2.9rem;
  }
}
@media (max-width: 991px) {
  .home-product-area .section-title h2 {
    font-size: 2.7rem;
  }
}
@media (max-width: 639px) {
  .home-product-area .section-title h2 {
    font-size: 2.2rem;
  }
}
.home-product-area .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.home-product-area .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.home-product-area .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 9rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.368627451);
  opacity: 0.3;
}
@media (max-width: 1199px) {
  .home-product-area .section-title .text-hide {
    font-size: 6rem;
  }
}
@media (max-width: 991px) {
  .home-product-area .section-title .text-hide {
    font-size: 7rem;
  }
}
@media (max-width: 639px) {
  .home-product-area .section-title .text-hide {
    font-size: 4.2rem;
  }
}
.home-product-area .main-product {
  padding: 150px 0 0 0;
}
@media (max-width: 1599px) {
  .home-product-area .main-product {
    padding: 120px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .home-product-area .main-product {
    padding: 110px 0 0 0;
  }
}
@media (max-width: 991px) {
  .home-product-area .main-product {
    padding: 120px 0 0 0;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product {
    padding: 90px 0 0 0;
  }
}
.home-product-area .main-product .gap {
  gap: 10px;
}
@media (max-width: 1199px) {
  .home-product-area .main-product .gap {
    gap: 0px;
  }
}
.home-product-area .main-product .home-pro-img {
  position: relative;
}
.home-product-area .main-product .home-pro-img img {
  width: 100%;
  border-radius: 16px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
@media (max-width: 1599px) {
  .home-product-area .main-product .home-pro-img img {
    height: 160px;
  }
}
@media (max-width: 1199px) {
  .home-product-area .main-product .home-pro-img img {
    height: 260px;
  }
}
@media (max-width: 991px) {
  .home-product-area .main-product .home-pro-img img {
    height: 280px;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .home-pro-img img {
    height: auto;
  }
}
.home-product-area .main-product .home-pro-img h3 {
  position: absolute;
  top: 150px;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1599px) {
  .home-product-area .main-product .home-pro-img h3 {
    top: 90px;
    font-size: 2.2rem;
  }
}
@media (max-width: 1199px) {
  .home-product-area .main-product .home-pro-img h3 {
    top: 200px;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .home-pro-img h3 {
    top: 190px;
  }
}
.home-product-area .main-product .home-pro-img .home-pro-pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0 0;
}
@media (max-width: 1199px) {
  .home-product-area .main-product .home-pro-img .home-pro-pdf {
    margin: 20px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .home-product-area .main-product .home-pro-img .home-pro-pdf {
    margin: 20px 0 50px 0;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .home-pro-img .home-pro-pdf {
    margin: 20px 0 30px 0;
  }
}
.home-product-area .main-product .home-pro-img .home-pro-pdf a {
  padding: 9px 18px !important;
  font-size: 14px !important;
}
.home-product-area .main-product .home-pro-img h4 {
  text-align: center;
  color: #fff;
  margin: 14px 0 0 0;
  font-size: 16px !important;
}
@media (max-width: 639px) {
  .home-product-area .main-product .home-pro-details {
    margin-top: 20px;
  }
}
.home-product-area .main-product .home-pro-details h3 {
  color: #d1d1d1;
  font-size: 32px;
}
@media (max-width: 639px) {
  .home-product-area .main-product .home-pro-details h3 {
    font-size: 26px;
  }
}
.home-product-area .main-product .home-pro-details h3::after {
  content: "";
  position: absolute;
  top: 82px;
  bottom: 0;
  left: 15px;
  height: 3px;
  width: 80px;
  background: #9DC33B;
}
.home-product-area .main-product .home-pro-details p {
  color: #d1d1d1;
  padding: 20px 0 0 0;
  line-height: 28px;
}
.home-product-area .main-product .find-pro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
@media (max-width: 991px) {
  .home-product-area .main-product .find-pro {
    margin-top: 50px;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
}
.home-product-area .main-product .find-pro h4 {
  font-size: 2rem;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .home-product-area .main-product .find-pro h4 {
    display: flex;
    font-size: 1.3rem;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro h4 {
    display: flex;
  }
}
.home-product-area .main-product .find-pro span {
  display: block;
}
.home-product-area .main-product .find-pro .s-box {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .home-product-area .main-product .find-pro .form-inline {
    display: flex;
    flex-direction: row !important;
  }
}
.home-product-area .main-product .find-pro .form-inline .form-control {
  display: block;
  width: 360px !important;
  padding: 10px 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (max-width: 991px) {
  .home-product-area .main-product .find-pro .form-inline .form-control {
    width: 280px !important;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro .form-inline .form-control {
    width: 300px !important;
  }
}
.home-product-area .main-product .find-pro .form-inline button {
  background: #9DC33B;
  color: #fff !important;
  padding: 9px !important;
  border-radius: 5px !important;
  font-size: 16px !important;
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro .form-inline button {
    margin-left: 10px;
  }
}
.home-product-area .main-product .find-pro .form-inline .btn-outline-success:hover {
  color: #fff;
  background-color: #232323;
  border-color: #ffffff !important;
}
.home-product-area .main-product .find-pro .form-inline .btn::before {
  z-index: -1;
}
.home-product-area .main-product .find-pro .search-box {
  position: relative;
  top: 0px;
  margin: 0 30px;
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro .search-box {
    padding: 0px 0 10px 0;
    margin: 0px;
  }
}
.home-product-area .main-product .find-pro .search-box input[type=text] {
  margin: 5px 40px 0 0px;
  padding: 20px 20px;
  width: 380px;
  border-radius: 40px;
}
@media (max-width: 991px) {
  .home-product-area .main-product .find-pro .search-box input[type=text] {
    width: 280px;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro .search-box input[type=text] {
    width: 250px;
    padding: 10px 10px;
  }
}
.home-product-area .main-product .find-pro .search-box ul {
  list-style: none;
  padding: 0px;
  width: 84%;
  position: absolute;
  z-index: 9999;
  margin: 0;
  background: white;
  flex-direction: column;
  margin: 0 30px;
}
@media (max-width: 991px) {
  .home-product-area .main-product .find-pro .search-box ul {
    width: 81%;
  }
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro .search-box ul {
    width: 73%;
    margin: 0 20px;
  }
}
.home-product-area .main-product .find-pro .search-box i {
  height: 66px;
  width: 100px;
  border-radius: 50px;
  font-size: 22px;
}
@media (max-width: 639px) {
  .home-product-area .main-product .find-pro .search-box i {
    height: 46px;
    width: 50px;
    font-size: 17px;
    right: -14px;
  }
}

.container-l {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-bottom: 7px;
  cursor: pointer;
  font-size: 14px;
  color: #d1d1d1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.container-l input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-l:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-l input:checked ~ .checkmark {
  background-color: #9DC33B;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-l input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-l .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(37deg);
}

.product-zoom-area {
  padding: 0px 0 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .product-zoom-area {
    padding: 0px 0 30px 0;
  }
}
.product-zoom-area .zoom-img {
  position: relative;
  z-index: 9;
}
.product-zoom-area .zoom-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 0;
  padding: 0 0 80px 0;
}
@media (max-width: 639px) {
  .product-zoom-area .zoom-details {
    padding: 60px 25px 0px 25px;
  }
}
.product-zoom-area .zoom-details h2 {
  color: #fff;
  font-size: 2.4rem;
}
@media (max-width: 991px) {
  .product-zoom-area .zoom-details h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 639px) {
  .product-zoom-area .zoom-details h2 {
    font-size: 1.4rem;
  }
}
.product-zoom-area .zoom-details p {
  color: #d1d1d1;
}
.product-zoom-area .zoom-details h6 {
  color: #9DC33B;
  padding: 0 0 10px 0;
  font-size: 20px;
}
.product-zoom-area .zoom-details h5 {
  color: #d1d1d1;
}
@media (max-width: 991px) {
  .product-zoom-area .zoom-details a {
    margin-top: 0px;
  }
}
.product-zoom-area .zoom-details ul li {
  color: #fff;
  line-height: 28px;
  list-style: none;
}
.product-zoom-area .zoom-details .form-horizontal {
  padding: 0;
}
.product-zoom-area .zoom-details .form-horizontal .form-details .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product-zoom-area .zoom-details .form-horizontal .form-details .form-group .captcha-div .mycaptcha {
  padding: 5px 10px 0px 10px !important;
  background: white !important;
  border-radius: 10px !important;
}
.product-zoom-area .zoom-details .form-horizontal .form-control {
  color: #898989;
  font-size: 15px;
  height: 55px;
  padding: 20px 8px 20px 40px;
  border-radius: 9px;
  background-color: #1a1f08;
  background-clip: padding-box;
  border: 1px solid #9dc33b;
  width: 100%;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .product-zoom-area .zoom-details .form-horizontal .form-control {
    height: 30px;
  }
}
.product-zoom-area .zoom-details .form-group label {
  color: red;
  font-size: 14px;
}
.product-zoom-area .zoom-details .form-horizontal .form-group > i {
  color: #8d8d8d;
  font-size: 20px;
  position: absolute;
  left: 25px;
  top: 18px;
}
@media (max-width: 1199px) {
  .product-zoom-area .zoom-details .form-horizontal .form-group > i {
    font-size: 15px;
    top: 13px;
  }
}
.product-zoom-area .zoom-details .btn {
  color: #fff;
  font-family: "Roboto Flex", sans-serif;
  font-size: 16px !important;
  font-weight: 100 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  padding: 12px 14px !important;
  margin: 0 0px;
  border-radius: 10px !important;
  border: 1px solid #9dc33b !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .product-zoom-area .zoom-details .btn {
    padding: 6px 9px !important;
  }
}
.product-zoom-area .zoom-details .btn .btn:before {
  background: none !important;
}
.product-zoom-area .line {
  position: relative;
}
.product-zoom-area .line::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 0;
  bottom: 0;
  border: 1px solid #9dc33b;
  border-radius: 10px;
  height: 73%;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 1599px) {
  .product-zoom-area .line::before {
    top: 2%;
    height: 78%;
  }
}
@media (max-width: 1199px) {
  .product-zoom-area .line::before {
    top: 0%;
    height: 83%;
  }
}
@media (max-width: 991px) {
  .product-zoom-area .line::before {
    top: -3%;
    height: 89%;
  }
}
@media (max-width: 639px) {
  .product-zoom-area .line::before {
    display: none;
  }
}

.product-details-area {
  padding: 0px 0 30px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .product-details-area {
    padding: 0px 0 30px 0;
  }
}
.product-details-area .pro-border {
  padding: 40px 20px;
}
.product-details-area .pro-hilights h5 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media (max-width: 639px) {
  .product-details-area .pro-hilights h5 {
    font-size: 1.3rem;
  }
}
.product-details-area .pro-hilights h5 i {
  color: #ffffff;
  font-size: 20px;
  background: #9dc33b;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
          clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
  margin-right: 5px;
}
.product-details-area .pro-hilights h2 {
  color: #fff !important;
  font-family: Arial !important;
  font-size: 25px !important;
}
.product-details-area .pro-hilights h2 span {
  color: #fff !important;
  font-family: Arial !important;
  font-size: 16px !important;
  font-weight: 100 !important;
  line-height: 26px;
}
.product-details-area .pro-hilights span {
  font-size: 15px !important;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  white-space: normal !important;
}
.product-details-area .pro-hilights .label {
  font-size: 17px !important;
}
.product-details-area .pro-hilights p {
  color: #FFFFFF;
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
}
.product-details-area .pro-hilights p span {
  font-size: 15px !important;
  color: #fff !important;
  line-height: 28px !important;
}
.product-details-area .pro-hilights a {
  color: #9DC33B;
}
.product-details-area .pro-hilights a i {
  color: #9DC33B;
  padding-left: 5px;
}
.product-details-area .pro-hilights a:hover {
  color: #98c130;
  text-decoration: none;
}

.product-tab-area {
  padding: 0px 0 0px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .product-tab-area {
    padding: 0px 0 30px 0;
  }
}

.book-serives {
  position: relative !important;
}
.book-serives img {
  width: 60%;
  padding: 50px 40px;
}
@media (max-width: 1599px) {
  .book-serives img {
    width: 70%;
    padding: 20px 10px;
  }
}
@media (max-width: 1199px) {
  .book-serives img {
    width: 70%;
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .book-serives img {
    width: 80%;
    padding: 20px 10px;
  }
}
@media (max-width: 639px) {
  .book-serives img {
    width: 100%;
    padding: 20px 10px;
  }
}
.book-serives .book-serv-box {
  position: absolute;
  bottom: 100px;
  right: 0;
  background: #191F07;
  width: 410px;
  left: 200px;
  padding: 25px;
}
@media (max-width: 1599px) {
  .book-serives .book-serv-box {
    bottom: 100px;
    width: 400px;
    left: 150px;
  }
}
@media (max-width: 1199px) {
  .book-serives .book-serv-box {
    bottom: 160px;
    width: 380px;
    left: 150px;
  }
}
@media (max-width: 991px) {
  .book-serives .book-serv-box {
    bottom: 0px;
    width: 470px;
    left: 210px;
  }
}
@media (max-width: 639px) {
  .book-serives .book-serv-box {
    bottom: -30px;
    width: 80%;
    left: 31px;
  }
}
.book-serives .book-serv-box h4 {
  color: #fff;
  font-size: 23px;
}
.book-serives .book-serv-box p {
  color: #fff;
  line-height: 28px;
  font-size: 15px;
}

.catalogues {
  padding: 0 10px;
  position: relative;
}
.catalogues img {
  width: 100%;
}
.catalogues a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 5px;
}
.catalogues a span i {
  font-size: 20px;
  background: #9DC33B;
  width: 80px;
  height: 60px;
  display: flex;
  justify-content: end;
  align-items: flex-end;
  color: #fff !important;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  padding: 0 10px 10px 0px;
  position: absolute;
  right: 10px;
  top: 94px;
}
.catalogues a span i:hover {
  background: rgba(189, 225, 98, 0.9411764706);
}
.catalogues a h5 {
  margin: 10px 0 0 0;
  color: #fff;
  font-size: 18px;
}
.catalogues a h5:hover {
  color: rgba(255, 255, 255, 0.774);
}
.catalogues iframe {
  width: 100%;
}
.catalogues .cat-button {
  font-size: 1.2rem;
}

.appli-video .box img {
  width: 100%;
}

.appli-video .box {
  position: relative !important;
}

.appli-video .box .pulse1 i {
  background: red;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 50%;
}

.appli-video .box .hero-video {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 120px;
}
@media (max-width: 1599px) {
  .appli-video .box .hero-video {
    top: 70px;
  }
}
@media (max-width: 1199px) {
  .appli-video .box .hero-video {
    top: 50px;
  }
}
@media (max-width: 991px) {
  .appli-video .box .hero-video {
    top: 55px;
  }
}
@media (max-width: 639px) {
  .appli-video .box .hero-video {
    top: 70px;
  }
}

.pro-application .box {
  font-family: "Raleway", sans-serif;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
.pro-application .box h3 {
  padding: 15px 0;
  font-size: 23px;
}
@media (max-width: 1199px) {
  .pro-application .box h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .pro-application .box h3 {
    font-size: 19px;
  }
}
@media (max-width: 639px) {
  .pro-application .box h3 {
    font-size: 16px;
  }
}
.pro-application .box:before {
  content: "";
  background: #9dc33b;
  height: 150%;
  bottom: -150%;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.5s ease;
}
.pro-application .box:hover:before {
  bottom: 95%;
}
.pro-application .box img {
  width: 100%;
  height: auto;
  transition: all 0.45s ease;
}
.pro-application .box:hover img {
  opacity: 0.2;
}
.pro-application .box .box-content {
  color: #9dc33b;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transition: all 0.45s ease;
}
.pro-application .box-content i {
  color: #9DC33B;
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.pro-application .box:hover .box-content {
  opacity: 1;
  transition-delay: 0.4s;
}
.pro-application .box .title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0 0 3px 0;
}
.pro-application .box .post {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}
.pro-application .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pro-application .box .icon li {
  display: inline-block;
  margin: 0 3px;
}
.pro-application .box .icon li a {
  color: #fff;
  background: #fff;
  font-size: 16px;
  line-height: 33px;
  width: 33px;
  height: 33px;
  display: block;
  transition: all 0.3s ease 0s;
}
.pro-application .box .icon li a:hover {
  border-radius: 50%;
  animation: animate-hover 0.5s;
}
@keyframes animate-hover {
  0% {
    box-shadow: 0 0 0 10px rgba(19, 170, 82, 0.3);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(19, 170, 82, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(19, 170, 82, 0.3);
  }
}
@media only screen and (max-width: 990px) {
  .pro-application .box {
    margin: 0 0 30px;
  }
}

.product-accordion {
  background: none !important;
  color: #9DC33B;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
  width: 100%;
  text-align: left;
}

.product-accordion i {
  margin-left: 10px;
  color: #9DC33B;
  animation: move 0.3s ease-in-out alternate infinite;
  font-size: 20px;
}

@keyframes move {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(3px);
  }
}
.product-accordion:focus {
  outline: none;
}

.product-panel {
  display: none;
  overflow: hidden;
  margin-top: 10px;
}
.product-panel ul li {
  list-style: none !important;
  line-height: 28px !important;
  color: #fff !important;
}

.pro-catalogue-area {
  padding: 0px 0 90px 0;
}
@media (max-width: 639px) {
  .pro-catalogue-area {
    padding: 30px 0 30px 0;
  }
}
.pro-catalogue-area .catalogue h2 {
  color: #d1d1d1;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 30px 0 50px;
}
@media (max-width: 1599px) {
  .pro-catalogue-area .catalogue h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 1199px) {
  .pro-catalogue-area .catalogue h2 {
    font-size: 1.8rem;
    padding: 0 10px 0 20px;
  }
}
@media (max-width: 991px) {
  .pro-catalogue-area .catalogue h2 {
    font-size: 1.4rem;
    padding: 0 10px 0 0px;
  }
}
@media (max-width: 639px) {
  .pro-catalogue-area .catalogue h2 {
    font-size: 1.3rem;
    margin: 20px 0;
  }
}
.pro-catalogue-area .catalogue p {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 639px) {
  .pro-catalogue-area .catalogue p {
    font-size: 15px;
  }
}
.pro-catalogue-area .catalogue .product-supplier {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro-catalogue-area .catalogue .product-supplier img {
  width: 100%;
}
@media (max-width: 639px) {
  .pro-catalogue-area .catalogue .product-supplier img {
    width: 50%;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1480px) {
  .first img {
    height: 230px !important;
  }
  .second img {
    height: 230px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1366px) {
  .first img {
    height: 200px !important;
  }
  .second img {
    height: 200px !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .first img {
    height: 190px !important;
  }
  .second img {
    height: 190px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .first img {
    height: 210px !important;
  }
  .second img {
    height: 210px !important;
  }
}
@media only screen and (min-width: 150px) and (max-width: 767px) {
  .first img {
    height: auto !important;
  }
  .second img {
    height: auto !important;
  }
}
h4 {
  color: white;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  h4 {
    font-size: 20px;
  }
  span,
  p,
  li,
  a {
    font-size: 14px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  h4 {
    font-size: 20px;
  }
  span,
  p,
  li,
  a {
    font-size: 14px;
  }
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.template-btn {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 20px;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}

.template-btn:hover {
  color: white;
  background: #f28500;
}

.portfolio-section {
  transition: 1.3s;
  box-sizing: border-box;
  height: auto;
}

.portfolio-tab ul {
  text-align: left;
  margin-bottom: 40px;
}

.portfolio-tab ul li {
  color: #fff;
  background: transparent;
  display: inline;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 16px;
  border-bottom: 2px solid #9DC33B;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 575.98px) {
  .portfolio-tab ul li {
    margin: 10px auto;
    width: 100%;
    text-align: center;
  }
  .portfolio-tab ul {
    text-align: center;
  }
}
.portfolio-tab ul li:hover {
  background: #9DC33B;
  color: #fff;
}

.portfolio-tab ul li.active {
  background: #9DC33B;
  color: #fff;
}

.clearfix:after {
  display: table;
  content: " ";
  clear: both;
}

.portfolio-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1599px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-grid .portfolio {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  display: none;
  overflow: hidden;
}

.portfolio-wrapper {
  overflow: hidden;
  position: relative !important;
  cursor: pointer;
}

.portfolio-bg {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
  transform: scale(1);
}

.portfolio:hover .portfolio-bg {
  transform: scale(1.2);
}

.first .portfolio-bg {
  background-image: url("https://images.pexels.com/photos/267350/pexels-photo-267350.jpeg?cs=srgb&dl=accounts-applications-apps-267350.jpg&fm=jpg");
}

.second .portfolio-bg {
  background-image: url("https://images.pexels.com/photos/1053687/pexels-photo-1053687.jpeg?cs=srgb&dl=art-art-materials-artwork-1053687.jpg&fm=jpg");
}

.third .portfolio-bg {
  background-image: url("https://images.pexels.com/photos/6224/hands-people-woman-working.jpg?cs=srgb&dl=brainstorming-campaign-collaborate-6224.jpg&fm=jpg");
}

.portfolio .label {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.portfolio .label-bg {
  background: #232323;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1px;
}

.portfolio .label-text {
  color: #fff;
  position: relative;
  z-index: 500;
  padding: 50px 20px;
}

.portfolio:hover .label {
  opacity: 1;
  visibility: visible;
}

.portfolio .text-category {
  display: block;
}

.portfolio .template-btn {
  background: #e30b5d;
  border: 1px solid #e30b5d;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 500;
}

.second {
  margin: 0 15px 0 15px;
}
.second .hero-video {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #9DC33B;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1599px) {
  .second .hero-video {
    top: 65px;
  }
}
@media (max-width: 1199px) {
  .second .hero-video {
    top: 90px;
  }
}
@media (max-width: 991px) {
  .second .hero-video {
    top: 53px;
  }
}
@media (max-width: 639px) {
  .second .hero-video {
    top: 90px;
  }
}
.second .hero-video a {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .hero-video a i {
  color: #fff;
  position: relative;
  left: -4px;
}
.second img {
  width: 100%;
  margin-bottom: 20px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.second h4 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 30px;
}

.first {
  margin: 0 15px 30px 15px;
}
@media (max-width: 639px) {
  .first {
    margin: 0 15px 10px 15px;
  }
}
.first img {
  width: 100%;
  margin-bottom: 20px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.first h4 {
  font-size: 20px;
  text-align: left;
  margin-bottom: 30px;
  display: none;
}
@media (max-width: 1599px) {
  .first h4 {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .first h4 {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .first h4 {
    font-size: 17px;
  }
}
@media (max-width: 639px) {
  .first h4 {
    font-size: 17px;
  }
}

#esubmit-msg {
  display: none;
  position: absolute;
  top: 70px;
  width: 300px;
  right: 45px;
  margin: 0 auto;
  z-index: 9999;
  background: #9DC33B;
  padding: 15px 10px;
  color: #fff;
  border-radius: 5px;
  height: 50px;
  text-align: center;
}

/* ============== social left side start ================ */
.sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -120px;
  top: 40%;
  width: 165px;
  z-index: 1100;
}
@media (max-width: 639px) {
  .sticky-container {
    display: none;
  }
}

.socialleft {
  background: #232323;
  border-radius: 12px 0px 0px 12px;
}

.socialleft li {
  list-style-type: none;
  background: #232323;
  height: 38px;
  padding: 0px;
  margin: 5px 0px 1px 0px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: start;
  align-items: baseline;
}
.socialleft li p a {
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 0px;
}

.socialleft li:hover {
  margin-left: -80px;
}

.socialleft li:hover a {
  margin-right: 0;
  text-decoration: none;
}

.socialleft li i {
  float: left;
  margin: 0px 4px;
  color: #9DC33B;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  transform: rotate(0deg);
}

/* ============== social left side end ================ */
/* ============== catalogue left side start ================ */
.sticky-container.cat {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -120px;
  top: 70%;
  width: 165px;
  z-index: 1100;
}

.catalogue {
  background: #232323;
  border-radius: 12px 0px 0px 12px;
}

.catalogue li {
  list-style-type: none;
  background: #9DC33B;
  height: 45px;
  padding: 0px;
  margin: 5px 0px 1px 0px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: start;
  align-items: baseline;
}
.catalogue li p a {
  margin-left: 5px;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 0px;
}

.catalogue li:hover {
  margin-left: -80px;
}

.catalogue li:hover a {
  margin-right: 0;
  text-decoration: none;
}

.catalogue li i {
  float: left;
  margin: 0 10px 0 0;
  color: #ffffff;
  padding: 10px;
  width: 30px;
  height: 30px;
  font-size: 20px;
  transform: rotate(0deg);
}

/* ============== catalogue left side end ================ */
/* ============== Product Manager ================ */
.club-box {
  position: fixed;
  z-index: 99;
  bottom: 120px;
  left: 0;
}

@media screen and (max-width: 420px) {
  .club-box {
    right: 74px;
  }
}
.club-box__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.club-box__close:after {
  content: "×";
  color: #333;
  font-size: 32px;
  line-height: 26px;
}

.club-box__icon {
  position: relative;
  cursor: pointer;
  transition: 0.2s transform ease 0.2s, 0.2s opacity 0.2s;
}

.club-box__icon:after {
  image-rendering: -webkit-optimize-contrast;
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-left: -22px;
  margin-top: -18px;
  width: 44px;
  height: 38px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background: url("../img/product-manager.png");
}

.club-box__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: auto;
}
@media (max-width: 1599px) {
  .club-box__icon img {
    width: 80px;
  }
}
@media (max-width: 1199px) {
  .club-box__icon img {
    width: 80px;
  }
}
@media (max-width: 991px) {
  .club-box__icon img {
    width: 80px;
  }
}
@media (max-width: 639px) {
  .club-box__icon img {
    width: 60px;
  }
}

.club-box__icon svg path {
  fill: #ffc01a;
}

.club-box__box {
  position: absolute;
  width: 230px;
  z-index: 999;
  background: #fff !important;
  bottom: -120px;
  right: 0;
  padding: 2rem 1rem 1.5rem;
  box-sizing: border-box;
  display: none;
  opacity: 0;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transform: translateY(100%);
  transition: 0.2s transform ease 0.1s, 0.2s opacity ease 0.1s;
}

.club-box__box .product-manager img {
  width: 100%;
}
.club-box__box .product-manager h4 {
  color: #333 !important;
  padding: 10px 0 0 0;
}
.club-box__box .product-manager p {
  margin: 0 0 10px 0;
}
.club-box__box .product-manager p a {
  color: #333 !important;
  text-decoration: none;
}
.club-box__box .product-manager h6 {
  margin: 0 0 20px 0;
}
.club-box__box .product-manager h6 a {
  color: #333 !important;
  font-family: sans-serif !important;
  font-weight: 600;
  text-decoration: none;
}
.club-box__box .product-manager h6 a:hover {
  color: #333 !important;
  text-decoration: none;
}
.club-box__box .coordinator {
  background: #9DC33B;
}
.club-box__box .coordinator h5 {
  font-size: 18px;
  padding: 10px;
  line-height: 26px;
}

@media screen and (max-width: 420px) {
  .club-box__box {
    width: 100vw;
    right: -74px;
  }
}
.club-box__box,
.club-box__box h4,
.club-box__box a {
  color: #ffffff !important;
}

.club-box__box .images {
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}

.club-box__box .images > * {
  display: inline-block;
  vertical-align: bottom;
}

.club-box__box .images > *:first-child {
  margin-right: 20px;
  width: 62px;
}

.club-box__box .images > *:last-child {
  width: 111px;
}

.club-box__box .images > * img {
  display: block;
  width: 100%;
  height: auto;
}

.club-box--open + .club-box__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 639px) {
  .club-box--open + .club-box__box {
    margin: 0 auto;
    width: 93%;
    left: 0;
  }
}

.club-box--show {
  transform: translateY(100%);
  opacity: 0;
  transition: 0.2s transform ease, 0.2s opacity;
}

.club-box--show + .club-box__box {
  opacity: 1;
  transform: translateX(230px);
}
@media (max-width: 639px) {
  .club-box--show + .club-box__box {
    transform: translateX(0px);
  }
}

/* ============== Product Manager ================ */
.accessories-spares-area {
  padding: 0px 0 30px 0;
  background: #232323;
}
.accessories-spares-area h2 {
  text-align: center;
  color: #d1d1d1;
  margin-bottom: 30px;
}
.accessories-spares-area .button {
  margin: 0;
  background: #9dc33b;
  padding: 8px 15px 4px 14px;
  border-radius: 2em;
  color: #ffffff;
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid #9DC33B;
}
.accessories-spares-area .button:hover {
  color: #fff;
  background: #293601;
  border: 1px solid #9DC33B;
}
.accessories-spares-area .button i {
  margin-right: 3px;
  opacity: 1;
  font-size: 16px;
  display: none;
}
.accessories-spares-area .button span {
  position: relative;
  top: -2px;
}
.accessories-spares-area .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4em;
}
@media (max-width: 639px) {
  .accessories-spares-area .container {
    padding: 0 52px;
  }
}
.accessories-spares-area .download-cards {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -2rem;
  padding: 15px 0 0 0;
}
.accessories-spares-area .download-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2em;
  padding: 12px;
  width: 100%;
}
.accessories-spares-area .download-card-img-box {
  overflow: hidden;
  cursor: pointer;
}
.accessories-spares-area .download-card a.button {
  text-decoration: none;
}
@media (min-width: 700px) {
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card {
    float: left;
    width: calc(100% - 2em);
  }
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card:nth-child(3) {
    clear: both;
  }
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card:nth-child(4) {
    clear: initial;
  }
}
@media (min-width: 700px) {
  .accessories-spares-area .download-cards[data-view=list-view] .download-card {
    padding-left: 380px;
    height: 250px;
  }
}
@media (min-width: 1000px) {
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card {
    width: calc(50% - 2em);
  }
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card:nth-child(3) {
    clear: initial;
  }
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card:nth-child(4) {
    clear: both;
  }
}
@media only screen and (min-width: 1199px) and (max-width: 1600px) {
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card {
    width: calc(33.3333333333% - 2em);
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1920px) {
  .accessories-spares-area .download-cards[data-view=grid-view] .download-card {
    width: calc(33.3333333333% - 2em);
  }
}
.accessories-spares-area .download-card__image {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  text-align: center;
  height: 300px;
  background-size: contain;
  transition: 0.3s ease-in-out all;
  overflow: hidden;
  background-repeat: no-repeat !important;
}
.accessories-spares-area .download-card__image:hover {
  transform: scale(1.2) rotate(-3deg);
}
@media (max-width: 1599px) {
  .accessories-spares-area .download-card__image {
    height: 230px;
  }
}
@media (max-width: 1199px) {
  .accessories-spares-area .download-card__image {
    height: 180px;
  }
}
@media (max-width: 991px) {
  .accessories-spares-area .download-card__image {
    height: 190px;
  }
}
@media (max-width: 639px) {
  .accessories-spares-area .download-card__image {
    height: 210px;
  }
}
@media (min-width: 700px) {
  .accessories-spares-area .download-card__image {
    justify-content: center;
  }
}
@media (min-width: 700px) {
  .accessories-spares-area .download-cards[data-view=list-view] .download-card__image {
    width: 350px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .accessories-spares-area .download-cards[data-view=list-view] .mob-nmbr {
    display: block;
    text-decoration: none;
    padding: 5px 0 15px 0;
    color: #9DC33B;
    font-family: sans-serif;
    letter-spacing: 1px;
  }
}
.accessories-spares-area .download-card__content {
  padding: 10px 0 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
.accessories-spares-area .download-card__content .brand {
  color: #d1d1d1;
}
.accessories-spares-area .download-card__content .mob-nmbr {
  display: none;
}
.accessories-spares-area .download-card__category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin: 0 0 1em;
  display: block;
  color: #fff;
}
.accessories-spares-area .download-card__category::before {
  content: "|| ";
  color: #9DC33B;
}
.accessories-spares-area .download-card__title {
  line-height: 24px;
  margin: 0 0 0.5em;
  padding: 5px 0 0 0;
  font-size: 16px;
  color: #d1d1d1;
}
.accessories-spares-area .download-card__description {
  line-height: 1.5;
  padding: 0;
  margin: 0 0 1.5em;
  clear: both;
  color: #8b8e9c;
  font-size: 16px;
}
.accessories-spares-area .dc-view-switcher {
  display: none;
  margin-bottom: 2em;
  margin-top: 42px;
  text-align: right;
}
@media (min-width: 700px) {
  .accessories-spares-area .dc-view-switcher {
    display: block;
  }
}
.accessories-spares-area .dc-view-switcher > button {
  font-family: "fontAwesome";
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  vertical-align: middle;
  color: #9DC33B;
  opacity: 0.3;
  outline: none;
  transition: opacity 0.4s ease;
  padding: 0;
}
.accessories-spares-area .dc-view-switcher > button:nth-child(1) {
  margin-right: 0.5rem;
}
.accessories-spares-area .dc-view-switcher > button[data-trigger=list-view]::before {
  content: "\f00b";
}
.accessories-spares-area .dc-view-switcher > button[data-trigger=grid-view]::before {
  content: "\f009";
}
.accessories-spares-area .dc-view-switcher > button[data-trigger].active {
  opacity: 1;
}
.accessories-spares-area .swiper-button-prev:after,
.accessories-spares-area .swiper-rtl .swiper-button-next:after {
  content: "prev";
  left: 13px;
  position: relative;
  top: 10px;
}
@media (max-width: 1599px) {
  .accessories-spares-area .swiper-button-prev:after,
  .accessories-spares-area .swiper-rtl .swiper-button-next:after {
    content: "prev";
    left: 13px;
    position: relative;
    top: -25px;
  }
}
@media (max-width: 1199px) {
  .accessories-spares-area .swiper-button-prev:after,
  .accessories-spares-area .swiper-rtl .swiper-button-next:after {
    content: "prev";
    left: 13px;
    position: relative;
    top: -62px;
  }
}
@media (max-width: 991px) {
  .accessories-spares-area .swiper-button-prev:after,
  .accessories-spares-area .swiper-rtl .swiper-button-next:after {
    content: "prev";
    left: -13px;
    position: relative;
    top: -55px;
  }
}
@media (max-width: 639px) {
  .accessories-spares-area .swiper-button-prev:after,
  .accessories-spares-area .swiper-rtl .swiper-button-next:after {
    content: "prev";
    left: -3px;
    position: relative;
    top: -35px;
  }
}
.accessories-spares-area .swiper-button-next:after,
.accessories-spares-area .swiper-rtl .swiper-button-prev:after {
  content: "next";
  left: 0px;
  position: relative;
  top: 10px;
}
@media (max-width: 1599px) {
  .accessories-spares-area .swiper-button-next:after,
  .accessories-spares-area .swiper-rtl .swiper-button-prev:after {
    content: "next";
    left: 0;
    position: relative;
    top: -25px;
  }
}
@media (max-width: 1199px) {
  .accessories-spares-area .swiper-button-next:after,
  .accessories-spares-area .swiper-rtl .swiper-button-prev:after {
    content: "next";
    left: 0px;
    position: relative;
    top: -62px;
  }
}
@media (max-width: 991px) {
  .accessories-spares-area .swiper-button-next:after,
  .accessories-spares-area .swiper-rtl .swiper-button-prev:after {
    content: "next";
    left: 1px;
    position: relative;
    top: -55px;
  }
}
@media (max-width: 639px) {
  .accessories-spares-area .swiper-button-next:after,
  .accessories-spares-area .swiper-rtl .swiper-button-prev:after {
    content: "next";
    left: -12px;
    position: relative;
    top: -35px;
  }
}

.breadcrumbs-area {
  padding: 60px 0 50px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .breadcrumbs-area {
    padding: 60px 0 30px 0;
  }
}
.breadcrumbs-area .breadcrumbs-box a {
  color: #d1d1d1;
}
.breadcrumbs-area .breadcrumbs-box a:hover {
  color: #d1d1d1;
  text-decoration: none;
}
@media (max-width: 639px) {
  .breadcrumbs-area .breadcrumbs-box a {
    font-size: 14px;
  }
}
.breadcrumbs-area .breadcrumbs-box a i {
  font-size: 13px;
  color: #9DC33B;
  padding: 0 10px;
}
@media (max-width: 639px) {
  .breadcrumbs-area .breadcrumbs-box a i {
    font-size: 12px;
    padding: 0 3px;
  }
}

.privacy-area {
  padding: 80px 0 60px 0;
}
@media (max-width: 1199px) {
  .privacy-area {
    padding: 40px 0 30px 0;
  }
}
@media (max-width: 991px) {
  .privacy-area {
    padding: 40px 0 30px 0;
  }
}
@media (max-width: 639px) {
  .privacy-area {
    padding: 30px 0 30px 0;
  }
}
.privacy-area h2 {
  color: #9DC33B;
  font-size: 2.8rem;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .privacy-area h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 991px) {
  .privacy-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 639px) {
  .privacy-area h2 {
    font-size: 1.5rem;
  }
}
.privacy-area p {
  line-height: 28px;
  color: #fff;
  font-size: 15px;
}
.privacy-area a {
  color: #9DC33B;
  text-decoration: none;
}
.privacy-area h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .privacy-area h3 {
    font-size: 2.1rem;
  }
}
@media (max-width: 991px) {
  .privacy-area h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .privacy-area h3 {
    font-size: 1.3rem;
    font-weight: 600;
  }
}
.privacy-area ul li {
  line-height: 32px;
  color: #fff;
  list-style: none;
  padding-left: 46px;
}
.privacy-area ul li i {
  color: #9DC33B;
  position: absolute;
  margin-top: 4px;
  left: 30px;
  font-size: 18px;
}

.highlights-area {
  padding: 80px 0 60px 0;
}
@media (max-width: 1199px) {
  .highlights-area {
    padding: 40px 0 30px 0;
  }
}
@media (max-width: 991px) {
  .highlights-area {
    padding: 40px 0 30px 0;
  }
}
@media (max-width: 639px) {
  .highlights-area {
    padding: 30px 0 30px 0;
  }
}
.highlights-area h2 {
  color: #9DC33B;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .highlights-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .highlights-area h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 639px) {
  .highlights-area h2 {
    font-size: 1.2rem;
  }
}
.highlights-area h3 {
  color: #9DC33B;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .highlights-area h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 991px) {
  .highlights-area h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 639px) {
  .highlights-area h3 {
    font-size: 1.1rem;
  }
}
.highlights-area a {
  color: #fff;
  text-decoration: none;
  margin: 0 0 0 40px;
}
.highlights-area a:hover {
  text-decoration: none;
}
.highlights-area .highlights-box {
  background: #232a0a;
  padding: 0;
  margin: 0 0 60px 0;
  border-radius: 30px 0px 30px 0;
}
@media (max-width: 1599px) {
  .highlights-area .highlights-box {
    margin: 0 0 60px 0;
  }
}
@media (max-width: 1199px) {
  .highlights-area .highlights-box {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box {
    margin: 0 0 30px 0;
  }
}
.highlights-area .highlights-box img {
  width: 330px;
}
.highlights-area .highlights-box .highlights-content {
  padding: 40px;
}
@media (max-width: 1599px) {
  .highlights-area .highlights-box .highlights-content {
    padding: 25px 50px 30px 0;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box .highlights-content {
    padding: 25px 20px 30px 0;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlights-content {
    padding: 24px 22px;
  }
}
.highlights-area .highlights-box .highlights-content p {
  line-height: 28px;
  color: #fff;
  font-size: 15px;
}
.highlights-area .highlights-box .highlights-content ul li {
  line-height: 32px;
  color: #fff;
  list-style: none;
  padding-left: 46px;
  position: relative;
}
.highlights-area .highlights-box .highlights-content ul li i {
  color: #9DC33B;
  position: absolute;
  margin-top: 8px;
  left: 23px;
  font-size: 15px;
}
.highlights-area .highlights-box .highlights-content.right {
  padding: 40px;
}
@media (max-width: 1599px) {
  .highlights-area .highlights-box .highlights-content.right {
    padding: 25px 0px 30px 50px;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box .highlights-content.right {
    padding: 25px 0px 30px 20;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlights-content.right {
    padding: 24px 22px;
  }
}
.highlights-area .highlights-box .highlights-content.right p {
  line-height: 28px;
  color: #fff;
  font-size: 15px;
}
.highlights-area .highlights-box .highlights-content.right ul li {
  line-height: 32px;
  color: #fff;
  list-style: none;
  padding-left: 46px;
  position: relative;
}
.highlights-area .highlights-box .highlights-content.right ul li i {
  color: #9DC33B;
  position: absolute;
  margin-top: 8px;
  left: 23px;
  font-size: 15px;
}
.highlights-area .highlights-box .highlight-pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.highlights-area .highlights-box .highlight-pic .second {
  margin: 0 0 0 40px;
  position: relative;
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic .second {
    margin: 20px 0 0 0px;
  }
}
.highlights-area .highlights-box .highlight-pic .second .hero-video {
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #9DC33B;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1599px) {
  .highlights-area .highlights-box .highlight-pic .second .hero-video {
    top: 65px;
  }
}
@media (max-width: 1199px) {
  .highlights-area .highlights-box .highlight-pic .second .hero-video {
    top: 90px;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box .highlight-pic .second .hero-video {
    top: 85px;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic .second .hero-video {
    top: 90px;
  }
}
.highlights-area .highlights-box .highlight-pic .second .hero-video a {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.highlights-area .highlights-box .highlight-pic .second .hero-video a i {
  color: #fff;
  position: relative;
  left: 0px;
}
.highlights-area .highlights-box .highlight-pic .second img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
  border-radius: 6px;
}
@media (max-width: 1199px) {
  .highlights-area .highlights-box .highlight-pic .second img {
    height: 270px !important;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box .highlight-pic .second img {
    height: 230px !important;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic .second img {
    height: 260px !important;
  }
}
.highlights-area .highlights-box .highlight-pic .second h4 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 30px;
}
.highlights-area .highlights-box .highlight-pic.right {
  order: 1;
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic.right {
    order: 0;
  }
}
.highlights-area .highlights-box .highlight-pic.right .second {
  margin: 0 40px 0 0px;
  position: relative;
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic.right .second {
    margin: 20px 0 0 0px;
  }
}
.highlights-area .highlights-box .highlight-pic.right .second .hero-video {
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #9DC33B;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1599px) {
  .highlights-area .highlights-box .highlight-pic.right .second .hero-video {
    top: 65px;
  }
}
@media (max-width: 1199px) {
  .highlights-area .highlights-box .highlight-pic.right .second .hero-video {
    top: 90px;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box .highlight-pic.right .second .hero-video {
    top: 85px;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic.right .second .hero-video {
    top: 90px;
  }
}
.highlights-area .highlights-box .highlight-pic.right .second .hero-video a {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.highlights-area .highlights-box .highlight-pic.right .second .hero-video a i {
  color: #fff;
  position: relative;
  left: 0px;
}
.highlights-area .highlights-box .highlight-pic.right .second img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .highlights-area .highlights-box .highlight-pic.right .second img {
    height: 270px !important;
  }
}
@media (max-width: 991px) {
  .highlights-area .highlights-box .highlight-pic.right .second img {
    height: 230px !important;
  }
}
@media (max-width: 639px) {
  .highlights-area .highlights-box .highlight-pic.right .second img {
    height: 260px !important;
  }
}
.highlights-area .highlights-box .highlight-pic.right .second h4 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 30px;
}

.international-area {
  padding: 0 0 100px 0;
  position: relative;
}
@media (max-width: 639px) {
  .international-area {
    padding: 0;
  }
}
.international-area img {
  width: 100%;
}
.international-area .container {
  position: relative;
}
.international-area .international-box {
  position: absolute;
  bottom: -120px;
  left: 0;
  background: #262e0b;
  padding: 50px 50px;
}
@media (max-width: 1199px) {
  .international-area .international-box {
    padding: 20px 30px;
    position: inherit;
    bottom: 80px;
  }
}
@media (max-width: 991px) {
  .international-area .international-box {
    padding: 20px 30px;
    position: inherit;
    bottom: 50px;
  }
}
@media (max-width: 639px) {
  .international-area .international-box {
    padding: 20px 30px;
    position: inherit;
    bottom: 0px;
  }
}
.international-area .international-box h3 {
  color: #9DC33B;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.international-area .international-box p {
  line-height: 28px;
  color: #d1d1d1;
}
.international-area .popup-video {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: #9dc33b;
  color: #fff;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
}
@media (max-width: 1599px) {
  .international-area .popup-video {
    top: 25%;
  }
}
@media (max-width: 1199px) {
  .international-area .popup-video {
    top: 22%;
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .international-area .popup-video {
    top: 18%;
  }
}
@media (max-width: 639px) {
  .international-area .popup-video {
    top: 8%;
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}
.international-area iframe {
  width: 100%;
  height: 700px;
}
@media (max-width: 1599px) {
  .international-area iframe {
    height: 650px;
  }
}
@media (max-width: 1199px) {
  .international-area iframe {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .international-area iframe {
    height: 350px;
  }
}
@media (max-width: 639px) {
  .international-area iframe {
    height: 240px;
  }
}

.profile-area {
  padding: 60px 0 50px 0;
}
.profile-area .profile-pic img {
  width: 100%;
  border-radius: 5px;
}
.profile-area .profile-pic.alex-pic {
  order: 1;
}
.profile-area .profile-pic.alex-pic img {
  width: 100%;
  border-radius: 5px;
}
@media (max-width: 639px) {
  .profile-area .profile-pic.alex-pic {
    order: 0;
  }
}
.profile-area .profile-detail-area {
  position: relative;
}
.profile-area .profile-detail-area .profile-video {
  position: absolute;
  width: 60%;
  top: 0px;
  right: 0;
  z-index: 10;
}
@media (max-width: 1599px) {
  .profile-area .profile-detail-area .profile-video {
    width: 54%;
    top: 0px;
    right: -80px;
  }
}
@media (max-width: 1199px) {
  .profile-area .profile-detail-area .profile-video {
    width: 100%;
    top: 0px;
    right: 0;
    position: relative;
  }
}
@media (max-width: 639px) {
  .profile-area .profile-detail-area .profile-video {
    width: 100%;
    top: 10px;
    right: 0;
    position: relative;
  }
}
.profile-area .profile-detail-area .profile-video img {
  width: 100%;
}
.profile-area .profile-detail-area .profile-video .hero-video {
  position: absolute;
  left: 45%;
  right: 0;
  margin: 0 auto;
  top: 50%;
  bottom: 0;
}
.profile-area .profile-detail-area .profile-video .hero-video a {
  text-decoration: none;
}
.profile-area .profile-detail-area .profile-video .hero-video i {
  background: red;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
}
.profile-area .profile-detail-area .profile-details {
  position: absolute;
  bottom: 0px;
  width: 95%;
  left: 45px;
  background: #191F07;
  padding: 25px 40px;
  z-index: 9;
}
@media (max-width: 1599px) {
  .profile-area .profile-detail-area .profile-details {
    width: 100%;
    left: 80px;
    padding: 30px 40px;
  }
}
@media (max-width: 1199px) {
  .profile-area .profile-detail-area .profile-details {
    width: 100%;
    left: 0;
    padding: 30px 40px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .profile-area .profile-detail-area .profile-details {
    width: 87%;
    left: 0;
    padding: 30px 40px;
    position: relative;
  }
}
@media (max-width: 639px) {
  .profile-area .profile-detail-area .profile-details {
    width: 100%;
    left: 0;
    top: 10px;
    padding: 30px 20px;
    position: relative;
  }
}
.profile-area .profile-detail-area .profile-details h2 {
  color: #fff;
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 1599px) {
  .profile-area .profile-detail-area .profile-details h2 {
    font-size: 1.8rem;
  }
}
.profile-area .profile-detail-area .profile-details h2::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  height: 2px;
  width: 150px;
  background: #9DC33B;
}
.profile-area .profile-detail-area .profile-details h2::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -16px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.profile-area .profile-detail-area .profile-details h3 {
  color: #9DC33B;
  font-size: 20px;
  font-style: italic;
}
.profile-area .profile-detail-area .profile-details p {
  color: #fff;
}
.profile-area .profile-detail-area .profile-details .prof-social-icon {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0;
}
.profile-area .profile-detail-area .profile-details .prof-social-icon ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-area .profile-detail-area .profile-details .prof-social-icon ul li {
  list-style: none;
  margin-right: 5px;
}
.profile-area .profile-detail-area .profile-details .prof-social-icon ul li i {
  color: #9DC33B;
  font-size: 20px;
  margin-right: 10px;
}
.profile-area .profile-detail-area .profile-details .prof-social-icon a {
  color: #fff;
}
.profile-area .profile-detail-area .profile-details .prof-social-icon a:hover {
  text-decoration: none;
  color: #9DC33B;
}
.profile-area .profile-detail-area {
  position: relative;
}
.profile-area .profile-detail-area.alex-details {
  order: 0;
}
.profile-area .profile-detail-area.alex-details .profile-video {
  position: absolute;
  width: 60%;
  top: -20px;
  left: 0;
  z-index: 10;
}
@media (max-width: 1599px) {
  .profile-area .profile-detail-area.alex-details .profile-video {
    width: 54%;
    top: -45px;
    right: -80px;
  }
}
@media (max-width: 1199px) {
  .profile-area .profile-detail-area.alex-details .profile-video {
    width: 100%;
    top: 0px;
    right: 0;
    position: relative;
  }
}
@media (max-width: 639px) {
  .profile-area .profile-detail-area.alex-details .profile-video {
    width: 100%;
    top: 10px;
    right: 0;
    position: relative;
  }
}
.profile-area .profile-detail-area.alex-details .profile-video img {
  width: 100%;
}
.profile-area .profile-detail-area.alex-details .profile-video .hero-video {
  position: absolute;
  left: 45%;
  right: 0;
  margin: 0 auto;
  top: 50%;
  bottom: 0;
}
.profile-area .profile-detail-area.alex-details .profile-video .hero-video i {
  background: red;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
}
.profile-area .profile-detail-area.alex-details .profile-details {
  position: absolute;
  bottom: 0px;
  width: 92%;
  left: 0px;
  background: #191F07;
  padding: 60px 70px;
  z-index: 9;
}
@media (max-width: 1599px) {
  .profile-area .profile-detail-area.alex-details .profile-details {
    width: 100%;
    left: 0px;
    padding: 30px 40px;
  }
}
@media (max-width: 1199px) {
  .profile-area .profile-detail-area.alex-details .profile-details {
    width: 100%;
    left: 0;
    padding: 30px 40px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .profile-area .profile-detail-area.alex-details .profile-details {
    width: 100%;
    left: 0;
    padding: 30px 40px;
    position: relative;
  }
}
@media (max-width: 639px) {
  .profile-area .profile-detail-area.alex-details .profile-details {
    width: 100%;
    left: 0;
    top: 10px;
    padding: 30px 20px;
    position: relative;
  }
}
.profile-area .profile-detail-area.alex-details .profile-details h2 {
  color: #fff;
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 1599px) {
  .profile-area .profile-detail-area.alex-details .profile-details h2 {
    font-size: 1.8rem;
  }
}
.profile-area .profile-detail-area.alex-details .profile-details h2::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  height: 2px;
  width: 150px;
  background: #9DC33B;
}
.profile-area .profile-detail-area.alex-details .profile-details h2::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -16px;
  height: 15px;
  width: 25px;
  background: #9DC33B;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.profile-area .profile-detail-area.alex-details .profile-details h3 {
  color: #9DC33B;
  font-size: 20px;
  font-style: italic;
}
.profile-area .profile-detail-area.alex-details .profile-details p {
  color: #fff;
}
.profile-area .profile-detail-area.alex-details .profile-details .prof-social-icon {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0;
}
.profile-area .profile-detail-area.alex-details .profile-details .prof-social-icon ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-area .profile-detail-area.alex-details .profile-details .prof-social-icon ul li {
  list-style: none;
  margin-right: 5px;
}
.profile-area .profile-detail-area.alex-details .profile-details .prof-social-icon ul li i {
  color: #9DC33B;
  font-size: 20px;
  margin-right: 10px;
}
.profile-area .profile-detail-area.alex-details .profile-details .prof-social-icon a {
  color: #fff;
}
.profile-area .profile-detail-area.alex-details .profile-details .prof-social-icon a:hover {
  text-decoration: none;
  color: #9DC33B;
}

.btn2 {
  border-radius: 0;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease 0s;
}
.btn2 i {
  font-size: 23px;
  margin-right: 16px;
  position: relative;
  top: 4px;
}
@media (max-width: 991px) {
  .btn2 i {
    font-size: 16px;
    margin-right: 5px;
    top: 0px;
  }
}
@media (max-width: 639px) {
  .btn2 i {
    font-size: 16px;
    margin-right: 5px;
    top: 0px;
  }
}
.btn2 .fa-file-pdf {
  font-size: 23px;
  margin-right: 0;
  position: relative;
  top: 2px;
}

.btn2:before {
  content: "";
  width: 210%;
  height: 210%;
  position: absolute;
  top: -120px;
  left: 30px;
  transform: skew(67deg);
  z-index: -1;
  transition: all 0.4s ease 0s;
}

.btn2:hover:before {
  top: -20px;
  left: -52px;
}

.btn2.red {
  border: 1px solid #9DC33B;
  color: #9DC33B;
  text-decoration: none;
  font-size: 16px;
  padding: 13px 18px;
  border-radius: 30px;
  margin-left: 25px;
  z-index: 99;
}
@media (max-width: 991px) {
  .btn2.red {
    font-size: 15px;
    padding: 11px 11px;
    border-radius: 30px;
    margin-left: 10px;
  }
}
@media (max-width: 639px) {
  .btn2.red {
    font-size: 14px;
    padding: 9px 11px;
    border-radius: 30px;
    margin-left: 13px;
  }
}

.btn2.red:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .btn2 {
    margin-bottom: 15px;
  }
}
.cell {
  display: inline-block;
  width: 49%;
  text-align: center;
}

.circle {
  display: inline-block;
  width: 20px;
  height: 0px;
}

.square {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: whiteSmoke;
  box-shadow: 4px -40px 60px 5px rgb(26, 117, 206) inset;
}

.loader {
  background: linear-gradient(to right, rgb(22, 113, 202) 50%, transparent 50%);
  animation: spin 1s infinite linear;
}

.loader:before {
  display: block;
  content: "";
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: #222;
  border-radius: 50%;
}

.gelatine {
  animation: gelatine 0.5s infinite;
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
.spin {
  animation: spin 1s infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.elastic-spin {
  animation: elastic-spin 1s infinite ease;
}
@keyframes elastic-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.2);
  }
}
.flash {
  animation: flash 500ms ease infinite alternate;
}
@keyframes flash {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hithere {
  animation: hithere 1s ease infinite;
}
@keyframes hithere {
  30% {
    transform: scale(1.2);
  }
  40%, 60% {
    transform: rotate(-20deg) scale(1.2);
  }
  50% {
    transform: rotate(20deg) scale(1.2);
  }
  70% {
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.grow {
  animation: grow 2s ease infinite;
}
@keyframes grow {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.fade-in {
  animation: fade-in 2s linear infinite;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-out {
  animation: fade-out 2s linear infinite;
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce2 {
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.shake {
  animation: shake 2s ease infinite;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.flip {
  backface-visibility: visible !important;
  animation: flip 2s ease infinite;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
.swing {
  transform-origin: top center;
  animation: swing 2s ease infinite;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.wobble {
  animation: wobble 2s ease infinite;
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.fade-in-down {
  animation: fade-in-down 2s ease infinite;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-left {
  animation: fade-in-left 2s ease infinite;
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-out-down {
  animation: fade-out-down 2s ease infinite;
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fade-out-right {
  animation: fade-out-right 2s ease infinite;
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.bounce-in {
  animation: bounce-in 2s ease infinite;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounce-in-right {
  animation: bounce-in-right 2s ease infinite;
}
@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounce-out {
  animation: bounce-out 2s ease infinite;
}
@keyframes bounce-out {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounce-out-down {
  animation: bounce-out-down 2s ease infinite;
}
@keyframes bounce-out-down {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.rotate-in-down-left {
  animation: rotate-in-down-left 2s ease infinite;
}
@keyframes rotate-in-down-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotate-in-up-left {
  animation: rotate-in-up-left 2s ease infinite;
}
@keyframes rotate-in-up-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.hinge {
  animation: hinge 2s ease infinite;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.roll-in {
  animation: roll-in 2s ease infinite;
}
@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.roll-out {
  animation: roll-out 2s ease infinite;
}
@keyframes roll-out {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.special-deals-area {
  padding: 90px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .special-deals-area {
    padding: 60px 0 30px 0;
  }
}
.special-deals-area .special-deals-contain {
  margin-bottom: 50px;
  padding: 0 30px;
  display: flex;
  align-items: flex-end;
}
.special-deals-area .special-deals-contain .special-border {
  position: relative;
}
.special-deals-area .special-deals-contain .special-border::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border: 1px solid #9dc33b;
  top: 110px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1599px) {
  .special-deals-area .special-deals-contain .special-border::after {
    height: 73%;
  }
}
@media (max-width: 1199px) {
  .special-deals-area .special-deals-contain .special-border::after {
    height: 76%;
  }
}
@media (max-width: 639px) {
  .special-deals-area .special-deals-contain .special-border::after {
    height: 80%;
  }
}
.special-deals-area .special-deals-contain .special-border .special-box {
  padding: 22px;
  position: relative;
  z-index: 1;
}
.special-deals-area .special-deals-contain .special-border .special-box img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
  transform: perspective(1500px) rotateY(0deg);
  transition: transform 1s ease 0s;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.special-deals-area .special-deals-contain .special-border .special-box img:hover {
  transform: perspective(3000px) rotateY(15deg);
}
.special-deals-area .special-deals-contain .special-border .special-box .special-title h4 {
  color: #9dc33b;
  font-size: 20px;
}
@media (max-width: 1599px) {
  .special-deals-area .special-deals-contain .special-border .special-box .special-title h4 {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .special-deals-area .special-deals-contain .special-border .special-box .special-title h4 {
    font-size: 16px;
  }
}
.special-deals-area .special-deals-contain .special-border .special-box .country-logo img {
  width: 100%;
  height: auto;
}
.special-deals-area .special-deals-contain .special-border .special-box p {
  color: #fff;
  font-size: 17px;
  padding-left: 16px;
}
.special-deals-area .special-deals-contain .special-border .special-box a {
  display: flex;
  height: 38px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.deal-pagination {
  width: 100%;
}
.deal-pagination nav {
  display: flex;
  justify-content: center;
  align-items: self-end;
}
.deal-pagination .flex-1 {
  display: none;
}
.deal-pagination .text-sm {
  color: #333;
}
.deal-pagination p {
  color: #fff !important;
}
.deal-pagination svg {
  width: 22px;
  position: relative;
  top: 5px;
  color: #9DC33B;
}

.modal.bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
  background: rgba(1, 1, 0, 0.8509803922);
  height: 100vh;
}

.special-deals-modal-dialog {
  margin: 80px 130px !important;
}
.special-deals-modal-dialog.modal-dialog {
  max-width: 100% !important;
}
.special-deals-modal-dialog.modal-dialog .modal-express-interest a {
  color: #fff;
  margin-top: 20px;
  display: block;
}
.special-deals-modal-dialog.modal-dialog .modal-express-interest a:hover {
  text-decoration: none;
  color: #fff;
}
.special-deals-modal-dialog.modal-dialog .modal-express-interest a i {
  font-size: 18px;
  color: #9dc33b;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #9dc33b;
}
@media (max-width: 1599px) {
  .special-deals-modal-dialog {
    margin: 80px 100px !important;
  }
}
@media (max-width: 1199px) {
  .special-deals-modal-dialog {
    margin: 80px 100px !important;
  }
}
@media (max-width: 991px) {
  .special-deals-modal-dialog {
    margin: 40px 50px !important;
  }
}
@media (max-width: 639px) {
  .special-deals-modal-dialog {
    margin: 20px 10px !important;
  }
}
.special-deals-modal-dialog .modal-content {
  padding: 30px 50px !important;
  background: #191F07;
  border: 1px solid #9DC33B;
}
@media (max-width: 639px) {
  .special-deals-modal-dialog .modal-content {
    padding: 0px 10px !important;
  }
}
.special-deals-modal-dialog .modal-content .modal-header {
  border: none !important;
}
.special-deals-modal-dialog .modal-content .modal-header .close {
  color: #9DC33B;
  text-shadow: none;
  font-size: 30px;
  opacity: 1 !important;
}
.special-deals-modal-dialog .modal-content .modal-header .close span i {
  font-size: 18px;
  color: #9DC33B;
  border: 1px solid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .special-deals-modal-dialog .special-deals-modal .one {
    order: 1;
  }
}
.special-deals-modal-dialog .special-deals-modal .two {
  padding: 0 50px 0 0;
}
@media (max-width: 1599px) {
  .special-deals-modal-dialog .special-deals-modal .two {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .special-deals-modal-dialog .special-deals-modal .two {
    padding: 0 20px;
    order: 2;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal-dialog .special-deals-modal .two {
    padding: 0 10px;
    order: 1;
    margin-top: 30px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal-dialog .special-deals-modal .two {
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  .special-deals-modal-dialog .special-deals-modal .three {
    order: 1;
  }
}
.special-deals-modal-dialog .special-deals-modal .image-box {
  position: relative;
  z-index: 2;
}
.special-deals-modal-dialog .special-deals-modal .image-box::before {
  position: absolute;
  content: "";
  top: 60px;
  bottom: 60px;
  left: 0;
  right: 40px;
  border: 2px solid #9DC33B;
  z-index: -1;
}
@media (max-width: 1599px) {
  .special-deals-modal-dialog .special-deals-modal .image-box::before {
    top: 30px;
    bottom: 30px;
  }
}
.special-deals-modal-dialog .special-deals-modal .image-box img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 350px;
}
.special-deals-modal-dialog .special-deals-modal .head-tle h2 {
  color: #9DC33B;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area {
  position: relative;
  height: 300px;
  overflow-x: hidden;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area a {
  color: #9DC33B;
  font-weight: 600;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area a i {
  color: #9DC33B;
  font-size: 25px;
  margin-left: 10px;
  position: relative;
  top: 4px;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area img {
  width: 60px;
  position: absolute;
  top: 0;
  right: 10px;
  content: "";
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area p {
  color: #fff;
  width: 80%;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area p a {
  color: #9DC33B;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area h4 {
  color: #fff;
  font-weight: 600;
  position: initial;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area ul {
  list-style: none;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area ul li {
  color: #fff;
  line-height: 30px;
  position: relative;
  margin-left: 20px;
}
.special-deals-modal-dialog .special-deals-modal .modal-content-area ul li i {
  color: #9DC33B;
  font-size: 7px;
  position: absolute;
  top: 11px;
  left: -17px;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-control {
  color: #898989;
  font-size: 15px;
  height: 55px;
  padding: 20px 8px 20px 40px;
  border-radius: 0;
  background-color: #1a1f08;
  background-clip: padding-box;
  border: none;
  width: 100%;
  text-transform: uppercase;
  border: 1px solid #648314;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group {
  width: 100%;
  height: auto;
  padding: 0;
  text-transform: uppercase !important;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group [type=reset],
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group [type=submit],
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group button,
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group html [type=button] {
  -webkit-appearance: button;
  background: none;
  border: none;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group i {
  color: #8d8d8d;
  font-size: 17px;
  position: absolute;
  left: 11px;
  top: 19px;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group.border-none {
  border: none;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .form-group label {
  color: red;
  font-size: 15px;
  text-transform: capitalize !important;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .btn:focus,
.special-deals-modal-dialog .special-deals-modal .modal-express-interest .form-horizontal .btn:hover {
  color: #333;
  background-color: #fff;
  text-transform: capitalize !important;
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest h3 {
  font-size: 1.6rem;
  color: #9DC33B;
  padding: 20px 0 0 0px;
}
@media (max-width: 1199px) {
  .special-deals-modal-dialog .special-deals-modal .modal-express-interest h3 {
    font-size: 1.5rem;
    padding: 15px 3px 0 0px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal-dialog .special-deals-modal .modal-express-interest h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 0px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal-dialog .special-deals-modal .modal-express-interest h3 {
    font-size: 1.2rem;
    padding: 15px 3px 0 0px;
  }
}
.special-deals-modal-dialog .special-deals-modal .modal-express-interest p {
  line-height: 28px;
  color: #fff;
  margin-top: 10px;
}
.special-deals-modal-dialog .special-deals-modal .col-md-5 {
  padding: 0 50px 0 0;
}
@media (max-width: 1599px) {
  .special-deals-modal-dialog .special-deals-modal .col-md-5 {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .special-deals-modal-dialog .special-deals-modal .col-md-5 {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal-dialog .special-deals-modal .col-md-5 {
    padding: 0 10px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal-dialog .special-deals-modal .col-md-5 {
    padding: 0 10px;
  }
}
.special-deals-modal-dialog .popupSlider .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  display: flex;
  bottom: 10px;
  overflow: visible;
  z-index: 999999;
  visibility: visible;
}
.special-deals-modal-dialog .popupSlider .swiper-button-next {
  right: 13px !important;
}
.special-deals-modal-dialog .popupSlider .swiper-button-prev {
  left: -50px !important;
}
.special-deals-modal-dialog .popupSlider .swiper-button-prev:after,
.special-deals-modal-dialog .popupSlider .swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  -webkit-clip-path: polygon(70% 0, 0 48%, 70% 100%);
          clip-path: polygon(70% 0, 0 48%, 70% 100%);
}
.special-deals-modal-dialog .popupSlider .swiper-button-next:after,
.special-deals-modal-dialog .popupSlider .swiper-rtl .swiper-button-prev:after {
  content: "next";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  -webkit-clip-path: polygon(30% 0, 100% 50%, 30% 99%);
          clip-path: polygon(30% 0, 100% 50%, 30% 99%);
}

.democenter-area-h {
  padding: 90px 0;
  background: #232323;
  margin-top: 150px;
}
@media (max-width: 1599px) {
  .democenter-area-h {
    padding: 30px 0;
    margin-top: 10px;
  }
}
@media (max-width: 1199px) {
  .democenter-area-h {
    padding: 30px 0;
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  .democenter-area-h {
    padding: 30px 0;
    margin-top: 60px;
  }
}
@media (max-width: 639px) {
  .democenter-area-h {
    padding: 0px 0 30px 0;
    margin-top: 10px;
  }
}
.democenter-area-h .democenter-img .first {
  display: flex;
  margin: 0;
  padding: 0;
}
@media (max-width: 639px) {
  .democenter-area-h .democenter-img .first {
    justify-content: start;
    padding: 0 20px;
  }
}
.democenter-area-h .democenter-img .first img {
  width: 560px;
  height: 370px;
}
@media (max-width: 1599px) {
  .democenter-area-h .democenter-img .first img {
    width: 430px;
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .democenter-area-h .democenter-img .first img {
    width: 350px;
    height: 250px;
  }
}
@media (max-width: 991px) {
  .democenter-area-h .democenter-img .first img {
    width: 100%;
  }
}
.democenter-area-h .democenter-img .second {
  padding: 0;
  margin: 0;
}
@media (max-width: 639px) {
  .democenter-area-h .democenter-img .second {
    justify-content: center;
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .democenter-area-h .democenter-img .second img {
    margin-bottom: 10px;
    margin-left: 80px;
  }
}
.democenter-area-h .democenter-img .second .democenter-img-1 img {
  width: 221px;
  height: 175px;
}
@media (max-width: 1599px) {
  .democenter-area-h .democenter-img .second .democenter-img-1 img {
    width: 221px;
    height: 135px;
  }
}
@media (max-width: 1199px) {
  .democenter-area-h .democenter-img .second .democenter-img-1 img {
    width: 180px;
    height: 120px;
  }
}
@media (max-width: 991px) {
  .democenter-area-h .democenter-img .second .democenter-img-1 img {
    display: none;
  }
}
@media (max-width: 639px) {
  .democenter-area-h .democenter-img .second .democenter-img-1 img {
    display: none;
  }
}
.democenter-area-h .democenter-img .second .democenter-img-2 img {
  width: 221px;
  height: 175px;
}
@media (max-width: 1599px) {
  .democenter-area-h .democenter-img .second .democenter-img-2 img {
    width: 221px;
    height: 135px;
  }
}
@media (max-width: 1199px) {
  .democenter-area-h .democenter-img .second .democenter-img-2 img {
    width: 180px;
    height: 120px;
  }
}
@media (max-width: 991px) {
  .democenter-area-h .democenter-img .second .democenter-img-2 img {
    display: none;
  }
}
@media (max-width: 639px) {
  .democenter-area-h .democenter-img .second .democenter-img-2 img {
    display: none;
  }
}
.democenter-area-h .democenter-img .democenter-img-box {
  display: flex;
  flex-wrap: inherit;
}
@media (max-width: 991px) {
  .democenter-area-h .democenter-img .democenter-img-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 639px) {
  .democenter-area-h .democenter-img .democenter-img-box {
    flex-wrap: wrap;
  }
}
.democenter-area-h .democenter-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.democenter-area-h .democenter-content p {
  color: #FFFFFF;
}
@media (max-width: 1599px) {
  .democenter-area-h .democenter-content p {
    padding-left: 30px;
  }
}
@media (max-width: 639px) {
  .democenter-area-h .democenter-content p {
    padding-left: 10px;
  }
}

.democenter-form-area {
  padding: 20px 0 150px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .democenter-form-area {
    padding: 20px 0 100px 0;
  }
}
@media (max-width: 991px) {
  .democenter-form-area {
    padding: 20px 0 80px 0;
  }
}
@media (max-width: 639px) {
  .democenter-form-area {
    padding: 20px 0 80px 0;
  }
}
.democenter-form-area .demo-form .form-container {
  background-color: #191F07;
  font-size: 0;
  padding: 60px 70px;
  border-radius: 0;
  position: relative;
}
@media (max-width: 639px) {
  .democenter-form-area .demo-form .form-container {
    padding: 20px 20px;
  }
}
.democenter-form-area .demo-form .form-container::before {
  content: "";
  position: absolute;
  width: 116%;
  height: 80%;
  top: 80px;
  bottom: 0;
  left: -70px;
  right: 0;
  margin: 0 auto;
  border: 2px solid #4c640e;
  z-index: -1;
}
@media (max-width: 991px) {
  .democenter-form-area .demo-form .form-container::before {
    left: -44px;
  }
}
@media (max-width: 639px) {
  .democenter-form-area .demo-form .form-container::before {
    display: none;
  }
}
.democenter-form-area .demo-form .form-container .title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 15px;
  text-align: center;
  line-height: 38px;
}
@media (max-width: 1199px) {
  .democenter-form-area .demo-form .form-container .title {
    font-size: 1.6rem;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .democenter-form-area .demo-form .form-container .title {
    font-size: 1.3rem;
    line-height: 30px;
  }
}
@media (max-width: 639px) {
  .democenter-form-area .demo-form .form-container .title {
    font-size: 1.1rem;
    text-align: left;
  }
}
.democenter-form-area .demo-form .form-container .title.visit {
  margin-top: 20px;
}
.democenter-form-area .demo-form .form-container .sub-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.democenter-form-area .demo-form .form-container .form-horizontal {
  font-size: 0;
}
.democenter-form-area .demo-form .form-container .form-horizontal .demo-submit {
  margin-top: 30px;
}
.democenter-form-area .demo-form .form-container .form-horizontal .demo-submit button {
  padding: 8px 40px !important;
  text-transform: uppercase !important;
}
.democenter-form-area .demo-form .form-container .form-horizontal .form-group {
  color: #333;
  width: 50%;
  padding: 0 8px;
  margin: 0 0 15px;
  display: inline-block;
}
.democenter-form-area .demo-form .form-container .form-horizontal .form-group i {
  color: #7e7e7e;
  font-size: 14px;
  position: absolute;
  left: 25px;
  top: 17px;
}
.democenter-form-area .demo-form .form-container .form-horizontal .form-group:nth-child(4) {
  margin-bottom: 30px;
}
.democenter-form-area .demo-form .form-container .form-horizontal .form-group label {
  font-size: 15px;
  color: red;
}
.democenter-form-area .demo-form .form-container .form-horizontal .form-control {
  color: #bbb !important;
  font-weight: 400;
  letter-spacing: 1px;
  height: 50px;
  padding: 0 10px 0 38px;
  border-radius: 3px;
  border: 2px solid #4c640e;
  box-shadow: none;
}
.democenter-form-area .demo-form .form-container .form-horizontal .form-control:focus {
  box-shadow: 0 0 5px #dcdcdc;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms {
  padding: 0 8px;
  margin: 0 0 25px;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms .check-label {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  vertical-align: top;
  display: inline-block;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms .checkbox {
  height: 17px;
  width: 17px;
  min-height: auto;
  margin: 2px 8px 0 0;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease 0s;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms .checkbox:before {
  content: "";
  height: 5px;
  width: 9px;
  border-bottom: 2px solid #00A9EF;
  border-left: 2px solid #00A9EF;
  transform: rotate(-45deg);
  position: absolute;
  left: 2px;
  top: 2.5px;
  transition: all 0.3s ease;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms .checkbox:checked:before {
  opacity: 1;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms .checkbox:not(:checked):before {
  opacity: 0;
}
.democenter-form-area .demo-form .form-container .form-horizontal .check-terms .checkbox:focus {
  outline: none;
}
.democenter-form-area .demo-form .form-container .signin-link {
  color: #333;
  font-size: 14px;
  width: calc(100% - 190px);
  margin-right: 30px;
  display: inline-block;
  vertical-align: top;
}
.democenter-form-area .demo-form .form-container .signin-link a {
  color: #00A9EF;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}
.democenter-form-area .demo-form .form-container .signin-link a:hover {
  text-decoration: underline;
}
.democenter-form-area .demo-form .form-container .form-horizontal .signup {
  color: #fff;
  background: #00A9EF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 160px;
  padding: 8px 15px 9px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
}
.democenter-form-area .demo-form .form-container .form-horizontal .btn:hover,
.democenter-form-area .demo-form .form-container .form-horizontal .btn:focus {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.15), 5px 5px rgba(0, 0, 0, 0.1);
  outline: none;
}
@media only screen and (max-width: 479px) {
  .democenter-form-area .demo-form .form-container .form-horizontal .form-group {
    width: 100%;
  }
  .democenter-form-area .demo-form .form-container .signin-link {
    width: 100%;
    margin: 0 10px 15px;
  }
}

.book-a-sale-area-h {
  padding: 40px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .book-a-sale-area-h {
    padding: 10px 0 30px 0;
  }
}
.book-a-sale-area-h .book-a-sale-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.book-a-sale-area-h .book-a-sale-content p {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1599px) {
  .book-a-sale-area-h .book-a-sale-content p {
    padding-left: 30px;
  }
}
@media (max-width: 639px) {
  .book-a-sale-area-h .book-a-sale-content p {
    padding-left: 10px;
    text-align: left;
  }
}

.testimonial-location-map-area {
  padding: 40px 0 20px 0;
  overflow: hidden;
}
@media (max-width: 639px) {
  .testimonial-location-map-area {
    padding: 0px 0 20px 0;
  }
}
.testimonial-location-map-area .testimonial-video-box {
  padding: 0 20px;
}
.testimonial-location-map-area .testimonial-video-box .testi-first {
  margin: 0 0 60px 0;
  position: relative;
}
.testimonial-location-map-area .testimonial-video-box .testi-first .testi-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 1599px) {
  .testimonial-location-map-area .testimonial-video-box .testi-first .testi-img {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .testimonial-location-map-area .testimonial-video-box .testi-first .testi-img {
    height: 240px;
  }
}
@media (max-width: 991px) {
  .testimonial-location-map-area .testimonial-video-box .testi-first .testi-img {
    height: auto;
  }
}
@media (max-width: 639px) {
  .testimonial-location-map-area .testimonial-video-box .testi-first .testi-img {
    height: auto;
  }
}
.testimonial-location-map-area .testimonial-video-box .hero-video {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(43%, -50%) !important;
}
.testimonial-location-map-area .testimonial-video-box .hero-video .video-play-btn1 {
  left: 0px;
  color: #FFFFFF;
  text-decoration: none;
  transform: scale(1.25);
  animation: zoomInUp 1s linear infinite alternate;
}
.testimonial-location-map-area .testimonial-video-box .hero-video .video-play-btn1 i {
  font-size: 25px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .testimonial-location-map-area .testimonial-video-box .hero-video .video-play-btn1 i {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .testimonial-location-map-area .testimonial-video-box .hero-video .video-play-btn1 i {
    font-size: 23px;
  }
}
@media (max-width: 639px) {
  .testimonial-location-map-area .testimonial-video-box .hero-video .video-play-btn1 i {
    font-size: 19px;
  }
}
.testimonial-location-map-area .testimonial-video-box .pulse1 {
  display: flex;
  justify-content: start;
  align-items: center;
}
.testimonial-location-map-area .testimonial-video-box .pulse1 i {
  background: #9DC33B;
  padding: 25px 27px 25px 29px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: animate-pulse 3s linear infinite;
}
@media (max-width: 1199px) {
  .testimonial-location-map-area .testimonial-video-box .pulse1 i {
    padding: 15px 17px 15px 19px;
    border: 2px solid #fff;
  }
}
@media (max-width: 991px) {
  .testimonial-location-map-area .testimonial-video-box .pulse1 i {
    padding: 25px 27px 25px 29px;
    border: 4px solid #fff;
  }
}
@media (max-width: 639px) {
  .testimonial-location-map-area .testimonial-video-box .pulse1 i {
    padding: 15px 17px 15px 19px;
    border: 2px solid #fff;
  }
}
.testimonial-location-map-area .testimonial-video-box .testi-second {
  position: relative;
  z-index: 1;
}
.testimonial-location-map-area .testimonial-video-box .testimonial {
  border: 1px solid #4a4a4a;
  padding: 70px 25px 100px;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-location-map-area .testimonial-video-box .testimonial:after {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #9DC33B;
  position: absolute;
  top: 20px;
  left: 25px;
}
.testimonial-location-map-area .testimonial-video-box .testimonial .description {
  font-size: 15px;
  color: #fff;
  line-height: 28px;
}
.testimonial-location-map-area .testimonial-video-box .testimonial .pic {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -30px;
  left: 25px;
}
.testimonial-location-map-area .testimonial-video-box .testimonial .pic img {
  width: 100%;
  height: auto;
}
.testimonial-location-map-area .testimonial-video-box .testimonial .testimonial-title {
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 150px;
}
.testimonial-location-map-area .testimonial-video-box .testimonial .testimonial-title small {
  display: block;
  font-size: 14px;
  color: #9DC33B;
  margin-top: 7px;
}
.testimonial-location-map-area .location-map-openhouse {
  padding: 0 20px;
}
.testimonial-location-map-area .location-map-openhouse iframe {
  height: 400px;
  border-radius: 12px;
}
@media (max-width: 1599px) {
  .testimonial-location-map-area .location-map-openhouse iframe {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .testimonial-location-map-area .location-map-openhouse iframe {
    height: 240px;
  }
}
@media (max-width: 991px) {
  .testimonial-location-map-area .location-map-openhouse iframe {
    height: 300px;
  }
}
@media (max-width: 639px) {
  .testimonial-location-map-area .location-map-openhouse iframe {
    height: 200px;
  }
}

.supplires-become-area {
  padding: 50px 0 90px 0;
}
@media (max-width: 1199px) {
  .supplires-become-area {
    padding: 30px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .supplires-become-area {
    padding: 0px 0 50px 0;
  }
}
@media (max-width: 639px) {
  .supplires-become-area {
    padding: 0px 0 60px 0;
  }
}
.supplires-become-area .part h2 {
  color: #9DC33B;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 30px 0 50px;
}
@media (max-width: 1599px) {
  .supplires-become-area .part h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 1199px) {
  .supplires-become-area .part h2 {
    font-size: 1.8rem;
    padding: 0 10px 0 20px;
  }
}
@media (max-width: 991px) {
  .supplires-become-area .part h2 {
    font-size: 1.4rem;
    padding: 0 10px 0 0px;
  }
}
@media (max-width: 639px) {
  .supplires-become-area .part h2 {
    font-size: 1.3rem;
    margin: 20px 0;
  }
}
.supplires-become-area .part p {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 639px) {
  .supplires-become-area .part p {
    font-size: 15px;
  }
}
.supplires-become-area .part img {
  width: 100%;
}
@media (max-width: 639px) {
  .supplires-become-area .part img {
    width: 50%;
  }
}
.supplires-become-area .part .modal {
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: scroll;
  outline: 0;
  background: rgba(1, 1, 0, 0.8509803922);
}

.suppliers-logos .col-6 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.suppliers-logos .col-6::before {
  position: absolute;
  content: "";
  height: 111px;
  top: 0px;
  left: 0;
  bottom: 0;
  background: #fff;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media (min-width: 1600px) {
  .suppliers-logos .col-6::before {
    width: 200px;
    height: 110px;
    top: -1px;
    left: 10px;
  }
}
@media (max-width: 1599px) {
  .suppliers-logos .col-6::before {
    width: 180px;
    height: 83px;
    top: -1px;
    left: 10px;
  }
}
@media (max-width: 1199px) {
  .suppliers-logos .col-6::before {
    width: 194px;
    height: 87px;
    left: 0px;
    top: -3px;
  }
}
@media (max-width: 991px) {
  .suppliers-logos .col-6::before {
    width: 185px;
    height: 88px;
    top: -3px;
    left: 0px;
  }
}
@media (max-width: 639px) {
  .suppliers-logos .col-6::before {
    width: 180px;
    height: 78px;
    top: -4px;
    left: 5px;
  }
}
.suppliers-logos img {
  width: 170px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}
@media (max-width: 1599px) {
  .suppliers-logos img {
    width: 170px;
    height: 80px;
  }
}
@media (max-width: 1199px) {
  .suppliers-logos img {
    width: 170px;
    height: 80px;
    display: flex;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .suppliers-logos img {
    width: 170px;
  }
}
@media (max-width: 639px) {
  .suppliers-logos img {
    width: 170px;
    height: 70px;
  }
}
.suppliers-logos a {
  text-decoration: none;
}
.suppliers-logos a:hover {
  text-decoration: none;
}
.suppliers-logos a p {
  text-align: left;
  color: #fff;
  padding: 10px 0 40px 0;
  font-size: 17px;
}

.suppliers-logos a:hover img {
  filter: grayscale(0);
}

.language-area .language-filter {
  padding: 0 0 80px 0;
  display: flex;
  justify-content: space-between;
}
.language-area .language-filter .filter-box {
  display: flex;
  justify-content: end;
}
.language-area .language-filter .filter-box .custom-select {
  width: 330px;
  font-size: 16px;
  font-weight: 600;
}

.special-deals-modal-dialog .modal-content.suppliers-content {
  background: #020300 !important;
  border: none !important;
}
@media (max-width: 639px) {
  .special-deals-modal-dialog .modal-content.suppliers-content .modal-body {
    padding: 0;
  }
  .special-deals-modal-dialog .modal-content.suppliers-content .col-xl-9 {
    padding: 0;
  }
}

.special-deals-modal .form-container {
  background: none !important;
  font-size: 0;
  padding: 60px 70px;
  border-radius: 0;
  position: relative;
}
@media (max-width: 1599px) {
  .special-deals-modal .form-container {
    padding: 60px 0px;
  }
}
@media (max-width: 1199px) {
  .special-deals-modal .form-container {
    padding: 60px 0px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal .form-container {
    padding: 60px 0px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal .form-container {
    padding: 20px 20px;
  }
}
.special-deals-modal .form-container::before {
  content: "";
  position: absolute;
  width: 116%;
  height: 80%;
  top: 80px;
  bottom: 0;
  left: -70px;
  right: 0;
  margin: 0 auto;
  border: 2px solid #4c640e;
  z-index: -1;
}
@media (max-width: 991px) {
  .special-deals-modal .form-container::before {
    left: -44px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal .form-container::before {
    display: none;
  }
}
.special-deals-modal .form-container .title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 15px;
  text-align: center;
  line-height: 38px;
}
@media (max-width: 1199px) {
  .special-deals-modal .form-container .title {
    font-size: 1.6rem;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal .form-container .title {
    font-size: 1.3rem;
    line-height: 30px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal .form-container .title {
    font-size: 1.1rem;
    text-align: left;
  }
}
.special-deals-modal .form-container .title.visit {
  margin-top: 20px;
}
.special-deals-modal .form-container .sub-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.special-deals-modal .form-container .form-horizontal {
  font-size: 0;
}
.special-deals-modal .form-container .form-horizontal .demo-submit {
  margin-top: 30px;
}
.special-deals-modal .form-container .form-horizontal .demo-submit button {
  padding: 8px 40px !important;
  text-transform: uppercase !important;
}
.special-deals-modal .form-container .form-horizontal .form-group {
  color: #333;
  width: 50%;
  padding: 0 8px;
  margin: 0 0 15px;
  display: inline-block;
}
.special-deals-modal .form-container .form-horizontal .form-group i {
  color: #7e7e7e;
  font-size: 17px;
  position: absolute;
  left: 30px;
  top: 29px;
}
@media (max-width: 1199px) {
  .special-deals-modal .form-container .form-horizontal .form-group i {
    top: 15px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal .form-container .form-horizontal .form-group i {
    top: 15px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal .form-container .form-horizontal .form-group i {
    top: 15px;
  }
}
.special-deals-modal .form-container .form-horizontal .form-group:nth-child(4) {
  margin-bottom: 30px;
}
.special-deals-modal .form-container .form-horizontal .form-group label {
  font-size: 15px;
  color: red;
}
.special-deals-modal .form-container .form-horizontal .form-control {
  color: #bbb !important;
  font-weight: 400;
  letter-spacing: 1px;
  height: 80px;
  padding: 0 10px 0 50px;
  border-radius: 3px;
  border: 2px solid #4c640e;
  box-shadow: none;
  background: none !important;
}
@media (max-width: 1199px) {
  .special-deals-modal .form-container .form-horizontal .form-control {
    height: 50px;
  }
}
@media (max-width: 991px) {
  .special-deals-modal .form-container .form-horizontal .form-control {
    height: 50px;
  }
}
@media (max-width: 639px) {
  .special-deals-modal .form-container .form-horizontal .form-control {
    height: 50px;
  }
}
.special-deals-modal .form-container .form-horizontal .form-control .error {
  color: red;
  font-size: 14px;
}
.special-deals-modal .form-container .form-horizontal .form-control:focus {
  box-shadow: 0 0 5px #dcdcdc;
}
.special-deals-modal .form-container .form-horizontal .check-terms {
  padding: 0 8px;
  margin: 0 0 25px;
}
.special-deals-modal .form-container .form-horizontal .check-terms .check-label {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  vertical-align: top;
  display: inline-block;
}
.special-deals-modal .form-container .form-horizontal .check-terms .checkbox {
  height: 17px;
  width: 17px;
  min-height: auto;
  margin: 2px 8px 0 0;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease 0s;
}
.special-deals-modal .form-container .form-horizontal .check-terms .checkbox:before {
  content: "";
  height: 5px;
  width: 9px;
  border-bottom: 2px solid #00A9EF;
  border-left: 2px solid #00A9EF;
  transform: rotate(-45deg);
  position: absolute;
  left: 2px;
  top: 2.5px;
  transition: all 0.3s ease;
}
.special-deals-modal .form-container .form-horizontal .check-terms .checkbox:checked:before {
  opacity: 1;
}
.special-deals-modal .form-container .form-horizontal .check-terms .checkbox:not(:checked):before {
  opacity: 0;
}
.special-deals-modal .form-container .form-horizontal .check-terms .checkbox:focus {
  outline: none;
}
.special-deals-modal .form-container .signin-link {
  color: #333;
  font-size: 14px;
  width: calc(100% - 190px);
  margin-right: 30px;
  display: inline-block;
  vertical-align: top;
}
.special-deals-modal .form-container .signin-link a {
  color: #00A9EF;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}
.special-deals-modal .form-container .signin-link a:hover {
  text-decoration: underline;
}
.special-deals-modal .form-container .form-horizontal .signup {
  color: #fff;
  background: #00A9EF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 160px;
  padding: 8px 15px 9px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
}
.special-deals-modal .form-container .form-horizontal .btn:hover,
.special-deals-modal .form-container .form-horizontal .btn:focus {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.15), 5px 5px rgba(0, 0, 0, 0.1);
  outline: none;
}
@media only screen and (max-width: 479px) {
  .special-deals-modal .form-container .form-horizontal .form-group {
    width: 100%;
  }
  .special-deals-modal .form-container .signin-link {
    width: 100%;
    margin: 0 10px 15px;
  }
}

.yes-work-culture {
  padding: 60px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .yes-work-culture {
    padding: 10px 0 30px 0;
  }
}
.yes-work-culture h2 {
  color: #9DC33B;
  margin-bottom: 25px;
}
.yes-work-culture p {
  text-align: left;
  line-height: 28px;
  color: #fff;
}
.yes-work-culture i {
  color: #9DC33B;
  margin: 0 10px 0 0;
}

.team-voice-area h4 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
}
@media (max-width: 639px) {
  .team-voice-area h4 {
    font-size: 1.6rem;
  }
}
.team-voice-area .team-voice-first {
  position: relative;
  margin: 0 0 30px 0;
  background: url(../img/join-testi-video-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  height: 470px;
  background-size: cover;
}
@media (max-width: 639px) {
  .team-voice-area .team-voice-first {
    height: 320px;
  }
}
.team-voice-area .team-voice-first::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3215686275);
}
.team-voice-area .team-voice-first::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 10%;
  bottom: 0;
  right: 0;
  width: 116%;
  height: 80%;
  border: 1px solid #638118;
  z-index: -1;
}
.team-voice-area .team-voice-first h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 100;
  margin-top: 25px;
  position: absolute;
  transform: translate(0%, 70%) !important;
  left: 0;
  top: 50%;
  padding: 0 130px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .team-voice-area .team-voice-first h3 {
    font-size: 1.5rem;
    padding: 0 80px;
  }
}
@media (max-width: 991px) {
  .team-voice-area .team-voice-first h3 {
    font-size: 1.5rem;
    padding: 0 60px;
  }
}
@media (max-width: 639px) {
  .team-voice-area .team-voice-first h3 {
    font-size: 1.1rem;
    padding: 0 60px;
  }
}
.team-voice-area .team-voice-first .hero-video {
  position: absolute;
  left: 40px;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(43%, -50%) !important;
}
@media (max-width: 1599px) {
  .team-voice-area .team-voice-first .hero-video {
    left: 10px;
  }
}
@media (max-width: 1199px) {
  .team-voice-area .team-voice-first .hero-video {
    left: 10px;
  }
}
@media (max-width: 991px) {
  .team-voice-area .team-voice-first .hero-video {
    left: 20px;
  }
}
@media (max-width: 639px) {
  .team-voice-area .team-voice-first .hero-video {
    left: -10px;
  }
}
.team-voice-area .team-voice-first .hero-video .video-play-btn1 {
  left: 0px;
  color: #FFFFFF;
  text-decoration: none;
  transform: scale(1.25);
  animation: zoomInUp 1s linear infinite alternate;
}
.team-voice-area .team-voice-first .hero-video .video-play-btn1 i {
  font-size: 23px;
  color: #FFFFFF;
}
.team-voice-area .team-voice-first .pulse1 {
  display: flex;
  justify-content: start;
  align-items: center;
}
.team-voice-area .team-voice-first .pulse1 i {
  background: #9DC33B;
  padding: 15px 17px 15px 19px;
  border: 4px solid #6a6a6a;
  border-radius: 50%;
  animation: animate-pulse 3s linear infinite;
}

.vacancies-area {
  padding: 40px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .vacancies-area {
    padding: 10px 0 30px 0;
  }
}
.vacancies-area h4 {
  color: #9DC33B;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 1599px) {
  .vacancies-area h4 {
    margin-bottom: 25px;
  }
}
@media (max-width: 639px) {
  .vacancies-area h4 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
.vacancies-area .vacancies-box {
  background: #191F07;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: end;
}
@media (max-width: 639px) {
  .vacancies-area .vacancies-box {
    padding: 30px 0 30px 0px;
  }
}
.vacancies-area .vacancies-box .vac-post h5 {
  color: #d9d9d9;
  margin-bottom: 20px;
}
.vacancies-area .vacancies-box .vac-post p {
  color: #c3c3c3;
}
.vacancies-area .vacancies-box .vac-apply {
  justify-content: end;
  display: flex;
  align-items: end;
  flex-direction: column;
}
.vacancies-area .vacancies-box .vac-apply p {
  color: #fff;
}
.vacancies-area .vacancies-box .vac-apply .btn {
  font-size: 14px !important;
  padding: 10px 44px !important;
}
@media (max-width: 639px) {
  .vacancies-area .vacancies-box .vac-apply {
    justify-content: start;
    align-items: start;
  }
}
.vacancies-area .vacancies-box .accordian {
  width: 100%;
  color: #b9b9b9;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 100;
  letter-spacing: 0.035em;
  font-size: 14px;
  margin: 0 auto;
}
.vacancies-area .vacancies-box .accordian ul > li {
  margin-bottom: 8px;
}
.vacancies-area .vacancies-box .accordian ul > li:first-child h3 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.vacancies-area .vacancies-box .accordian h3 {
  cursor: pointer;
  padding: 1.2rem 1rem 1rem 1.2rem;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: block;
  font-weight: 100;
  letter-spacing: 0.035em;
  position: relative;
  font-size: 18px;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border-radius: 3px;
  text-align: right;
  border-left: 1px solid #9DC33B;
}
@media (max-width: 639px) {
  .vacancies-area .vacancies-box .accordian h3 {
    font-size: 15px;
    right: 10px;
  }
}
.vacancies-area .vacancies-box .accordian h3:hover,
.vacancies-area .vacancies-box .accordian h3.closed {
  color: var(--dark-gray);
}
.vacancies-area .vacancies-box .accordian h3:hover .arrow {
  border-top: 2px solid var(--dark-gray);
  border-right: 2px solid var(--dark-gray);
}
.vacancies-area .vacancies-box .accordian ul ul {
  display: none;
  height: 100%;
  margin-bottom: -7px;
  margin-top: 30px;
}
.vacancies-area .vacancies-box .accordian ul ul li {
  background-color: #232323;
  padding: 5px 40px;
  box-shadow: none;
  position: relative;
}
@media (max-width: 639px) {
  .vacancies-area .vacancies-box .accordian ul ul li {
    padding: 5px 20px;
  }
}
.vacancies-area .vacancies-box .accordian ul ul li i {
  color: #9DC33B;
  font-size: 16px;
  position: absolute;
  left: 17px;
  top: 6px;
}
@media (max-width: 639px) {
  .vacancies-area .vacancies-box .accordian ul ul li i {
    font-size: 14px;
    left: 3px;
    top: 8px;
  }
}
.vacancies-area .vacancies-box .accordian ul ul li p {
  opacity: 0;
  transition: all 0.5s;
  transform: translatey(-20px);
}
.vacancies-area .vacancies-box .accordian ul ul.open p {
  opacity: 1;
  transform: translatey(0px);
}
.vacancies-area .vacancies-box .accordian .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--light-gray);
  border-right: 2px solid var(--light-gray);
  transform: rotate(135deg);
  transform-origin: center;
  float: right;
  margin-right: 8px;
  transition: transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1);
}
.vacancies-area .vacancies-box .accordian .arrow.closed {
  margin-top: 4px;
  transform: rotate(-45deg);
  border-top: 2px solid var(--dark-gray);
  border-right: 2px solid var(--dark-gray);
}
.vacancies-area .vacancies-box .sidebarNav {
  max-width: 300px;
  border: 1px solid rgba(153, 153, 153, 0.231372549);
}
.vacancies-area .vacancies-box .sidebarNav h3 {
  border-radius: 0;
  box-shadow: none;
  background: none;
  margin-bottom: 0;
}
.vacancies-area .vacancies-box .sidebarNav h3:hover,
.vacancies-area .vacancies-box .sidebarNav h3.closed {
  background: none;
}
.vacancies-area .vacancies-box .sidebarNav ul > li {
  margin: 0;
}
.vacancies-area .vacancies-box .sidebarNav ul ul li {
  padding: 0;
  background: none;
  border: 0;
}
.vacancies-area .vacancies-box .sidebarNav ul ul li a {
  color: var(--darkgray);
  padding: 1rem 0 1rem 3em;
  display: block;
  text-decoration: none;
}
.vacancies-area .vacancies-box .sidebarNav ul ul li a:hover {
  text-decoration: underline;
}
.vacancies-area .vacancies-box body > div {
  flex: 1 1 600px;
  margin-bottom: 100px;
}
.vacancies-area .vacancies-box ul,
.vacancies-area .vacancies-box ol {
  margin: 0;
  padding: 0;
}
.vacancies-area .vacancies-box li {
  list-style: none;
  padding: 0;
}
.vacancies-area .vacancies-box p {
  line-height: 1.8em;
  margin-bottom: 10px;
}
.vacancies-area .vacancies-box h4 {
  text-align: center;
  margin: 20px 20px 50px;
  color: orange;
  font-size: 2em;
}
.vacancies-area .vacancies-box .role {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vacancies-area .vacancies-box .role h2 {
  color: #fff;
  font-size: 1.3rem;
  position: absolute;
  top: 37px;
  left: 50px;
}
@media (max-width: 639px) {
  .vacancies-area .vacancies-box .role h2 {
    font-size: 1.1rem;
    left: 20px;
  }
}
.vacancies-area .vacancies-box .role h2 span {
  font-size: 15px;
  color: #9DC33B;
  font-family: sans-serif;
}
.vacancies-area .vacancies-box .role h5 {
  color: #9DC33B;
  padding: 25px 0 5px 0;
}
.vacancies-area .vacancies-box .show {
  width: 100%;
  height: auto !important;
  position: fixed !important;
}

.join-team-form-area {
  padding: 60px 0 80px 0;
  overflow: hidden;
  background-color: #191F07;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .join-team-form-area {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .join-team-form-area {
    padding: 40px 0;
  }
}
@media (max-width: 639px) {
  .join-team-form-area {
    padding: 30px 0;
    margin-bottom: 20px;
  }
}
.join-team-form-area .join-team-form .position-relative {
  text-align: center;
}
.join-team-form-area .join-team-form .position-relative .fa-refresh {
  font-size: 24px !important;
  padding-top: 13px !important;
  position: absolute !important;
  top: 4px !important;
  left: 140px !important;
  color: #9dc33b !important;
  right: -40px !important;
}
.join-team-form-area .join-team-form .position-relative .mycaptcha {
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}
.join-team-form-area .join-team-form h3 {
  color: #9DC33B;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 600;
}
@media (max-width: 1599px) {
  .join-team-form-area .join-team-form h3 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .join-team-form-area .join-team-form h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .join-team-form-area .join-team-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 639px) {
  .join-team-form-area .join-team-form h3 {
    font-size: 1.2rem;
    margin-bottom: 0px;
  }
}
.join-team-form-area .join-team-form .form-container {
  background-color: #191F07;
  font-size: 0;
  border-radius: 0;
  position: relative;
}
@media (max-width: 639px) {
  .join-team-form-area .join-team-form .form-container {
    padding: 20px 20px;
  }
}
.join-team-form-area .join-team-form .form-container::before {
  content: "";
  position: absolute;
  width: 116%;
  height: 80%;
  top: 80px;
  bottom: 0;
  left: -70px;
  right: 0;
  margin: 0 auto;
  border: 2px solid #4c640e;
  z-index: -1;
}
@media (max-width: 991px) {
  .join-team-form-area .join-team-form .form-container::before {
    left: -44px;
  }
}
@media (max-width: 639px) {
  .join-team-form-area .join-team-form .form-container::before {
    display: none;
  }
}
.join-team-form-area .join-team-form .form-container .title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 15px;
  text-align: center;
  line-height: 38px;
}
@media (max-width: 1199px) {
  .join-team-form-area .join-team-form .form-container .title {
    font-size: 1.6rem;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .join-team-form-area .join-team-form .form-container .title {
    font-size: 1.3rem;
    line-height: 30px;
  }
}
@media (max-width: 639px) {
  .join-team-form-area .join-team-form .form-container .title {
    font-size: 1.1rem;
    text-align: left;
  }
}
.join-team-form-area .join-team-form .form-container .title.visit {
  margin-top: 20px;
}
.join-team-form-area .join-team-form .form-container .sub-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.join-team-form-area .join-team-form .form-container .form-horizontal {
  font-size: 0;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .demo-submit {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .join-team-form-area .join-team-form .form-container .form-horizontal .demo-submit {
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  .join-team-form-area .join-team-form .form-container .form-horizontal .demo-submit {
    margin-top: 0px;
  }
}
.join-team-form-area .join-team-form .form-container .form-horizontal .demo-submit button {
  padding: 8px 60px !important;
  text-transform: uppercase !important;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .demo-submit .btn::before {
  background: none !important;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .form-group {
  color: #333;
  width: 100%;
  padding: 0 8px;
  margin: 0 0 35px;
  display: inline-block;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .form-group i {
  color: #7e7e7e;
  font-size: 14px;
  position: absolute;
  left: 25px;
  top: 17px;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .form-group:nth-child(4) {
  margin-bottom: 30px;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .form-group label {
  font-size: 15px;
  font-weight: 400;
  color: red;
  position: absolute;
  padding: 3px 0;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .form-control {
  color: #bbb !important;
  font-weight: 400;
  letter-spacing: 1px;
  height: 50px;
  padding: 0 10px 0 38px;
  border-radius: 3px;
  border: 2px solid #4c640e;
  box-shadow: none;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .form-control:focus {
  box-shadow: 0 0 5px #dcdcdc;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms {
  padding: 0 8px;
  margin: 0 0 25px;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms .check-label {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  vertical-align: top;
  display: inline-block;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms .checkbox {
  height: 17px;
  width: 17px;
  min-height: auto;
  margin: 2px 8px 0 0;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease 0s;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms .checkbox:before {
  content: "";
  height: 5px;
  width: 9px;
  border-bottom: 2px solid #00A9EF;
  border-left: 2px solid #00A9EF;
  transform: rotate(-45deg);
  position: absolute;
  left: 2px;
  top: 2.5px;
  transition: all 0.3s ease;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms .checkbox:checked:before {
  opacity: 1;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms .checkbox:not(:checked):before {
  opacity: 0;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .check-terms .checkbox:focus {
  outline: none;
}
.join-team-form-area .join-team-form .form-container .signin-link {
  color: #333;
  font-size: 14px;
  width: calc(100% - 190px);
  margin-right: 30px;
  display: inline-block;
  vertical-align: top;
}
.join-team-form-area .join-team-form .form-container .signin-link a {
  color: #00A9EF;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}
.join-team-form-area .join-team-form .form-container .signin-link a:hover {
  text-decoration: underline;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .signup {
  color: #fff;
  background: #00A9EF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 160px;
  padding: 8px 15px 9px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
}
.join-team-form-area .join-team-form .form-container .form-horizontal .btn:hover,
.join-team-form-area .join-team-form .form-container .form-horizontal .btn:focus {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.15), 5px 5px rgba(0, 0, 0, 0.1);
  outline: none;
}
@media only screen and (max-width: 479px) {
  .join-team-form-area .join-team-form .form-container .form-horizontal .form-group {
    width: 100%;
  }
  .join-team-form-area .join-team-form .form-container .signin-link {
    width: 100%;
    margin: 0 10px 15px;
  }
}
.join-team-form-area .join-team-form .alert-danger {
  color: #721c24;
  border-color: #4c640e;
  background: #f3d4d4;
  margin: 0 8px 25px 8px;
}
.join-team-form-area .join-team-form p {
  color: #333;
  position: relative;
  z-index: 99999;
  font-size: 15px;
  margin: 0;
}

.career-form .sr-only {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.career-form .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #fff;
  background-color: #9DC33B;
  cursor: pointer;
}
.career-form [type=file]:focus + .btn {
  outline: 5px solid #a52;
}
.career-form select.form-control:not([size]):not([multiple]) {
  height: 75px !important;
}
@media (max-width: 1599px) {
  .career-form select.form-control:not([size]):not([multiple]) {
    height: 75px !important;
  }
}
@media (max-width: 1199px) {
  .career-form select.form-control:not([size]):not([multiple]) {
    height: 50px !important;
  }
}
@media (max-width: 991px) {
  .career-form select.form-control:not([size]):not([multiple]) {
    height: 50px !important;
  }
}

.apply-now {
  margin: 30px 0;
}

#resume {
  padding: 9px 0 0 40px;
}

.cv-upload {
  background: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  display: block;
  color: #333 !important;
  font-weight: 600;
  width: 190px;
}

.timeline-area .main-timeline {
  padding: 20px 10px 0 10px;
}
.timeline-area .timeline-bottom {
  color: #fff;
  text-align: center;
  border: 1px solid #9DC33B;
  padding: 20px 30px;
  margin-bottom: 90px;
}
@media (max-width: 639px) {
  .timeline-area .timeline-bottom {
    text-align: center;
  }
}
.timeline-area .main-timeline:after {
  content: "";
  display: block;
  clear: both;
}
.timeline-area .main-timeline .timeline {
  width: calc(50% + 7px);
  padding: 20px 60px 20px 0;
  margin: -20px 0 0 0;
  border-radius: 20px;
  border: 10px solid transparent;
  border-right: 7px solid #9DC33B;
  float: left;
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .timeline-area .main-timeline .timeline {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .timeline-area .main-timeline .timeline {
    flex-wrap: wrap;
  }
}
@media (max-width: 639px) {
  .timeline-area .main-timeline .timeline {
    flex-wrap: wrap;
  }
}
.timeline-area .main-timeline .timeline img {
  margin-right: 30px;
  max-width: 230px;
  align-items: flex-start;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1599px) {
  .timeline-area .main-timeline .timeline img {
    max-width: 220px;
  }
}
@media (max-width: 1199px) {
  .timeline-area .main-timeline .timeline img {
    width: 100%;
    margin: 0;
    max-width: none;
  }
}
@media (max-width: 991px) {
  .timeline-area .main-timeline .timeline img {
    width: 100%;
    margin: 0;
    max-width: none;
  }
}
@media (max-width: 639px) {
  .timeline-area .main-timeline .timeline img {
    width: 100%;
    margin: 0;
    max-width: none;
  }
}
.timeline-area .main-timeline .timeline:before,
.timeline-area .main-timeline .timeline:after {
  content: "";
  background-color: #fff;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  position: absolute;
  right: -18px;
  top: 40px;
}
.timeline-area .main-timeline .timeline:after {
  border-radius: 3px;
  transform: rotate(0deg);
  right: 40px;
  top: 40px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 50% 47%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 50% 47%);
}
.timeline-area .main-timeline .timeline-content {
  color: #fff;
  min-height: 130px;
  padding: 0 0 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid #9DC33B;
}
.timeline-area .main-timeline .timeline-content:hover {
  text-decoration: none;
}
.timeline-area .main-timeline .timeline-icon {
  font-size: 40px;
  line-height: 40px;
  position: absolute;
  bottom: 15px;
  right: 16px;
}
.timeline-area .main-timeline .title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 10px 10px 10px 20px;
  margin: 0 0 5px;
  border-bottom: 1px solid #9DC33B;
  background: #191F07;
  font-family: sans-serif !important;
}
.timeline-area .main-timeline .description {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 25px;
  margin: 20px 20px 0 20px;
}
.timeline-area .main-timeline .timeline:nth-child(even) {
  float: right;
  padding: 20px 0 20px 60px;
  margin: -21px 0 0 0;
  border-right: none;
  border-left: 7px solid #9DC33B;
}
.timeline-area .main-timeline .timeline:nth-child(even):before {
  right: auto;
  left: -18px;
}
.timeline-area .main-timeline .timeline:nth-child(even):after {
  right: auto;
  left: 40px;
  -webkit-clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 50% 47%);
          clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 50% 47%);
}
.timeline-area .main-timeline .timeline:nth-child(even) .timeline-icon {
  right: auto;
  left: 16px;
}
.timeline-area .main-timeline .timeline:nth-child(even) .description {
  margin: 20px 10px 0 20px;
}
@media screen and (max-width: 767px) {
  .timeline-area .main-timeline .timeline,
  .timeline-area .main-timeline .timeline:nth-child(even) {
    width: 100%;
    padding: 20px 0 20px 30px;
    margin: -25px 0 0;
    border-left: 5px solid #fff;
    border-right: none;
  }
  .timeline-area .main-timeline .timeline:before,
  .timeline-area .main-timeline .timeline:nth-child(even):before {
    right: auto;
    left: -10px;
    height: 15px;
    width: 15px;
    top: 45px;
  }
  .timeline-area .main-timeline .timeline:after,
  .timeline-area .main-timeline .timeline:nth-child(even):after {
    right: auto;
    left: 12px !important;
    transform: rotate(180deg) !important;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 50% 47%) !important;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 50% 47%) !important;
  }
  .timeline-area .main-timeline .description,
  .timeline-area .main-timeline .timeline:nth-child(even) .description {
    margin: 20px 20px 0 80px;
  }
  .timeline-area .main-timeline .timeline-icon,
  .timeline-area .main-timeline .timeline:nth-child(even) .timeline-icon {
    left: 16px;
    right: auto;
  }
}
@media screen and (max-width: 576px) {
  .timeline-area .main-timeline .timeline-content {
    padding-bottom: 70px;
  }
  .timeline-area .main-timeline .description,
  .timeline-area .main-timeline .timeline:nth-child(even) .description {
    margin: 20px 20px 0 20px;
  }
}

.sister-concerns-area {
  padding: 40px 0 100px 0;
}
@media (max-width: 639px) {
  .sister-concerns-area {
    padding: 10px 0 30px 0;
  }
}
.sister-concerns-area h2 {
  color: #9DC33B;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}
.sister-concerns-area a {
  text-decoration: none;
}
.sister-concerns-area a:hover {
  text-decoration: none;
}
@media (max-width: 639px) {
  .sister-concerns-area a {
    width: 50%;
    margin-bottom: 20px;
  }
}
.sister-concerns-area .contain-box1 {
  height: 350px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box1 {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box1 {
    padding: 0;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box1 {
    justify-content: center;
    height: auto;
  }
}
.sister-concerns-area .contain-box1 img {
  width: 90%;
  transform: perspective(1500px) rotateY(0deg);
  transition: transform 1s ease 0s;
}
.sister-concerns-area .contain-box1 img:hover {
  transform: perspective(3000px) rotateY(65deg);
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box1 img {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box1 img {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .sister-concerns-area .contain-box1 img {
    width: 86%;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box1 img {
    width: 100%;
  }
}
.sister-concerns-area .contain-box1 h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 30px 0 0 0;
}
.sister-concerns-area .contain-box2 {
  height: 350px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box2 {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box2 {
    padding: 0;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box2 {
    justify-content: center;
    height: auto;
  }
}
.sister-concerns-area .contain-box2 img {
  width: 92%;
  transform: perspective(1500px) rotateY(0deg);
  transition: transform 1s ease 0s;
}
.sister-concerns-area .contain-box2 img:hover {
  transform: perspective(3000px) rotateY(-65deg);
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box2 img {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box2 img {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .sister-concerns-area .contain-box2 img {
    width: 90%;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box2 img {
    width: 100%;
  }
}
.sister-concerns-area .contain-box2 h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 30px 0 0 0;
}
.sister-concerns-area .contain-box3 {
  height: 350px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box3 {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box3 {
    padding: 0;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box3 {
    justify-content: center;
    height: auto;
  }
}
.sister-concerns-area .contain-box3 img {
  width: 90%;
  transform: perspective(1500px) rotateY(0deg);
  transition: transform 1s ease 0s;
}
.sister-concerns-area .contain-box3 img:hover {
  transform: perspective(3000px) rotateY(65deg);
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box3 img {
    width: 100%;
  }
}
.sister-concerns-area .contain-box3 h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 30px 0 0 0;
}
.sister-concerns-area .contain-box4 {
  height: 350px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box4 {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box4 {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .sister-concerns-area .contain-box4 {
    justify-content: start;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box4 {
    justify-content: center;
    height: auto;
  }
}
.sister-concerns-area .contain-box4 img {
  width: 90%;
  transform: perspective(1500px) rotateY(0deg);
  transition: transform 1s ease 0s;
}
.sister-concerns-area .contain-box4 img:hover {
  transform: perspective(3000px) rotateY(-65deg);
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box4 img {
    width: 100%;
  }
}
.sister-concerns-area .contain-box4 h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 30px 0 0 0;
}
.sister-concerns-area .contain-box5 {
  height: 350px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box5 {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box5 {
    padding: 0;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box5 {
    justify-content: center;
    height: auto;
  }
}
.sister-concerns-area .contain-box5 img {
  width: 90%;
  transform: perspective(1500px) rotateY(0deg);
  transition: transform 1s ease 0s;
}
.sister-concerns-area .contain-box5 img:hover {
  transform: perspective(3000px) rotateY(65deg);
}
@media (max-width: 1599px) {
  .sister-concerns-area .contain-box5 img {
    width: 92%;
  }
}
@media (max-width: 1199px) {
  .sister-concerns-area .contain-box5 img {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .sister-concerns-area .contain-box5 img {
    width: 90%;
  }
}
@media (max-width: 639px) {
  .sister-concerns-area .contain-box5 img {
    width: 100%;
  }
}
.sister-concerns-area .contain-box5 h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 30px 0 0 0;
}

.clients-area-h {
  padding: 40px 0;
  background: #232323;
}
@media (max-width: 639px) {
  .clients-area-h {
    padding: 10px 0 30px 0;
  }
}
.clients-area-h .clients-content h3 {
  font-size: 2rem;
  color: #9DC33B;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .clients-area-h .clients-content h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .clients-area-h .clients-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
@media (max-width: 639px) {
  .clients-area-h .clients-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
.clients-area-h .clients-content p {
  color: #FFFFFF;
}
@media (max-width: 1599px) {
  .clients-area-h .clients-content p {
    padding-left: 30px;
  }
}
@media (max-width: 639px) {
  .clients-area-h .clients-content p {
    padding-left: 10px;
    text-align: left;
  }
}

.steel-divisions-area {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .steel-divisions-area {
    padding: 10px 0 30px 0;
  }
}
.steel-divisions-area .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.steel-divisions-area .swiper .swiper-pagination-clickable .swiper-pagination-bullet {
  display: flex !important;
  width: 15px;
  height: 15px;
  background: #9DC33B;
}
.steel-divisions-area .swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.steel-divisions-area .swiper .swiper-wrapper {
  padding-bottom: 60px;
}
.steel-divisions-area .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: calc((100% - 30px) / 2);
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.steel-divisions-area .swiper-slide .swiper-img-box {
  background: #fff;
}
.steel-divisions-area .swiper-slide .swiper-img-box img {
  width: 260px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 30px;
}
@media (max-width: 1599px) {
  .steel-divisions-area .swiper-slide .swiper-img-box img {
    width: 200px;
    height: 100px;
  }
}
@media (max-width: 639px) {
  .steel-divisions-area .swiper-slide .swiper-img-box img {
    width: 160px;
  }
}
.steel-divisions-area .swiper-slide .swiper-img-box p {
  width: 100%;
  background: #232323;
  color: #fff;
  padding: 10px 0 0 0;
  margin: 0;
}
@media (max-width: 1599px) {
  .steel-divisions-area .swiper-slide .swiper-img-box p {
    width: 200px;
  }
}
@media (max-width: 639px) {
  .steel-divisions-area .swiper-slide .swiper-img-box p {
    width: 160px;
  }
}
.steel-divisions-area h2 {
  color: #9DC33B;
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0 0 40px 0;
}
@media (max-width: 1599px) {
  .steel-divisions-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 1199px) {
  .steel-divisions-area h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  .steel-divisions-area h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 639px) {
  .steel-divisions-area h2 {
    font-size: 1.2rem;
  }
}
.steel-divisions-area .suppliersLogo {
  margin: 20px 5px;
}
.steel-divisions-area .suppliersLogo a {
  text-decoration: none;
  color: #232323 !important;
}
.steel-divisions-area .suppliersLogo a:hover img {
  text-decoration: none;
  filter: grayscale(0);
}
.steel-divisions-area .suppliersLogo a img {
  width: 100%;
  filter: grayscale(1);
}

.page {
  position: relative;
  max-width: 40em;
  margin: 2em auto;
  background-color: #fff;
  box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.page__main {
  padding: 3em;
}

@media (min-width: 32em) {
  .page__main {
    padding: 6em 4em;
  }
}
.page__pretitle {
  display: block;
  margin: 0 0 2em;
}

.page__pretitle-link {
  color: #2d2dc7;
  font-family: "Roboto";
  text-decoration: none;
  transition: color 0.4s ease;
}

.page__pretitle-link:hover {
  color: blue;
}

.read-more__link-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0 0 0;
}

.read-more.is-inline,
.read-more.is-inline p,
.read-more.is-inline + span {
  display: inline;
}

.read-more.is-inline + span {
  margin-left: 0.25em;
}

.why-choose-us-icons {
  padding: 60px 0;
  margin-bottom: 30px;
}
@media (max-width: 1599px) {
  .why-choose-us-icons {
    padding: 30px 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .why-choose-us-icons {
    padding: 20px 0;
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons {
    padding: 20px 0;
    margin-bottom: 0px;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons {
    padding: 20px 0;
    margin-bottom: 0px;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-two {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box {
  background: #191F07;
  padding: 40px 50px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box {
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box {
    padding: 30px 22px;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box {
    width: 90%;
    padding: 30px 25px;
    margin: 18px auto;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box img {
  width: 60%;
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box img {
    width: 50%;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box p {
  color: #9DC33B;
  padding-top: 10px;
}
@media (max-width: 1199px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box:last-child {
    padding: 30px 22px;
    text-align: center;
    margin-bottom: 40px;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box:last-child {
    padding: 30px 50px;
    text-align: center;
    margin-bottom: 40px;
    width: 90%;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box:last-child {
    padding: 30px 10px;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top {
  position: relative;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top:hover .why-choose-popup {
  opacity: 1;
  visibility: visible;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top .why-choose-popup {
  position: absolute;
  left: 30%;
  margin: 0 auto;
  top: 33%;
  right: 0;
  width: 320px;
  background: #9DC33B;
  transition: 0.3s ease-in-out all;
  text-align: left;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translate(50%, -50%);
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.top .why-choose-popup {
    left: 5%;
    top: 32%;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.top .why-choose-popup {
    left: -95%;
    top: 140%;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top .why-choose-popup p {
  color: #fff;
  line-height: 28px;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top-last {
  position: relative;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top-last:hover .why-choose-popup {
  opacity: 1;
  visibility: visible;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top-last .why-choose-popup {
  position: absolute;
  left: -400%;
  margin: 0 auto;
  top: 33%;
  right: 0;
  width: 320px;
  background: #9DC33B;
  transition: 0.3s ease-in-out all;
  text-align: left;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translate(50%, -50%);
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.top-last .why-choose-popup {
    left: -510%;
    top: 32%;
  }
}
@media (max-width: 1199px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.top-last .why-choose-popup {
    left: 10%;
    top: 38%;
    height: -moz-max-content;
    height: max-content;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.top-last .why-choose-popup {
    left: 52%;
    top: 47%;
    width: 240px;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.top-last .why-choose-popup {
    left: -100%;
    width: 250px;
    top: 160%;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box.top-last .why-choose-popup p {
  color: #fff;
  line-height: 28px;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom {
  position: relative;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom:hover .why-choose-popup {
  opacity: 1;
  visibility: visible;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom .why-choose-popup {
  position: absolute;
  left: 30%;
  margin: 0 auto;
  top: 33%;
  bottom: 0;
  right: 0;
  width: 320px;
  background: #9DC33B;
  transition: 0.3s ease-in-out all;
  text-align: left;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translate(50%, -50%);
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom .why-choose-popup {
    left: 5%;
    top: 32%;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom .why-choose-popup {
    left: -95%;
    top: 140%;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom .why-choose-popup {
    left: -290%;
    top: 140%;
    height: -moz-max-content;
    height: max-content;
    width: 315px;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom .why-choose-popup p {
  color: #fff;
  line-height: 28px;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last {
  position: relative;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last:hover .why-choose-popup {
  opacity: 1;
  visibility: visible;
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last .why-choose-popup {
  position: absolute;
  left: -400%;
  margin: 0 auto;
  top: 33%;
  bottom: 0;
  right: 0;
  width: 320px;
  background: #9DC33B;
  transition: 0.3s ease-in-out all;
  text-align: left;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translate(50%, -50%);
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last .why-choose-popup {
    left: -510%;
    top: 32%;
  }
}
@media (max-width: 1199px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last .why-choose-popup {
    left: -20px;
    height: -moz-max-content;
    height: max-content;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last .why-choose-popup {
    top: 170%;
    left: -100%;
    width: 230px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last .why-choose-popup {
    top: 170%;
    left: -100%;
    width: 160px;
  }
}
.why-choose-us-icons .why-choose-icon-two .icon-box.bottom-last .why-choose-popup p {
  color: #fff;
  line-height: 28px;
}
.why-choose-us-icons .why-choose-icon-two .icon-box:hover .why-choose-popup {
  opacity: 1;
  visibility: visible;
}
.why-choose-us-icons .why-choose-icon-two .icon-box .why-choose-popup {
  position: absolute;
  left: 30%;
  margin: 0 auto;
  bottom: 0;
  top: 50%;
  right: 0;
  width: 320px;
  background: #9DC33B;
  transition: 0.3s ease-in-out all;
  text-align: left;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translate(50%, -50%);
}
.why-choose-us-icons .why-choose-icon-two .icon-box .why-choose-popup p {
  color: #fff;
  line-height: 28px;
}
.why-choose-us-icons .why-choose-icon-two a {
  text-decoration: none;
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-two a {
    width: 50%;
  }
}
.why-choose-us-icons .why-choose-icon-two a:hover {
  text-decoration: none;
}
@media (max-width: 1199px) {
  .why-choose-us-icons .why-choose-icon-two:last-child {
    display: flex;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-two:last-child {
    display: flex;
  }
}
.why-choose-us-icons .why-choose-icon-one {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-one {
    justify-content: start;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-one {
    display: block;
  }
}
.why-choose-us-icons .why-choose-icon-one .icon-box {
  background: #191F07;
  padding: 40px 50px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box {
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box {
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 40px;
    width: 115%;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box {
    width: 50%;
    padding: 23px 35px;
    margin: 0 auto;
  }
}
.why-choose-us-icons .why-choose-icon-one .icon-box img {
  width: 60%;
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box img {
    width: 50%;
  }
}
.why-choose-us-icons .why-choose-icon-one .icon-box p {
  color: #9DC33B;
  padding-top: 10px;
}
.why-choose-us-icons .why-choose-icon-one .icon-box:hover .why-choose-popup {
  opacity: 1;
  visibility: visible;
}
.why-choose-us-icons .why-choose-icon-one .icon-box .why-choose-popup {
  position: absolute;
  left: 6%;
  margin: 0 auto;
  bottom: -1%;
  right: 0;
  width: 320px;
  background: #9DC33B;
  transition: 0.3s ease-in-out all;
  text-align: left;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translate(0%, -50%);
}
@media (max-width: 1599px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box .why-choose-popup {
    left: 10%;
    bottom: -4%;
  }
}
@media (max-width: 1199px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box .why-choose-popup {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box .why-choose-popup {
    left: 90%;
    bottom: 0%;
  }
}
@media (max-width: 639px) {
  .why-choose-us-icons .why-choose-icon-one .icon-box .why-choose-popup {
    left: 0;
    bottom: -130%;
    width: 280px;
  }
}
.why-choose-us-icons .why-choose-icon-one .icon-box .why-choose-popup p {
  color: #fff;
  line-height: 28px;
}
.why-choose-us-icons .why-choose-icon-one a {
  text-decoration: none;
}
.why-choose-us-icons .why-choose-icon-one a:hover {
  text-decoration: none;
}

.we-offer-area {
  padding: 50px 0 100px 0;
}
@media (max-width: 639px) {
  .we-offer-area {
    padding: 0px;
  }
}
.we-offer-area .we-offer-content h2 {
  color: #9DC33B;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 600;
  width: 50%;
}
@media (max-width: 1599px) {
  .we-offer-area .we-offer-content h2 {
    width: 70%;
    font-size: 2.2rem;
  }
}
@media (max-width: 1199px) {
  .we-offer-area .we-offer-content h2 {
    width: 100%;
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .we-offer-area .we-offer-content h2 {
    width: 100%;
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .we-offer-area .we-offer-content h2 {
    width: 100%;
    font-size: 1.8rem;
  }
}
.we-offer-area p {
  color: #fff;
  line-height: 30px;
}
.we-offer-area .we-offer-image img {
  width: 100%;
  padding: 0 90px;
}
@media (max-width: 1599px) {
  .we-offer-area .we-offer-image img {
    padding: 0 60px;
  }
}
@media (max-width: 1199px) {
  .we-offer-area .we-offer-image img {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .we-offer-area .we-offer-image img {
    padding: 0px;
    margin-top: 20px;
  }
}
@media (max-width: 639px) {
  .we-offer-area .we-offer-image img {
    padding: 0px;
  }
}

.header1 {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  box-shadow: 0px 1px 0px 0px black;
  z-index: 999;
}
.header1 div.btn {
  position: absolute;
  top: 25%;
  right: 5%;
  background: transparent !important;
  cursor: pointer;
  z-index: 999;
  border-radius: 0 !important;
  border: none !important;
}
.header1 div.btn::before {
  background: none !important;
}
.header1 div.btn-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  top: 0;
  left: 0;
}
.header1 div.btn-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.35s ease-in-out;
}
.header1 .open div.btn-icon span:nth-of-type(1) {
  transform: translateY(14px) rotate(315deg);
}
.header1 .open div.btn-icon span:nth-of-type(2) {
  width: 0;
  left: 50%;
}
.header1 .open div.btn-icon span:nth-of-type(3) {
  transform: translateY(-20px) rotate(-315deg);
}

ul.nav-list {
  position: absolute;
  box-sizing: border-box;
  top: 80px;
  width: 100%;
  height: auto;
  margin: 0;
  background: #cccccc;
}

div.blank {
  width: 100%;
  height: 1200px;
  margin-top: 80px;
}

.order-tracker-search {
  padding: 60px 0;
  background: #191F07;
}
.order-tracker-search .form-container {
  font-family: "Mukta", sans-serif;
  padding: 0 0px 20px 0;
}
.order-tracker-search .form-container .form-horizontal {
  background: rgba(204, 204, 204, 0.0392156863);
  padding: 50px 40px 10px 40px;
  border-radius: 0;
  position: relative;
  height: 300px;
}
.order-tracker-search .form-container .form-horizontal .or {
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.order-tracker-search .form-horizontal .title {
  color: #9DC33B;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.order-tracker-search .form-horizontal .description {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 30px 0;
  display: block;
}
.order-tracker-search .form-horizontal .form-group {
  margin: 0 0 20px;
  width: 100%;
}
.order-tracker-search .form-horizontal .form-group input::-moz-placeholder {
  color: #909288 !important;
  text-transform: capitalize !important;
}
.order-tracker-search .form-horizontal .form-group input::placeholder {
  color: #909288 !important;
  text-transform: capitalize !important;
}
.order-tracker-search .form-horizontal .form-group:nth-child(3) {
  margin-bottom: 20px;
}
.order-tracker-search .form-horizontal .form-control {
  color: #d9d9d9;
  font-size: 16px;
  letter-spacing: 1px;
  height: 40px;
  padding: 2px 15px;
  border: 1px solid #9DC33B;
  border-top-width: 2px;
  border-left-width: 2px;
  box-shadow: none;
  border-radius: 8px;
  transition: all 0.3s ease 0s;
  background: none !important;
}
.order-tracker-search .form-horizontal .form-control:focus {
  box-shadow: none;
  border-color: #9DC33B;
}
.order-tracker-search .form-horizontal .form-control::-moz-placeholder {
  color: #222;
  font-size: 15px;
}
.order-tracker-search .form-horizontal .form-control::placeholder {
  color: #222;
  font-size: 15px;
}
.order-tracker-search .form-horizontal .btn {
  color: #fff;
  background-color: #706e6f;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  width: 160px;
  padding: 10px 30px;
  margin: 10px 25px 0 0;
  border-radius: 30px;
  border: 2px solid #9DC33B !important;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
  text-transform: capitalize !important;
}
.order-tracker-search .form-horizontal .btn::before {
  background: none !important;
}
.order-tracker-search .form-horizontal .btn i {
  color: #9DC33B;
  margin-right: 13px;
  animation: arrow-anim-track 0.3s ease-in-out alternate infinite;
}
.order-tracker-search .form-horizontal .btn:hover,
.order-tracker-search .form-horizontal .btn:focus {
  color: #fff;
  background-color: #222;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  outline: none;
}
.order-tracker-search .form-horizontal .btn:after {
  content: "";
  height: 42%;
  width: 110%;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-50deg);
  position: absolute;
  right: -126px;
  top: -61px;
  transition: all 0.5s ease 0s;
  display: none;
}
.order-tracker-search .form-horizontal .btn:hover:after {
  right: -70px;
  top: -30px;
}
.order-tracker-search .form-horizontal .signup {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 35px 0;
  vertical-align: text-top;
  display: inline-block;
}
.order-tracker-search .form-horizontal .signup a {
  color: #446DCA;
  text-decoration: underline;
  margin: 0 0 0 25px;
}
.order-tracker-search .form-horizontal .signup a:hover {
  color: #000;
  transition: all 0.3s ease 0s;
}
.order-tracker-search .form-horizontal .forgot {
  color: #446DCA;
  text-decoration: underline;
  display: block;
}
.order-tracker-search .form-horizontal .forgot a {
  color: #446DCA;
  transition: all 0.3s ease 0s;
}
.order-tracker-search .form-horizontal .forgot a:hover {
  color: #222;
}
@media only screen and (max-width: 479px) {
  .order-tracker-search .form-container .form-horizontal {
    padding-left: 20px;
    padding-right: 20px;
  }
  .order-tracker-search .form-horizontal .title {
    font-size: 30px;
  }
  .order-tracker-search .form-horizontal .description {
    font-size: 16px;
  }
  .order-tracker-search .form-horizontal .form-control::-moz-placeholder {
    font-size: 14px;
  }
  .order-tracker-search .form-horizontal .form-control::placeholder {
    font-size: 14px;
  }
  .order-tracker-search .form-horizontal .btn {
    display: block;
    margin: 0 auto 20px;
  }
  .order-tracker-search .form-horizontal .signup {
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
  .order-tracker-search .form-horizontal .forgot {
    text-align: center;
  }
}

.order-tracker-details {
  padding: 60px 0 40px 0;
}
@media (max-width: 639px) {
  .order-tracker-details {
    padding: 60px 0;
  }
}
.order-tracker-details .responsive-table {
  position: relative;
}
.order-tracker-details .responsive-table div.btnv {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  left: 0;
  bottom: 0;
}
@media (max-width: 639px) {
  .order-tracker-details .responsive-table div.btnv {
    top: 20px;
    right: 10px;
    left: unset;
  }
}
.order-tracker-details .responsive-table div.btnv-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.order-tracker-details .responsive-table div.btnv-icon a {
  text-decoration: none;
  color: #333;
}
.order-tracker-details .responsive-table div.btnv-icon a:hover {
  text-decoration: none;
}
.order-tracker-details .responsive-table div.btn-icon span {
  display: block;
  height: 4px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.35s ease-in-out;
}
.order-tracker-details .responsive-table .open div.btnv-icon span:nth-of-type(1) {
  transform: translateY(14px) rotate(315deg);
}
.order-tracker-details .responsive-table .open div.btn-icon span:nth-of-type(2) {
  width: 0;
  left: 50%;
}
.order-tracker-details .responsive-table .open div.btnv-icon span:nth-of-type(3) {
  transform: translateY(-20px) rotate(-315deg);
}
.order-tracker-details .responsive-table .view .nav-list {
  position: absolute;
  box-sizing: border-box;
  top: 54px;
  right: 0;
  width: 1120px;
  height: auto;
  margin: 0;
  background: #cccccc;
  list-style: none;
}
@media (max-width: 1599px) {
  .order-tracker-details .responsive-table .view .nav-list {
    width: 1108px;
  }
}
@media (max-width: 1199px) {
  .order-tracker-details .responsive-table .view .nav-list {
    width: 928px;
  }
}
@media (max-width: 991px) {
  .order-tracker-details .responsive-table .view .nav-list {
    width: 688px;
  }
}
@media (max-width: 639px) {
  .order-tracker-details .responsive-table .view .nav-list {
    width: 100%;
  }
}
.order-tracker-details .responsive-table .view .nav-list .responsive-table {
  margin: 0;
}
.order-tracker-details .responsive-table .view .nav-list .responsive-table thead th {
  border-right: 1px solid #cccccc;
  font-weight: normal;
  text-align: center;
  color: white;
  background-color: #717171;
}

@media (max-width: 639px) {
  .order-tracker-number-area {
    padding: 20px 0;
  }
}
.order-tracker-number-area .order-tracker-number-box ul li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #282f10;
  margin: 10px 0;
  padding: 15px 0;
  border-radius: 6px;
}
@media (max-width: 639px) {
  .order-tracker-number-area .order-tracker-number-box ul li {
    align-items: flex-start;
    flex-direction: column;
    line-height: 40px;
  }
}
.order-tracker-number-area .order-tracker-number-box ul li a {
  text-decoration: none;
  position: relative;
  color: #d9d9d9;
}
@media (max-width: 639px) {
  .order-tracker-number-area .order-tracker-number-box ul li .first {
    margin: 0 15px 0 15px;
  }
}
.order-tracker-number-area .order-tracker-number-box ul li .secnd {
  position: absolute;
  left: 50%;
}
@media (max-width: 639px) {
  .order-tracker-number-area .order-tracker-number-box ul li .secnd {
    left: 90%;
    padding: 0 0 0 17px;
  }
}
.order-tracker-number-area .order-tracker-number-box ul li .third {
  position: absolute;
  left: 55%;
}
@media (max-width: 639px) {
  .order-tracker-number-area .order-tracker-number-box ul li .third {
    position: initial;
    padding: 0 0 0 17px;
  }
}

.order-tracker-comment-area {
  padding: 50px 0;
  background: #191F07;
}
@media (max-width: 639px) {
  .order-tracker-comment-area {
    padding: 20px 0;
  }
}
.order-tracker-comment-area h3 {
  color: #9DC33B;
  margin: 0 0 25px 0;
}
.order-tracker-comment-area .order-tracker-comment-box ul {
  margin: 0;
}
.order-tracker-comment-area .order-tracker-comment-box ul li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.order-tracker-comment-area .order-tracker-comment-box ul li a {
  text-decoration: none;
  color: #272726;
  background: aliceblue;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px 0 0;
}
.order-tracker-comment-area .order-tracker-comment-box ul li a:hover {
  text-decoration: none;
  color: #9DC33B !important;
}
.order-tracker-comment-area .order-tracker-comment-box ul li p {
  color: #ccc;
  margin: 0;
  padding: 0;
}
.order-tracker-comment-area .order-tracker-comment-box p {
  color: #ccc;
  padding: 0 0 0 57px;
}
.order-tracker-comment-area .container {
  padding: 0 150px;
}
@media (max-width: 1599px) {
  .order-tracker-comment-area .container {
    padding: 0 50px;
  }
}
@media (max-width: 1199px) {
  .order-tracker-comment-area .container {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .order-tracker-comment-area .container {
    padding: 0 30px;
  }
}
@media (max-width: 639px) {
  .order-tracker-comment-area .container {
    padding: 0 20px;
  }
}

.order-tracker-delivery-details {
  padding: 0px 0 40px 0;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details {
    padding: 20px 0;
  }
}
.order-tracker-delivery-details h4 {
  color: #333;
  margin: 0 0 20px 0;
  font-weight: 700;
}
.order-tracker-delivery-details .delivery-details-box {
  margin: 0 auto;
  border-radius: 8px;
  width: 100%;
  background: #575757;
  padding: 50px 40px;
}
@media (max-width: 1599px) {
  .order-tracker-delivery-details .delivery-details-box {
    margin: 0 40px;
  }
}
@media (max-width: 1199px) {
  .order-tracker-delivery-details .delivery-details-box {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .order-tracker-delivery-details .delivery-details-box {
    margin: 0;
  }
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box {
    padding: 40px 0px;
    margin: 0;
  }
}
.order-tracker-delivery-details .delivery-details-box h4 {
  color: #cbcbcb;
  text-align: left;
  margin: 0 0 20px 18px;
  text-decoration: underline;
}
.order-tracker-delivery-details .delivery-details-box table {
  margin: 0 0 30px 10px;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box table {
    margin: 0 10px 30px 10px;
  }
}
.order-tracker-delivery-details .delivery-details-box .table-area table {
  border: 1px solid #5a5a5a;
}
.order-tracker-delivery-details .delivery-details-box .table-area table .heading {
  background: #282f10 !important;
  color: #fff;
}
.order-tracker-delivery-details .delivery-details-box .table-area td,
.order-tracker-delivery-details .delivery-details-box .table-area th {
  border: 1px solid #5a5a5a;
  text-align: left;
  padding: 8px;
  font-size: 15px;
  font-weight: 600;
}
.order-tracker-delivery-details .delivery-details-box .table-area tr:nth-child(odd) {
  background-color: #3a3a3a;
}
.order-tracker-delivery-details .delivery-details-box .order-progress {
  margin: 20px 0 0 0;
  width: 100%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat {
    padding: 0 25px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area {
  background: #fff;
  padding: 40px 30px;
  border-radius: 13px;
  width: 100%;
  height: 1280px;
  overflow: scroll;
}
@media (max-width: 1599px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area {
    padding: 30px 20px;
  }
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area {
    padding: 30px 10px;
    height: 800px;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area {
    padding: 30px 10px;
    height: 800px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 {
    display: block;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 {
    display: block;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-image img {
  width: 60px;
  border-radius: 50%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-image img {
    width: 35px;
    position: relative;
    bottom: 3px;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-image img {
    width: 35px;
    position: relative;
    bottom: 3px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border {
  margin: 0 20px;
  padding: 15px 15px 25px;
  border: 4px solid #9DC33B;
  border-radius: 15px;
  position: relative;
  width: 100%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border {
    width: 100%;
    margin: 0;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border::after {
  position: absolute;
  content: "";
  height: 23px;
  width: 45px;
  left: -25px;
  top: 6px;
  -webkit-clip-path: polygon(50% 80%, 50% 0%, 100% 0, 0 0);
          clip-path: polygon(50% 80%, 50% 0%, 100% 0, 0 0);
  background: #9DC33B;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border::after {
    height: 20px;
    width: 25px;
    left: 25px;
    top: -20px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border::after {
    height: 20px;
    width: 25px;
    left: 25px;
    top: -20px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border p {
  line-height: 22px;
  font-size: 14px;
  margin: 0 0 5px 0;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay {
  position: relative;
  margin: 0 0 30px 0;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay h6 {
  color: #333;
  position: absolute;
  left: 0;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box {
  text-align: right;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box h5 {
  font-size: 12px;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box div.btn-icon {
  width: 100%;
  height: 100%;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box div.btn-icon a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box div.btn-icon a:hover {
  text-decoration: none;
  color: #333;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box .open div.btn-icon span:nth-of-type(1) {
  transform: translateY(14px) rotate(315deg);
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box .open div.btn-icon span:nth-of-type(2) {
  width: 0;
  left: 50%;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box .open div.btn-icon span:nth-of-type(3) {
  transform: translateY(-20px) rotate(-315deg);
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box ul.nav-list {
  position: initial;
  background: none;
  list-style: none;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box ul.nav-list form input {
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ededed;
  margin: 0 0 10px 0;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box ul.nav-list form input::-moz-placeholder {
  text-transform: capitalize !important;
  color: #3a3a3a;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box ul.nav-list form input::placeholder {
  text-transform: capitalize !important;
  color: #3a3a3a;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box ul.nav-list form textarea {
  width: 100%;
  font-size: 14px;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box .commnt-progress-box-1 .commnt-progress-border .date-replay .replay-box div.blank {
  width: 100%;
  height: 1200px;
  margin-top: 80px;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin: 20px 0;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 {
    display: grid;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 {
    display: grid;
  }
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-image2 {
    order: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: 5px;
    right: 20px;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-image2 {
    order: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: 5px;
    right: 20px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-image2 img {
  width: 60px;
  border-radius: 50%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-image2 img {
    width: 35px;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-image2 img {
    width: 35px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2 {
  margin: 0 20px;
  padding: 15px;
  border: 2px solid #9DC33B;
  border-radius: 15px;
  position: relative;
  width: 75%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2 {
    width: 100%;
    margin: 0 20px 0 0;
    order: 2;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2 {
    width: 100%;
    margin: 0 20px 0 0;
    order: 2;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2::after {
  position: absolute;
  content: "";
  height: 23px;
  width: 45px;
  right: -45px;
  top: 6px;
  -webkit-clip-path: polygon(0% 90%, 50% 0%, 100% 0, 0 0);
          clip-path: polygon(0% 90%, 50% 0%, 100% 0, 0 0);
  background: #9DC33B;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2::after {
    height: 15px;
    width: 20px;
    right: 5px;
    top: -15px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2::after {
    height: 15px;
    width: 20px;
    right: 5px;
    top: -15px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box2 .commnt-progress-border2 p {
  line-height: 22px;
  font-size: 14px;
  margin: 0;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 {
    display: grid;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 {
    display: grid;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-image img {
  width: 60px;
  border-radius: 50%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-image img {
    width: 35px;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-image img {
    width: 35px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3 {
  margin: 0 20px;
  padding: 15px;
  border: 2px solid #9DC33B;
  border-radius: 15px;
  position: relative;
  width: 75%;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3 {
    width: 100%;
    margin: 0px;
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3 {
    width: 100%;
    margin: 0px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3::after {
  position: absolute;
  content: "";
  height: 23px;
  width: 45px;
  left: -22px;
  top: 6px;
  -webkit-clip-path: polygon(50% 80%, 50% 0%, 100% 0, 0 0);
          clip-path: polygon(50% 80%, 50% 0%, 100% 0, 0 0);
  background: #9DC33B;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3::after {
    height: 15px;
    width: 20px;
    left: 27px;
    top: -15px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
@media (max-width: 374px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3::after {
    height: 15px;
    width: 20px;
    left: 27px;
    top: -15px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat .commnt-progress-area .commnt-progress-box3 .commnt-progress-border3 p {
  line-height: 22px;
  font-size: 14px;
  margin: 0 0 5px 0;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .Chat h4 {
  color: #f1f1f1;
  text-align: left;
  margin: 0 0 30px 0px;
  text-decoration: underline;
}
@media (max-width: 1199px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .order-comments {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .order-comments {
    padding: 0 25px;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .order-comments button {
  border: none;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.75em;
  display: inline-block;
  text-decoration: none;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .order-comments button:hover {
  cursor: pointer;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .order-comments button:focus {
  text-decoration: none;
  outline: none;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .order-comments h4 {
  color: #f1f1f1;
  text-align: left;
  margin: 0 0 20px 4px;
  text-decoration: underline;
}
.order-tracker-delivery-details .delivery-details-box .order-progress .order-button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
}
@media (max-width: 639px) {
  .order-tracker-delivery-details .delivery-details-box .order-progress .order-button-area {
    margin: 20px 0 0 0;
  }
}
.order-tracker-delivery-details .delivery-details-box .order-progress .order-button-area .btn {
  margin: 0 30px;
}
.order-tracker-delivery-details table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 40px 0;
  color: #d1d1d1;
}
.order-tracker-delivery-details td,
.order-tracker-delivery-details th {
  text-align: left;
  padding: 8px;
  font-size: 15px;
  font-weight: 600;
}
.neo-banner-area {
  position: relative;
  background: #232323;
  padding: 0 0 60px 0;
  width: 98%;
  max-width: 100%;
}
.neo-banner-area img {
  width: 100%;
  padding: 0;
}
@media (max-width: 639px) {
  .neo-banner-area img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.neo-banner-area .neo-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 998;
}
.neo-banner-area .neo-button .neo-click {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #9dc33b;
  text-decoration: none;
}
.neo-banner-area .neo-button .neo-click.hover {
  color: #fff;
  text-decoration: none;
}
.neo-banner-area .ball {
  position: absolute;
  top: 0;
  left: 0;
}

.neo-banner-area .ball {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.1s linear;
}


.YESShop_banner_area {
  position: relative;
  background: #212809;
  padding: 0 0 10px 0;
}
@media (max-width: 1599px) {
  .YESShop_banner_area {
    padding: 0 0 40px 0;
  }
}
@media (max-width: 1199px) {
  .YESShop_banner_area {
    padding: 0 0 40px 0;
  }
}
@media (max-width: 991px) {
  .YESShop_banner_area {
    padding: 0 0 40px 0;
  }
}
@media (max-width: 639px) {
  .YESShop_banner_area {
    padding: 10px 0 40px 0;
  }
}
.YESShop_banner_area img {
  width: 100%;
}
.YESShop_banner_area .btn_box {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .YESShop_banner_area .btn_box {
    bottom: 6px;
  }
}
@media (max-width: 639px) {
  .YESShop_banner_area .btn_box {
    bottom: 0px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.YESShop_banner_area .btn_box .click-shop {
  position: relative;
  color: #fff;
  padding: 0 20px 0 0;
  font-size: 20px;
}
@media (max-width: 991px) {
  .YESShop_banner_area .btn_box .click-shop {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .YESShop_banner_area .btn_box .click-shop {
    font-size: 12px;
  }
}
.YESShop_banner_area .yesshop_neo {
  position: absolute;
  top: 0;
  left: 220px;
}
@media (max-width: 1599px) {
  .YESShop_banner_area .yesshop_neo {
    left: 100px;
  }
}
@media (max-width: 1199px) {
  .YESShop_banner_area .yesshop_neo {
    left: 110px;
  }
}
@media (max-width: 991px) {
  .YESShop_banner_area .yesshop_neo {
    left: 110px;
  }
}
@media (max-width: 639px) {
  .YESShop_banner_area .yesshop_neo {
    left: 55px;
    top: 13px;
  }
}
.YESShop_banner_area .yesshop_neo img {
  width: 550px;
}
@media (max-width: 1599px) {
  .YESShop_banner_area .yesshop_neo img {
    width: 410px;
  }
}
@media (max-width: 1199px) {
  .YESShop_banner_area .yesshop_neo img {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .YESShop_banner_area .yesshop_neo img {
    width: 200px;
  }
}
@media (max-width: 639px) {
  .YESShop_banner_area .yesshop_neo img {
    width: 90px;
  }
}

.blog-area {
  padding: 80px 0 50px 0;
  background: #313E44;
}
@media (max-width: 1199px) {
  .blog-area {
    padding: 70px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .blog-area {
    padding: 40px 0 50px 0;
  }
}
@media (max-width: 639px) {
  .blog-area {
    padding: 20px 0 30px 0;
  }
}
.blog-area.inner {
  padding: 20px 0 0 0;
}
@media (max-width: 639px) {
  .blog-area.inner {
    padding: 20px 0 30px 0;
  }
}
.blog-area .section-title {
  position: relative;
}
.blog-area .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  display: none;
}
@media (max-width: 1199px) {
  .blog-area .section-title h2 {
    font-size: 2.9rem;
  }
}
@media (max-width: 991px) {
  .blog-area .section-title h2 {
    font-size: 2.7rem;
  }
}
@media (max-width: 639px) {
  .blog-area .section-title h2 {
    font-size: 2.2rem;
  }
}
.blog-area .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.blog-area .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.blog-area .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.3;
  display: none;
}
@media (max-width: 1599px) {
  .blog-area .section-title .text-hide {
    font-size: 5rem;
  }
}
@media (max-width: 1199px) {
  .blog-area .section-title .text-hide {
    font-size: 5rem;
  }
}
@media (max-width: 991px) {
  .blog-area .section-title .text-hide {
    font-size: 4.5rem;
  }
}
@media (max-width: 639px) {
  .blog-area .section-title .text-hide {
    font-size: 3rem;
  }
}
.blog-area .main-blog {
  padding: 0;
}
.blog-area .main-blog.inner {
  padding: 50px 0 0 0;
}
@media (max-width: 991px) {
  .blog-area .main-blog.inner {
    padding: 0px 0 0 0;
  }
}
@media (max-width: 639px) {
  .blog-area .main-blog.inner {
    padding: 0px 0 0 0;
  }
}
.blog-area .main-blog .box {
  background-color: #000;
  font-family: "Raleway", sans-serif !important;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 20px solid rgba(157, 195, 59, 0.3098039216);
  border-radius: 30px 0;
}
.blog-area .main-blog .box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5882352941);
  z-index: 1;
}
.blog-area .main-blog .box h3 {
  position: absolute;
  color: #fff;
  top: 50%;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  font-size: 1.9rem;
  font-weight: 500;
  z-index: 9;
}
.blog-area .main-blog .pro-all-search {
  padding: 0 !important;
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 10px 44px 15px 0;
}
@media (max-width: 639px) {
  .blog-area .main-blog .pro-all-search {
    margin: 5px 0;
  }
}
.blog-area .main-blog .pro-all-search .form-inline {
  width: 100%;
  display: flex;
  flex-direction: row !important;
}
.blog-area .main-blog .pro-all-search .form-inline .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.blog-area .main-blog .pro-all-search .form-inline button {
  background: #9DC33B;
  color: #fff;
  padding: 5px 15px 5px 8px !important;
  border-radius: 5px !important;
  font-size: 16px !important;
}
@media (max-width: 639px) {
  .blog-area .main-blog .pro-all-search .form-inline button {
    margin: 0 0 0 5px;
  }
}
.blog-area .main-blog .pro-all-search .form-inline .btn::before {
  background: none !important;
}
.blog-area .main-blog .pro-all-search .form-inline .btn-outline-success:hover {
  color: #fff;
  background-color: #232323;
  border-color: #ffffff !important;
}
.blog-area .main-blog .pro-all-search a {
  font-size: 16px !important;
  color: #9DC33B !important;
}
.blog-area .main-blog .swiper-slide {
  background-position: center;
  background-size: cover;
  border: 10px solid #fff !important;
}
@media (max-width: 991px) {
  .blog-area .main-blog .swiper-slide {
    border: 7px solid #fff !important;
  }
}
@media (max-width: 639px) {
  .blog-area .main-blog .swiper-slide {
    border: 5px solid #fff !important;
  }
}
.blog-area .main-blog .swiper-slide img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-area .b-details-first .post-slide {
  padding: 40px 40px;
  background: #191e08;
}
@media (max-width: 1199px) {
  .blog-area .b-details-first .post-slide {
    padding: 40px 10px;
  }
}
@media (max-width: 991px) {
  .blog-area .b-details-first .post-slide {
    padding: 40px 20px;
  }
}
@media (max-width: 639px) {
  .blog-area .b-details-first .post-slide {
    padding: 40px 0;
  }
}
.blog-area .b-details-first .post-slide .post-title {
  font-size: 22px;
  font-weight: 700;
}
.blog-area .b-details-first .post-slide .post-comment h5 {
  font-size: 22px;
  font-weight: 700;
}
.blog-area .b-details-first .post-slide .post-comment p {
  padding: 0 20px 0 0px;
  font-size: 16px !important;
  line-height: 30px !important;
}
.blog-area .b-details-first .post-slide .post-comment img {
  width: 100% !important;
  height: auto;
  margin: 30px 0 20px 0;
}
.blog-area .b-details-first .post-slide .post-comment h2 ul {
  padding-left: 20px;
}
.blog-area .b-details-first .post-slide .post-comment h2 ul li {
  list-style: none !important;
  line-height: 28px !important;
}
.blog-area .b-details-first .post-slide .post-comment ul {
  padding-left: 20px;
}
.blog-area .b-details-first .post-slide .post-comment ul li {
  list-style: none !important;
  line-height: 28px !important;
}
.blog-area .b-details-first .post-slide .post-review {
  height: auto !important;
}
.blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb2 .swiper-slide img {
  height: 800px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
@media (max-width: 1599px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb2 .swiper-slide img {
    height: 500px !important;
  }
}
@media (max-width: 1199px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb2 .swiper-slide img {
    height: 420px !important;
  }
}
@media (max-width: 991px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb2 .swiper-slide img {
    height: 470px !important;
  }
}
@media (max-width: 639px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb2 .swiper-slide img {
    height: 300px !important;
  }
}
.blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb2 .swiper-slide.swiper-slide-thumb-active {
  width: 100% !important;
  height: auto !important;
  border: none !important;
  background: none !important;
  padding-bottom: 15px;
}
.blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 {
  background: #fff;
}
.blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 .swiper-slide {
  border-bottom: 10px solid #fff !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 .swiper-slide img {
  height: 160px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
@media (max-width: 1599px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 .swiper-slide img {
    height: 120px !important;
  }
}
@media (max-width: 1199px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 .swiper-slide img {
    height: 100px !important;
  }
}
@media (max-width: 991px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 .swiper-slide img {
    height: 90px !important;
  }
}
@media (max-width: 639px) {
  .blog-area .b-details-first .post-slide.news-thumb-slide .newsThumb1 .swiper-slide img {
    height: 60px !important;
  }
}
.blog-area .b-details-secnd .blog-search-box {
  background: #191e08;
  padding: 20px 20px 30px 20px;
}
.blog-area .b-details-secnd .blog-search-box .searchbox1 input {
  background: #232a0b;
  border: none;
  padding: 10px 30px 10px 20px;
  color: #9DC33B;
  cursor: pointer;
}
@media (max-width: 1599px) {
  .blog-area .b-details-secnd .blog-search-box .searchbox1 input {
    padding: 10px 2px 10px 4px;
  }
}
@media (max-width: 1199px) {
  .blog-area .b-details-secnd .blog-search-box .searchbox1 input {
    padding: 10px;
  }
}
.blog-area .b-details-secnd .blog-search-box h3 {
  color: #d1d1d1;
  font-size: 25px;
  font-weight: 500;
}
.blog-area .b-details-secnd .blog-search-box .form-inline {
  display: flex;
  flex-direction: row !important;
  justify-content: space-evenly !important;
  align-items: center !important;
}
.blog-area .b-details-secnd .blog-search-box .btn::before {
  background: none !important;
}
.blog-area .b-details-secnd .blog-search-box .btn:hover {
  background: #9dc33b !important;
}
.blog-area .b-details-secnd .blog-search-box .form-control {
  width: 100% !important;
}
@media (max-width: 639px) {
  .blog-area .b-details-secnd .blog-search-box .form-control {
    width: 80% !important;
  }
}
.blog-area .b-details-secnd .latest-blogs {
  background: #191e08;
  padding: 20px 20px 30px 20px;
  margin-top: 30px;
}
.blog-area .b-details-secnd .latest-blogs .l-blog {
  margin-bottom: 30px;
}
.blog-area .b-details-secnd .latest-blogs .l-blog ul {
  padding: 0 15px;
  list-style: none;
}
.blog-area .b-details-secnd .latest-blogs .l-blog ul li {
  line-height: 30px;
}
.blog-area .b-details-secnd .latest-blogs .l-blog ul li i {
  color: #9DC33B;
  font-size: 15px;
  margin-right: 10px;
  animation: arrow-anim 0.3s ease-in-out alternate infinite;
}
.blog-area .b-details-secnd .latest-blogs .l-blog ul li a {
  color: #d1d1d1;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.blog-area .b-details-secnd .latest-blogs h3 {
  color: #d1d1d1;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 17px;
  border-bottom: 4px solid #232323;
  margin-bottom: 20px;
}
.blog-area .b-details-secnd .latest-blogs .latest-img img {
  width: 100%;
}
.blog-area .b-details-secnd .latest-blogs .latest-head h5 {
  font-size: 17px;
  line-height: 23px;
  color: #d1d1d1;
}
.blog-area .b-details-secnd .latest-blogs .latest-head h5 a {
  color: #d1d1d1;
  text-decoration: none;
}
.blog-area .b-details-secnd .latest-blogs .latest-head h5 a:hover {
  color: #d1d1d1;
  text-decoration: none;
}
.blog-area .b-details-secnd .latest-blogs.cat {
  margin-top: 30px;
}
.blog-area .b-details-secnd .latest-blogs.tag {
  margin-top: 40px;
}
.blog-area .b-details-secnd .latest-blogs.tag a {
  color: #141414;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  background: #9DC33B;
  margin: 6px 6px;
  padding: 8px 10px;
  border-radius: 4px;
}
.blog-area.social-feeds {
  padding: 80px 0 50px 0;
  background: #232323;
}
@media (max-width: 1199px) {
  .blog-area.social-feeds {
    padding: 70px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .blog-area.social-feeds {
    padding: 70px 0 50px 0;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds {
    padding: 50px 0 30px 0;
  }
}
.blog-area.social-feeds .section-title {
  position: relative;
  padding: 10px 0 80px 0;
}
.blog-area.social-feeds .section-title h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0px;
  display: block;
}
@media (max-width: 1199px) {
  .blog-area.social-feeds .section-title h2 {
    font-size: 2.9rem;
  }
}
@media (max-width: 991px) {
  .blog-area.social-feeds .section-title h2 {
    font-size: 2.7rem;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .section-title h2 {
    font-size: 2.2rem;
  }
}
.blog-area.social-feeds .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
  height: 2px;
  width: 125px;
  background: #9DC33B;
}
.blog-area.social-feeds .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -9px;
  height: 5px;
  width: 70px;
  border-radius: 20px;
  background: #98c130;
}
.blog-area.social-feeds .section-title .text-hide {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.3;
  display: block;
  top: 0;
}
@media (max-width: 1599px) {
  .blog-area.social-feeds .section-title .text-hide {
    font-size: 5rem;
  }
}
@media (max-width: 1199px) {
  .blog-area.social-feeds .section-title .text-hide {
    font-size: 5rem;
  }
}
@media (max-width: 991px) {
  .blog-area.social-feeds .section-title .text-hide {
    font-size: 4.5rem;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .section-title .text-hide {
    font-size: 3rem;
  }
}
.blog-area.social-feeds .social-buttons {
  display: flex;
  border-radius: 10px;
  text-align: center;
  margin: 0 0 30px 0;
  justify-content: center;
  align-items: center;
}
.blog-area.social-feeds .social-buttons .social-margin {
  margin-right: 15px;
}
.blog-area.social-feeds .social-buttons a,
.blog-area.social-feeds .social-buttons a:hover,
.blog-area.social-feeds .social-buttons a:focus,
.blog-area.social-feeds .social-buttons a:active {
  text-decoration: none;
}
.blog-area.social-feeds .social-buttons .social-icon {
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 138px;
  border: 5px solid;
  text-align: center;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 1px;
  padding-top: 11px;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .blog-area.social-feeds .social-buttons .social-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .social-buttons .social-icon {
    border: 3px solid;
    width: 35px;
    height: 35px;
  }
}
.blog-area.social-feeds .social-buttons .social-icon:hover {
  transform: rotate(360deg) scale(1.3);
}
.blog-area.social-feeds .social-buttons .social-icon.insta {
  font-size: 22px;
  padding-top: 0;
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1);
  color: #ffffff;
  border: 0px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .blog-area.social-feeds .social-buttons .social-icon.insta {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .social-buttons .social-icon.insta {
    font-size: 15px;
  }
}
.blog-area.social-feeds .social-buttons .social-icon.insta:hover {
  border: 4px solid #fff;
}
.blog-area.social-feeds .social-buttons .social-icon.facebook {
  font-size: 22px;
  padding-top: 0px;
  border-color: #3b5998;
  background-color: #3b5998;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .blog-area.social-feeds .social-buttons .social-icon.facebook {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .social-buttons .social-icon.facebook {
    font-size: 15px;
  }
}
.blog-area.social-feeds .social-buttons .social-icon.facebook:hover {
  background-color: #ffffff;
  color: #3b5998;
}
.blog-area.social-feeds .social-buttons .social-icon.linkedin {
  font-size: 24px;
  padding-top: 0px;
  padding-left: 1px;
  background-color: #0976b4;
  color: #ffffff;
  border-color: #0976b4;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .blog-area.social-feeds .social-buttons .social-icon.linkedin {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .social-buttons .social-icon.linkedin {
    font-size: 15px;
  }
}
.blog-area.social-feeds .social-buttons .social-icon.linkedin:hover {
  background-color: #ffffff;
  color: #0976b4;
}
.blog-area.social-feeds .social-buttons .social-icon.youtube {
  font-size: 22px;
  padding-top: 0;
  padding-left: 0px;
  background-color: #bb0000;
  color: #ffffff;
  border-color: #bb0000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .blog-area.social-feeds .social-buttons .social-icon.youtube {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .blog-area.social-feeds .social-buttons .social-icon.youtube {
    font-size: 15px;
  }
}
.blog-area.social-feeds .social-buttons .social-icon.youtube:hover {
  background-color: #ffffff;
  color: #bb0000;
}

@media (max-width: 639px) {
  .related-blog {
    margin-bottom: 50px;
  }
}
.related-blog h3 {
  color: #d1d1d1;
  padding: 15px 40px;
  background: rgba(157, 195, 59, 0.0196078431);
}

.post-slide {
  padding-right: 44px;
}

.post-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-slide .post-review {
  padding: 10px 17px 25px 0;
  background: #9DC33B;
  display: flex;
  justify-content: start;
  align-items: baseline;
  flex-direction: column;
  position: relative;
  height: 240px;
}
@media (max-width: 1599px) {
  .post-slide .post-review {
    height: 300px;
  }
}
@media (max-width: 1199px) {
  .post-slide .post-review {
    height: 250px;
  }
}
@media (max-width: 991px) {
  .post-slide .post-review {
    height: 310px;
  }
}
@media (max-width: 639px) {
  .post-slide .post-review {
    height: 230px;
  }
}

.post-slide .post-date {
  float: left;
  margin-right: 20px;
  padding: 5px 12px;
  text-align: center;
  background: #FFFFFF;
  font-size: 20px;
  color: #9DC33B;
  font-weight: 700;
  transition: background 0.2s linear 0s;
  position: absolute;
  top: -75px;
  z-index: 1;
}

.post-slide:hover .post-date {
  background: #545454;
}

.post-slide .post-date small {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: capitalize;
}

.post-slide .post-date small:before {
  content: "";
  display: block;
  margin-bottom: 5px;
  border-top: 1px solid #9DC33B;
}

.post-slide .post-title {
  margin: 0;
  padding: 10px 10px 0 20px;
}
@media (max-width: 1599px) {
  .post-slide .post-title {
    display: flex;
    width: 100%;
    padding: 10px 20px 0 20px;
  }
}
@media (max-width: 1199px) {
  .post-slide .post-title {
    display: flex;
    width: 100%;
    padding: 10px 20px 0 20px;
  }
}
@media (max-width: 991px) {
  .post-slide .post-title {
    display: flex;
    width: 100%;
    padding: 10px 20px 0 20px;
  }
}
@media (max-width: 639px) {
  .post-slide .post-title {
    display: flex;
    width: 100%;
    padding: 10px 20px 0 20px;
  }
}

.post-slide .post-title a {
  font-size: 18px;
  color: #333;
  text-transform: capitalize;
  margin-bottom: 6px;
  display: block;
  line-height: 25px;
  font-weight: 600;
}

.post-slide:hover .post-title a {
  color: #FFFFFF;
  text-decoration: none;
}

.post-comment {
  margin: 0;
  list-style: none;
  padding: 0 20px 0 35px;
}
@media (max-width: 991px) {
  .post-comment {
    padding: 0 20px 0 35px;
  }
}
@media (max-width: 639px) {
  .post-comment {
    padding: 0 20px 0 35px;
  }
}
.post-comment p {
  margin-top: 4px;
  padding: 0 20px 0 0px;
}
.post-comment p a {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 24px;
}
.post-comment p a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.post-comment p span {
  padding: 0 20px 0 0px;
  font-size: 16px !important;
  line-height: 30px !important;
}

.post-comment li a {
  color: #FFFFFF;
  text-transform: capitalize;
}

.post-comment li a:before {
  content: "|";
  margin: 0 5px 0 5px;
  color: #d3d3d3;
}

.owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-buttons .owl-prev,
.owl-buttons .owl-next {
  display: inline-block !important;
  border-radius: 30px !important;
  margin-right: 10px !important;
  padding: 5px 15px !important;
  transition: all 0.3s linear 0s !important;
  background: #FFFFFF !important;
  opacity: 1 !important;
}

.owl-buttons .owl-prev:after,
.owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #9dc33b;
  font-size: 20px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

.owl-theme .owl-controls .owl-page {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .post-slide {
    padding: 0;
  }
}
.main-blog {
  padding: 150px 0;
}
@media (max-width: 639px) {
  .main-blog {
    padding: 60px 0 30px 0;
  }
}
.main-blog .post-slide {
  margin-bottom: 70px;
}
@media (max-width: 639px) {
  .main-blog .post-slide {
    margin-bottom: 40px;
  }
}
.main-blog .post-slide.news-list {
  margin-bottom: 70px;
}
.main-blog .post-slide.news-list img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 326px;
}
@media (max-width: 1599px) {
  .main-blog .post-slide.news-list img {
    height: 234px;
  }
}
@media (max-width: 1199px) {
  .main-blog .post-slide.news-list img {
    height: 310px;
  }
}
@media (max-width: 991px) {
  .main-blog .post-slide.news-list img {
    height: 220px;
  }
}
@media (max-width: 639px) {
  .main-blog .post-slide.news-list img {
    height: 276px;
  }
}
@media (max-width: 639px) {
  .main-blog .post-slide.news-list {
    margin-bottom: 40px;
  }
}
.main-blog .post-slide.news-list .post-review {
  padding: 10px 17px 25px 0;
  background: #9DC33B;
  display: flex;
  justify-content: start;
  align-items: baseline;
  flex-direction: column;
  position: relative;
  height: 180px;
}
@media (max-width: 1599px) {
  .main-blog .post-slide.news-list .post-review {
    height: 240px;
  }
}
@media (max-width: 1199px) {
  .main-blog .post-slide.news-list .post-review {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .main-blog .post-slide.news-list .post-review {
    height: 240px;
  }
}
@media (max-width: 639px) {
  .main-blog .post-slide.news-list .post-review {
    height: 180px;
  }
}
.main-blog .next-prev ul {
  margin-top: 50px;
}
.main-blog .next-prev ul li a {
  color: #fff;
}
.main-blog .next-prev ul li a:hover {
  text-decoration: none;
}
.main-blog .next-prev ul li a i {
  color: #9DC33B;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
[class^=swiper-button-] {
  transition: all 0.3s ease;
}

.swiper-container {
  width: 60%;
  margin: 0 auto;
  height: 37vw;
  transition: opacity 0.6s ease;
}
@media (max-width: 1599px) {
  .swiper-container {
    width: 70%;
    height: 52vw;
  }
}
@media (max-width: 1199px) {
  .swiper-container {
    width: 70%;
    height: 62vw;
  }
}
@media (max-width: 991px) {
  .swiper-container {
    width: 100%;
    height: 70vw;
  }
}
@media (max-width: 639px) {
  .swiper-container {
    width: 100%;
    height: 85vw;
  }
}

.swiper-container.swiper-container-coverflow {
  padding-top: 2%;
}

.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide .entity-img {
  display: none;
}

.swiper-slide .content {
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  right: 0;
  text-align: center;
  left: 0;
  color: #020202;
  background: #ffffff;
  width: 100%;
  z-index: 9999;
  padding: 15px 40px;
  height: 140px;
}
@media (max-width: 1199px) {
  .swiper-slide .content {
    height: 170px;
  }
}
@media (max-width: 991px) {
  .swiper-slide .content {
    height: 140px;
  }
}
@media (max-width: 639px) {
  .swiper-slide .content {
    padding: 15px 10px;
    height: 90px;
  }
}
.swiper-slide .content .likes {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.swiper-slide .content .likes i {
  color: red;
  font-size: 20px;
  margin-right: 7px;
}
@media (max-width: 639px) {
  .swiper-slide .content .likes i {
    font-size: 14px;
  }
}
.swiper-slide .content .likes h6 {
  font-weight: 600;
  font-family: sans-serif !important;
  margin-right: 3px;
}
@media (max-width: 639px) {
  .swiper-slide .content .likes h6 {
    font-size: 12px;
  }
}
.swiper-slide .content .likes p {
  margin-bottom: 7px;
  font-size: 15px;
}
@media (max-width: 639px) {
  .swiper-slide .content .likes p {
    font-size: 11px;
  }
}

.swiper-slide .content .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .swiper-slide .content .title {
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .swiper-slide .content .title {
    font-size: 12px;
  }
}

.swiper-slide .content .caption {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .swiper-slide .content .caption {
    display: none;
  }
}
@media (max-width: 639px) {
  .swiper-slide .content .caption {
    display: none;
  }
}

[class^=swiper-button-] {
  width: 44px;
  opacity: 1;
}

.swiper-button-prev {
  transform: translateX(50px);
  left: -35px !important;
}

.swiper-button-next {
  transform: translateX(-50px);
  right: -50px !important;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  display: none !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:hover,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-width: 1px;
}

@media (max-width: 1023px) {
  .swiper-container.swiper-container-coverflow {
    padding-top: 0;
  }
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 24px !important;
  font-weight: 700;
  background: #9DC33B;
  width: 40px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.blog-p {
  padding: 5px 20px;
}
.blog-p a {
  color: #fff;
  text-decoration: none;
}
.blog-p a:hover {
  text-decoration: none;
  color: #fff;
}/*# sourceMappingURL=main.css.map */