

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&amp;family=Poppins:wght@400;500&amp;display=swap');
:root {
  --paragraph-font-family: 'Poppins', sans-serif;
  --body-font-family: 'Oswald', sans-serif;
  --body-color: #000;
  --main-color: #8c3a3c;
  --optional-color: #2a65b3;
  --heading-color: #111111;
  --white-color: #ffffff;
  --black-color: #000000;
  --blue-color: #8c3a3c;
  --font-size: 16px;
  --transition: all ease .5s;
  --border-radius: 4px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  --grey-color: #f5f5f5;
}

body {
  font-size: var(--font-size);
  /* font-family: var(--body-font-family); */
  color: var(--body-color);
}

body.body-bg-f7f6f1 {
  background-color: #f7f6f1;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  color: var(--body-color);
}

a:hover {
  text-decoration: none;
  color: var(--main-color);
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blue-color);
  font-weight: 900;
  font-family: var(--body-font-family);
  text-transform: uppercase;
}
h2{
  font-size: 25px;
}

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

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

li, a{
  font-family: Georgia, "Times New Roman", Times, serif;
}

p {
  font-size: 18px;
  margin: 15px 0;
  line-height: 1.8;
  font-family:Georgia, "Times New Roman", Times, serif;
  color: #000;
  text-align: justify;
}

/* p:last-child {
  margin-bottom: 0;
} */

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

.form-control {
  height: 55px;
  color: var(--main-color);
  border: 1px solid #d7d7d7;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

table.table {
  font-family: Georgia, "Times New Roman", Times, serif;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: var(--black-color);
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid var(--main-color);
}

.form-control:hover:focus, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

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

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #fffdfa;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: var(--white-color);
  text-transform: uppercase;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-table;
  padding: 15px 35px;
  background-color: var(--main-color);
}

.default-btn i {
  position: relative;
  top: 2px;
  font-size: 14px !important;
  color: var(--white-color) !important;
  margin-left: 5px;
}

.default-btn.black-btn {
  background-color: var(--heading-color);
}

.default-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn:hover {
  color: var(--white-color);
}

.default-btn:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

/*
Read More Btn Area Style*/
.read-more {
  font-size: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.read-more i {
  position: relative;
  top: 3px;
}

.read-more:hover {
  color: var(--main-color);
  letter-spacing: 1px;
}

/*
Section Title Area Style*/
.section-title {
  max-width: 700px;
  margin: -8px auto 50px;
  text-align: center;
  position: relative;
}

.section-title .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.section-title .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--main-color);
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-title h2:last-child {
  margin-bottom: 0;
  text-transform: uppercase;
}

.section-title p {
  max-width: 600px;
  margin: auto;
}

.section-title.yellow-title .top-title {
  color: var(--optional-color);
}

.section-title.yellow-title .top-title::before {
  background-color: var(--optional-color);
}

.section-title.yellow-title h2 {
  color: var(--white-color);
}

.section-title.yellow-title p {
  color: var(--white-color);
}

/*
hero Slider Area Style
================================*/
.hero-slider-area {
  position: relative;
  z-index: 1;
}

.hero-slider-area .hero-shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 310px;
  z-index: 1;
}

.hero-slider-area .owl-item.active .hero-slider-content {
  overflow: hidden;
}

.hero-slider-area .owl-item.active .hero-slider-content span {
  -webkit-animation: .6s fadeInDownBig;
          animation: .6s fadeInDownBig;
}

.hero-slider-area .owl-item.active .hero-slider-content p {
  -webkit-animation: .9s fadeInDownBig;
          animation: .9s fadeInDownBig;
}

.hero-slider-area .owl-item.active .hero-slider-content .hero-btn {
  -webkit-animation: 1s fadeInDownBig;
          animation: 1s fadeInDownBig;
          margin-top: 30px;
}

.hero-slider-area .owl-item.active .animation-style-two h1 {
  -webkit-animation: .6s fadeInLeftBig;
          animation: .6s fadeInLeftBig;
}

.hero-slider-area .owl-item.active .animation-style-two p {
  -webkit-animation: .9s fadeInLeftBig;
          animation: .9s fadeInLeftBig;
}

.hero-slider-area .owl-item.active .animation-style-two .hero-btn {
  -webkit-animation: 1s fadeInLeftBig;
          animation: 1s fadeInLeftBig;
}

.hero-slider-area .owl-item.active .animation-style-three h1 {
  -webkit-animation: .6s fadeInUpBig;
          animation: .6s fadeInUpBig;
}

.hero-slider-area .owl-item.active .animation-style-three p {
  -webkit-animation: .9s fadeInUpBig;
          animation: .9s fadeInUpBig;
}

.hero-slider-area .owl-item.active .animation-style-three .hero-btn {
  -webkit-animation: 1s fadeInUpBig;
          animation: 1s fadeInUpBig;
}

.hero-slider-area .owl-carousel .owl-item img {
  width: auto;
}

.hero-slider-area .owl-theme .owl-nav {
  margin-top: 0;
  max-width: 1280px;
  margin: auto;
  position: relative;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev, .hero-slider-area .owl-theme .owl-nav .owl-next {
  background: transparent;
  position: absolute;
  bottom: 100px;
  right: 0;
  margin: 0;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev i, .hero-slider-area .owl-theme .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--main-color);
  display: inline-block;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev i::after, .hero-slider-area .owl-theme .owl-nav .owl-next i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--heading-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-slider-area .owl-theme .owl-nav .owl-prev:hover i::after, .hero-slider-area .owl-theme .owl-nav .owl-next:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev {
  right: 60px;
}

.hero-slider-area.hero-slider-area-style-two {
  margin-top: 20px;
  overflow: hidden;
}

.hero-slider-area.hero-slider-area-style-two .owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 50%;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
}

.hero-slider-area.hero-slider-area-style-two .owl-theme .owl-nav .owl-prev, .hero-slider-area.hero-slider-area-style-two .owl-theme .owl-nav .owl-next {
  position: absolute;
  left: -5px;
  bottom: 0;
}

.hero-slider-area.hero-slider-area-style-two .owl-theme .owl-nav .owl-next {
  right: -5px;
  left: auto;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content {
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 0;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active.center .hero-slider-content {
  opacity: 1;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-item {
  padding-top: 0;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-item::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-item .hero-slider-content {
  text-align: center;
  margin: auto;
  max-width: 990px;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-item .hero-slider-content p {
  margin: auto;
  margin-bottom: 40px;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-item .hero-slider-content .hero-btn .default-btn.active {
  margin-left: 30px;
}

.hero-slider-item {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 86px;
  padding-bottom: 0;
  height: 100vh;
  z-index: 1;
}

.hero-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  opacity: 0.5;
  z-index: -1;
}

.hero-slider-item.hero-bg-1 {
  background-image: url(../images/hero-bg/ss-coils.jpg);
}

.hero-slider-item.hero-bg-2 {
  background-image: url(../images/hero-bg/ss-flats-bars.jpg);
}

.hero-slider-item.hero-bg-3 {
  background-image: url(../images/hero-bg/pipes-supplier-india.jpg);
}

.hero-slider-item .hero-slider-content {
  max-width: 795px;
  margin-top: 38px;
}

.hero-slider-item .hero-slider-content span {
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 900;
  color: var(--white-color);
  font-family: 'Oswald', sans-serif;
      line-height: 1.2;
}

.hero-slider-item .hero-slider-content p {
  margin-bottom: 40px;
  font-size: 16px;
  color: var(--white-color);
  max-width: 700px;
}

.banner-area {
  background-image: url(../images/banner-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  position: relative;
  z-index: 1;
}

.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  opacity: 0.6;
  z-index: -1;
}

.banner-area .border-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 280px;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  text-align: center;
}

.banner-slider-content {
  max-width: 960px;
}

.banner-slider-content h1 {
  font-size: 100px;
  color: var(--white-color);
  margin-bottom: 30px;
  line-height: 1.1;
}

.banner-slider-content p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  color: var(--white-color);
}

/*
Partner Area Style
================================*/
.partner-area .owl-carousel .owl-item img {
  width: auto;
  margin: auto;
}

.partner-area .owl-theme .owl-nav .owl-prev, .partner-area .owl-theme .owl-nav .owl-next {
  background-color: transparent;
  position: absolute;
  top: 30px;
  left: 0;
}

.partner-area .owl-theme .owl-nav .owl-prev i, .partner-area .owl-theme .owl-nav .owl-next i {
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--heading-color);
}

.partner-area .owl-theme .owl-nav .owl-prev:hover i, .partner-area .owl-theme .owl-nav .owl-next:hover i {
  color: var(--main-color);
}

.partner-area .owl-theme .owl-nav .owl-next {
  left: auto;
  right: 0;
}

.partner-item {
  position: relative;
  cursor: pointer;
}

.partner-item .partner-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.partner-item:hover .partner-color {
  opacity: 1;
}

/*
About Area Style
================================*/
.about-area {
  position: relative;
  z-index: 1;
}

.about-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 570px;
  height: 550px;
  background-color: #f8f8f8;
  z-index: -1;
}

.about-area.about-area-style-two {
  overflow: hidden;
  margin-left: 24px;
}

.about-area.about-area-style-two::before {
  display: none;
}

.about-area.about-area-style-two .container-fluid {
  max-width: 1598px;
  margin-left: auto !important;
  margin-right: 0;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img .year {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-img .year-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: rotation 50s infinite linear;
          animation: rotation 50s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.about-content .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.about-content .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--main-color);
}

.about-content h1, .about-content h2 {
  font-size: 40px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-content .default-btn {
  margin-top: 20px;
}

/*
Services Area Style
================================*/
.services-area {
  background-image: url(../images/services-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-area .services-section-shape {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1;
}

.services-area.style-two {
  overflow: hidden;
  background-image: unset;
}

.services-area.style-two .section-title {
  text-align: left;
  max-width: 500px;
  margin-left: 50px;
}

.services-area.style-two::before {
  display: none;
}

.services-area.style-two .owl-theme .owl-nav {
  position: absolute;
  top: auto;
  bottom: 0;
  left: -145px;
  margin: 0;
}

.services-area.style-two .owl-theme .owl-nav .owl-prev, .services-area.style-two .owl-theme .owl-nav .owl-next {
  position: unset;
}

.services-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  z-index: -1;
}

.services-area .owl-carousel .owl-item img {
  width: auto;
}

.services-area .owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin: 0;
}

.services-area .owl-theme .owl-nav .owl-prev, .services-area .owl-theme .owl-nav .owl-next {
  background: transparent;
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

.services-area .owl-theme .owl-nav .owl-prev i, .services-area .owl-theme .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--main-color);
  display: inline-block;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-area .owl-theme .owl-nav .owl-prev i::after, .services-area .owl-theme .owl-nav .owl-next i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.services-area .owl-theme .owl-nav .owl-prev:hover i::after, .services-area .owl-theme .owl-nav .owl-next:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.services-area .owl-theme .owl-nav .owl-next {
  position: absolute;
  left: auto;
  right: -50px;
}

.services-area:hover .owl-theme .owl-nav {
  opacity: 1;
}

.single-services-card {
  background-color: rgba(17, 17, 17, 0.5);
  padding: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.single-services-card .services-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.single-services-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--heading-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-services-card img {
  margin-bottom: 25px;
}

.single-services-card h3 {
  color: var(--white-color);
  font-size: 25px;
  margin-bottom: 13px;
}

.single-services-card h3 a {
  color: var(--white-color);
}

.single-services-card p {
  color: var(--white-color);
  border-bottom: 1px solid #3d3d3d;
  padding-bottom: 18px;
}

.single-services-card .read-more {
  color: var(--white-color);
}

.single-services-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-services-card:hover h3 a {
  color: var(--optional-color);
}

.single-services-card:hover .read-more {
  color: var(--optional-color);
}

.single-services-card:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.single-services-card.style-two {
  margin-bottom: 0;
  background-color: var(--main-color);
}

.single-services-card.style-two h3 {
  position: relative;
}

.single-services-card.style-two h3 img {
  max-width: 50px;
}

.services-bg {
  background-image: url(../images/services-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

/*
Choose Area Style
================================*/
.single-choose-us {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
  padding-bottom: 26px;
  position: relative;
  overflow: hidden;
}

.single-choose-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-choose-us img {
  margin-bottom: 15px;
}

.single-choose-us h3 {
  font-size: 25px;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.single-choose-us:nth-child(4) {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.single-choose-us:nth-child(4)::after {
  display: none;
}

.single-choose-us:hover::after {
  width: 100%;
  left: auto;
  right: 0;
  -webkit-animation: fadeInLeft 1s linear;
          animation: fadeInLeft 1s linear;
}

/*
Video Area Style
================================*/
.video-area {
  overflow: hidden;
}

.video-area-two .video-bg .video-shape-1 {
  left: 100px;
}

.video-area-two .video-bg .video-shape-2 {
  right: 100px;
  top: -50px;
}

.video-bg {
  background-image: url(../images/video-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 200px;
}

.video-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.7);
  z-index: -1;
}

.video-bg .video-shape-1 {
  position: absolute;
  bottom: -50px;
  left: -50px;
}

.video-bg .video-shape-2 {
  position: absolute;
  top: 0;
  right: -50px;
}

.video-play {
  text-align: center;
  position: relative;
}

.video-play i {
  font-size: 50px;
  color: var(--white-color);
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--main-color);
  border-radius: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.video-play i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}

.video-play h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
}

.video-play:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

/*
Latest Area Style
================================*/
.latest-project-img {
  margin-bottom: 30px;
}

.latest-project-content {
  margin-left: 20px;
}

.latest-project-content .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.latest-project-content .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--main-color);
}

.latest-project-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.latest-project-content .default-btn {
  margin-top: 10px;
}

.single-latest-project {
  position: relative;
  z-index: 1;
}

.single-latest-project .project-slider-content {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: rgba(17, 17, 17, 0.8);
  padding: 30px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-latest-project .project-slider-content p {
  position: absolute;
  bottom: 30px;
  left: 30px;
  margin-bottom: 0;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
font-weight: 900;
text-transform: uppercase;
text-align:left;
}

.single-latest-project .project-slider-content p a {
  color: var(--white-color);
  font-size: 20px;
  text-transform: uppercase;
}

.single-latest-project .project-slider-content i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--main-color);
  font-size: 20px;
  display: inline-block;
  color: var(--white-color);
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  overflow: hidden;
}

.single-latest-project .project-slider-content i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-latest-project:hover .project-slider-content {
  opacity: 1;
}

.single-latest-project:hover .project-slider-content i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.single-latest-project:hover .project-slider-content h3 a {
  color: var(--optional-color);
}

.latest-project-slider-area .owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  top: -50px;
  right: 0;
}

.latest-project-slider-area .owl-theme .owl-nav .owl-prev, .latest-project-slider-area .owl-theme .owl-nav .owl-next {
  background: transparent;
  margin: 0 4px;
}

.latest-project-slider-area .owl-theme .owl-nav .owl-prev i, .latest-project-slider-area .owl-theme .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--main-color);
  display: inline-block;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 20px;
}

.latest-project-slider-area.style-two .single-latest-project {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 30px;
  margin-bottom: 30px;
}

.latest-project-slider-area.style-two .owl-item.center .single-latest-project {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.latest-project-slider-area.style-two .owl-theme .owl-nav {
  position: initial;
}

.latest-project-slider-area.style-two .owl-theme .owl-nav .owl-prev, .latest-project-slider-area.style-two .owl-theme .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  top: 50%;
  left: -24px;
}

.latest-project-slider-area.style-two .owl-theme .owl-nav .owl-prev i, .latest-project-slider-area.style-two .owl-theme .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 30px;
}

.latest-project-slider-area.style-two .owl-theme .owl-nav .owl-next {
  bottom: auto;
  right: -24px;
  left: auto;
}

.latest-project-style-three {
  overflow: hidden;
}

.latest-project-style-three .owl-theme .owl-dots {
  margin-top: 30px !important;
  line-height: 1;
}

.latest-project-style-three .owl-theme .owl-dots .owl-dot {
  line-height: 1;
}

.latest-project-style-three .owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
  background-color: #bebebe;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

.latest-project-style-three .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--main-color);
}

/*
Counter Area Style
================================*/
.counter-area {
  background-image: url(../images/counter-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.counter-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.single-counter {
  text-align: center;
  margin-bottom: 30px;
  margin-top: -22px;
}

.single-counter h2 {
  color: var(--white-color);
  font-weight: 900;
  font-size: 70px;
  line-height: 1;
}

.single-counter h2 .target {
  position: relative;
  top: 5px;
  left: -12px;
}

.single-counter h4 {
  font-weight: normal;
  font-size: 20px;
  color: #fff;
  margin-bottom: -5px;
  font-weight: 700;
  text-transform: uppercase;
}

/*
Join Our Team Area Style
================================*/
.join-our-team-area {
  background-image: url(../images/join-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.join-our-team-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.join-our-team-content {
  background-color: rgba(219, 0, 27, 0.5);
  padding: 100px;
  display: inline-block;
  max-width: 750px;
  position: relative;
}

.join-our-team-content .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--optional-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.join-our-team-content .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--optional-color);
}

.join-our-team-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--white-color);
}

.join-our-team-content .default-btn {
  margin-top: 10px;
  background-color: var(--heading-color);
}

/*
Testimonial Area Style
================================*/
.testimonial-area {
  background-image: url(../images/testimonial/bg-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}

.testimonial-area .owl-carousel .owl-item img {
  width: auto;
}

.testimonial-area.style-two .single-testimonial {
  padding-left: 70px;
}

.testimonial-area.style-two .single-testimonial img {
  top: 7px;
}

.testimonial-area.style-two .testimonial-bg::before {
  background-color: var(--main-color);
  opacity: 0.5;
}

.testimonial-area.style-two .testimonial-bg .owl-theme .owl-nav {
  position: initial;
}

.testimonial-area.style-two .testimonial-bg .owl-theme .owl-nav .owl-prev, .testimonial-area.style-two .testimonial-bg .owl-theme .owl-nav .owl-next {
  background: transparent;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  margin: 0;
  position: absolute;
  bottom: auto;
  top: 50%;
  left: -70px;
}

.testimonial-area.style-two .testimonial-bg .owl-theme .owl-nav .owl-prev i, .testimonial-area.style-two .testimonial-bg .owl-theme .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--heading-color);
  font-size: 20px;
}

.testimonial-area.style-two .testimonial-bg .owl-theme .owl-nav .owl-next {
  position: absolute;
  right: -70px;
  left: auto;
}

.testimonial-bg {
  background-image: url(../images/testimonial/testimonial-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 100px 50px;
  position: relative;
}

.testimonial-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111111;
  opacity: 0.5;
}

.testimonial-bg .owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  bottom: -141px;
  right: -600px;
}

.testimonial-bg .owl-theme .owl-nav .owl-prev, .testimonial-bg .owl-theme .owl-nav .owl-next {
  background: transparent;
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
  margin: 0;
}

.testimonial-bg .owl-theme .owl-nav .owl-prev i, .testimonial-bg .owl-theme .owl-nav .owl-next i {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: var(--main-color);
  display: inline-block;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 50px;
}

.testimonial-bg .owl-theme .owl-nav .owl-prev i::after, .testimonial-bg .owl-theme .owl-nav .owl-next i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.testimonial-bg .owl-theme .owl-nav .owl-prev:hover i::after, .testimonial-bg .owl-theme .owl-nav .owl-next:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.testimonial-bg .owl-theme .owl-nav .owl-next {
  position: absolute;
  bottom: 100px;
  left: 0;
}

.single-testimonial {
  position: relative;
  padding-left: 40px;
}

.single-testimonial img {
  position: absolute;
  top: 0;
  left: 0;
}

.single-testimonial p {
  font-style: italic;
  color: var(--white-color);
}

.single-testimonial h3 {
  color: var(--optional-color);
  font-size: 20px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.single-testimonial span {
  color: var(--white-color);
}

.testimonial-content {
  margin-left: 50px;
}

.testimonial-content .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.testimonial-content .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--main-color);
}

.testimonial-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.testimonial-content .circle-wrap {
  position: relative;
  display: inline-block;
}

.testimonial-content .circle-wrap .circle-1 {
  max-width: 150px;
  -webkit-animation: rotation 50s infinite linear;
          animation: rotation 50s infinite linear;
}

.testimonial-content .circle-wrap .circle-2 {
  position: absolute;
  bottom: -80px;
  left: 0;
  max-width: 80px;
  -webkit-animation: rotation 50s infinite linear;
          animation: rotation 50s infinite linear;
}

.testimonial-content .circle-wrap .circle-3 {
  position: absolute;
  bottom: -50px;
  right: -30px;
  max-width: 80px;
  -webkit-animation: rotation 50s infinite linear;
          animation: rotation 50s infinite linear;
}

/*
Get A Quote Area Style
================================*/
.get-quote-area {
  background-image: url(../images/get-quote-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.get-quote-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  opacity: 0.7;
  z-index: -1;
}

.get-quote-from {
  max-width: 700px;
  margin-left: auto;
  background-color: rgba(219, 0, 27, 0.5);
  padding: 100px;
  margin: auto;
}

.get-quote-from .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--optional-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.get-quote-from .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--optional-color);
}

.get-quote-from h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--white-color);
}

.get-quote-from .form-group {
  margin-bottom: 30px;
}

.get-quote-from .form-group .form-control {
  background-color: var(--white-color);
  border-color: var(--white-color);
  border: 0px solid;
}

.get-quote-from .form-group .form-control:focus {
  border: 0px solid;
}

.get-quote-from .form-group .form-control selected {
  color: #ffcc00;
}

.get-quote-from .default-btn {
  background-color: var(--black-color);
}

/*
Latest News Area Style
================================*/
.latest-news-area .owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  top: 37px;
  left: 3px;
}

.latest-news-area .owl-theme .owl-nav .owl-prev, .latest-news-area .owl-theme .owl-nav .owl-next {
  background: transparent;
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
  margin: 0 2px 0 0;
}

.latest-news-area .owl-theme .owl-nav .owl-prev i, .latest-news-area .owl-theme .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--main-color);
  display: inline-block;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 20px;
}

.latest-news-area .owl-theme .owl-nav .owl-prev i::after, .latest-news-area .owl-theme .owl-nav .owl-next i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.latest-news-area .owl-theme .owl-nav .owl-prev:hover i::after, .latest-news-area .owl-theme .owl-nav .owl-next:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.latest-news-area.blog-page .single-blog {
  margin-bottom: 30px;
}

.blog-title-content .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.blog-title-content .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--main-color);
}

.blog-title-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.blog-title-content .default-btn {
  margin-top: 15px;
}

.single-blog .blog-img {
  position: relative;
}

.single-blog .blog-img .read-more-icon {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 90%;
  height: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog .blog-img .read-more-icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--main-color);
  font-size: 20px;
  display: inline-block;
  color: var(--white-color);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.single-blog .blog-img .read-more-icon i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog .blog-img .date {
  position: absolute;
  top: 6.5%;
  right: 6%;
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 40px 20px;
  padding-top: 20px;
  max-width: 60px;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 84%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 84%);
}

.single-blog .blog-img .date span {
  line-height: 1.4;
  font-weight: 600;
}

.single-blog .blog-content {
  margin-top: 15px;
}

.single-blog .blog-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.single-blog .blog-content h3 a {
  color: var(--heading-color);
}

.single-blog:hover {
  opacity: 1;
}

.single-blog:hover .read-more-icon {
  opacity: 1;
}

.single-blog:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.single-blog:hover h3 a {
  color: var(--optional-color);
}

/*
Footer Area Style
================================*/
.footer-area {
  background-image: url(../images/footer-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget img {
  margin-bottom: 30px;
}

.single-footer-widget .foot-head {
font-size: 25px;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 30px !important;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.single-footer-widget p {
  color: var(--white-color);
}

.single-footer-widget .address-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .address-link li {
  font-size: 16px;
  color: var(--white-color);
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
  font-family:Georgia, "Times New Roman", Times, serif;
}

.single-footer-widget .address-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .address-link li a {
  font-size: 16px;
  color: var(--white-color);
}

.single-footer-widget .address-link li i {
  position: absolute;
  top: -3px;
  left: 0;
  color: var(--optional-color);
  font-size: 20px;
}

.single-footer-widget .import-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .import-link li {
  margin-bottom: 15px;
}

.single-footer-widget .import-link li a {
  color: var(--white-color);
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
  font-family:Georgia, "Times New Roman", Times, serif;
}

.single-footer-widget .import-link li a::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 20px;
  background-color: var(--optional-color);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.single-footer-widget .import-link li a:hover {
  padding-left: 20px;
  color: var(--optional-color);
}

.single-footer-widget .import-link li a:hover::before {
  opacity: 1;
}

.single-footer-widget .import-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .newsletter-form .form-control {
  background-color: var(--white-color);
  border: none;
  color: var(--blackColor);
  border-radius: 0;
  height: 55px;
}

.single-footer-widget .newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.single-footer-widget .newsletter-form .form-control::-webkit-input-placeholder {
  color: #646464;
}

.single-footer-widget .newsletter-form .form-control:-ms-input-placeholder {
  color: #646464;
}

.single-footer-widget .newsletter-form .form-control::-ms-input-placeholder {
  color: #646464;
}

.single-footer-widget .newsletter-form .form-control::placeholder {
  color: #646464;
}

.single-footer-widget .newsletter-form .default-btn {
  width: 100%;
  margin-top: 20px;
}

.single-footer-widget #validator-newsletter {
  color: var(--main-color);
  margin-top: 10px;
}

.copy-right-area {
  background-color: var(--main-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.copy-right-area .copy-right-icon {
  padding: 0;
  margin: 0;
  list-style-type: none;
  float: right;
}

.copy-right-area .copy-right-icon li {
  display: inline-block;
  margin-right: 20px;
}

.copy-right-area .copy-right-icon li:last-child {
  margin-right: 0;
}

.copy-right-area .copy-right-icon li a i {
  color: var(--white-color);
  font-size: 35px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.copy-right-area .copy-right-icon li a:hover i {
  color: var(--optional-color);
}

.copy-right-area .copyright {
  color: var(--white-color);
}

.copy-right-area .copyright a {
  color: var(--optional-color);
}

.copy-right-area .copyright i {
  position: relative;
  top: 2px;
}

/*
Team Area Style
================================*/
.team-bg {
  background-image: url(../images/team/team-shape.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}

.team-bg .owl-theme .owl-dots {
  margin-top: 30px !important;
}

.team-bg .owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
  background-color: #bebebe;
}

.team-bg .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--optional-color);
}

.single-team {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-team .team-img {
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  overflow: hidden;
}

.single-team .team-img::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--white-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-team .team-img .social-icon {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  margin: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-team .team-img .social-icon li {
  display: inline-block;
  margin-right: 10px;
}

.single-team .team-img .social-icon li:last-child {
  margin-right: 0;
}

.single-team .team-img .social-icon li a i {
  color: var(--white-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--main-color);
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.single-team .team-img .social-icon li a i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-team .team-img .social-icon li a:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.single-team .team-content {
  margin-top: 15px;
}

.single-team .team-content h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.single-team .team-content h3 a {
  color: var(--heading-color);
}

.single-team .team-content span {
  font-size: 16px;
}

.single-team.posit-style {
  margin-top: 0;
}

.single-team.posit-style .team-img::before {
  right: auto;
  left: -100px;
}

.single-team.posit-style .team-content {
  margin-top: 0;
  margin-bottom: 15px;
}

.single-team:hover .team-img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-team:hover .team-img::before {
  opacity: 0;
}

.single-team:hover .team-img .social-icon {
  opacity: 1;
}

.single-team:hover h3 a {
  color: var(--optional-color);
}

.team-area.team-psge .single-team {
  margin-bottom: 30px;
  margin-top: 0;
}

/*
Services Area Style
================================*/
.fetcher-services-area {
  margin-top: -90px;
}

.single-fetcher-services {
  background-color: var(--heading-color);
  padding: 30px;
  padding-bottom: 27px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid var(--main-color);
}

.single-fetcher-services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--main-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-fetcher-services img {
  margin-bottom: 17px;
}

.single-fetcher-services h2 {
  font-size: 22px;
  text-align: center;
}

.single-fetcher-services h2 a {
  color: var(--white-color);
}

.single-fetcher-services p {
  color: var(--white-color);
  margin-bottom: 10px;
  border-bottom: 1px solid #3d3d3d;
  padding-bottom: 12px;
}

.single-fetcher-services .read-more {
  color: var(--white-color);
}

.single-fetcher-services span {
  font-size: 75px;
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
  color: #343434;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-family: var(--paragraph-font-family);
}

.single-fetcher-services:hover span {
  color: #d83347;
}

.single-fetcher-services:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

/*
Certified Area Style
================================*/
.certified-content .top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}

.certified-content .top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--main-color);
}

.certified-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.certified-content p {
  margin-bottom: 30px;
}

.certified-area .owl-carousel .owl-item img {
  width: auto;
  margin: auto;
  cursor: pointer;
}

/*
Products Area Style
================================*/
.products-area .owl-theme .owl-dots {
  margin-top: 30px !important;
}

.products-area .owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
  background-color: #bebebe;
}

.products-area .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--optional-color);
}

.products-area.products-area-page .single-product {
  margin-bottom: 30px;
}

.single-product {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-product .product-img {
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  overflow: hidden;
}

.single-product .product-img::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--white-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-product .product-img .social-icon {
  position: absolute;
  top: 5%;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0;
}

.single-product .product-img .social-icon li {
  display: inline-block;
  margin-right: 10px;
}

.single-product .product-img .social-icon li:last-child {
  margin-right: 0;
}

.single-product .product-img .social-icon li a i {
  color: var(--white-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--main-color);
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.single-product .product-img .social-icon li a i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--optional-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-product .product-img .social-icon li a:hover i::after {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInUp 1s linear;
          animation: fadeInUp 1s linear;
}

.single-product .product-content {
     margin-top: 15px;

}

.single-product .product-content ul{
      list-style: none;
    padding-left: 0;
}

.single-product .product-content ul li{
    border-bottom: 1px solid #c5c4c4;

    line-height: 40px;
}

.single-product .product-content ul li a{
      color: #fff;
      transition: 0.8s;
}

.single-product .product-content ul li a:hover{
  color: #8c3a3c;
  font-weight: 700;
}

.single-product .product-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.single-product .product-content h3 a {
  color: var(--heading-color);

}

.single-product .product-content span a{
  font-size: 16px;
  color: var(--main-color);
  font-weight: 400;
  font-family:Georgia, "Times New Roman", Times, serif;
}
.single-product .product-content span a:hover{
color: #000;
}

.single-product .product-content span del {
  opacity: 0.5;
  margin-right: 5px;
}

.single-product:hover .product-img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-product:hover .product-img::before {
  opacity: 0;
}

.single-product:hover .product-img .social-icon {
  opacity: 1;
}

.single-product:hover h3 a {
  color: var(--optional-color);
}

/* 
Page Title Area Style
=====================================================*/
.page-title-area {
  background-color: #f4f7ff;
  padding-top: 265px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: -1;
}

.page-title-area.bg-1 {
  background-image: url(../images/page-bg/page-bg-1.jpg);
}

.page-title-area.bg-2 {
  background-image: url(../images/page-bg/page-bg-2.jpg);
}

.page-title-area.bg-3 {
  background-image: url(../images/page-bg/page-bg-3.jpg);
}

.page-title-area.bg-4 {
  background-image: url(../images/page-bg/page-bg-4.jpg);
}

.page-title-area.bg-5 {
  background-image: url(../images/page-bg/page-bg-5.jpg);
}

.page-title-area.bg-6 {
  background-image: url(../images/page-bg/page-bg-6.jpg);
}

.page-title-area.bg-7 {
  background-image: url(../images/page-bg/page-bg-7.jpg);
}

.page-title-area.bg-8 {
  background-image: url(../images/page-bg/page-bg-8.jpg);
}

.page-title-area.bg-9 {
  background-image: url(../images/page-bg/page-bg-9.jpg);
}

.page-title-area.bg-10 {
  background-image: url(../images/page-bg/page-bg-10.jpg);
}

.page-title-area .page-title-content {
  position: relative;
  margin-top: -13px;
  text-align: center;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  font-size: 50px;
  color: var(--white-color);
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: -5px;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding-right: 15px;
  margin-left: 15px;
  color: var(--white-color);
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -3px;
  background-color: var(--white-color);
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.page-title-area .page-title-content ul li.active {
  color: var(--white-color);
}

.page-title-area .page-title-content ul li:first-child {
  margin-left: 0;
}

.page-title-area .page-title-content ul li:last-child {
  padding-right: 0;
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: var(--white-color);
}

.page-title-area .page-title-content ul li a:hover {
  color: var(--main-color);
}

.page-title-area .page-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 300px;
}

/* 
Main Content Text Style
=====================================================*/
.main-default-content h1, .main-default-content h2, .main-default-content h3, .main-default-content h4, .main-default-content h5, .main-default-content h6 {
  margin-bottom: 15px;
}

.main-default-content h1 {
  font-size: 30px;
}

.main-default-content h2 {
  font-size: 26px;
}

.main-default-content h3 {
  font-size: 24px;
}

.main-default-content h4 {
  font-size: 22px;
}

.main-default-content h5 {
  font-size: 20px;
}

.main-default-content h6 {
  font-size: 18px;
}

.main-default-content .gap-20 {
  margin-bottom: 30px;
}

.main-default-content .gap-50 {
  margin-bottom: 50px;
}

.main-default-content .gap-ml-50 {
  margin-left: 50px;
}

.main-default-content ul {
  padding: 0;
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
}

.main-default-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}

.main-default-content ul li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--main-color);
}

.main-default-content ul li:last-child {
  margin-bottom: 0;
}

.main-default-content ul li i {
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--main-color);
  font-size: 25px;
}

.main-default-content ol {
  padding-left: 18px;
}

.main-default-content ol li {
  margin-bottom: 10px;
}

.main-default-content ol li::marker {
  color: var(--main-color);
}

.main-default-content ol li:last-child {
  margin-bottom: 0;
}

.main-default-content a {
  color: var(--main-color);
}

.main-default-content a:hover {
  text-decoration: underline;
}

.services-details-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  text-align: center;
  margin-top: -13px;
}

.project-details-area h2 {
  font-size: 42px;
  margin-bottom: 25px;
  text-align: center;
  margin-top: -13px;
}

.project-details-img {
  position: relative;
}

.project-details-img .project-list {
  width: 320px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--white-color);
  padding: 30px;
  padding-top: 25px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.project-details-img .project-list h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeee;
  color: var(--main-color);
}

.project-details-img .project-list ul {
  padding: 0;
  margin: 0;
  display: block;
}

.project-details-img .project-list ul li {
  font-weight: 600;
  padding: 0;
  margin-bottom: 15px;
}

.project-details-img .project-list ul li:last-child {
  margin-bottom: 0;
}

.project-details-img .project-list ul li::after {
  display: none;
}

.project-details-img .project-list ul li span {
  font-weight: normal;
  float: right;
}

/*
FAQ Area CSS
======================================================*/
.faq-content {
  border-top: 1px solid #e9e4f9;
}

.faq-accordion {
  max-width: 930px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.faq-accordion .shape {
  position: absolute;
  z-index: -1;
}

.faq-accordion .shape.shape-1 {
  left: -50px;
  top: -100px;
}

.faq-accordion .shape.shape-2 {
  right: -50px;
  bottom: -50px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 15px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 60px 17px 30px;
  color: var(--heading-color);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
  background-color: #f7f7ff;
  z-index: 1;
  font-family: var(--heading-font-family);
  border: none;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 7px;
  top: 7px;
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--white-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.faq-accordion .accordion .accordion-title.active i {
  color: var(--heading-color);
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f1af";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -6px;
  padding: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fbfbfb;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-img {
  position: relative;
  z-index: 1;
}

.faq-img .faq-img-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  z-index: -1;
}

.accordion-item {
  border: 1px solid rgba(0,0,0,.125);
}

/*
Cart Area Style
======================================================*/
.cart-area .cart-controller {
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
  border-bottom: none;
  margin-bottom: 35px;
}

.cart-area .trash {
  text-align: center !important;
}

.cart-area .trash .remove {
  color: #ed1d24;
  font-size: 20px;
}

.cart-area .trash .remove:hover {
  color: #ed1d24;
}

.cart-area .product-thumbnail {
  width: 130px;
}

.cart-area .product-thumbnail img {
  border: 1px solid #eeeeee;
}

.cart-area .cart-table {
  text-align: center;
}

.cart-area .cart-table table {
  margin-bottom: 0;
}

.cart-area .cart-table table thead tr {
  border-style: none;
}

.cart-area .cart-table table thead tr th {
  border: none;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 30px;
}

.cart-area .cart-table table tbody tr td {
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #dedede;
  white-space: nowrap;
  padding: 15px 30px;
}

.cart-area .cart-table table tbody tr td a {
  color: var(--heading-color);
  font-weight: 700;
}

.cart-area .cart-table table tbody tr td a:hover {
  color: var(--main-color);
}

.cart-area .cart-table table tbody tr td .default-btn {
  display: inline-block;
  color: var(--white-color);
  font-weight: 600;
}

.cart-area .cart-table table tbody tr td.product-quantity {
  width: 145px;
  padding: 0;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter {
  position: relative;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: var(--heading-color);
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: var(--heading-color);
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: var(--heading-color);
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: var(--heading-color);
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: var(--heading-color);
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--heading-color);
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #dedede;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn i {
  font-weight: 700;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--heading-color);
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #dedede;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn i {
  font-weight: 700;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.cart-area .coupon-cart {
  padding-top: 5px;
  margin-bottom: 0;
}

.cart-area .coupon-cart .form-group {
  position: relative;
}

.cart-area .coupon-cart .form-group .form-control {
  border: 1px solid #dedede;
}

.cart-area .coupon-cart .form-group .form-control:focus {
  border-color: var(--main-color);
}

.cart-area .coupon-cart .form-group .default-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 40px;
  height: 55px;
  line-height: 24px;
}

.cart-area .coupon-cart .form-group .default-btn::before {
  display: none;
}

.cart-area .coupon-cart .form-group .default-btn::after {
  display: none;
}

.cart-area .coupon-cart .default-btn.update-cart {
  float: right;
  height: 50px;
}

.cart-area .cart-totals {
  padding: 30px;
  background-color: #f4f7ff;
}

.cart-area .cart-totals h3 {
  margin-bottom: 21px;
  position: relative;
  padding-bottom: 10px;
  font-size: 24px;
  position: relative;
}

.cart-area .cart-totals h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  width: 150px;
  height: 3px;
}

.cart-area .cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-area .cart-totals ul li {
  color: var(--body-color);
  position: relative;
  margin-bottom: 15px;
}

.cart-area .cart-totals ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.cart-area .cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}

.cart-area .cart-totals .default-btn {
  display: block;
}

/* 
Checkout Area Style
=====================================================*/
.checkout-area .billing-details {
  padding: 30px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--white-color);
}

.checkout-area .billing-details h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-size: 24px;
  position: relative;
}

.checkout-area .billing-details h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  width: 150px;
  height: 3px;
}

.checkout-area .billing-details .form-group {
  margin-bottom: 20px;
}

.checkout-area .billing-details .form-group .form-control {
  background-color: var(--white-color);
  border-color: #ebebeb;
}

.checkout-area .billing-details .form-group label {
  display: block;
  color: var(--body-color);
  margin-bottom: 10px;
  font-size: 16px;
}

.checkout-area .billing-details .form-group label .required {
  color: var(--body-color);
}

.checkout-area .billing-details .form-group .nice-select {
  float: unset;
  line-height: 45px;
  color: var(--body-color);
  padding-top: 0;
  padding-bottom: 0;
}

.checkout-area .billing-details .form-group .nice-select .list {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.checkout-area .billing-details .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}

.checkout-area .billing-details .form-group .nice-select .list .option:hover {
  background-color: var(--main-color) !important;
  color: var(--white-color);
}

.checkout-area .billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
}

.checkout-area .billing-details .form-group .nice-select:after {
  right: 20px;
}

.checkout-area .billing-details .form-group .nice-select .option:hover, .checkout-area .billing-details .form-group .nice-select .option.focus, .checkout-area .billing-details .form-group .nice-select .option.selected.focus {
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
}

.checkout-area .billing-details .form-group textarea {
  padding-top: 13px;
}

.checkout-area .billing-details .form-check {
  margin-bottom: 20px;
}

.checkout-area .billing-details .form-check .form-check-label {
  color: var(--body-color);
  font-weight: 600;
  font-size: 14px;
}

.checkout-area .billing-details .form-check label {
  position: relative;
  top: 1px;
}

.checkout-area .billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.checkout-area .cart-totals {
  margin-bottom: 30px;
  background-color: #f4f7ff;
  padding: 30px;
}

.checkout-area .cart-totals h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-size: 24px;
}

.checkout-area .cart-totals h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  width: 150px;
  height: 3px;
}

.checkout-area .cart-totals ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.checkout-area .cart-totals ul li {
  color: var(--body-color);
  position: relative;
  margin-bottom: 15px;
}

.checkout-area .cart-totals ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.checkout-area .cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}

.checkout-area .faq-accordion {
  margin-top: 0;
  background-color: #f4f7ff;
  padding: 30px;
  margin-bottom: 0;
}

.checkout-area .faq-accordion h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-size: 24px;
  position: relative;
}

.checkout-area .faq-accordion h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  width: 150px;
  height: 3px;
}

.checkout-area .faq-accordion .accordion {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.checkout-area .faq-accordion .accordion .accordion-content {
  border-top: none;
  padding: 0;
  background-color: transparent;
}

.checkout-area .faq-accordion .accordion .accordion-content .form-group {
  margin-bottom: 30px;
}

.checkout-area .faq-accordion .accordion .accordion-title {
  padding: 0;
  position: relative;
  padding-left: 25px;
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-weight: 600;
  background: none;
}

.checkout-area .faq-accordion .accordion .accordion-title.active::after {
  background-color: var(--main-color);
}

.checkout-area .faq-accordion .accordion .accordion-title.active::before {
  border-color: var(--main-color);
}

.checkout-area .faq-accordion .accordion .accordion-title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -4px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  margin: 3px;
}

.checkout-area .faq-accordion .accordion .accordion-title::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 11px;
  height: 11px;
  background-color: var(--white-color);
  border-radius: 50%;
  border-radius: 50%;
}

.checkout-area .faq-accordion .accordion .accordion-title:hover {
  color: var(--main-color);
}

.checkout-area .faq-accordion .accordion .accordion-item {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 15px;
}

.checkout-area .faq-accordion .form-check {
  font-size: 14px;
}

.checkout-area .faq-accordion .form-check label {
  margin-bottom: 5px;
}

.checkout-area .faq-accordion .form-check label a {
  color: var(--main-color);
}

.checkout-area .faq-accordion .form-check label a:hover {
  color: var(--main-color);
}

.checkout-area .log-in-coupon-code .faq-accordion {
  max-width: 100%;
  padding: 20px 30px;
  margin-bottom: 30px;
}

.checkout-area .log-in-coupon-code .faq-accordion .accordion-item {
  margin-bottom: 0;
}

.checkout-area .log-in-coupon-code .faq-accordion .accordion-item p {
  padding-top: 15px;
  padding-bottom: 15px;
}

.checkout-area .log-in-coupon-code .faq-accordion .accordion-item .accordion-title {
  margin-bottom: 0;
  font-weight: 600;
  background: none;
}

/*
Product Details Area Style
=====================================================*/
.product-details-area .product-details-desc h3 {
  font-size: 25px;
}

.product-details-area .product-details-desc p {
  margin-bottom: 0;
}

.product-details-area .product-details-desc .price {
  margin-bottom: 22px;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 500;
}

.product-details-area .product-details-desc .price span {
  padding: 0 5px;
}

.product-details-area .product-details-desc .price del {
  color: var(--body-color);
  margin-right: 10px;
  opacity: 0.5;
}

.product-details-area .product-details-desc .sku {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details-area .product-details-desc .sku li {
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  font-weight: 600;
}

.product-details-area .product-details-desc .sku li:last-child {
  margin-bottom: 0;
}

.product-details-area .product-details-desc .sku li span {
  color: var(--body-color);
  position: absolute;
  top: 0;
  left: 180px;
  font-weight: normal;
}

.product-details-area .product-details-desc .product-add-to-cart {
  margin-bottom: 20px;
  display: inline-block;
  margin-top: 20px;
}

.product-details-area .product-details-desc .product-add-to-cart .quantities {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
  border: 1px solid #cfcfcf;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 34px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter span:hover {
  color: var(--main-color);
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
  border-right: 1px solid #cfcfcf;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
  border-left: 1px solid #cfcfcf;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter input {
  height: 30px;
  color: #333333;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter input::-webkit-input-placeholder {
  color: #333333;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter input:-ms-input-placeholder {
  color: #333333;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter input::-ms-input-placeholder {
  color: #333333;
}

.product-details-area .product-details-desc .product-add-to-cart .input-counter input::placeholder {
  color: #333333;
}

.product-details-area .product-details-desc .social-wrap {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 20px;
}

.product-details-area .product-details-desc .social-wrap li {
  display: inline-block;
  padding-right: 10px;
  color: var(--heading-color);
}

.product-details-area .product-details-desc .social-wrap li span {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
  position: relative;
  top: -2px;
}

.product-details-area .product-details-desc .social-wrap li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  background-color: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.product-details-area .product-details-desc .social-wrap li a::before, .product-details-area .product-details-desc .social-wrap li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--main-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.product-details-area .product-details-desc .social-wrap li a::after {
  height: 0;
  width: 100%;
}

.product-details-area .product-details-desc .social-wrap li a:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

.product-details-area .product-details-desc .social-wrap li a:hover::after {
  height: 100%;
  left: auto;
  right: 0;
}

.product-details-area .product-details-desc .social-wrap li a:hover {
  color: var(--white-color);
}

.product-details-area .product-details-desc .default-btn {
  margin-bottom: 0 !important;
}

.product-details-area .product-details-desc .default-btn i {
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.product-details-area .product-details-desc .category {
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
}

.product-details-area .product-details-desc .category span {
  font-weight: normal;
}

.product-details-area .product-details-desc .product-review {
  position: relative;
  margin-bottom: 10px;
}

.product-details-area .product-details-desc .product-review .rating i {
  color: #ffba0a;
}

.product-details-area .product-details-desc .product-review .rating-count {
  position: absolute;
  top: 0;
  left: 110px;
}

.product-details-area .product-details-image {
  text-align: center;
  border: 1px solid #eeeeee;
}

.product-details-area .tab .tabs_item {
  display: none;
}

.product-details-area .tab .tabs_item:first-child {
  display: block;
}

.product-details-area .product-details-tab {
  margin-top: 50px;
}

.product-details-area .product-details-tab .tabs {
  list-style-type: none;
  padding: 0;
  border-bottom: 1px solid #eaedff;
  margin-bottom: 0;
}

.product-details-area .product-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 15px;
  margin-bottom: 25px;
  color: var(--heading-color);
  font-size: 20px;
  font-family: var(--heading-font-family);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.product-details-area .product-details-tab .tabs li:hover {
  color: var(--main-color);
}

.product-details-area .product-details-tab .tabs li.current {
  color: var(--main-color);
  position: relative;
}

.product-details-area .product-details-tab .tabs li.current::before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
}

.product-details-area .product-details-tab .tab_content {
  padding: 30px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content p {
  margin-bottom: 20px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content p:last-child {
  margin-bottom: 0;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information li {
  border: 1px solid #eaedff;
  border-bottom: none;
  padding: 10px 15px;
  color: #57647c;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information li:last-child {
  border-bottom: 1px solid #eaedff;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .additional-information li span {
  display: inline-block;
  width: 30%;
  color: var(--heading-color);
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content h3 {
  margin-bottom: 15px;
  font-size: 18px;
  margin-top: -5px;
  font-weight: 700;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title {
  position: relative;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .rating {
  display: inline-block;
  position: relative;
  top: 1px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
  color: #ffba0a;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .rating i {
  color: #ffba0a;
  font-size: 14px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .btn {
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 10px 11px;
  font-size: 11px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-title .btn:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 4px;
  background-color: var(--main-color);
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments {
  margin-top: 25px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item {
  margin-top: 20px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eaedff;
  padding-top: 20px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
  color: #ffba0a;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .rating i {
  font-size: 14px;
  color: #ffba0a;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 0;
  color: #57647c;
  top: 40px;
  text-decoration: underline;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
  color: #ff4800;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form {
  margin-top: 30px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group {
  margin-bottom: 30px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group label {
  color: #444444;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group textarea {
  padding-top: 15px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .form-group .form-control {
  font-size: 14px;
}

.product-details-area .product-details-tab .tab_content .tabs_item .product-details-tab-content .product-review-form .review-form form .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 0;
}

.style-for-product-details .section-title {
  margin-left: 0;
  text-align: left;
}

.style-for-product-details .single-product .product-images img {
  border: 1px solid #eeeeee;
}

/*
User Area CSS
=====================================================*/
.user-area {
  position: relative;
  z-index: 1;
}

.user-area .user-form-content {
  background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
  background: linear-gradient(to right, #f6f7ff, #f0f8ff);
  padding: 50px;
  margin: auto;
  max-width: 700px;
  margin: auto;
}

.user-area .user-form-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.user-area .user-form-content h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 3px;
  background-color: var(--main-color);
}

.user-area .user-form-content .user-form .form-group {
  margin-bottom: 30px;
}

.user-area .user-form-content .user-form .form-group label {
  font-size: 16px;
  margin-bottom: 12px;
}

.user-area .user-form-content .user-form .form-group .form-control {
  background: var(--white-color);
}

.user-area .user-form-content .user-form .login-action {
  margin-bottom: 30px;
}

.user-area .user-form-content .user-form .login-action .log-rem {
  display: inline-block;
}

.user-area .user-form-content .user-form .login-action .log-rem label {
  margin-bottom: 0;
  font-size: 16px;
}

.user-area .user-form-content .user-form .login-action .log-rem a {
  color: var(--main-color);
}

.user-area .user-form-content .user-form .login-action .forgot-login {
  display: inline-block;
  float: right;
}

.user-area .user-form-content .user-form .default-btn {
  width: 100%;
  margin-bottom: 30px;
}

.user-area .user-form-content .or {
  text-align: center;
  font-size: 16px;
  display: block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.user-area .user-form-content .or::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 45%;
  height: 1px;
  background-color: #cccccc;
  z-index: -1;
}

.user-area .user-form-content .or::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 45%;
  height: 1px;
  background-color: #cccccc;
  z-index: -1;
}

.user-area .user-form-content .or-login {
  display: block;
  text-align: center;
  border: 1px solid #cccccc;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  font-size: 16px;
}

.user-area .user-form-content .or-login i {
  color: #3b5998;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.user-area .user-form-content .or-login.google i {
  color: #ed1d24;
}

.user-area .user-form-content .or-login:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: var(--main-color);
}

.user-area .user-form-content .or-login:hover i {
  color: var(--white-color);
}

.user-area .user-form-content .create {
  text-align: center;
  font-size: 16px;
}

.user-area .user-form-content .create a {
  color: var(--main-color);
}

.user-area .user-form-content.log-in-width {
  max-width: 930px;
  margin: auto;
}

.user-area .user-form-content.register-width {
  max-width: 930px;
  margin: auto;
}

.user-area #remember-2 {
  position: relative;
  top: 1px;
}

/*
Coming Soon Area Style
=====================================================*/
.coming-soon-area {
  height: 100vh;
  position: relative;
}

.coming-soon-area .coming-soon-content {
  max-width: 800px;
  height: 800px;
  overflow: hidden;
  text-align: center;
  padding: 40px 60px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  position: relative;
}

.coming-soon-area .coming-soon-content .logo {
  display: inline-block;
}

.coming-soon-area .coming-soon-content .circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.coming-soon-area .coming-soon-content h2 {
  font-size: 48px;
  margin-top: -10px;
  margin-bottom: 0;
}

.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}

.coming-soon-area .coming-soon-content #timer div {
  border: 4px solid var(--main-color);
  color: var(--main-color);
  width: 100px;
  height: 105px;
  font-size: 40px;
  font-weight: 800;
  margin-left: 10px;
  margin-right: 10px;
}

.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 17px;
  font-weight: 600;
}

.coming-soon-area .coming-soon-content form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-area .coming-soon-content form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}

.coming-soon-area .coming-soon-content form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: var(--heading-color);
}

.coming-soon-area .coming-soon-content form .form-group .label-title i {
  position: absolute;
  left: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  top: 9px;
  font-size: 22px;
}

.coming-soon-area .coming-soon-content form .form-group .label-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: var(--main-color);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: 1px solid #eeeeee;
  padding: 10px 20px;
  color: var(--heading-color);
  height: 50px;
  display: block;
  width: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white-color);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::-webkit-input-placeholder {
  color: var(--body-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:-ms-input-placeholder {
  color: var(--body-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::-ms-input-placeholder {
  color: var(--body-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::placeholder {
  color: var(--body-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus {
  border-color: var(--main-color);
  outline: 0 !important;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}

.coming-soon-area .coming-soon-content form .default-btn {
  border-radius: 0;
  position: relative;
  height: 46px;
  line-height: 0;
}

.coming-soon-area .coming-soon-content form .default-btn::before {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: #ff0000;
}

.coming-soon-area .coming-soon-content form .validation-success {
  margin-top: 15px;
}

.coming-soon-area .coming-soon-content form p {
  margin-bottom: 0;
  margin-top: 20px;
}

.coming-soon-area .coming-soon-content .newsletter-form {
  position: relative;
}

.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  top: 2px;
  right: 2px;
}

.coming-soon-area .online-treatment-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}

.coming-soon-area .online-treatment-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
404 Error Area Style
=====================================================*/
.error-area {
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #e9fcff;
  height: 100%;
  margin-bottom: -100px;
}

.error-area .error-content {
  padding-bottom: 138px;
  z-index: 1;
  position: relative;
}

.error-area .error-content h1 {
  font-size: 300px;
  line-height: 1;
  font-weight: 700;
  color: var(--main-color);
}

.error-area .error-content h1 .a {
  display: inline-block;
}

.error-area .error-content h1 .red {
  color: #ff0000;
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.error-area .error-content h1 .b {
  display: inline-block;
}

.error-area .error-content h3 {
  margin: 30px 0 0;
  position: relative;
  color: #ff0000;
}

.error-area .error-content p {
  margin: 20px 0 20px;
  font-size: 19px;
  color: var(--main-color);
}

/* 
Main Contact Area Style
=====================================================*/
.main-contact-area h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.main-contact-area p {
  margin-bottom: 30px;
}

.main-contact-area .form-group {
  margin-bottom: 30px;
}

.main-contact-area .form-group label {
  font-size: 16px;
  margin-bottom: 10px;
}

.main-contact-area .form-group .form-control {
  background-color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-color: #eeeeee;
}

.main-contact-area .form-group .form-control:focus {
  border-color: var(--main-color);
}

.main-contact-area .form-group .form-control::-webkit-input-placeholder {
  color: #6b7c93;
}

.main-contact-area .form-group .form-control:-ms-input-placeholder {
  color: #6b7c93;
}

.main-contact-area .form-group .form-control::-ms-input-placeholder {
  color: #6b7c93;
}

.main-contact-area .form-group .form-control::placeholder {
  color: #6b7c93;
}

.main-contact-area .form-group.checkboxs {
  position: relative;
}

.main-contact-area .form-group.checkboxs #chb2 {
  position: absolute;
  top: 6px;
  left: 0;
}

.main-contact-area .form-group.checkboxs p {
  padding-left: 20px;
}

.main-contact-area .form-group.checkboxs p a {
  color: var(--main-color);
}

.main-contact-area .form-group.checkboxs p a:hover {
  color: var(--heading-color);
}

.list-unstyled {
  color: #dc3545;
  margin-top: 10px;
  font-size: 14px;
}

.hidden {
  display: none;
}

#msgSubmit {
  margin-top: 30px;
  font-size: 20px;
}

.map-area {
  overflow: hidden;
  margin-bottom: -100px;
}

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

#contactForm {
  background-color: #f8f8f8;
}

.p-wrap {
  padding: 50px;
  padding-left: 26px;
  position: relative;
}

.p-wrap .contact-shape {
  position: absolute;
  top: 30px;
  right: 30px;
}

.contact-img {
  background-image: url(../images/contact-img.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
}

.contact-info-area {
  /* background-image: url(../images/contact-info-bg.jpg); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.contact-info-single {
  text-align: center;
  background-color: var(--main-color);
  padding: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  min-height: 330px;
}

.contact-info-single img {
  margin-bottom: 15px;
}

.contact-info-single p {
  color: var(--white-color);
  text-align: unset;
}

.contact-info-single a {
  display: block;
  color: var(--white-color);
}

.contact-info-single .info-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* 
Blog Details Area Style
=====================================================*/
.blog-info-card {
  position: relative;
}

.blog-info-card h2 {
  font-size: 30px;
  margin-bottom: 25px;
  margin-top: -12px;
}
.contact-info-single h2 {
  color: #fff;
}
.blog-info-card ul {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 320px;
  padding: 40px 30px;
  background-color: var(--white-color);
}

.blog-info-card ul li {
  font-weight: 600;
  padding-left: 0;
  margin-bottom: 20px;
}

.blog-info-card ul li:last-child {
  margin-bottom: 0;
}

.blog-info-card ul li::after {
  display: none;
}

.blog-info-card ul li span {
  float: right;
  font-weight: normal;
}

.blog-details-area a {
  text-decoration: none !important;
}

.blog-details-area blockquote {
  padding: 50px;
  background-color: #f9f9f9;
  margin-bottom: 0;
}

.blog-details-area blockquote p {
  font-weight: 600;
  font-size: 18px;
}

.blog-details-area blockquote span {
  font-size: 17px;
  font-weight: 600;
  color: var(--main-color);
  position: relative;
  padding-left: 70px;
}

.blog-details-area blockquote span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--main-color);
}

.blog-details-area .tag-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.blog-details-area .tag-bar .tag-list li {
  padding-left: 0;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
}

.blog-details-area .tag-bar .tag-list li:last-child {
  margin-right: 0;
}

.blog-details-area .tag-bar .tag-list li::after {
  display: none;
}

.blog-details-area .tag-bar .tag-list li a {
  background-color: #e6e6e6;
  padding: 10px 20px;
  color: var(--heading-color);
  text-decoration: none;
  display: inline-block;
}

.blog-details-area .tag-bar .tag-list li a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}

.blog-details-area .tag-bar .social-list {
  display: block;
  text-align: right;
  margin-right: 24px;
}

.blog-details-area .tag-bar .social-list li {
  padding-left: 0;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 30px;
}

.blog-details-area .tag-bar .social-list li:last-child {
  margin-right: 0;
}

.blog-details-area .tag-bar .social-list li::after {
  display: none;
}

.blog-details-area .tag-bar .social-list li a {
  display: inline-block;
}

.blog-details-area .tag-bar .social-list li span {
  position: relative;
  right: -20px;
}

.blog-details-area .comment {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 40px;
}

.blog-details-area .comment li {
  display: inline-block;
  position: relative;
  padding: 30px;
  padding-left: 150px;
  margin-bottom: 40px;
  background-color: #eeeeee;
}

.blog-details-area .comment li::after {
  display: none;
}

.blog-details-area .comment li:last-child {
  margin-bottom: 0 !important;
}

.blog-details-area .comment li img {
  position: absolute;
  top: 30px;
  left: 30px;
  max-width: 83px;
}

.blog-details-area .comment li h3 {
  font-size: 18px;
  margin-top: -5px;
  margin-bottom: 12px;
}

.blog-details-area .comment li span {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: normal;
  margin-left: 20px;
}

.blog-details-area .comment li p {
  margin-bottom: 0;
}

.blog-details-area .comment li .read-more {
  position: absolute;
  top: 30px;
  right: 30px;
}

.blog-details-area .comment li.margin-left {
  margin-left: 30px;
}

.blog-details-area .leave-reply {
  background-color: var(--white-color);
}

.blog-details-area .leave-reply h3 {
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
}

.blog-details-area .leave-reply form p {
  margin-bottom: 30px;
}

.blog-details-area .leave-reply form .form-group {
  margin-bottom: 30px;
}

.blog-details-area .leave-reply form .form-group label {
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-details-area .leave-reply form .form-group .form-control {
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
}

.blog-details-area .leave-reply form .form-group .form-control::-webkit-input-placeholder {
  color: #cccccc;
}

.blog-details-area .leave-reply form .form-group .form-control:-ms-input-placeholder {
  color: #cccccc;
}

.blog-details-area .leave-reply form .form-group .form-control::-ms-input-placeholder {
  color: #cccccc;
}

.blog-details-area .leave-reply form .form-group .form-control::placeholder {
  color: #cccccc;
}

.blog-details-area .leave-reply .checkboxs {
  position: relative;
}

.blog-details-area .leave-reply .checkboxs #chb2 {
  position: absolute;
  top: 6px;
  left: 0;
}

.blog-details-area .leave-reply .checkboxs p {
  padding-left: 20px;
}

.blog-details-area .leave-reply .checkboxs p a {
  color: var(--main-color);
}

.blog-details-area .leave-reply .checkboxs p a:hover {
  color: var(--heading-color);
}

.blog-details-area .related-blog h3 {
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
}

.blog-details-area .related-blog .single-blog .blog-content h3 {
  font-size: 22px;
}

.blog-details-area .comments-wrap h3 {
  margin-bottom: 20px;
}

/* 
Sidebar Widget Style
=====================================================*/
.sidebar-widget {
  margin-bottom: 35px;
  padding: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
  background: linear-gradient(to right, #f6f7ff, #f0f8ff);
}

.sidebar-widget h3 {
  font-size: 22px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  position: relative;
}

.sidebar-widget h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--main-color);
}

.sidebar-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-widget.search {
  padding: 0;
}

.sidebar-widget.search .search-form {
  background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
  background: linear-gradient(to right, #f6f7ff, #f0f8ff);
  position: relative;
}

.sidebar-widget.search .search-form .form-control {
  border: none;
  height: 70px;
}

.sidebar-widget.search .search-form .search-button {
  position: absolute;
  width: 55px;
  height: 55px;
  line-height: 55px;
  top: 8px;
  right: 8px;
  font-size: 20px;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--main-color);
}

.sidebar-widget.search .search-form .search-button:hover {
  background-color: var(--heading-color);
}

.sidebar-widget.categories ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  font-weight: 600;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.sidebar-widget.categories ul li a {
  display: block;
  color: var(--heading-color);
}

.sidebar-widget.categories ul li a i {
  font-size: 20px;
  position: relative;
  top: -3px;
  float: right;
}

.sidebar-widget.categories ul li a:hover {
  margin-left: 5px;
  color: var(--main-color);
}

.sidebar-widget.categories ul li span {
  float: right;
  position: relative;
  top: 1px;
}

.sidebar-widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-widget.recent-post ul li {
  margin-bottom: 15px;
  padding-bottom: 20px;
  position: relative;
  padding-left: 90px;
  border-bottom: 1px solid #eeeeee;
}

.sidebar-widget.recent-post ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-widget.recent-post ul li a {
  font-size: 15px;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
}

.sidebar-widget.recent-post ul li a:hover {
  color: var(--main-color);
}

.sidebar-widget.recent-post ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 80px;
}

.sidebar-widget.recent-post ul li span {
  display: block;
  font-size: 14px;
}

.sidebar-widget.tags ul li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.sidebar-widget.tags ul li a {
  border: 1px solid #eeeeee;
  padding: 8px 12px;
  display: inline-block;
  background-color: var(--white-color);
}

.sidebar-widget.tags ul li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: var(--main-color);
}

.sidebar-widget.tags ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area-right.blog-details-area .related-blog .single-blog .blog-content h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

/* 
Team Area Style
=====================================================*/
.team-details-area .team-img-bg {
  background-image: url(../images/team/team-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.team-details-area .team-detail-content {
  background-color: #f8f8f8;
  padding: 40px;
}

.team-details-area .team-detail-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.team-details-area .team-detail-content .post {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.team-details-area .team-detail-content p {
  margin-bottom: 20px;
}

.team-details-area .team-detail-content .address-link {
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 350px;
  margin-bottom: 30px;
}

.team-details-area .team-detail-content .address-link li {
  font-size: 18px;
  margin-bottom: 10px;
}

.team-details-area .team-detail-content .address-link li img {
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.team-details-area .team-detail-content .address-link li span {
  float: right;
  font-weight: 600;
  font-size: 16px;
}

.team-details-area .team-detail-content .address-link li a {
  float: right;
  font-weight: 600;
  font-size: 16px;
}

.team-details-area .team-detail-content .social-icon {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.team-details-area .team-detail-content .social-icon li {
  display: inline-block;
  margin-right: 20px;
}

.team-details-area .team-detail-content .social-icon li a i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--main-color);
  display: inline-block;
  text-align: center;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.team-details-area .team-detail-content .social-icon li a:hover i {
  background-color: var(--optional-color);
}

.team-details-area .team-detail-content .social-icon li:last-child {
  margin-right: 0;
}

.quote-area span {
  font-size: 42px;
  position: relative;
  display: block;
  padding-left: 100px;
}

.quote-area span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  background-color: #f8f8f8;
  width: 200px;
  height: 100px;
  z-index: -1;
}

.search-page-area .sidebar-widget {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.search-page-area .search-result {
  text-align: center;
}

.search-page-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.search-page-area ul li {
  margin-bottom: 35px;
}

.search-page-area ul li:last-child {
  margin-bottom: 0;
}

.search-page-area ul li a h3 {
  font-size: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.search-page-area ul li a p {
  color: var(--body-color);
}

.search-page-area ul li:hover a h3 {
  color: var(--main-color);
}

.search-page-area .pagination-area {
  margin-top: 40px;
}

/*====================================================
OTHERS STYLE AREA
=====================================================*/
/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  -webkit-animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
          animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
}

.preloader .pl-flip-1 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin: 0 auto 18px auto;
  position: relative;
  width: 50px;
  height: 50px;
}

.preloader .pl-flip-1:before, .preloader .pl-flip-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  background: var(--white-color);
  display: block;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.preloader .pl-flip-1.pl-flip-2 {
  -webkit-animation-name: flipA;
          animation-name: flipA;
  -webkit-animation-timing-function: steps(1);
          animation-timing-function: steps(1);
}

.preloader .pl-flip-1.pl-flip-2:before {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: flipB;
          animation-name: flipB;
}

.preloader .pl-flip-1.pl-flip-2:after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: flipC;
          animation-name: flipC;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

@-webkit-keyframes flipA {
  from, 75%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25%, 50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@keyframes flipA {
  from, 75%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25%, 50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@-webkit-keyframes flipB {
  from {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(-50%) rotateX(270deg);
            transform: translateY(-50%) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(-50%) rotateX(450deg);
            transform: translateY(-50%) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(-50%) rotateX(630deg);
            transform: translateY(-50%) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
}

@keyframes flipB {
  from {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(-50%) rotateX(270deg);
            transform: translateY(-50%) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(-50%) rotateX(450deg);
            transform: translateY(-50%) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(-50%) rotateX(630deg);
            transform: translateY(-50%) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
}

@-webkit-keyframes flipC {
  from {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
}

@keyframes flipC {
  from {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  right: 3%;
  top: 87%;
  background-color: var(--main-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  -webkit-transform: scale(0);
          transform: scale(0);
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--white-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: var(--white-color);
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 84%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 0;
  color: var(--main-color);
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(255, 84, 0, 0.5);
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.video-btn i {
  font-size: 100px;
  color: var(--white-color);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  background-color: rgba(255, 84, 0, 0.5);
}

.video-btn:hover {
  background-color: rgba(27, 27, 27, 0.5);
}

.video-btn:hover::before, .video-btn:hover::after {
  background-color: rgba(27, 27, 27, 0.5);
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*
Page-navigation Area Style*/
.pagination-area {
  text-align: center;
  margin-top: 10px;
}

.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--heading-color);
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  background-color: #f9fbfe;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 1px solid #ebebeb;
}

.pagination-area .page-numbers:hover {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.pagination-area .page-numbers i {
  font-size: 20px;
}

.pagination-area .page-numbers.next, .pagination-area .page-numbers.prev {
  top: 3px;
}

.pagination-area .page-numbers.current {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.product-range { background-color: var(--grey-color);}
/*# sourceMappingURL=style.css.map */


.bg-sticky {
  position: fixed;
  left: 32%;
  top: 40%;
  opacity: 0.1;
  z-index: -1;
}

.banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
  /* display: flex; */
  /* justify-content: center; */
  text-align: center;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
  background: #080d25;
}
.banner h1{
  color: #fff;
  text-transform: uppercase;
  font-size: 50px;
  padding: 200px 60px 0 0;
}
.banner a {
  margin-right: 10px; color: #fff;
}
.banner a:hover {
  text-decoration: underline;
  color: var(--main-color);
}

.bread-crumb{
  text-align: center; 
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  padding-right: 20px;
}
/* .tp-service-widget {
  position: sticky;
  top: 100px;
} */
.sub-menu li img {
  padding: 0 10px 0 0;
}

#grid {
  transition: 500ms;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  /* background: crimson; */
  /* border: 3px solid crimson; */
}

:where(.left, .center, .right) {
  background: none;
  transition: 300ms;
}

:where(.left, .center, .right):hover {
}

#grid:has(.left:hover) {
  grid-template-columns: 0.75fr 0.5fr 0.5fr;
}

#grid:has(.center:hover) {
  grid-template-columns: 0.5fr 0.75fr 0.5fr;
}
#grid:has(.right:hover) {
  grid-template-columns: 0.5fr 0.5fr 0.75fr;
}
.left img {
  background-size: cover;
  background-repeat: no-repeat;
  border: 3px solid #000;
}
.right img {
  background-size: cover;
  background-repeat: no-repeat;
  border: 3px solid #000;
}
.center img {
  background-size: cover;
  background-repeat: no-repeat;
  border: 3px solid #000;
}
#application .center img{
    border: 3px solid #8c3a3c;
}
.text-area {
  margin: 40px 0;
}
.top-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #e01c23;
  padding-left: 70px;
  margin-bottom: 15px;
  display: inline-block;
}
.top-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #e01c23;
}
.text-area h3 {
  text-transform: uppercase;
  font-size: 25px;
  text-align: justify;
}
.text-area h2 {
  text-transform: capitalize;
  font-size: 25px;
  line-height: 35px;
}
.table-content {
  /* background: #00000078; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  /* padding: 50px; */
  position: relative;
  overflow: hidden;
}
.circle-wraps {
  position: absolute;
  clip-path: circle(50% at 50% 50%);
  background: #111f63;
  width: 600px;
  top: -19%;
  height: 600px;
  right: -18%;
  overflow: hidden;
  opacity: 0.7;
}
.circle {
  position: absolute;
  clip-path: circle(50% at 50% 50%);
  background: #c43032;
  width: 500px;
  top: -10%;
  height: 500px;
  right: 3%;
  overflow: hidden;
  opacity: 0.7;
}
ul.table-style2 li {
  list-style: none;
  padding: 5px 0;
}
ul.table-style2 li a {
  font-size: 18px;
  color: #000;
}
ul.table-style2 li img {
  padding: 0 10px 0 0px;
}
ul.table-style2 {
  padding: 0;
}
section.common-margin {
  margin: 30px 0;
}

.bolt-nut {
  position: fixed;
  animation: 3s infinite;
  background: url(../images/fastners-nut.png);
  height: 400px;
  width: 100%;
  top: 40%;
  left: -4%;
  z-index: -1;
  opacity: 0.1;
  background-repeat: no-repeat;
}
.threaded-rod {
  position: fixed;
  animation: 3s infinite;
  background: url(../images/threaded-rod.png);
  height: 400px;
  width: 400px;
  top: 53%;
  right: 0%;
  z-index: -1;
  opacity: 0.1;
  background-repeat: no-repeat;
}

.pro-box {
  position: relative;
 /* width: 250px;*/
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  z-index: 1;
 }
 
/* .pro-box::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 60px;
  width: 50%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
 }*/
 
 /*.pro-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 60;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
 }*/
 
 .pro-box:hover:before,
 .pro-box:hover:after {
  transform: skewX(0deg) scaleX(1.3);
 }
 
 .pro-box:before,
 .pro-box:after {
  /* background: linear-gradient(315deg, #c73033, #111f63) */
  background: #9ad8f0bd;
 }
 
 .pro-box span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
 }
 
 .pro-box span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.1s;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

 }
 
 .pro-box span::before {
  top: -40px;
  left: 80px;
  width: 50px;
  height: 50px;
  opacity: 1;
  background: rgb(199 48 51 / 63%);
 }
 
 .pro-box span::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.5s;
  pro-box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  animation-delay: -1s;
  background: rgb(199 48 51 / 63%);
 }
 
 .pro-box span:after {
  bottom: -23px;
    right: 40px;
    width: 40px;
    height: 40px;
    opacity: 1;
 }
 
 .content {
  position: relative;
  /*width: 230px;
    height: 230px;*/
    padding: 5px 5px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  pro-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
  transform: 0.5s;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0e0e0e;
 }
 
 .pro-box .content h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
 }

 .product-area {
  margin: 10px 0 10px 0;
}
.table-styling table {
  border-spacing: 3px;
  border-collapse: separate;
}
.product-area{
  padding: 10px;
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  text-transform: initial;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.table-styling table tr td {
  border: 1px solid #666;
  border-collapse: separate;
  padding: 8px 10px;
  margin: 5px;
}
.table-styling table th {
  border: 1px solid #666;
  border-collapse: separate;
  padding: 8px 10px;
  margin: 5px;
  color: #fff;
  background: #8c3a3c;
}

.table-marging {
  margin: 50px 0;
}

.other-sec {
  display: flex;
  background: #cccc;
  padding: 25px
}
.other-sec ul {
  width: 50%;
  background: url(../images/testimonial/testimonial-shape.png);
  background-repeat: no-repeat;
  background-position: left; 
}
.other-sec ul {
  padding: 0;
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
}
.other-sec ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 60px;
}
.other-sec ul li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 35px;
  width: 12px;
  height: 2px;
  background-color: var(--main-color);
}

.title-box {
  margin: 45px 0;
}
.sidebar__widget.contact-side-card {
  margin: 50px 0 30px 0;
}
.sidebar__single.sidebar__category {
  padding: 30px 0 0 0px;
  border-left: 2px solid #8c3a3c;
  border-top: 2px solid #8c3a3c;
  /* margin: 80px 0 0; */
}
.sidebar__widget.contact-side-card.mb-30 {
  background: rgb(65 76 130);
  color: #fff;
  text-align: center;
  padding: 25px;
      border: 2px solid #000;
}
h3.sidebar__widget-title {
  color: #fff;
  padding: 0 0 25px 0;
}
.tagcloud a {
  color: #fff;
  background: #8c3a3c;
  padding: 10px 30px;
}
.title-box p a {
  padding: 10px;
  height: 40px;
  border: 2px solid #0B2447;
  font-size: 16px;
  background: transparent;
  outline: none;
  box-shadow: 7px 7px 0px 0px #0B2447;
  transition: all 0.5s;
  width: 400px;
}
.title-box p a:hover {
  box-shadow: none;
  transition: 0.5s;
}
.sub-menu li{
  padding: 7px;
  /* height: 40px; */
  border: 2px solid rgb(32 45 109);
  font-size: 15px;
  background: transparent;
  outline: none;
  transition: all 0.5s ease 0s;
  margin: 20px 0px;
  width: 300px;
  list-style: none;
  align-items: center;
  display: flex;
  text-transform: capitalize;
}
.sub-menu li a.active {
  color: #8c3a3c;
}

.sub-menu li:hover{
box-shadow: rgb(33 46 110) 7px 7px 0px 0px;
  transition: 0.5s;
}
h3.sidebar__title {
  text-transform: uppercase;
  padding: 0 0 0 30px;
  font-size: 40px;
}

.tech-data {
  --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
  --border-width: .125em;
  --curve-size: .5em;
  --blur: 30px;
  --bg: #8c3a3c;
  --color: #fff;
  color: var(--color);
    /* use position: relative; so that BG is only for .tech-data */
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: .5em 1.5em;
  font-size: 17px;
  border: 0;
  text-transform: uppercase;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .6);
  clip-path: polygon(
            /* Top-left */
            0% var(--curve-size),

            var(--curve-size) 0,
            /* top-right */
            100% 0,
            100% calc(100% - var(--curve-size)),

            /* bottom-right 1 */
            calc(100% - var(--curve-size)) 100%,
            /* bottom-right 2 */
            0 100%);
  transition: color 250ms;
  margin: 25px 0;
  width: 100%;
}
.tech-data p a {
  color: #fff;
  font-size: 500;
}

.tech-data::after,
.tech-data::before {
  content: '';
  position: absolute;
  inset: 0;
}

.tech-data::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%
  }

  50% {
    background-position: 70% 100%
  }

  100% {
    background-position: 31% 0%
  }
}

.tech-data::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
            /* Top-left */
            var(--border-width) 
            calc(var(--curve-size) + var(--border-width) * .5),

            calc(var(--curve-size) + var(--border-width) * .5) var(--border-width),

            /* top-right */
            calc(100% - var(--border-width)) 
            var(--border-width),

            calc(100% - var(--border-width)) 
            calc(100% - calc(var(--curve-size) + var(--border-width) * .5)),

            /* bottom-right 1 */
            calc(100% - calc(var(--curve-size) + var(--border-width) * .5)) calc(100% - var(--border-width)),
            /* bottom-right 2 */
            var(--border-width) calc(100% - var(--border-width)));
  transition: clip-path 500ms;
}

.tech-data:where(:hover, :focus)::after {
  clip-path: polygon(
                /* Top-left */
                calc(100% - var(--border-width)) 

                calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    
                calc(100% - var(--border-width))

                var(--border-width),
    
                /* top-right */
                calc(100% - var(--border-width))

                 var(--border-width),
    
                calc(100% - var(--border-width)) 

                calc(100% - calc(var(--curve-size) + var(--border-width) * .5)),
    
                /* bottom-right 1 */
                calc(100% - calc(var(--curve-size) + var(--border-width) * .5)) 
                calc(100% - var(--border-width)),

                /* bottom-right 2 */
                calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
                calc(100% - var(--border-width)));
  transition: 200ms;
}

.tech-data:where(:hover, :focus) {
  color: #fff;
}
.menu-gap {
  padding: 30px;
}

li.head-sidebar {
  background: #8c3a3c;
    /*box-shadow: 0px 2px 18px 0px rgba(15,48,101,0.11);*/
    border: 2px solid rgb(32 45 109);
   /* box-shadow: rgb(33 46 110) 7px 7px 0px 0px;*/
}

li.head-sidebar a {
  color: #fff;
}
.manufacturing {
  border: 1px solid #ccc;
}


/* <---About-us-area---> */
.page-title-content{
  text-align: center;
}

.page-title-content h2{
  margin-bottom: 15px;
  font-size: 50px;
  color: var(--white-color);
}

.page-title-content ul{
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: -5px;
}

.page-title-content ul li{
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding-right: 11px;
  margin-left: 3px;
  color: #8c3a3c;
  font-weight: 400;
  text-transform: capitalize;
}

.page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -4px;
  background-color: var(--white-color);
  width: 3px;
  height: 10px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.page-title-content ul li:last-child::before {
  display: none;
}

.page-title-content ul li a{
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
}

.page-title-content ul li a:hover{
  color: #c83033;
}

/* .manufacturing {
  background: #8c3a3c;
  padding: 40px 0 0;
  text-align: center;
  border-radius: 120px 120px 0 0;
} */

.manufacturing1 {
  background: #8c3a3c;
  padding: 40px 0 0;
  text-align: center;
  border-radius: 120px 120px 0 0;
}

.manufacturing-1-content p {
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.manufacturing-1-content span {
  color: #fff;
  opacity: .9;
  font-size: 15px;
}

.manufacturing .manufacturing-1 .img-border {
  text-align: center;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 5px solid #fff;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 0 5px #fff;
}

.about-pra-text{
  margin-bottom: 50px;
}

.btn-default {
  border: 1px solid #fff;
  background: 0 0;
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 0;
}

.values{
  margin-bottom: 50px;
}

.our{
  text-align: center;
  box-shadow: 5px 5px 5px;
  padding: 20px 20px;
  border-radius: 0 50px 50px 50px;
  border-left: 5px solid #c83033;
  border-top: 5px solid #c83033;
  background-color: #fff;
  min-height: 480px;
}

.our img{
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.our p{
  text-align: center !important;
}

.our ul li{
  padding-top: 10px;
}

/*<-- Quality Policy are--> */
.quality-policy{
  margin: 70px 0;
}

.quality-contol {
  padding: 20px 20px;
  margin: 30px 0 50px 0;
  box-shadow: 0px -1px 5px 4px #ccc;
  border-radius: 0 100px 100px 0;
  border-left: 2px solid #c83033;
}

.quality-contol h4{
  text-align: center;
}
/* product start */

.product-img-1 img {
  border-radius: 50%;
  padding: 25px;
}
.product h5 a{
  color: #fff;
  text-align: left;
  text-decoration: underline;
}
.material-head {
  font-size: 60px;
  color: #111f63;
  text-shadow: 2px 4px #838383;
  padding: 25px 0 0 0;
}

.product-img-1 {
  position: relative;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
-webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
      background-color: #0B2447;
      padding: 40px 20px ;
  text-align: center;
  border-radius: 200px 200px 0 0;
  /* border-bottom: 5px solid #1982ca; */
}

.product-img-1 .year-shape-1 {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: rotation 50s infinite linear;
  animation: rotation 50s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}


.product{
  background-color: #0B2447;
  text-align: center;
}

.product h2{
  color: #fff;
  padding: 20px 0 25px 0;
}
.product h2 a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  padding: 20px 0 25px 0;
}

.product ul {
  list-style: none;
  padding: 20px 20px 40px 20px !important;
  text-align: left;
}

.product ul li{
  border-bottom: 1px dotted #a19494;
}

.product ul li a{
  color: #fff;
  line-height: 1.9;
}

.product ul li a:hover{
  color: #8c3a3c;
}

.masonry-box {
  width: 1400px;
  margin: 20px auto;
  columns: 4;
  column-gap: 20px;
}

.masonry-box .box {
  width: 100%;
  margin-bottom: 10px;
  break-inside: avoid;
}

.masonry-box .box {
  max-width: 100%;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .masonry-box {
    width: calc(100% - 40px);
    columns: 3;
  }
}

@media (max-width: 768px) {
  .masonry-box {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .masonry-box {
    columns: 1;
  }
}
.clearfix::after, .filter-wrap::after, .filter-wrap::after, .wt-icon-box-wraper::after, ol.commentlist li::after {
  content: "";
  display: table;
  clear: both;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
p.certificate-but {
  text-align: center;
  background: #8c3a3c;
  border-radius: 10px;
  padding: 5px 0;
  color: #fff;
}
.price-table {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 15px;
  margin: 0 0 25px 0;
}
.form-group input {
  margin: 20px 0;
}
textarea{
  margin: 20px 0;
  width: 100%;
}
.contact-from {
  padding: 25px;
  border-radius: 13px;
  background: #ebebeb;
  box-shadow: 18px 18px 32px #848484, -18px -18px 32px #ffffff;
  border: 1px solid #ccc;
}
.g-recaptcha{
  width: 100%;
}

.but-form {
  background: #8c3a3c;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}
legend {
  color: #8c3a3c;
  font-size: 30px;
  font-weight: 600;
}

/* prashant */
label {
  display: inline-block;
  max-width: 100%;
}
label {
  color: #323232;
  font-size: 13px;
  margin-bottom: 10px;
  padding-right: 3px;
  margin-top: 6px;
  font-weight: 600;
  font-family: 'Roboto',sans-serif;
}
.content_left {
  text-align: center;
}
.calculater-img{
  width: 100%;
  background-size: cover;
  text-align: center;
  
}
/* --------dimensions-pdf-pg-css----- */
.pdf-cover {
  text-align: center;
}
.pdf-cover img{
  width: 100%;
  text-align: center;
}
.pdf-btn{
  text-align: center;
}
.pdf-sec{
  margin: 35px 0px;
}
.new-tag{
font-family: "Oswald", sans-serif;
font-size: 22px;
font-weight: 900;
color: #8c3a3c;
text-transform: uppercase;
}
.accordion-button {
  width: 100%;
  padding: 10px 20px;
  font-size: 1rem;
  color: #212529;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.accordion-button:not(.collapsed) {
  color: #8c3a3c;
}
/* Specification Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.spec-table th,
.spec-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

/* Left Column (Labels) */
.spec-table th {
  width: 30%;
  background-color: #f7f7f7;
  font-weight: bold;
  color: #333;
}

/* Right Column (Values) */
.spec-table td {
  background-color: #fff;
  color: #222;
}

/* Hover effect */
.spec-table tr:hover td {
  background-color: #f9f9f9;
}
 details {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
  }

  details:hover {
    border-color: #0d47a1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #0d47a1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  details[open] summary {
    color: #1565c0;
  }

  details div {
    margin-top: 10px;
    padding-left: 5px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
  }
details {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #f9fcff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

details[open] {
  background: #ffffff;
  border-color: #00aaff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

summary {
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 600;
  color: #123049;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "➤";
  color: #00aaff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(90deg);
}

summary h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #123049;
}

details div {
  padding: 0 18px 15px 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}