@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&family=Lato:wght@100;300;400&display=swap");
body,
html {
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}

.bg-alt {
  background-color: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
}

.section-padding {
  padding: 80px 0px;
}
@media (width < 767px) {
  .section-padding {
    padding: 50px 0px;
  }
}

.footer-low-wrap {
  width: 100%;
  overflow: hidden;
}

.theme-button {
  color: #ffffff;
  background: #f85607;
  text-transform: capitalize;
  padding: 9px 20px;
  font-size: 14px;
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
}
@media (width > 1500px) {
  .theme-button {
    font-size: 18px;
  }
}
@media (width < 575px) {
  .theme-button {
    font-size: 13px;
    padding: 5px;
  }
}
.theme-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  right: 0;
  top: 0;
  margin: auto;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 0.5px solid #f85607;
  border-radius: 30px;
  animation: 0.5s;
  transition: 0.5s ease-in-out;
}
.theme-button:hover {
  background-color: #fff;
  color: #f85607;
  z-index: 1;
}
.theme-button:hover::after {
  border: 1px solid #f85607;
}

.para {
  margin-bottom: 20px;
  line-height: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

li,
ul,
ol,
div,
span,
p,
a {
  text-decoration: none;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
}
@media (width < 991px) {
  li,
  ul,
  ol,
  div,
  span,
  p,
  a {
    font-size: 14px;
  }
}

header .sticky {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0px;
  background-color: #fff;
}
header .navbar {
  padding: 10px 40px;
}
header .navbar-brand {
  width: 14%;
}
header .navbar-brand img {
  height: 4rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width < 575px) {
  header .navbar-brand img {
    height: 50px;
  }
}
header nav {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
header nav .navbar-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .navbar-nav .nav-item {
  text-transform: uppercase;
  font-size: 15px;
  margin: 0px 20px;
}
header .top-nav-img {
  margin-right: 30px;
}
header .top-nav-img img {
  height: 2rem;
}
header .top-nav-img img:nth-child(2) {
  margin-left: 20px;
}
header .product-nav {
  padding: 2px 0px;
  background-color: #f85607;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
header .product-nav .items {
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  overflow-x: scroll;
  gap: 60px;
}
header .product-nav .items li {
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
}
header .product-nav .items li a {
  color: #fff;
}
header .product-nav .items li.pullUpDown {
  position: relative;
  padding: 5px 0px;
  z-index: 1;
}
header .product-nav .items li.pullUpDown::after, header .product-nav .items li.pullUpDown::before {
  position: absolute;
  width: 10%;
  height: 0.5px;
  content: "";
  background: #fff;
  opacity: 0.3;
  transition: all 0.3s;
  z-index: -1;
}
header .product-nav .items li.pullUpDown::before {
  top: 0px;
  left: 0;
}
header .product-nav .items li.pullUpDown::after {
  bottom: 0px;
  right: 0;
}
header .product-nav .items li.pullUpDown:hover::before, header .product-nav .items li.pullUpDown:hover::after {
  height: calc(100% + 5px);
  width: calc(100% + 10px);
}
header .product-nav .items li.pullUpDown:hover::before {
  top: -4px;
  left: -5px;
}
header .product-nav .items li.pullUpDown:hover::after {
  bottom: -2px;
  right: -5px;
}
header .product-nav ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
header .product-nav ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
header .product-nav ::-webkit-scrollbar-thumb {
  background: #c5aeae;
  border-radius: 20px;
}
header .product-nav ::-webkit-scrollbar-thumb:hover {
  background: #f85607;
}
@media (width < 991px) {
  header .product-nav {
    /* width */
  }
  header .product-nav ::-webkit-scrollbar {
    width: 5px;
    height: 2px;
  }
}
header .sticky-product-nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 92px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
@media (width < 575px) {
  header .sticky-product-nav {
    top: 78px;
  }
}

#banner-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0px 10px;
}
#banner-slider .carousel-indicators button.active {
  background-color: #f85607;
}
#banner-slider .carousel-control-prev {
  border: 1px solid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: auto;
  background-color: #f85607;
  left: 30px;
}
@media (width < 767px) {
  #banner-slider .carousel-control-prev {
    left: 10px;
    width: 30px;
    height: 30px;
  }
}
#banner-slider .carousel-control-next {
  border: 1px solid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: auto;
  background-color: #f85607;
  right: 30px;
}
@media (width < 767px) {
  #banner-slider .carousel-control-next {
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
#banner-slider .carousel-control-next-icon,
#banner-slider .carousel-control-prev-icon {
  width: 20px;
  height: 20px;
}
@media (width < 767px) {
  #banner-slider .carousel-control-next-icon,
  #banner-slider .carousel-control-prev-icon {
    width: 15px;
    height: 15px;
  }
}
#banner-slider .carousel-inner .carousel-item {
  height: 80vh;
}
#banner-slider .carousel-inner .carousel-item:nth-child(1) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.431372549), rgba(0, 0, 0, 0.631372549), rgba(0, 0, 0, 0.5803921569)), url(../img/banner-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#banner-slider .carousel-inner .carousel-item:nth-child(2) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.431372549), rgba(0, 0, 0, 0.631372549), rgba(0, 0, 0, 0.5803921569)), url(../img/banner-2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#banner-slider .carousel-inner .carousel-item:nth-child(3) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.431372549), rgba(0, 0, 0, 0.631372549), rgba(0, 0, 0, 0.5803921569)), url(../img/banner-3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text {
  height: 20rem;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  text-align: center;
  width: 50%;
  margin: auto;
  padding: 20px 30px;
}
@media (width < 767px) {
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text {
    height: 16rem;
    width: 100%;
  }
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span {
  font-family: "Cormorant Garamond", serif;
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(1) {
  font-size: 35px;
  color: #fff;
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(2) {
  color: #ffffff;
  font-size: 60px;
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(3) {
  text-transform: capitalize;
  color: #fff;
  font-size: 35px;
}
@media (width < 1199px) {
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(1) {
    font-size: 20px;
  }
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(2) {
    font-size: 40px;
  }
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(3) {
    font-size: 20px;
  }
}
@media (width < 991px) {
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(1) {
    font-size: 16px;
  }
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(2) {
    font-size: 30px;
  }
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(3) {
    font-size: 16px;
  }
}
@media (width < 991px) {
  #banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text span:nth-child(2) {
    font-size: 24px;
  }
}
#banner-slider .carousel-inner .carousel-item .banner-text-wraper .banner-text .banner-button {
  padding: 10px 0px;
}
@media (width < 991px) {
  #banner-slider .carousel-inner .carousel-item {
    height: 60vh;
  }
}

.heading {
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.heading .mini-heading {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
@media (width < 575px) {
  .heading .mini-heading {
    font-size: 14px;
  }
}
.heading p {
  margin-top: 10px;
}
.heading .main-heading {
  display: flex;
  gap: 10px;
  position: relative;
  color: #000;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 40px;
}
@media (width < 991px) {
  .heading .main-heading {
    font-size: 30px;
  }
}
@media (width < 767px) {
  .heading .main-heading {
    font-size: 25px;
  }
}
.heading .main-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 5rem;
  height: 0.5px;
  background-color: #f85607;
}
.heading .main-heading span {
  font-size: 40px;
}
.heading .main-heading span.theme-color {
  color: #f85607;
}
@media (width < 991px) {
  .heading .main-heading span {
    font-size: 30px;
  }
}
@media (width < 767px) {
  .heading .main-heading span {
    font-size: 25px;
  }
}
@media (width < 575px) {
  .heading .main-heading span {
    font-size: 20px;
  }
}

.sub-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 2;
  padding: 0px 10px;
  position: relative;
  z-index: 1;
}
.sub-heading .main-heading {
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 5px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
}
@media (width < 991px) {
  .sub-heading .main-heading {
    font-size: 30px;
  }
}
@media (width < 767px) {
  .sub-heading .main-heading {
    font-size: 25px;
  }
}
.sub-heading .main-heading span {
  font-size: 40px;
}
@media (width < 991px) {
  .sub-heading .main-heading span {
    font-size: 30px;
  }
}
@media (width < 767px) {
  .sub-heading .main-heading span {
    font-size: 25px;
  }
}
.sub-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f85607;
  z-index: -1;
}

#about-company {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
}
#about-company .about-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-right: 20px;
}
#about-company .about-img {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#about-company .about-img img {
  transition: 0.5s ease-in-out;
}
#about-company .about-img:hover img {
  transform: scale(1.1);
}

#our-offer a p {
  color: #fff;
}
#our-offer a .main-wraper {
  position: relative;
  margin-bottom: 70px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 1;
}
#our-offer a .main-wraper .offer-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
#our-offer a .main-wraper .offer-wrap .sub-heading {
  position: absolute;
  top: 10px;
}
#our-offer a .main-wraper .offer-wrap .sub-heading span {
  font-size: 18px;
}
@media (width < 767px) {
  #our-offer a .main-wraper .offer-wrap .sub-heading span {
    font-size: 16px;
  }
}
@media (width < 575px) {
  #our-offer a .main-wraper .offer-wrap .sub-heading span {
    font-size: 14px;
  }
}
#our-offer a .main-wraper .offer-wrap.alt .sub-heading {
  right: 0;
}
#our-offer a .main-wraper .offer-product {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#our-offer a .main-wraper .offer-product img {
  height: 40rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease-in-out;
}
@media (width < 991px) {
  #our-offer a .main-wraper .offer-product img {
    height: 300px;
  }
}
#our-offer a .main-wraper .home-page-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 20px;
  background: rgba(248, 86, 7, 0.6509803922);
}
#our-offer a .main-wraper .home-page-content .offer-button {
  padding: 10px 0px;
}
#our-offer a .main-wraper .home-page-content .offer-button .theme-button::after {
  border: 0.5px solid #fff;
}
#our-offer a .main-wraper:hover .offer-product img {
  transform: scale(1.1);
}
#our-offer a:nth-child(1) .main-wraper::after {
  background: url(../img/uos-chair.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.09;
}
#our-offer a:nth-child(2) .main-wraper::after {
  background: url(../img/uos-storage.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.09;
}
#our-offer a:nth-child(3) .main-wraper::after {
  background: url(../img/uos-desk.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.09;
}
#our-offer a:nth-child(4) .main-wraper::after {
  background: url(../img/uos-elctronics.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.09;
}
#our-offer a:nth-child(5) .main-wraper::after {
  background: url(../img/uos-workstation.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.09;
}

#testimonial {
  background: url(../img/testi-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#testimonial .owl-dots {
  display: none;
}
#testimonial::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: -1;
  opacity: 0.8;
}
#testimonial .heading .main-heading span:nth-child(2) {
  color: #fff;
}
#testimonial .owl-item {
  height: 100%;
  position: relative;
}
#testimonial .owl-item .testimonial-card {
  display: flex;
  flex-flow: column;
  align-items: start;
  padding: 30px 14px;
}
@media (width < 991px) {
  #testimonial .owl-item .testimonial-card {
    padding: 15px 14px 0;
  }
}
#testimonial .owl-item .testimonial-card .carousel-img {
  display: flex;
  position: relative;
}
#testimonial .owl-item .testimonial-card .carousel-img img {
  width: 6rem;
  height: 6rem;
  border-radius: 36%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
#testimonial .owl-item .testimonial-card .carousel-img::after {
  content: "";
  position: absolute;
  top: -13px;
  left: -14px;
  right: 0;
  margin: auto;
  height: calc(100% + 16px);
  width: calc(100% + 10px);
  border-radius: 36%;
  background: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
  z-index: -1;
}
#testimonial .owl-item .testimonial-card .client-name {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 20px 0px;
  margin-right: 10px;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
}
#testimonial .owl-item .testimonial-card .client-name span {
  color: #fff;
  font-size: 25px;
  text-transform: uppercase;
}
#testimonial .owl-item .testimonial-card .client-name span:nth-child(2) {
  font-size: 18px;
}
@media (width < 1199px) {
  #testimonial .owl-item .testimonial-card .client-name span {
    font-size: 20px;
  }
  #testimonial .owl-item .testimonial-card .client-name span:nth-child(2) {
    font-size: 16px;
  }
}
#testimonial .owl-item .testimonial-card .client-text p {
  color: white;
  padding: 3px 0px;
  text-align: left;
}
#testimonial .owl-nav {
  display: flex;
  position: absolute;
  left: 27%;
  bottom: -5%;
}
#testimonial .owl-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out;
  border: 0.5px solid rgba(255, 255, 255, 0.5215686275);
}
#testimonial .owl-nav button i {
  font-size: 12px;
  color: #fff;
  transition: 0.5s ease-in-out;
}
#testimonial .owl-nav button:hover {
  background-color: #fff;
}
#testimonial .owl-nav button:hover i {
  transform: scale(0.7);
  color: #000000;
}
#testimonial .follow-wrap {
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
@media (width < 991px) {
  #testimonial .follow-wrap {
    display: none;
  }
}
#testimonial .follow-wrap::after {
  content: "";
  position: absolute;
  top: calc(-39% - 1px);
  height: calc(100% + 270px);
  width: calc(100% + 303px);
  background: linear-gradient(to right, rgba(248, 86, 7, 0.5215686275), rgba(244, 192, 38, 0.5803921569));
  z-index: -1;
  left: 0;
}
#testimonial .follow-wrap .follow-heading {
  padding: 10px 0px;
  text-align: center;
}
#testimonial .follow-wrap .follow-heading span {
  font-size: 20px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
}
#testimonial .follow-wrap .follow-list li {
  margin-bottom: 10px;
  text-align: center;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
#testimonial .follow-wrap .follow-list li.fb {
  background: linear-gradient(#3b5998, #3b5998);
}
#testimonial .follow-wrap .follow-list li.insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
#testimonial .follow-wrap .follow-list li.twit {
  background: linear-gradient(#00acee, #00acee);
}
#testimonial .follow-wrap .follow-list li.pint {
  background: linear-gradient(#c8232c, #c8232c);
}
#testimonial .follow-wrap .follow-list li.yt {
  background: linear-gradient(#c4302b, #c4302b);
}
#testimonial .follow-wrap .follow-list li i {
  font-size: 30px;
  color: #fff;
  margin-right: 10px;
}

#call-to-action {
  background: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
  padding: 40px 0px;
}
#call-to-action .call-to-action-content {
  display: flex;
  justify-content: space-around;
}
#call-to-action .call-to-action-content p {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
}
#call-to-action .call-to-action-content .theme-button::after {
  border: 0.5px solid #fff;
}
@media (width < 991px) {
  #call-to-action .call-to-action-content {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  }
  #call-to-action .call-to-action-content p {
    text-align: center;
    font-size: 25px;
  }
}

#blog {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
}
#blog .blog-card {
  position: relative;
  margin-bottom: 50px;
}
#blog .blog-card img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog-card .card-body {
  position: absolute;
  padding: 20px 10px;
  bottom: -39px;
  background-color: #fff;
  width: 95%;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
#blog .blog-card .card-body h3 {
  color: #000;
  font-size: 18px;
}
@media (width < 767px) {
  #blog .blog-card .card-body h3 {
    font-size: 16px;
  }
}

.partner-wrap .partner-img {
  padding: 10px;
}
.partner-wrap .partner-img img {
  width: 100%;
  height: 10rem;
  opacity: 0.6;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width < 767px) {
  .partner-wrap .partner-img img {
    height: auto;
  }
}

.video-slider {
  height: 100%;
  padding: 0px;
  margin: 0;
  overflow: hidden;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
.video-slider iframe {
  border: 0;
  position: relative;
  top: 3px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media (width < 991px) {
  .video-slider iframe {
    height: 300px;
  }
}

.video-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 30px;
}
.video-content .video-button {
  margin-top: 20px;
}
@media (width < 991px) {
  .video-content {
    padding: 20px 0;
  }
}

#home-contact {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
}
#home-contact .contact-info {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
#home-contact .contact-info h2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
  font-size: 28px;
  background-color: #fff;
  padding: 15px 0px;
  color: #f85607;
}
#home-contact .contact-info .wrap-outer {
  padding: 31px 10px;
  background-color: #fff;
}
#home-contact .contact-info .wrap-outer .contact-wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
#home-contact .contact-info .wrap-outer .contact-wrap .contact-icon {
  background-color: #fff;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#home-contact .contact-info .wrap-outer .contact-wrap .contact-icon i {
  font-size: 20px;
  color: #f85607;
  transition: 0.5s ease-in-out;
}
#home-contact .contact-info .wrap-outer .contact-wrap span {
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 25px;
  font-family: "Cormorant Garamond", serif;
}
@media (width < 767px) {
  #home-contact .contact-info .wrap-outer .contact-wrap span {
    font-size: 20px;
  }
}
@media (width < 575px) {
  #home-contact .contact-info .wrap-outer .contact-wrap span {
    font-size: 18px;
  }
}
#home-contact .contact-info .wrap-outer .contact-wrap .address {
  color: #f85607;
  display: flex;
  flex-flow: column;
  gap: 4px;
}
#home-contact .contact-info .wrap-outer .contact-wrap .address a {
  transition: 0.5s ease-in-out;
  color: #f85607;
}
#home-contact .contact-info .wrap-outer .contact-wrap .address a:hover {
  color: #000;
}
#home-contact .contact-info .wrap-outer .contact-wrap:hover .contact-icon {
  background-color: #f85607;
  transform: scale(0.6);
}
#home-contact .contact-info .wrap-outer .contact-wrap:hover .contact-icon i {
  color: #fff;
}
#home-contact .form-outer-wrap {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  height: 100%;
  background-color: #fff;
}
#home-contact .form-outer-wrap h2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
  font-size: 25px;
  background-color: #fff;
  padding: 15px 0px;
  color: #f85607;
}
#home-contact .form-outer-wrap .form-wrap {
  padding: 20px;
  height: 100%;
}
#home-contact .form-outer-wrap .form-wrap form .form-button {
  padding: 10px 0px;
  margin-top: 20px;
}

form label {
  margin-bottom: 8px;
}
form .form-control {
  border-radius: 0px;
  resize: none;
  background: transparent;
  border: none;
  border: 1px solid #cbc5c5;
  margin-bottom: 15px;
}
form .form-control:focus {
  border-color: #f85607;
  box-shadow: none;
}

.footer-map {
  height: 400px;
  display: flex;
  flex-flow: column;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 40px 0px 0px;
  background-color: #fff;
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
  z-index: -1;
  opacity: 0.4;
}
footer .footer-logo-wrap {
  padding: 0px 20px;
}
footer .footer-logo-wrap .footer-logo {
  margin-bottom: 20px;
}
footer .footer-logo-wrap .footer-content {
  margin-bottom: 20px;
}
footer .footer-logo-wrap .footer-content p {
  color: #000000;
}
footer .footer-logo-wrap .footer-social-icons {
  display: flex;
}
footer .footer-logo-wrap .footer-social-icons li {
  margin-right: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f85607;
  transition: 0.5s ease-in-out;
}
footer .footer-logo-wrap .footer-social-icons li a {
  color: #ffffff;
  transition: 0.5s ease-in-out;
}
footer .footer-logo-wrap .footer-social-icons li a i {
  font-size: 16px;
}
footer .footer-logo-wrap .footer-social-icons li:hover {
  background-color: #fff;
}
footer .footer-logo-wrap .footer-social-icons li:hover a {
  transform: scale(0.8);
  color: #f85607;
}
footer .footer-menu .footer-heading {
  text-transform: capitalize;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
  font-size: 25px;
  color: #f85607;
  font-weight: 700;
  letter-spacing: 2px;
}
@media (width < 991px) {
  footer .footer-menu .footer-heading {
    font-size: 22px;
  }
}
@media (width < 767px) {
  footer .footer-menu .footer-heading {
    font-size: 18px;
  }
}
footer .footer-menu .footer-links.first {
  text-transform: capitalize;
}
footer .footer-menu .footer-links.second li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  color: #000000;
}
footer .footer-menu .footer-links.second li strong {
  margin-right: 5px;
}
footer .footer-menu .footer-links.second li span:nth-child(1) {
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
}
footer .footer-menu .footer-links li {
  margin-bottom: 10px;
}
footer .footer-menu .footer-links li a {
  color: #000000;
}
footer .footer-menu .footer-links li i {
  margin-right: 10px;
  font-size: 20px;
}
footer .footer-gallery {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
}
footer .footer-gallery .gallery-box {
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
footer .footer-gallery .gallery-box .box-inner {
  width: 100%;
}
footer .footer-gallery .gallery-box .box-inner img {
  border-radius: 5px;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
footer .footer-gallery .gallery-box .hidden-box {
  background: linear-gradient(to right, rgba(248, 86, 7, 0.5215686275), rgba(244, 192, 38, 0.5803921569));
  height: 100%;
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: end;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  transform: rotateY(90deg);
  transition: 0.6s ease-in-out;
}
footer .footer-gallery .gallery-box .hidden-box .hidden-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  transition: 0.5s ease-in-out;
  bottom: 0;
  opacity: 0.3;
}
footer .footer-gallery .gallery-box .hidden-box .hidden-icon a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-gallery .gallery-box .hidden-box .hidden-icon a i {
  color: #f85607;
  font-size: 20px;
}
footer .footer-gallery .gallery-box:hover .hidden-box {
  transform: rotateY(0deg);
}
footer .footer-gallery .gallery-box:hover .hidden-box .hidden-icon {
  bottom: 35%;
  opacity: 1;
}
footer .other-wraper .other-links .lower-heading {
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  display: inline-block;
}
footer .other-wraper .office-address ul li {
  font-size: 13px;
  margin-bottom: 8px;
}
footer .other-wraper .office-address ul li strong {
  margin-right: 8px;
}

.most-search a {
  display: inline-block;
  padding: 0px 5px 0px 0;
  margin-left: 5px;
  font-size: 11px;
  position: relative;
  color: #f85607;
  transition: 0.4s ease;
}
.most-search a:hover {
  color: #000;
}
.most-search a:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 1px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #bdaea7;
}

.gst-list {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.gst-list li {
  font-size: 12px;
}

.payment-banner {
  background-color: #000;
  padding: 15px 10px;
}
.payment-banner .payment-card {
  display: flex;
  justify-content: center;
}
.payment-banner .payment-card li {
  margin-right: 10px;
}
.payment-banner .payment-card li img {
  width: 30px;
  filter: invert;
}
.payment-banner ul {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.payment-banner ul li {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.payment-banner ul li a {
  color: #000;
}

.cont-heading {
  font-size: 20px;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  text-align: center;
  background-color: #f85607;
  color: #fff;
  padding: 10px;
}

.fixed-button {
  position: fixed;
  bottom: 40px;
  z-index: 100;
  left: 20px;
}

.fixed-button-2 {
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  z-index: 100;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fffefe;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.fixed-button-2 i {
  font-size: 30px;
}
@media (width < 767px) {
  .fixed-button-2 {
    right: 10px;
    width: 35px;
    height: 35px;
  }
  .fixed-button-2 i {
    font-size: 25px;
  }
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
.copyright span {
  color: #fff;
  text-transform: capitalize;
  word-spacing: 5px;
}
@media (width < 767px) {
  .copyright span {
    font-size: 12px;
  }
}

#why-us {
  padding: 30px 0px;
  background: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
}
#why-us .why-us-wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#why-us .why-us-wrap .why-us-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#why-us .why-us-wrap .why-us-icon i {
  font-size: 30px;
  color: #f85607;
}
@media (width < 991px) {
  #why-us .why-us-wrap .why-us-icon {
    width: 60px;
    height: 60px;
  }
  #why-us .why-us-wrap .why-us-icon i {
    font-size: 20px;
  }
}
#why-us .why-us-wrap .why-heading {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
  color: #fff;
}
#why-us .why-us-wrap .why-heading::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 4rem;
  background-color: #fff;
}
@media (width < 991px) {
  #why-us .why-us-wrap .why-heading {
    font-size: 16px;
  }
}
@media (width < 575px) {
  #why-us .why-us-wrap .why-heading {
    font-size: 14px;
  }
}
#why-us p {
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
}

.breadcrumb-banner {
  height: 15rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0.51), rgba(0, 0, 0, 0.38)), url(../img/breadcrumb-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media (width < 767px) {
  .breadcrumb-banner {
    height: 10rem;
  }
}
.breadcrumb-banner .breadcrumb-wrap h1 {
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  color: #ffffff;
}
.breadcrumb-banner .breadcrumb-wrap .breadcrumb-nav {
  padding: 10px 0px;
}
.breadcrumb-banner .breadcrumb-wrap .breadcrumb-nav span {
  margin-right: 10px;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
}
.breadcrumb-banner .breadcrumb-wrap .breadcrumb-nav span a {
  color: #fff;
}
.breadcrumb-banner .breadcrumb-wrap .breadcrumb-nav span a:hover {
  color: #cfa7a7;
}

.product-bg {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
}

#item-page .heading {
  margin-bottom: 10px;
}
#item-page .discription {
  position: relative;
  text-align: left;
  padding: 10px 0px;
}
#item-page .discription strong {
  color: #f85607;
}
#item-page .tab-content {
  position: relative;
}
#item-page .tab-content .tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  height: 0px;
  width: 0px;
  overflow: hidden;
  opacity: 0.5;
  visibility: hidden;
  display: block;
  transition: 0.4s ease;
  transform: scale(0.2);
}
#item-page .tab-content .tab-pane.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  transform: scale(1);
}

#products .heading {
  margin-bottom: 10px;
}
#products .sub-heading {
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  background-color: #f85607;
}
@media (width < 421px) {
  #products .sub-heading {
    flex-flow: column;
    justify-content: center;
  }
}
#products .sub-heading .view-all-button {
  padding: 0px;
}
#products .sub-heading .view-all-button .theme-button {
  padding: 0;
}
#products .sub-heading::after {
  display: none;
}
#products .sub-heading .main-heading {
  justify-content: start;
  color: #ffffff;
}
@media (width < 991px) {
  #products .sub-heading .main-heading {
    font-size: 20px;
    text-align: center;
  }
}
@media (width < 767px) {
  #products .sub-heading .main-heading {
    font-size: 18px;
  }
}
@media (width < 575px) {
  #products .sub-heading .main-heading {
    font-size: 16px;
  }
}
#products .discription {
  position: relative;
  text-align: left;
  padding: 10px 0px;
}
#products .item-card-wrapper {
  margin-top: 0px;
}

.item-card-wrapper {
  margin-bottom: 30px;
  transition: 0.5s ease-in-out;
}
.item-card-wrapper .item-card {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.item-card-wrapper .item-card .item-head {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.item-card-wrapper .item-card .item-head img {
  transition: 0.5s ease-in-out;
  width: 100%;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-card-wrapper .item-card .item-head .discount-strip {
  position: absolute;
  top: 5px;
  left: -10px;
  width: 50%;
  margin: auto;
  text-align: center;
  background-color: #f85607;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.item-card-wrapper .item-card .item-head .discount-strip::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 8px;
  width: 11px;
  z-index: -1;
  top: 0;
  bottom: -29px;
  margin: auto;
  transform: skew(0deg, 32deg);
  background-color: #f85607;
}
.item-card-wrapper .item-card .item-head .discount-strip::after {
  content: "";
  position: absolute;
  right: -7px;
  height: 100%;
  width: 20px;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  border-bottom: 13px solid #f85607;
  border-top: 14px solid #f85607;
  border-right: 7px solid transparent;
}
.item-card-wrapper .item-card .item-head .discount-strip span {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
.item-card-wrapper .item-card .item-head .discount-strip span:nth-child(1) {
  font-size: 18px;
}
.item-card-wrapper .item-card .item-head .discount-strip span:nth-child(2) {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.item-card-wrapper .item-card .item-content {
  background-color: #e9e9e9;
  padding: 15px 11px;
}
.item-card-wrapper .item-card .item-content .item-name {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  height: 100%;
}
.item-card-wrapper .item-card .item-content .item-name h2 {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.item-card-wrapper .item-card .item-content .item-name h2 a {
  color: #000;
}
.item-card-wrapper .item-card .item-content .button-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item-card-wrapper .item-card .item-content .button-wrap .prize {
  display: flex;
  align-items: center;
}
.item-card-wrapper .item-card .item-content .button-wrap .prize span {
  font-size: 16px;
  margin-right: 10px;
  color: #f85607;
}
.item-card-wrapper .item-card .item-content .button-wrap .prize span i {
  margin-right: 5px;
}
.item-card-wrapper .item-card .item-content .button-wrap .item-card-button {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  padding: 15px 0px;
}
.item-card-wrapper .item-card .item-content .button-wrap .item-card-button .theme-button {
  font-size: 14px;
  padding: 5px 10px;
  text-align: center;
}
.item-card-wrapper:hover .item-head img {
  transform: scale(1.1);
}

#product-detail {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
}
#product-detail .product-wrap .product-left-img {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
#product-detail .product-wrap .product-left-img img {
  transition: 0.5s ease-in-out;
  width: 100%;
}
#product-detail .product-wrap .product-left-img:hover img {
  transform: scale(1.2);
}
@media (width < 991px) {
  #product-detail .product-wrap .product-left-img {
    height: 300px;
    background: #fff;
  }
  #product-detail .product-wrap .product-left-img img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
  }
}
#product-detail .product-wrap .product-discription {
  background-color: #fff;
  padding: 30px;
  margin-top: 30px;
}
#product-detail .product-wrap .product-discription h2 {
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
#product-detail .product-wrap .product-discription h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: #000;
  height: 1px;
  width: 3rem;
}
@media (width < 991px) {
  #product-detail .product-wrap .product-discription h2 {
    font-size: 16px;
  }
}
#product-detail .product-wrap .product-discription .discription-content {
  margin-bottom: 20px;
}
#product-detail .product-wrap .product-discription .para {
  margin-bottom: 0;
}
#product-detail .product-wrap .product-discription .para strong {
  text-transform: capitalize;
}
#product-detail .product-wrap .product-discription .list-wrap .detail-list li {
  margin-bottom: 10px;
}
#product-detail .product-wrap .product-discription .list-wrap .detail-list li span:nth-child(1) {
  margin-right: 10px;
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
}
#product-detail .product-right {
  padding: 0px 20px;
  height: 100%;
}
@media (width < 991px) {
  #product-detail .product-right {
    padding: 20px 0;
  }
}
#product-detail .product-right .discount-banner {
  background: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  align-items: center;
}
#product-detail .product-right .discount-banner span {
  font-size: 25px;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  margin: 0px 10px;
  color: #ffffff;
  font-weight: 600;
}
#product-detail .product-right .product-cost {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  padding: 10px 0px;
  flex-flow: column;
  text-transform: capitalize;
}
#product-detail .product-right .product-cost span {
  font-size: 16px;
}
#product-detail .product-right .product-cost span:nth-child(1) {
  font-size: 25px;
  margin-right: 10px;
}
#product-detail .product-right .warranty {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 40px;
  padding: 10px 0px;
  position: relative;
}
#product-detail .product-right .warranty::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.5px solid #f85607;
  opacity: 0.3;
}
#product-detail .product-right .warranty span {
  font-size: 28px;
  color: #f85607;
  display: flex;
  justify-content: center;
}
#product-detail .product-right .warranty .inner-wrap {
  padding: 10px 0px;
  text-align: center;
}
#product-detail .product-right .warranty .inner-wrap p {
  font-size: 12px;
}
#product-detail .product-right .warranty .inner-wrap p strong {
  margin-right: 5px;
}
@media (width < 991px) {
  #product-detail .product-right .warranty .inner-wrap p {
    font-size: 15px;
  }
}
#product-detail .product-right .warranty button {
  padding: 3px 8px;
  font-size: 10px;
}
#product-detail .why-us-wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 40px;
}
#product-detail .why-us-wrap .why-us-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#product-detail .why-us-wrap .why-us-icon i {
  font-size: 20px;
  color: #f85607;
}
#product-detail .why-us-wrap h2 {
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  color: #000000;
  font-weight: 600;
}
#product-detail .why-us-wrap h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 4rem;
  background-color: #fff;
}
#product-detail .why-us-wrap p {
  text-transform: capitalize;
  color: #000000;
  font-size: 13px;
}
#product-detail .form-outer-wrap {
  margin-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  position: sticky;
  top: 130px;
}
#product-detail .form-outer-wrap .service-form-heading {
  display: block;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
  font-weight: 600;
  background-color: #e9e9e9;
  padding: 10px 0px;
}
@media (width < 767px) {
  #product-detail .form-outer-wrap .service-form-heading {
    font-size: 18px;
  }
}
#product-detail .form-outer-wrap .form-wrap {
  padding: 20px;
}

.coming-soon-wrap {
  width: 100%;
  height: 30rem;
  display: flex;
  flex-flow: column;
  justify-content: end;
  align-items: end;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: url(../img/product/coming-soon.jpg) no-repeat;
  background-size: cover;
  background-position: center 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.coming-soon-wrap span {
  font-size: 40px;
  letter-spacing: 2px;
}

#similar-product {
  display: none;
}

.similar-product-gallery a {
  color: #000;
}
.similar-product-gallery .similar-img {
  display: flex;
  justify-content: center;
  flex-flow: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.similar-product-gallery .similar-img .similar-content {
  background-color: #f85607;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
  padding: 10px 0px;
}

.work .work-image {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.work .work-image img {
  transition: 0.5s ease-in-out;
}
.work .work-image:hover img {
  transform: scale(1.1);
}
.work .content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.work .content .content-wrap {
  margin-bottom: 20px;
  margin-top: 20px;
}
.work .content .content-wrap .sub-heading {
  margin-bottom: 10px;
  padding: 0;
}
.work .content .content-wrap .sub-heading .main-heading {
  justify-content: start;
  color: #000;
  padding: 0;
  text-transform: capitalize !important;
}
.work .content .content-wrap .sub-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 2rem;
  background-color: #000;
}
.work p {
  line-height: 2;
}

#how-we-do {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(242, 182, 72, 0.24)), url(../img/client/service_bg.jpg);
}

.modal {
  z-index: 9999;
}

.mail-response {
  font-size: 16px;
}

.modal-content .modal-header {
  padding: 6px 10px;
  background: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
}
.modal-content .modal-header .modal-title {
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
  color: #fff;
  font-size: 28px !important;
}
.modal-content .modal-header button:focus {
  border: none;
  box-shadow: none;
}

.accordion .accordion-item {
  margin-bottom: 30px;
}
.accordion .accordion-item .accordion-header button {
  background: #e9e9e9;
  color: #000000;
  font-size: 18px;
}
@media (width < 991px) {
  .accordion .accordion-item .accordion-header button {
    font-size: 16px;
  }
}
@media (width < 767px) {
  .accordion .accordion-item .accordion-header button {
    font-size: 15px;
    line-height: 1.4;
  }
}
.accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

.whatsapp-wrap {
  position: absolute;
  right: 17px;
  width: 15rem;
  bottom: 62px;
  z-index: 999;
  transition: 0.6s ease-in-out;
  transform: translateX(500px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
}
.whatsapp-wrap.show {
  transform: translateX(0px);
}
.whatsapp-wrap span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(to right, rgb(248, 86, 7), rgba(248, 86, 7, 0.8196078431), rgb(244, 192, 39));
  text-align: center;
  text-transform: capitalize;
  display: block;
}
.whatsapp-wrap .contact-list {
  padding: 20px 0px 0px 20px;
}
.whatsapp-wrap .contact-list li {
  margin-bottom: 20px;
}
.whatsapp-wrap .contact-list li a {
  color: #000000;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.whatsapp-wrap .contact-list li a span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f85607;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.whatsapp-wrap .contact-list li a span i {
  font-size: 20px;
  color: #fff;
}

.item-navbar {
  margin-top: 15px;
  margin-bottom: 30px;
}
.item-navbar .nav {
  border-bottom: none;
  justify-content: space-around;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
}
.item-navbar .nav .nav-item {
  flex-grow: 1;
  white-space: nowrap;
}
.item-navbar .nav .nav-item button {
  color: #f85607;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 8px 15px;
  letter-spacing: 1px;
  border-radius: 30px;
}
.item-navbar .nav .nav-item button#dropOne {
  width: 4rem;
}
.item-navbar .nav .nav-item button:hover {
  background-color: #e9e9e9;
  color: #000000;
  border: 1px solid #e9e9e9;
}
.item-navbar .nav .nav-item button.active {
  border: 1px solid #e9e9e9;
  background-color: #e9e9e9;
  color: #000000;
}

@media (width < 1400px) {
  header .navbar {
    padding: 9px 12px;
  }
  header nav .navbar-nav .nav-item {
    margin: 0px 10px;
  }
  header nav .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0;
  }
  .product-nav .items li a {
    font-size: 14px;
  }
}
@media (width < 1080px) {
  header .navbar-brand {
    width: 100px;
  }
  header .nav .navbar-nav .nav-item {
    margin: 0 4px;
  }
}
@media (width < 991px) {
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler:focus {
    outline: none;
    border: none;
    box-shadow: none;
  }
  header .top-nav-img {
    display: inline-block;
    margin-bottom: 10px;
  }
  header .head-button {
    display: inline-block;
    margin-bottom: 10px;
  }
  header nav .navbar-nav {
    align-items: start;
    margin: 20px 0 0;
  }
  header nav .navbar-nav .nav-item {
    padding: 10px 0;
  }
}
@media (width < 767px) {
  header .product-nav .items {
    gap: 30px;
  }
  header .product-nav .items li a {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */