:root {
  --main-color: #C50014;
  --orange-color: #FFC107;
  --heading-color: #1E1E1E;
  --text-color: #1E1E1E;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Mulish", sans-serif;
  --heading-font: "Orbitron", sans-serif;
  --heading-font-2: "Monoton", sans-serif;
  --button-font: "Inter", sans-serif;
}
@font-face{
  font-family: "Museo100-Regular";
  src: url(../font/Museo100-Regular.otf);
}
@font-face{
  font-family: "Museo300-Regular";
  src: url(../font/Museo300-Regular.otf);
}
@font-face{
  font-family: "Museo500-Regular";
  src: url(../font/Museo500-Regular.otf);
}
@font-face{
  font-family: "Museo700-Regular";
  src: url(../font/Museo700-Regular.otf);
}
@font-face{
  font-family: "Museo900-Regular";
  src: url(../font/Museo900-Regular.otf);
}
html,
body {
  font-family: var(--main-font);
}

a {
  text-decoration: none;
}

.container-fluid {
  padding: 0% 5%;
}

@media (min-width:1450px) {
  .container {
    max-width: 1500px;
  }
}

h1,
h2,
h3,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--main-font);
}

.main_menu_hdr {
  background: var(--white-color);
  z-index: 99;
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0px 0px 10px 10px rgb(0 0 0 / 15%);
	transition:all ease-in 0.3s;
}
.main_menu_hdr.fixed {
  position: fixed;
  transition:all ease-in 0.3s;
}



.main_menu_hdr .hdr-btm .logo, .main_menu_hdr .hdr-btm .user-icon-main{
	display:none;
}


.main_menu_hdr.fixed .main_menu .navigation.navbar{
	justify-content:space-between;
}

.main_menu_hdr.fixed .hdr-top{
	display:none;
}

.main_menu_hdr.fixed .hdr-btm .logo, .main_menu_hdr.fixed .hdr-btm .user-icon-main{
	display:block;
}

.main_menu_hdr.fixed .hdr-btm .logo {
		margin-right: auto;
	}

.main_menu_hdr.fixed .hdr-btm .user-icon-main {
    margin-left: 50px;
}

.main_menu_hdr::before {}

.main_menu {
  display: block;
  position: relative;
  background: transparent;
  padding: 0px;
  border-radius: 15px;
}

.main_menu .navigation.navbar {
  padding: 0;
  justify-content: end;
}

.container-menu {
  width: 80%;
  margin: 0 auto;
}

.logo {
  display: block;
  margin-right: 25px;
}

.logo a {
  position: relative;
  z-index: 1;
  width: 230px;
  display: block;
}

.logo a img {
  width: 100%;
}

.loc-icon {
  background: var(--orange-color);
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 5px;
}

.loc-icon span {
  color: var(--white-color);
  font-size: 20px;
}

.loc-text h5 {
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
  color: #475056;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.loc-text a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.banner_form {
  position: absolute;
  width: 500px;
  display: block;
  z-index: 1;
  right: 15%;
  top: 0;
}

.banner_form:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 54%);
  --webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
}

.form_bg {
  position: relative;
  padding: 30px;
  padding-bottom: 100px;
}

.form_bg h4 {
  text-align: center;
  font-weight: 600;
}

.form_bg .form-control {
  padding: 12px 15px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
}

.image-input {
  text-align: center;
}

.image-input input {
  display: none;
}

.image-input label {
  display: inline-block;
  color: #1e1e1e;
  background: #fff;
  padding: 10px 40px;
  font-size: 100%;
  cursor: pointer;
  border-radius: 30px;
}

.image-input label i {
  font-size: 100%;
  margin-right: 0.3rem;
  color: var(--orange-color);
}

.image-input label:hover i {
  animation: shake 0.35s;
}

.image-input img {
  max-width: 175px;
  display: none;
}

.image-input span {
  display: none;
  text-align: center;
  cursor: pointer;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}





.banner_sec {
  width: 100%;
  position: relative;
  z-index: 1;
}

.slide .slide__img:before {
  content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(87deg, rgb(0 0 0 / 53%), transparent);
}

@media (min-width: 992px) {

  .slider,
  .slide {
    height: 90vh;
  }
}

.slide {
  position: relative;
  transition: 1s;
}

.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;

}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36%;
}

.bg_slid {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

/* .bg_slid:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(66 130 108 / 36%);
  border-radius: 10px;
  --webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
} */

.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
  position: relative;
}
.slide .slide__content--headings ul{
	list-style:none;
	padding-left:0;
}
.slide .slide__content--headings ul li{
	font-family: var(--heading-font);
    font-size: 55px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white-color);
	
}
.slide .slide__content--headings ul li span{
	color:#19ff00;
}
.slide .slide__content--headings h2 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 4px;
  color: var(--white-color);
  margin: 10px 0;
  animation: fadeInLeft 0.5s both 1.5s;
  letter-spacing: 0px;
  font-family: var(--main-font);
}

.slide .slide__content--headings h5 {
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings p {
  font-family: "Museo700-Regular";
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
}

.slide .slide__content--headings p b {
  font-weight: 700;
}

.slide .slide__content--headings .title {
  font-size: 90px;
  line-height: 94px;
  font-weight: 900;
  color: var(--white-color);
  font-family: var(--heading-font);
}

.slide .slide__content--headings .title span {
  color: var(--white-color);
  font-weight: 200;
  font-family: var(--heading-font-2);
  display: block;
}

.slidebottomleft {
  animation: fadeInUp 1.5s both 1.5s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  top: 50%;
  right: 34px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 50px;
  transform: translate(0px, -50%);
}

.slick-dots li {
  position: relative;
  display: flex;
  margin: 0px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 50px;
  width: 50px;
}

.stick-dots .slick-dots li button {
  position: relative;
  background: var(--white-color);
  opacity: 1;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  color: var(--white-color);
  opacity: 1;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  font-size: 20px;
  border-radius: 0;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}


.slider .slide.slick-active {
  animation: Slick-FastSwipeIn 1s both;
}

/* ==== Slider Image Transition === */
@keyframes Slick-FastSwipeIn {
  0% {
    transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
  }
}

@-webkit-keyframes ProgressDots {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

@keyframes ProgressDots {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }

  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }

  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
  left: auto;
  transform: scaleX(-1);
  z-index: 1;
  right: 3%;
  top: calc(60% - 44px);
}

.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slick-nav i:before {
  transform: rotate(-40deg);
}

.slick-nav i:after {
  transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.banner_social {
  position: absolute;
  left: 0%;
  bottom: 25%;
  transform: translate(10%, -25%);
  z-index: 1;
}

.banner_social ul {
  list-style: none;
  padding-left: 0;
}

.banner_social ul li a {
  background: rgb(255 255 255 / 25%);
  padding: 5px;
  width: 35px;
  height: 35px;
  display: block;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
}

.banner_social a h5 {
  color: #fff;
  transform: rotate(270deg);
  display: block;
  letter-spacing: 5px;
  font-size: 12px;
  font-family: var(--main-font);
}

.banner_social a h5 {
  position: relative;
}

.banner_social a h5::before {
  position: absolute;
  content: "";
  height: 200px;
  width: 2px;
  background: #fff;
  left: 95px;
  top: -75px;
  transform: rotate(270deg);
}

.banner_social a h5::after {
  content: "";
  position: absolute;
  left: -70px;
  top: -19px;
  width: 18px;
  height: 18px;
  display: block;
  transform: rotate(90deg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.banner_social ul li {
  margin-bottom: 10px;
}

.banner_social {
  position: absolute;
  left: 85px;
  bottom: 10%;
  transform: translate(0%, 10%);
  z-index: 1;
	display:none;
}

.banner_social ul {
  list-style: none;
  padding-left: 0;
}

.banner_social ul li a {
  background: rgb(255 255 255 / 25%);
  padding: 5px;
  width: 35px;
  height: 35px;
  display: block;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
}

.banner_social ul li span {
  color: #fff;
  transform: rotate(270deg);
  display: block;
  padding-bottom: 69px;
  padding-left: 20px;
  line-height: 0;
}

.banner_social ul li {
  margin-bottom: 10px;
}

@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

@-moz-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

.scroll-btn {
  display: block;
  position: absolute;
  right: 3%;
  bottom: 8%;
  text-align: center;
  z-index: 1;
}

.scroll-btn>* {
  line-height: 0px;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*.active {
  color: #ffffff;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*:active,
.scroll-btn>*.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid var(--white-color);
  ;
  border-radius: 23px;
}

.scroll-btn .mouse>* {
  position: absolute;
  display: block;
  top: 22%;
  left: 57%;
  width: 3px;
  height: 18px;
  margin: -4px 0 0 -4px;
  background: var(--white-color);
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 2.5s linear infinite;
}

/*-------- button Effect-------*/
.red_btn {
  font-family: "Museo500-Regular";
  display: inline-block;
  box-sizing: border-box;
  padding: 13px 35px;
  border-radius: 30px;
  position: relative;
  color: var(--white-color);
  background: var(--main-color);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  border: none;
  font-size: 16px;
}

.red_btn span {
  font-family: "Museo500-Regular" !important;
  position: relative;
  font-family: var(--button-font);
  letter-spacing: 2px;
  color: var(--white-color);
}

.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--orange-color);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}

.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  background: var(--white-color);
}

.red_btn.white_bg:before {
  background: rgb(242 187 17);
}

.red_btn.white_bg span {
  color: var(--black-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}

.red_btn.red_btn_border {
  color: var(--white-color);
  background: var(--orange-color);
}

.red_btn.red_btn_border span {
  color: var(--white-color);
  transition: all ease-in 0.3s;
}

.red_btn.red_btn_border:hover span {
  color: var(--white-color);
  transition: all ease-in 0.3s;
}

.red_btn.red_btn_border.color_white span {
  color: var(--white-color);
}

.get_in_btn {
  display: flex;
  align-items: center;
  color: var(--white-color);
  transition: all ease-in 0.3s;
  text-transform: uppercase;
}

.get_in_btn span i {
  border: 2px solid var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  margin-left: 10px;
  transition: all ease-in 0.3s;
}

.get_in_btn:hover {
  color: var(--white-color);
  transition: all ease-in 0.3s;
}

.get_in_btn:hover span i:before {
  color: var(--white-color);
  animation: animate 2s infinite;
  transition: all ease-in 0.3s;
}

.btn-trans {
  background: transparent !important;
  border: 1px solid #fff;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: translate(-15px, 0px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(15px, 0px);
  }
}

.get_in_btn.black_orange {
  color: var(--heading-color);
}

.get_in_btn.black_orange span i {
  border: 2px solid var(--orange-color);
  color: var(--heading-color);
}

.get_in_btn.black_orange:hover {
  color: var(--heading-color);
}

.get_in_btn.black_orange:hover span i:before {
  color: var(--heading-color);
}



/*-------- button Effect-------*/
.heading_hp h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--heading-color);
  position: relative;
  letter-spacing: 0px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.heading_hp h2 span {
  color: var(--main-color);
}

.heading_hp h6 {
  font-weight: 200;
  color: var(--heading-color);
  margin-bottom: 5px;
  font-size: 48px;
  line-height: 35px;
}
.heading_hp h2 sup{
	    font-size: 15px;
    top: -19px;
    margin-left: -4px;
}
.heading_hp p {
  font-family: "Museo300-Regular";
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 25px;
}

.heading_hp.text_white h2,
.heading_hp.text_white p {
  color: var(--white-color);
}

.heading_border {
  position: relative;
}

.heading_border:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
}

.left_border.heading_border:before {
  left: 0;
}

.right_border.heading_border:before {
  right: 0;
}

.color_border.heading_border:before {
  background: var(--main-color);
}

.white_color.heading_border:before {
  background: var(--white-color);
}

.left_border.heading_border {
  padding-left: 20px;
}

.right_border.heading_border {
  padding-right: 20px;
}

.white_color.heading_border h6 {
  color: var(--white-color);
}

.slid_box{
	width:100%;
	height:120px;
	text-align:center;
}
.slid_box img{
	width:100%;
	height:100%;
	object-fit:contain;
}




.about_sec {
  padding: 0px;
  background: var(--white-color);
  position: relative;
}

.abt_bg_b {
  background: var(--white-color);
  padding: 0 0 50px 0;
}

.abt_big_img img {
  width: 100%;
}

.backge_abt {
  width: 50%;
  margin: 0 auto;
  padding: 0px;
  position: relative;
}

.backge_abt:before {
  content: '';
  position: absolute;
  top: -10%;
  left: 0%;
  height: 134%;
  width: 1px;
  background: var(--semi-black);
}

.befo_text {
  padding: 0 15px;
  position: relative;
  margin-bottom: 10px;
}

.befo_text h4 {
  color: var(--white-color);
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in 0.3s;
  font-size: 30px;
}

.befo_text p {
  margin-bottom: 0;
  color: var(--white-color);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 18px;
}

.befo_text:before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: -4px;
  height: 10px;
  width: 10px;
  background: var(--semi-black);
  border-radius: 50%;
}

.befo_text:hover h4 {
  opacity: 1;
  visibility: visible;
  transition: all ease-in 0.3s;
}

.befo_text:hover:before {
  background: var(--white-color);
}

.round_icon{
	padding-top:50px;
}




.abt_big_img {
  z-index: 1;
  position: absolute;
  top: 285px;
  left: 0;
  width: 900px;
  height: 575px;

}

.about_right_image {
  position: relative;
}

.about_right_image:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -45%;
  width: 62%;
  height: 800px;
  background: var(--main-color);
  transform: translate(-50%, 0%);
  z-index: 0;
}

/* offer-sec */
.offer-sec {
  padding: 150px 0px;
}

.offer-slider {
  margin-top: 50px;
}

.offer-slider-img-wrap {
  position: relative;
}

.offer-slider-img-wrap::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  border: 1px solid #0043CA;
  width: 112%;
  height: 40%;
}

.offer-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0px 10px 10px;
}

.ofr-btn {
  transform: rotate(270deg);
  position: absolute;
  top: 65px;
  right: -122px;
}

.ofr-btn .red_btn {
  border-radius: 30px 0px 0px 30px !important;
}

.offer-slider-img {
  position: relative;
}

.offer-text-icon {
  background: var(--semi-black);
  width: 75px;
  height: 75px;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
}

.offer-text-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-text h4 {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  margin-bottom: 0;
  font-weight: 600;
}

.offer-text-div {
  display: flex;
  align-items: center;
  padding: 10px;
}

.offer-slider-box {
  padding: 0px 50px;
}

.offer-slider .slick-nav.prev-arrow {}

.offer-slider .slick-nav i:before,
.offer-slider .slick-nav i:after {
  background: #1E1E1E;
}

.offer-slider .slick-nav:before,
.offer-slider .slick-nav:after {
  border: none;
}

.offer-slider .slick-nav {
  top: calc(120% - 44px);
}

.offer-slider .slick-nav.prev-arrow {
  left: 47%;
}

.offer-slider .slick-nav.next-arrow {
  left: auto;
  right: 47%;
}

.offer-slider .slick-nav:hover:before {
  background: #D9D9D9;
  transition: ease-in all 0.3s;
}

.expert_service {
  padding: 50px 0;
  position: relative;
}

.expert_service:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black-color);
  width: 100%;
  height: 50%;
}

.two_side_pol {
  position: relative;
  z-index: 1;
}

.two_side_pol .border_bg_ser {
  background: var(--white-color);
  border: 1px solid var(--main-color);
  padding: 20px;
}

.two_side_pol .border_bg_ser span {
  width: 60px;
  height: 60px;
  display: block;
  margin-bottom: 20px;
}

.two_side_pol .border_bg_ser span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.two_side_pol .border_bg_ser h5 {
  min-height: 50px;
  font-size: 16px;
}

.two_side_pol .row .col:first-child .border_bg_ser {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
}

.two_side_pol .row .col:last-child .border_bg_ser {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.transport_services {
  width: 100%;
  position: relative;
  padding-bottom: 150px;
  z-index: 2;
}

.transport_services:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.background_services {
  position: relative;
}

.sec_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sec_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_bg:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, black, transparent);
}

.services_box {
  position: relative;
  padding: 25px;
  border-right: 2px solid #fff;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.services_box h4 a {
  color: #fff;
  font-size: 18px;
}

.services_box p {
  color: #fff;
  font-size: 13px;
  display: none;
  font-weight: 300;
  letter-spacing: 1px;
}

.services_box a {
  color: #fff;
}

.services_box span {
  position: relative;
  color: var(--orange-color);
  padding-left: 15px;
}

.services_box span:before {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 1px;
  height: 100px;
  background: #fff;
}

.services_box span:after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.right_angle {
  width: 30px;
  height: 30px;
  display: flex;
  background: rgb(255 255 255 / 45%);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.services_box:hover p {
  display: block;
}

.services_box:hover .right_angle {
  background: var(--orange-color);
}

.services_box:hover {
  background: rgb(155 155 155 / 56%);
  backdrop-filter: blur(10px);
}

.background_services .row .col:last-child .services_box {
  border-right: 0;
}

.gallery_sec {
  position: relative;
  padding: 100px 0px;
}

.gallery_sec:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 19%;
  height: 100%;
  /* background: linear-gradient(90deg, var(--orange-color) 65%, transparent 193%); */
  background: var(--main-color);
  z-index: 0;
}

.gallery_slider .slick-nav:before,
.gallery_slider .slick-nav:after {
  border: none;
}

.gallery_slider .slick-nav.prev-arrow {
  left: -8%;
}

.gallery_slider .slick-nav.next-arrow {
  left: auto;
  right: -8%;
}

.gallery_slider .slick-nav:hover:before {
  background: #D9D9D9;
  transition: ease-in all 0.3s;
}

.gallery_slider .slick-nav i:before,
.gallery_slider .slick-nav i:after {
  background: #1E1E1E;
}

.gallery_image {
  width: 100%;
  height: 500px;
  /* clip-path: polygon(0 1%, 100% 8%, 100% 91%, 0% 100%); */
}

.gallery_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gall_padding {
  padding: 0 5px;
}

.gall_padding .gallery_image img {
  border-radius: 10px;
}




.blog_sec {
  background: var(--main-color);
  position: relative;
  padding: 100px 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  z-index: 1;
}

.blog_padding {
  padding: 15px;
}

.blog_box {
  width: 100%;
  position: relative;
  padding: 15px 15px 20px 15px;
}

.blog_box:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.blog_box_re {
  position: relative;
}

.blog_img {
  width: 100%;
  height: 220px;
}

.blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_box_re h4 a {
  width: 100%;
  color: var(--black-color);
  font-size: 18px;
}

.blog_box_re h4 {
  line-height: 20px;
}

.blog_box_re span img {
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 50%;
}

.blog_box_re .right_angle {
  box-shadow: 0 0 10px rgb(0 0 0 / 36%);
  color: var(--text-color);
  background: var(--white-color);
  transition: all ease-in 0.3s;
}

.blog_box_re:hover .right_angle {
  background: var(--orange-color);
  color: var(--white-color);
  transition: all ease-in 0.3s;
}

.footer_sec {
  background: #040407;
  padding: 50px 0px 0px;
}

.read_more_ftr {
  color: var(--main-color);
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}

.ftr_logo_sec .ftr_logo {
  width: 195px;
  display: block;
  margin-bottom: 5px;
}
.ftr_logo_sec h5{
  font-family: "Museo100-Regular";
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  line-height: 18px;
}
.ftr_logo_sec a img {
  width: 100%;
}

.ftr_logo_sec p {
  color: var(--white-color);
  margin-bottom: 0;
}

.follow-div ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.follow-div ul li {
  padding-right: 15px;
}

.follow-div ul li a {
  background: rgb(255 255 255 / 15%);
  width: 35px;
  height: 35px;
  display: flex;
  color: var(--white-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all ease-in 0.3s;
}

.follow-div ul li a:hover {
  color: var(--orange-color);
  transition: all ease-in 0.3s;
  background: rgb(214 6 47 / 30%);
}
.follow-div{
  padding-top: 30px;
}
.find-us h4 {
  font-family: "Museo500-Regular";
  color: var(--white-color);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.add-icon span {
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1E1E1E;
}
.add-icon{
  margin-right: 15px;
}
.add-text h4 {
  font-family: "Museo100-Regular";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 18px;
  color: rgb(255 255 255 / 60%);
  margin-bottom: 5px;
}

.add-text p,
.add-text a {
  font-family: "Museo500-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  text-decoration: none;
  margin-bottom: 0;
}

.quick_links {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  margin-bottom: 15px;
  padding-bottom: 0;
}

.quick_links h5 {
  color: var(--white-color);
  margin-bottom: 0;
  padding-bottom: 15px;
}

.quick_links_ul ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
	text-align:center;
}

.quick_links_ul ul li {
  margin-bottom: 10px;
  display: inline-block;
  padding: 10px 15px;
}

.quick_links_ul ul li:first-child{
  padding-left: 0;
}
.quick_links_ul ul li a {
  font-family: "Museo500-Regular";
  color: var(--white-color);
  text-decoration: none;
}
.add{
  padding: 20px 0px;
}
.brd-1{
  border-left: 1px solid rgb(255 255 255 / 30%);
}
.brd-2{
  border-right: 1px solid rgb(255 255 255 / 30%);
}

.bdr-3{
  border-left: 1px solid rgb(255 255 255 / 30%);
  border-right: 1px solid rgb(255 255 255 / 30%);
}
.bdr-5{
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.email_ftr {
  font-size: 15px;
  position: relative;
	display: flex;
	align-items: center;
}

.email_ftr .form-control {
  background: rgb(255 255 255 / 20%);
  padding: 8px 15px;
  outline: none;
  border-radius: 30px;
  border: 1px solid #fff;
  width: 95%;
  color: var(--white-color);
  margin: 15px 0px;
}

.submit_ftr {
  border: none;
  background: var(--main-color);
  padding: 4px 30px;
  border-radius: 30px;
  height: 44px;
  color: var(--white-color);
  font-size: 14px;
  letter-spacing: 2px;
	margin-left: -30px
}


.find-us p {
  color: var(--white-color);
  font-size: 15px;
}

.copy_1 {
  width: 100%;
	display: block;
	padding: 0px 0 15px 0;
	margin-top: 10px;
}

.copy_1 p {
  color: rgb(255 255 255 / 50%);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.copy_1 p a {
  text-decoration: none;
  color: rgb(255 255 255 / 50%);
}

/*------------- Inner Page ----------------- */


.inner_banner_sec {
  padding: 150px 0;
  position: relative
}

.inner_banner_sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.inner_banner_ontent {
  position: relative;
  z-index: 9
}

.inner_banner_ontent h1 {
  font-size: 45px;
  font-family: var(--heading-font);
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}

.inner_banner_ontent h4 {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 300
}

.inner_banner_ontent p {
  color: var(--white-color);
}

.inr_latest:before {
  content: none;
}

.about_sec_inr {
  padding: 100px 0;
}

.img_part img {
  width: 100%;
}

.mission_vision {
  width: 100%;
  padding: 100px 0 0;
}

.misssion_left {
  padding: 35px;
  background: var(--main-color);
  border-radius: 0 30px 0 0;
}

.vision_right {
  padding: 35px;
  background: #F3F3F5;
  border-radius: 30px 0 0 0;
}

.misssion_left h4,
.misssion_left p {
  color: var(--white-color);
}

.misssion_left h4 {
  font-size: 35px;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.vision_right h4 {
  font-size: 35px;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.contact-us {
  position: relative;
}

.contact-wrap-main {
  margin: 50px 0px;
}

.contact-left h2 {
  font-size: 45px;
  font-weight: 600;
}

.contact-left p {
  font-size: 20px;
}

.contact-form {
  margin: 20px 0px;
  padding: 0px;
}

.contact-us .form-group-wrap {
  margin: 0px 0px;
}

.contact-us .contact-form .form-control {
  padding: 10px 10px;
	appearance: auto;
}

.contact-us .contact-form .send-msg .btn {
  background: var(--main-color);
  color: #fff;
  font-size: 16px;
  box-shadow: none;
  outline: none;
  padding: 10px 0px;
  width: 100%;
}

.contact-right {
  position: relative;
  padding: 27px 40px;
  box-shadow: 10px 25px 50px rgb(0 0 0 / 13%);
  border-radius: 10px;
  margin-top: 0px;
}

.contact-info {
  margin-bottom: 0px;
  padding: 30px 0px;
  border-bottom: 1px solid rgb(0 0 0 / 50%);
}

.contact-info:last-child {
  border: none;
  margin: 0px;
}

.contact-us .con-icon {
  width: 60px;
  height: 60px;
  background: var(--main-color);
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin-right: 20px;
}

.contact-us .con-text {
  margin-top: 10px;
}

.contact-us .con-text a {
  color: #161723;
  text-decoration: none;
  font-size: 17px;
}

.contact-us .con-text h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 5px;
}

.map-sec iframe {
  filter: grayscale(1);
}

.con-text p {
  margin-bottom: 0;
}



/************blog page***********/
.blo_section {
  padding: 100px 0 0;
}

.single_blog {
  border-bottom: 1px solid #000;
  margin: 0 30px 40px 30px;
  padding-bottom: 30px;
}

.single_blog h6 {
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0
}

.single_blog h6 span {
  color: #081809;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 2px solid #000;
  line-height: 12px
}

.single_blog h2 {
  font-size: 25px;
}

.blog_img_wrapper {
  height: 300px;
  margin-bottom: 20px
}

.blog_img_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.blog_desc p {
  font-size: 14px
}

.box_1 {
  background-color: rgb(228 110 0 / 50%);
  padding: 30px;
  margin-bottom: 30px
}

.box_1 h4 {
  font-size: 20px;
}

.box_1 ul li a {
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: ease-in all 0.3s
}

.box_1 ul li a:hover {
  padding-left: 15px;
  transition: ease-in all 0.3s
}

.portfolio_sec {
  width: 100%;
  padding: 100px 0;
}

.picture_wrapper {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.picture_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture_wrapper:hover img {
  transform: scale();
}

/*  */
.abt-inr {
  padding: 110px 0px 50px !important;
}

.abt-inr .abt_big_img {
  top: 384px;
}

/* swiper slider */
.swiper.gallery-slid {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.gallery-slid .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 500px;
}

.gallery-slid .swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.gallery-slid .swiper-pagination-bullets {
  display: none;
}

.swiper-3d {
  perspective: 700px !important;
}

/* feature-sec */
.feature-sec {
  padding: 50px 0px;
}
.popular-slide-div .slick-nav:before, .popular-slide-div .slick-nav:after{
         border: 2px solid rgb(0 0 0 / 12%);
}
.popular-slide-div .slick-nav i:before, .popular-slide-div .slick-nav i:after{
        border: 1px solid #000;
}
.popular-slide-div .slick-nav.prev-arrow {
    left: -3%;
    top: calc(60% - 44px);
}
.popular-slide-div .slick-nav.next-arrow{
    right: -3%;
    top: calc(60% - 44px);
}

.feature-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.feature-star ul {
  padding: 0;
  margin: 0;
}

.feature-star ul li {
  color: var(--main-color);
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

.feature-slide-text {
  background: #F0FAFE;
  padding: 15px;
}

.feature-star h5 {
  font-size: 15px;
  line-height: 21px;
  color: #1E1E1E;
  display: inline-block;
  font-family: var(--main-font);
}
.feature-title{
  padding: 20px 0px;
}
.feature-title h3 {
  font-family: "Museo700-Regular";
  color: #000;
  font-size: 20px;
  line-height: 20px;
}
h3.product-title-class{
	font-size:18px;
	font-family:"Museo300-Regular"
}

.feature-price h3 {
  font-family: "Museo700-Regular";
  color: var(--main-color);
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 700;
  margin-right: 10px;
}

.feature-price h4 {
  font-family: "Museo100-Regular";
  color: rgb(30 30 30 / 70%);
  font-size: 14px;
  line-height: 18px;
  font-weight: 100;
  margin-bottom: 0;
}

.feature-cart a {
  font-family: "Museo300-Regular";
  font-size: 16px;
  line-height: 20px;
  color: var(--white-color);
  background: #1E1E1E;
  padding: 10px 50px;
  border-radius: 30px;
  text-align: center;
}

.woocommerce ul.products li.product h3{
	color: #000;
  font-size: 20px !important;
  line-height: 20px;
	padding:0 !important;
	font-family: "Museo700-Regular";
}
.woocommerce ul.products li.product h3.product-title-class{
	font-size: 18px !important;
	font-family: "Museo300-Regular";
}
.feature-cart a span {
  color: var(--main-color);
  margin-right: 10px;
}

/*.feature-cart {*/
/*  background: #1E1E1E;*/
/*  padding: 10px 50px;*/
/*  border-radius: 30px;*/
/*  text-align: center;*/
/*}*/

.feature-wish a {
  color: rgb(30 30 30 / 50%);
  background: #fff;
  border: 1px solid rgb(0 0 0 / 50%);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 40px;
    width: 40px;
}
.feature-cart-div{
  padding: 20px 0px;
}
.feature-wish a {}

.feature-price {
  padding: 10px 0px;
}
.feat-img {
  width: 300px;
  height: 300px;
}
.feature-slide-wrap {
  margin: 50px 15px 0px;
}

.feature-slide-div .slick-nav i:before,
.feature-slide-div .slick-nav i:after {
  background: #3965FF;
}

.feature-slide-div .slick-nav.prev-arrow {
  left: -8%;
  transform: scaleX(-1);
  z-index: 1;
}

.feature-slide-div .slick-nav:before,
.feature-slide-div .slick-nav:after {
  box-shadow: 0px 6px 5px rgb(0 0 0 / 10%);
}

.feature-slide-div .slick-nav.next-arrow {
  left: auto;
  right: -8%;
}
.feature-slide-div .slick-nav{
  top: calc(60% - 44px);
}

.feature-slide-div .slick-nav:hover i:before {
  background: #C50115;
}

.feature-slide-div .slick-nav:hover i:after {
  background: #C50115;
}

.feature-slide {
  position: relative;
}
.sale-div-1{
  left: 230px;
  right: auto;
}
.sale-div {
  position: absolute;
  top: 14px;
  right: 0;
  background: #FFC107;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.sale-div h4 {
  font-size: 22px;
  line-height: 26px;
  color: var(--heading-color);
  margin-bottom: 0;
}

/* discount-sec */
.discount-sec {
  padding: 50px 0px;
}

.discount-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-bg {
  position: absolute;
  top: 0;
  left: 0%;
  transform: translate(0%, 0%);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.discount-bg-wrap {
  position: relative;
  padding: 50px 0px;
}

.discount-text {
  position: relative;
}

.discount-text h3 {
  font-size: 50px;
  font-weight: 900;
  color: var(--white-color);
  position: relative;
  letter-spacing: 0px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.discount-text h3 span {
  color: #FFC107;
}

.discount-text p {
  color: var(--white-color);
  font-size: 20px;
}

/* why-sec */
.why-sec {
  padding: 50px 0px;
}

.why-list {
  padding: 0px 0px;
}
.why-list img{
	width:100%;
}
.why-list ul {
  padding: 0px 0px 0px 0px;
  margin: 0;
}

.why-list ul li {
  font-family: "Museo100-Regular";
  padding: 0px 0px 0px 20px;
  list-style: none;
  position: relative;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.why-list ul li::before {
  content: "\f111";
  color: var(--main-color);
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(0%, -50%);
  font-family: 'Font Awesome 6 Free';
  font-size: 7px;
}
.why-img{
	width:100%;
	height:500px;
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
 display: none;
}
/* most-sec */
.most-sec {
  padding: 50px 0px;
  position: relative;
}
.most-list-wrap{
  padding-top: 50px;
}
.most-list-1 ul {
  padding: 0;
  margin: 0;
}

.most-list-1 ul li {
  font-family: "Museo700-Regular";
  list-style: none;
  font-size: 24px;
  line-height: 28px;
  text-align: right;
  position: relative;
  padding: 20px 20px;
  min-height: 100px;
}

.most-list-2 ul {
  padding: 0;
  margin: 0;
}

.most-list-2 ul li {
  font-family: "Museo100-Regular";
  list-style: none;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  padding: 20px 20px;
  min-height: 100px;
}

.most-list-2 ul li::before {
  content: "\f111";
  color: var(--main-color);
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: 20px;
  font-family: 'Font Awesome 6 Free';
  font-size: 10px;
  z-index: 10;
}

.most-list-2 ul li::after {
  position: absolute;
  content: "";
  height: 100px;
  width: 1px;
  background: #000;
  top: 28px;
  left: -11px;
  z-index: -1;
}
.most-list-2 ul li:last-child:after{
  height: 0;
}
.most-bg img {
  width: 700px;
  height: 700px;
  object-fit: contain;
}

/* .most-list-wrap{
  position: relative;
} */
/* blog-sec */
.blog-sec {
  padding: 0px 0px 50px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.blog-div {
  padding: 30px 0px 0px;
}

.blog-date h4 {
  font-size: 14px;
  margin-bottom: 0;
}

.blog-date h4 span {
  color: var(--main-color);
  font-size: 18px;
  margin-right: 5px;
}

.blog-date {
  margin-right: 15px;
}

.blog-title h3 {
  font-size: 26px;
  line-height: 30px;
  color: #00060F;
  font-weight: 700;
}
.blog-admin{
  padding-bottom: 20px;
}
.blog-img {
  position: relative;
}

.blog-text {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 0px);
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  box-shadow: 0px 5px 3px rgb(0 0 0 / 20%);
}
/* delivery */
.delivery-wrap{
  background: var(--main-color);
  padding: 20px;
}
.delivery-img img{
  width: 150px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto;
}
.delivery-img-text{
  padding: 20px 20px 0px;
}
.delivery-img-text h4{
  font-family: "Museo700-Regular";
  color: var(--white-color);
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  
}
.delivery-img-text p{
  color: var(--white-color);
  font-size: 16px;
  line-height: 20px;
}
.delivery-img-div{
  text-align: center;
}
.delivery-sec{
  padding: 50px 0px 0px;
}
.prod-inr{
  padding: 50px 0px;
}
.feature-slide:hover .feature-wish a{
   color: var(--main-color);
   transition: ease-in all 0.3s;
}
.feature-slide:hover .feature-cart a{
  background: var(--main-color);
  transition: ease-in all 0.3s;
}
.feature-slide:hover .feature-cart a span{
  color: var(--white-color);
  transition: ease-in all 0.3s;
}

/* client-sec  */


.testimonial_sec {
  padding: 50px 0;
}

.testimonial {
  padding: 100px 0;
}

.testimonia_box {
  background: transparent;
  padding: 30px;
  text-align: center;
  border: 1px solid rgb(0 0 0 / 20%);
}
.testimonia_box:hover{
  background: var(--main-color);
  transition: ease-in all 0.3s;
}
.testimonia_box:hover h4{
  color: var(--white-color);
  transition: ease-in all 0.3s;
}
.testimonia_box:hover h5{
  color: var(--white-color);
  transition: ease-in all 0.3s;
}
.testimonia_box:hover p{
  color: var(--white-color);
  transition: ease-in all 0.3s;
}
.testimonia_box:hover span{
  color: var(--white-color);
  transition: ease-in all 0.3s;
}
.testi_img {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0px 20px 20px 0px;
}

.testi_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.testi {
  background: var(--main-color);
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: -10px;
  transform: translate(0px, -50%);
}
.testimonia_box:hover .testi {
  background: var(--orange-color);
  transition: ease-in all 0.3z;
}

.testimonia_box h4 {
  font-family: "Museo700-Regular";
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}
.testimonia_box h5 {
  font-family: "Museo700-Regular";
  font-size: 16px;
  margin-bottom: 5px;
}
.testimonia_box span {
  font-family: "Museo500-Regular";
  color: var(--black-color);

  margin-bottom: 0px;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.testimonia_box p {
  font-size: 15px;
	min-height:120px;
}

.tes_s {
  padding: 15px;
}
.testimponial{
  margin-right: 0px;
}

.name_star ul {
  list-style: none;
  display: flex;
  padding-left: 0px;
	justify-content:center;
}

.name_star {
  padding-left: 0px;
	text-align:center;
}

.name_star ul li {
  color: #EBB415;
  font-size: 10px;
  padding-right: 2px;
}
.sb-tp p{
  font-family: "Museo100-Regular";
  font-size: 15px !important;
  line-height: 19px !important;
  color: rgb(255 255 255 / 50%) !important;
}

.testimponial .slick-nav.prev-arrow.slick-arrow{
	right: 7%;
    top: calc(0% - 44px);
}
.testimponial .slick-nav{
	top: calc(0% - 44px);
}
.testimponial .slick-nav:before, .testimponial .slick-nav:after {
    border: 2px solid rgb(0 0 0 / 12%);
}
.testimponial .slick-nav i:before, .testimponial .slick-nav i:after{
	background:#000;
}

/* popular-sec */
.popular-sec .feature-title{
  padding: 0;
}
.popular-sec .feature-cart-div{
  padding: 0;
}
.ftr-content p{
    font-family: "Museo500-Regular";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    text-decoration: none;
    margin-bottom: 0;
}
.ftr-content{
  padding: 20px 0px;    
}
.sb-tp{
   margin-top: 30px; 
}
/*03-04-2024*/
.wp-block-search__inside-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.wp-block-search__input{
    width: 100%;
    height: 40px;
    border: 0px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 38px;
    color: #1E1E1E;
    border-radius: 20px;
    font-family: var(--main-font);
    font-style: italic;
    background: rgb(30 30 30 / 10%);
}
.wp-block-search__button{
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 15px;
    color: var(--white-color);
    cursor: pointer;
    transform: translate(0px, -50%);
    border: none;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 90px;
    border-radius: 30px;
}
.widget.widget_block.widget_search{
    width: 100%;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    width: 40px !important;
    height: 40px !important;
}
.add_to_wishlist.single_add_to_wishlist, .tinvwl_add_to_wishlist_button{
    color: rgb(30 30 30 / 50%);
    background: #fff;
    border: 1px solid rgb(0 0 0 / 50%);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 40px;
    width: 40px;  
}
.product_page_details{
	padding:0 15px 15px;
}

.product_page_details .tinvwl_add_to_wishlist_button{
	margin-top:0px !important;
}
.tinv-wraper.woocommerce.tinv-wishlist.tinvwl-after-add-to-cart.tinvwl-loop-button-wrapper.tinvwl-woocommerce_after_shop_loop_item{
	display: inline-block;
    vertical-align: middle;
	padding-left:5px;
}




.yith-wcwl-add-button>a i{
   margin-right: 0px !important;
}
.feature-slide:hover .add_to_wishlist.single_add_to_wishlist, .feature-slide:hover .tinvwl_add_to_wishlist_button{
    color: var(--main-color);
    transition: ease-in all 0.3s;  
}
.woocommerce-loop-product__title{
    font-family: "Museo700-Regular";
    color: #000;
    font-size: 20px !important;
    line-height: 24px !important;
}  
.woocommerce ul.products li.product .price del{
    font-family: "Museo100-Regular";
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px;
    line-height: 18px;
    font-weight: 100;
    margin-bottom: 0;  
}
.woocommerce ul.products li.product .price ins{
    font-family: "Museo700-Regular";
    color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;  
    text-decoration: none !important;
}
.yith-wcwl-add-to-wishlist {
    margin-top: 10px;
    display: inline-block;
}
.woocommerce ul.products li.product .button{
    background: #1E1E1E;
    border-radius: 30px;
    text-align: center !important;
    color: #fff;
	padding: 10px 13px !important;
    font-size: 15px !important;
	line-height:1 !important;
	vertical-align: middle !important;
	min-width:110px;
}
.woocommerce a.added_to_cart{
    background: #1E1E1E;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    margin-left: 10px;
}
.feedback{
     color: var(--main-color);
     background: #fff;
    border: 1px solid rgb(0 0 0 / 50%);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 40px;
    width: 40px;  
}
.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
    margin-right: 0px !important;
}
.wc-block-components-product-name{
    font-family: "Museo700-Regular";
    color: #000;
    font-size: 18px !important;
    line-height: 22px !important;
}
.wc-block-components-product-name:hover{
    font-family: "Museo700-Regular";
    color: #000;
    font-size: 18px !important;
    line-height: 22px !important;
}
.wc-block-components-product-price__regular{
    font-family: "Museo100-Regular";
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 100;
    margin-bottom: 0;  
}
.wc-block-components-product-price__value.is-discounted{
    font-family: "Museo700-Regular";
    color: var(--main-color);
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;
}
.wc-block-components-product-badge{
    padding: 5px;   
    color: var(--main-color);
}
.wc-block-components-formatted-money-amount{
    font-family: "Museo700-Regular";
    color: var(--black-color);
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;
}   
.wc-block-components-button__text{
    font-family: "Museo500-Regular";
    color: var(--black-color);
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    font-weight: 500 !important;
}
.wc-block-components-totals-coupon-link{
    font-family: "Museo500-Regular";
    color: var(--black-color);
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    font-weight: 500 !important;
}
.wc-block-components-totals-shipping__change-address__link{
    color: var(--black-color); 
}
.wc-block-cart-item__remove-link{
    font-family: "Museo500-Regular" !important;
    color: var(--black-color) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
}
.components-button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
  font-family: "Museo300-Regular";
    display: inline-block;
    box-sizing: border-box;
    padding: 13px 35px;
    border-radius: 30px;
    position: relative;
    color: var(--white-color) !important;
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    border: none;
    font-size: 16px;  
}
.wc-block-components-button__text{
    color: var(--white-color) !important;
}
.product-name a{
    font-family: "Museo700-Regular";
    color: #000 !important;
    font-size: 18px !important;
    line-height: 22px !important;  
}
.woocommerce table.shop_table td del{
   font-family: "Museo100-Regular";
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 100;
    margin-bottom: 0;
} 

table.wishlist_table thead th{
    text-align: center !important; 
    font-family: "Museo700-Regular";
    color: #000 !important;
    font-size: 18px !important;
    line-height: 22px !important;
}
.woocommerce table.shop_table td ins{
   font-family: "Museo700-Regular";
    color: var(--main-color);
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important; 
    text-decoration: none !important;
}
.wishlist-in-stock{
    color: #0d6efd !important;
    font-family: "Museo300-Regular";
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 300 !important;
    margin-left: 10px !important; 
    text-decoration: none !important;
}
.wishlist_table .product-add-to-cart a{
    font-family: "Museo300-Regular";
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 24px;
    border-radius: 30px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-decoration: none;
    overflow: hidden;
    border: none;
    font-size: 16px;
}
.single_add_to_cart_button.button.alt{
      background: var(--main-color) !important;
}
.product_title.entry-title{
   font-family: "Museo700-Regular";
    color: #000;
    font-size: 40px;
    line-height: 44px;
	
}
.product_title.entry-title.product-title-class{
	font-family: "Museo300-Regular";
    font-size: 38px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    font-family: "Museo100-Regular";
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 100;
    margin-bottom: 15px;  
}
.woocommerce div.product p.price ins{
    font-family: "Museo700-Regular";
    color: var(--main-color);
    font-size: 35px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;  
    text-decoration: none !important;
}
.posted_in a{
    color: #000;
}
.why-list p, .why-list ol li{
	color: #000;
    font-weight: 600;
    font-family: inherit;
	font-size:18px;
}
.why-list ol li{
	margin-bottom:10px;
}
.woocommerce-product-details__short-description{
	color: #000;
    font-weight: 700;
    font-family: inherit;
}
.product_page_details .tinvwl_add_to_wishlist_button:hover{
	color:var(--main-color);
}
.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-position-after.tinvwl-loop.tinvwl-product-in-list.tinvwl-product-make-remove{
	color:var(--main-color);
}
/*product page*/
.woocommerce p.stars a{
   color: var(--main-color);
}

.woocommerce span.onsale{
  background-color: var(--main-color) !important; 
	width: 50px;
    height: 50px;
}
.button.wc-forward{
    background-color: var(--main-color) !important;    
    color: #fff !important;
}
.wc-block-cart .wc-block-cart__submit-container{
   background-color: var(--main-color) !important;    
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    height: 50px;
    padding: 10px;
}
.woocommerce-LostPassword.lost_password a{
   color: var(--main-color) !important;     
}
.woocommerce-button.button.woocommerce-form-login__submit{
     background-color: var(--main-color) !important;    
     color: #fff !important;
}
.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit{
    background-color: var(--main-color) !important;    
     color: #fff !important;  
}
.woocommerce-privacy-policy-link{
     color: var(--main-color) !important;    
}
.yith-wcwl-add-to-wishlist {
    margin-top: 0px !important;
}

#yith-wcwl-popup-message {
    background: transparent !important;
    box-shadow: none !important;
}
.remove_from_wishlist{
     color: var(--main-color) !important;    
}

.additional-info-wrapper{
   display: flex;
    justify-content: space-between;
    align-items: center;
} 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
    font-family: "Museo700-Regular" !important;
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
   margin-left: 10px !important;  
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{
     font-family: "Museo700-Regular" !important;
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
     margin-bottom: 10px !important;
}
.woocommerce div.product form.cart{
    margin-bottom: 0px !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    font-family: "Museo700-Regular" !important;
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
     margin-bottom: 10px !important;   
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    font-family: "Museo700-Regular" !important;
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}
.woocommerce div.product p.price del{
      font-family: "Museo100-Regular";
    color: rgb(30 30 30 / 70%) !important;
    font-size: 26px !important;
    line-height: 18px !important;
    font-weight: 100;
  
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    padding: 10px 10px;
}


/*New- Time Line*/


/* Timeline */
.timeline-sec {
  padding: 50px 0px;
}
.timeline-sec .heading_hp h2 {
	font-size: 35px;
}
.timeline {
  position: relative;
  width: 100%;
  padding: 80px 0px 0px;
}

.timeline .timeline-container {
  position: relative;
  width: 100%;
}

.timeline .timeline-end,
.timeline .timeline-start,
.timeline .timeline-year {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.timeline .timeline-end p,
.timeline .timeline-start p,
.timeline .timeline-year p {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 30px 0;
  text-align: center;
  background: linear-gradient(#4F84C4, #00539C);
  border-radius: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.timeline .timeline-year {
  margin: 30px 0;
}

.timeline .timeline-continue {
  position: relative;
  width: 100%;
}

.timeline .timeline-continue::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -1px;
  background: #000;
}

.timeline .row.timeline-left,
.timeline .row.timeline-right .timeline-date {
  text-align: right;
}

.timeline .row.timeline-right,
.timeline .row.timeline-left .timeline-date {
  text-align: left;
}

.timeline .timeline-date {
  font-family: "Museo700-Regular";
  list-style: none;
  font-size: 24px;
  line-height: 28px;
  text-align: right;
  position: relative;
  padding: 0px 20px;
  min-height: 100px;
}
.timeline-right .timeline-date::before{
  
}
.timeline-right .timeline-date::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 0px;
  background: var(--main-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  border-radius: 15px;
  z-index: 1;
  right: -18px;
  transform: translate(0%, 0px);
}
.timeline-left .timeline-date::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  background: var(--main-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  border-radius: 15px;
  z-index: 1;
  left: -17px;
  transform: translate(0%, 0px);
}
.timeline-left .timeline-text p{
  font-family: "Museo700-Regular";
  list-style: none;
  font-size: 24px;
  line-height: 28px;
  text-align: right;
  position: relative;
  padding: 0px 20px;
  min-height: 100px;
}
.timeline .timeline-box,
.timeline .timeline-launch {
  position: relative;
  display: inline-block;
  margin: 0px 15px;
  font-family: "Museo100-Regular";
  list-style: none;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  padding: 0px 20px;
  min-height: 100px;
}

.timeline .timeline-launch {
  width: 100%;
  margin: 15px 0;
  padding: 0;
  border: none;
  text-align: center;
  background: transparent;
}
.timeline .timeline-box .timeline-icon {
  position: relative;
  width: 40px;
  height: auto;
  float: left;
}

.timeline .timeline-icon i {
  font-size: 25px;
  color: #4F84C4;
}

.timeline .timeline-box .timeline-text {
  position: relative;
  /* width: calc(100% - 40px); */
  width: 100%;
  float: left;
}
.timeline-left .timeline-box{
  margin: 0px;
  padding: 0px;
}
.timeline .timeline-launch .timeline-text {
  width: 100%;
}
.timeline-right .timeline-box{
   margin: 0;
   padding: 0;
}
.timeline-right .timeline-text p{
  font-family: "Museo300-Regular";
  list-style: none;
  font-size: 22px;
  line-height: 24px;
  position: relative;
  padding: 0px 20px;
  min-height: 100px;
    letter-spacing: 1px;
}
.timeline-left .timeline-date{
  font-family: "Museo100-Regular";
  list-style: none;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  padding: 0px 20px;
  min-height: 100px;
}
.timeline .timeline-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .timeline .timeline-continue::after {
    left: -15px;
  }

  .timeline .timeline-end,
  .timeline .timeline-start,
  .timeline .timeline-year,
  .timeline .row.timeline-left,
  .timeline .row.timeline-right .timeline-date,
  .timeline .row.timeline-right,
  .timeline .row.timeline-left .timeline-date,
  .timeline .timeline-launch {
    text-align: left;
  }

  .timeline .row.timeline-left .timeline-date::after,
  .timeline .row.timeline-right .timeline-date::after {
    left: -22px;
  }

  .timeline .timeline-box,
  .timeline .row.timeline-right .timeline-date,
  .timeline .row.timeline-left .timeline-date {
    /* margin-left: 55px; */
  }

  .timeline .timeline-launch .timeline-box {
    margin-left: 0;
  }

  .timeline .row.timeline-left .timeline-box::after {
    left: -20px;
    border-color: transparent #ffffff transparent transparent;
  }

  .timeline .row.timeline-left .timeline-box::before {
    left: -22px;
    border-color: transparent #dddddd transparent transparent;
  }

  .timeline .timeline-launch .timeline-box::after,
  .timeline .timeline-launch .timeline-box::before {
    left: 30px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .timeline .timeline-date{
    min-height: 0px;
  }
  .timeline-right .timeline-text p{
    min-height: 0px;
  }
}

/**/
.copy_2{
  display: none;    
}
.copy_2 p{
    color: rgb(255 255 255 / 50%);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 0;
}
.abt_page_img{
	width: 45%;
    height: auto;
    float: left;
    padding-right: 50px;
    padding-bottom: 50px;
}
.abt_page_img img{
	width:100%;
}
.woocommerce ul.products li.product .star-rating {
    color: var(--main-color);
	margin-top:10px;
}

.single-product.woocommerce div.product form.cart{
	display:inline-block;
	vertical-align:middle;
	margin-right:10px;
}
.single-product.woocommerce div.product_meta{
	display:none;
}

.single-product.woocommerce .woocommerce-product-rating .star-rating, .woocommerce .star-rating{
	color:var(--main-color);
}
.single-product.woocommerce .woocommerce-product-rating .woocommerce-review-link{
	color:#000;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit{
	background:var(--main-color) !important;
	color:#fff !important;
}



.woocommerce table.shop_table td.product-name a{
  color:#000;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    padding: 10px;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #767676;
    border-radius: 0px !important;
}
.select2-container .select2-selection--single{
  height: auto !important;
    padding: 9px;
}
.woocommerce ul.order_details {
    border: 1px solid var(--main-color);
  padding: 20px;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin-bottom: 0;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 29%);
    padding: 17px;
    border-radius: 8px;
}
.woocommerce-MyAccount-navigation ul li a{
  padding: 7px;
    color: #000;
    font-weight: 600;
    display: block;
  background:#fff;
}
.woocommerce-MyAccount-navigation ul li.is-active a{
  background: var(--main-color) ;
    color: #fff;
}
.woocommerce-button.button.view{
  box-sizing: border-box;
    padding: 14px 35px !important;
    border-radius: 30px !important;
    position: relative;
    color: var(--white-color) !important;
    background-color: var(--main-color) !important;
    text-transform: uppercase;
}
.woocommerce-Address-title.title{
  background: var(--main-color) ;
    color: #fff;
  padding: 5px 10px;
}
.woocommerce-account .addresses .title h3{
  font-size:18px;
}
.woocommerce-account .addresses .title .edit{
  color:#fff;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button{
	box-sizing: border-box;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    position: relative;
    color: var(--white-color) !important;
    background-color: var(--main-color) !important;
	font-size:15px !important;
}
.tinv-wishlist .product-action {
	width: 193px !important;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
	background:#F0FAFE;
}


.single-product .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
    margin-top: 0 !important;
    margin-left: 12px;
}
.single-product.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
}

.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-position-after.tinvwl-product-in-list.tinvwl-product-make-remove{
	color:var(--main-color);
}
.qib-button:not(#qib_id):not(#qib_id), .qib-container .quantity input.qty:not(#qib_id):not(#qib_id){
	border-width:0px !important;
}
.qib-button:not(#qib_id):not(#qib_id){
	font-size:22px !important;
	background: #000000 !important;
    border-color: #000000 !important;
	color:#fff !important;
}

.qib-container:not(#qib_id):not(#qib_id) {
    margin-bottom: 0px;
    height: 35px;
    margin-top: 0px;
	    vertical-align: middle;
}

.qib-container .minus.qib-button{
	border-radius:30px 0 0 30px !important;
}
.qib-container .plus.qib-button{
	border-radius: 0 30px 30px 0 !important;
}
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id){
	border-top:1px solid #000 !important;
	border-bottom:1px solid #000 !important;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar{
	opacity:1;
}
.woocommerce ul.products li.product .button{
	margin-top:0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #c50014 !important;
    color: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span{
	color:#000 !important;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: #c50014 !important;
    color: #fff !important;
}
.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs{
	background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 22%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.container-rating{
	display:flex;
	align-items:center;
}
.tinv-wishlist table td, .tinv-wishlist table th{
	border-width:1px;
	border-color:  rgb(0 0 0 / 10%);
}

.tinv-wishlist table thead{
	background: rgb(197 0 20 / 44%);
    color: #000;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.in-cart{
	background:#03b22a !important;
}


