@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tourney:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url("bootstrap-icons.min.css");
body {
  font-family: "Roboto", sans-serif !important;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #000000;
}

:root {
  --darkcolor: #221f1f;
  --darkcolor1: #3d3a3a;
  --orangecolor: #e65e0d;
  --orangecolor1: #e88448;
  --lightorange: #FEEFE7;
  --lightcolor: #E6E6E6;
  --lightcolor1: #F2F2F2;
  --white: #FFFFFF;
  --font16: 16px;
  --font18: 18px;
  --font20: 20px;
  --font22: 22px;
  --font24: 24px;
  --font26: 26px;
  --font28: 28px;
  --font32: 32px;
  --font36: 36px;
  --font44: 44px;
  --font50: 50px;
  --font72: 72px;
}

h2 {
  color: #000;
  font-weight: 600;
  margin: 0;
  font-size: var(--font44);
}
@media only screen and (max-width: 1199px) {
  h2 {
    font-size: var(--font32);
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: var(--font26);
  }
}

a {
  color: var(--orangecolor);
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
}

.btn-outline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  padding: 15px 23px;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  color: #FFF;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  .btn-outline {
    padding: 10px 15px;
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .btn-outline {
    padding: 8px 12px;
    font-size: 15px;
  }
}
.btn-outline:hover {
  background: var(--orangecolor);
  border-color: var(--orangecolor);
}

.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  background: #333;
  z-index: 9999;
}
.page-loader .spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
.page-loader img {
  position: relative;
  top: 35%;
  margin: 0 auto;
  display: block;
}
.page-loader .txt {
  color: #666;
  text-align: center;
  top: 40%;
  text-transform: uppercase;
  font-size: 22px;
  position: relative;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
}
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sec-heading {
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .sec-heading {
    margin-bottom: 15px;
  }
}

header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: #FFFFFF;
}
header .site-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1199px) {
  header .site-options {
    gap: 10px;
  }
}
@media (max-width: 400px) {
  header .site-options {
    gap: 5px;
  }
}
header .site-options a {
  background: var(--lightorange);
  border: 1px solid #FCDFCF;
  border-radius: 50px;
  padding: 8px 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  position: relative;
}
@media (max-width: 991px) {
  header .site-options a {
    padding: 8px 13px !important;
    font-size: 14px;
  }
}
header .site-options a:after {
  content: "\f285";
  font-family: bootstrap-icons !important;
  font-size: 12px;
  display: inline-block;
  color: var(--orangecolor);
  margin-left: 10px;
  font-weight: 600;
}
@media (max-width: 991px) {
  header .site-options a:after {
    margin-left: 5px;
  }
}
header .top-bar {
  padding: 16px 0;
  transition: padding 0.5s ease-in-out;
}
@media (max-width: 1199px) {
  header .top-bar {
    padding: 16px 0 0;
  }
}
@media (max-width: 767px) {
  header .top-bar {
    padding: 10px 0 0;
  }
}
header .top-bar .container {
  display: flex;
  justify-content: flex-end;
}
header .top-bar .drop-downlist {
  position: relative;
  margin-left: 15px;
}
@media (max-width: 991px) {
  header .top-bar .drop-downlist {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  header .top-bar .drop-downlist {
    margin-left: 8px;
  }
}
@media (max-width: 414px) {
  header .top-bar .drop-downlist {
    margin-left: 0.3rem;
  }
}
header .top-bar .drop-downlist .dropdown-toggle {
  border-radius: 30px;
  border: 1px solid var(--lightcolor);
  background-color: transparent;
  font-size: 16px;
  color: #000000;
  text-align: center;
  line-height: 100%;
  min-width: 186px;
  padding: 0.5rem 2.5rem 0.5rem 1.4rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23E65E0D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 90% center;
  background-size: 12px;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header .top-bar .drop-downlist .dropdown-toggle {
    font-size: 14px;
    min-width: 170px;
  }
}
header .top-bar .drop-downlist .dropdown-toggle::after {
  content: none;
}
header .top-bar .drop-downlist .dropdown-toggle img {
  margin-right: 10px;
}
header .top-bar .drop-downlist .dropdown-menu {
  background: var(--lightorange);
  border-radius: 10px;
  border-color: rgba(34, 31, 31, 0.1215686275);
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 767px) {
  header .top-bar .drop-downlist .dropdown-menu {
    padding: 6px 0;
  }
}
header .top-bar .drop-downlist .dropdown-menu:after {
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  background-color: #fdf2ec;
  top: -9px;
  right: 45%;
  border-top: rgba(34, 31, 31, 0.1215686275) solid 1px;
  border-left: rgba(34, 31, 31, 0.1215686275) solid 1px;
  transform: rotate(45deg);
}
header .top-bar .drop-downlist .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(34, 31, 31, 0.1215686275);
}
header .top-bar .drop-downlist .dropdown-menu li a {
  font-size: 14px;
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}
header .top-bar .drop-downlist .dropdown-menu li a:hover {
  background-color: transparent;
  color: var(--orangecolor);
}
@media (max-width: 767px) {
  header .top-bar .drop-downlist .dropdown-menu li a {
    font-size: 13px;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0.1rem !important;
    padding-bottom: 0.1rem !important;
  }
}
@media (max-width: 1199px) {
  header .top-bar .site-options {
    display: none;
  }
}
header.headerfixed .top-bar {
  padding: 16px 0 0;
}
@media (max-width: 767px) {
  header.headerfixed .top-bar {
    padding: 10px 0 0;
  }
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease-in-out 0s;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: rgb(230, 230, 230) solid 1px;
}
@media only screen and (max-width: 767px) {
  .navbar {
    padding: 10px 0;
  }
}
.navbar.headerfixed {
  /*  backdrop-filter: blur(7.5px); */
  padding: 0.8rem 0;
}
.navbar .navbar-brand {
  max-width: 170px;
  margin-right: 0;
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  .navbar .navbar-brand {
    max-width: 125px !important;
  }
}
@media only screen and (max-width: 360px) {
  .navbar .navbar-brand {
    max-width: 100px !important;
    margin-right: 0;
  }
}
.navbar ul.navbar-nav li {
  padding: 0 0.8rem !important;
}
@media (max-width: 1399px) {
  .navbar ul.navbar-nav li {
    padding: 0 0.5rem !important;
  }
}
.navbar ul.navbar-nav li a {
  display: inline-block;
  font-size: 17px;
  color: #000000;
  font-weight: 400;
  padding: 0.5rem 0 !important;
  position: relative;
}
.navbar ul.navbar-nav li a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--orangecolor);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.navbar ul.navbar-nav li a:hover:before, .navbar ul.navbar-nav li a.active:before {
  width: 100%;
}
.navbar ul.navbar-nav li:last-child {
  padding-right: 0 !important;
}
.navbar ul.navbar-nav li .caret {
  cursor: pointer;
}
.navbar ul.navbar-nav li .caret:after {
  border-top-width: 0.4em;
  border-right-width: 0.4em;
  border-left-width: 0.4em;
}
@media (max-width: 1199px) {
  .navbar ul.navbar-nav li .caret {
    position: absolute;
    right: 15px;
    top: 10px;
  }
}
.navbar ul.navbar-nav li:hover .dropdown-menu {
  display: block;
}
.navbar ul.navbar-nav .dropdown-menu {
  border-color: var(--lightorange);
  min-width: 290px;
  border-radius: 20px;
  overflow: hidden;
}
.navbar ul.navbar-nav .dropdown-menu li a {
  font-size: var(--font16);
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.navbar .searchbuttons {
  border-radius: 50px !important;
  background: var(--orangecolor1);
  width: 40px;
  height: 40px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .searchbuttons:hover {
  background-color: var(--darkcolor);
}
@media only screen and (max-width: 1199px) {
  .navbar .searchbuttons {
    margin-left: 1rem;
    height: 37px;
    width: 37px;
  }
}
@media only screen and (max-width: 414px) {
  .navbar .searchbuttons {
    margin-left: 0.5rem;
    height: 30px;
    width: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar .searchbuttons img {
    width: 15px;
  }
}
@media only screen and (max-width: 414px) {
  .navbar .searchbuttons img {
    width: 12px;
  }
}
.navbar .navbar-toggler {
  outline: none;
  box-shadow: none;
  margin-left: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
}
.navbar .offcanvas .btn-close:focus {
  box-shadow: none;
}
@media only screen and (max-width: 1399px) {
  .navbar .offcanvas {
    background: var(--lightorange);
  }
  .navbar .offcanvas .offcanvas-header {
    background-color: #fff;
  }
  .navbar .offcanvas .offcanvas-header .navbar-brand img {
    max-width: 110px;
  }
}
.navbar .header-right {
  display: flex;
  align-items: center;
}

.swiper-button-next, .swiper-button-prev {
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
}
@media (max-width: 767px) {
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .hero-sec .swiper {
    height: 320px;
  }
}
.hero-sec .swiper-slide {
  position: relative;
}
.hero-sec .swiper-slide img {
  width: 100%;
}
@media (max-width: 575px) {
  .hero-sec .swiper-slide img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-sec .swiper-slide .content {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.hero-sec .swiper-slide .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-sec .swiper-slide .hero-title {
  font-size: 72px;
  line-height: 1.1;
  color: var(--white);
  font-weight: 700;
  /* font-style: italic; */
  margin-bottom: 50px;
}
@media (max-width: 1400px) {
  .hero-sec .swiper-slide .hero-title {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .hero-sec .swiper-slide .hero-title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero-sec .swiper-slide .hero-title {
    font-size: 30px;
  }
}
@media (max-width: 360px) {
  .hero-sec .swiper-slide .hero-title {
    font-size: 26px;
  }
}
.hero-sec .swiper-slide:nth-child(even) .container {
  align-items: center;
  justify-content: flex-start;
}
.hero-sec .swiper-slide:nth-child(even) .hero-title {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .hero-sec .swiper-slide:nth-child(even) .hero-title {
    margin-left: 30px;
  }
}

.product-divisions {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .product-divisions {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .product-divisions {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .product-divisions .row > div:last-child .pro-item {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .product-divisions .pro-item {
    margin-bottom: 20px;
  }
}
.product-divisions .pro-item .pro-img {
  overflow: hidden;
}
.product-divisions .pro-item .pro-img img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.product-divisions .pro-item .pro-link {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--font20);
  line-height: 1.1;
  color: #000;
}
.product-divisions .pro-item .pro-link:hover {
  color: var(--orangecolor);
}
.product-divisions .pro-item .pro-link:after {
  content: "\f285";
  font-family: bootstrap-icons !important;
  font-size: 12px;
  display: inline-block;
  color: var(--orangecolor);
  margin-left: 10px;
  font-weight: 600;
}
.product-divisions .pro-item:hover .pro-img img {
  scale: 1.1;
}

.service-sec {
  position: relative;
  padding: 0 0 80px;
}
@media (max-width: 991px) {
  .service-sec {
    padding: 0 0 50px;
  }
}
@media (max-width: 767px) {
  .service-sec {
    padding: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .service-sec .row > div {
    margin-bottom: 20px;
  }
}
.service-sec .ser-item {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  padding: 35px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  .service-sec .ser-item {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  .service-sec .ser-item {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .service-sec .ser-item {
    min-height: inherit;
  }
}
@media (max-width: 420px) {
  .service-sec .ser-item {
    padding: 15px;
  }
}
.service-sec .ser-item i {
  font-size: 26px;
}
@media (max-width: 767px) {
  .service-sec .ser-item i {
    font-size: 20px;
  }
}
.service-sec .ser-item i:before {
  font-weight: 700 !important;
}
.service-sec .ser-item img {
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .service-sec .ser-item img {
    max-width: 250px;
  }
}
.service-sec .ser-item:hover img {
  transform: scale(1.1);
}

.spacial-message-sec {
    padding: 70px 0;
    background: url('../jpg/anniversary-70.jpg') no-repeat;
    background-size: cover;
}
@media (max-width: 991px) {
  .spacial-message-sec {
    padding: 50px 20px;
  }
}
.spacial-message-sec .inner-wrap {
  max-width: 845px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  padding: 50px 45px;
}
@media (max-width: 767px) {
  .spacial-message-sec .inner-wrap {
    padding: 30px;
  }
}
.spacial-message-sec .heading {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767px) {
  .spacial-message-sec .heading {
    text-align: center;
    margin-bottom: 20px;
  }
}
.spacial-message-sec .heading span {
  font-family: "Tourney", sans-serif;
  font-size: 131px;
  line-height: 0.9;
  color: var(--orangecolor);
  font-weight: 500;
}
@media (max-width: 991px) {
  .spacial-message-sec .heading span {
    font-size: 78px;
  }
}
.spacial-message-sec .msg-content {
  text-align: center;
}
.spacial-message-sec .msg-content p {
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
}
.spacial-message-sec .msg-content p:last-child {
  margin: 0;
}

.news-sec {
  padding: 100px 0 80px;
}
@media (max-width: 991px) {
  .news-sec {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .news-sec {
    padding: 30px 0;
  }
}
.news-sec .swiper-slide .img-wrap {
  position: relative;
  padding-bottom: 80%;
}
.news-sec .swiper-slide .img-wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230, 94, 13, 0) 0%, rgba(230, 94, 13, 0.7) 100%);
}
.news-sec .swiper-slide .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-sec .swiper-slide .title {
  font-size: var(--font24);
  line-height: 1.2;
  color: var(--white);
  font-weight: 500;
  margin: 0;
  position: absolute;
  bottom: 50px;
  left: 25px;
}
.news-sec .swiper-slide .title a {
  color: var(--white);
}
@media (max-width: 1199px) {
  .news-sec .swiper-slide .title {
    font-size: var(--font20);
    bottom: 30px;
  }
}
@media (max-width: 991px) {
  .news-sec .swiper-slide .title {
    bottom: 15px;
    left: 15px;
  }
}
@media (min-width: 1900px) {
  .news-sec .swiper-button-next {
    right: 262px;
  }
}
@media (min-width: 1700px) {
  .news-sec .swiper-button-prev {
    left: 262px;
  }
}

footer {
  background-color: #f9f9f9;
}
footer .footer-top {
  padding: 30px 0;
  background: var(--lightcolor);
}
@media (max-width: 767px) {
  footer .footer-top {
    padding: 20px 0;
  }
}
footer .footer-top .socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  footer .footer-top .socials {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  footer .footer-top .socials img {
    max-width: 28px;
  }
}
@media (max-width: 380px) {
  footer .footer-top .socials img {
    max-width: 22px;
  }
}
footer .footer-top .socials li {
  margin: 0;
}
footer .footer-main {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  footer .footer-main {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  footer .footer-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
footer .left-call {
  color: #c5c4c4;
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  footer .left-call {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
footer .left-call h5 {
  font-size: var(--font24);
  font-weight: 500;
  color: var(--orangecolor);
  margin-bottom: 3px;
}
@media (max-width: 1199px) {
  footer .left-call h5 {
    font-size: var(--font22);
  }
}
@media (max-width: 767px) {
  footer .left-call h5 {
    font-size: var(--font20);
  }
}
footer .left-call p {
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767px) {
  footer .left-call p {
    font-size: 12px;
  }
}
footer .left-call span {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50px;
  background: #fff url(../svg/icon-phone.svg) center no-repeat;
  display: inline-block;
  margin-right: 0.8rem;
}
@media (max-width: 1199px) {
  footer .left-call span {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background-size: 25px;
  }
}
@media (max-width: 767px) {
  footer .left-call span {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-size: 24px;
  }
}
footer .f-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  footer .f-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  footer ul.quick-links {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  footer ul.quick-links {
    -moz-column-count: 2;
         column-count: 2;
  }
}
footer ul li {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  footer ul li {
    margin-bottom: 10px;
  }
}
footer ul li a {
  font-size: 17px;
  line-height: 20px;
  color: #000000;
  transition: all 0.4s;
}
footer ul li a:hover {
  color: var(--orangecolor);
}
footer .copyright {
  border-top: 1px solid var(--lightcolor);
  padding: 30px 0;
}
@media (max-width: 991px) {
  footer .copyright {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  footer .copyright {
    padding: 15px 0;
  }
}
footer .copyright p {
  font-size: 17px;
  line-height: 20px;
  color: #333333;
  margin: 0;
}
@media (max-width: 991px) {
  footer .copyright p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer .copyright p {
    font-size: 15px;
  }
}
footer .copyright ul {
  display: flex;
  align-items: center;
}
footer .copyright ul li {
  margin: 0;
}
footer .copyright ul li a {
  font-size: 17px;
  line-height: 20px;
  color: #333333;
}
@media (max-width: 767px) {
  footer .copyright ul li a {
    font-size: 15px;
  }
}
footer .copyright ul.legal-links {
  justify-content: flex-end;
}
@media (max-width: 575px) {
  footer .copyright ul.legal-links {
    justify-content: center;
  }
}
footer .copyright ul.legal-links li:not(:first-child) {
  margin-left: 24px;
}
@media (max-width: 767px) {
  footer .copyright ul.legal-links li:not(:first-child) {
    margin-left: 6px;
  }
}
@media (max-width: 991px) {
  footer .copyright .col-lg-4:first-child {
    order: 3;
  }
}

/*======= Product Detail Page ======*/
.product-details-main .pro-gallery {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-details-main .pro-gallery {
    margin-bottom: 30px;
  }
}
.product-details-main .pro-gallery .swiper-wrapper {
  align-items: center;
}
.product-details-main .pro-gallery .gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}
.product-details-main .pro-gallery .swiper-slide {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-details-main .pro-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.product-details-main .pro-gallery .gallery-thumbs {
  position: relative;
  width: 100%;
  padding: 0 2rem;
  max-width: 690px;
  margin-right: 0;
}
.product-details-main .pro-gallery .gallery-thumbs .swiper-slide {
  width: auto;
  text-align: center;
  overflow: hidden;
  border: 2px solid transparent;
  min-height: 160px;
  padding: 5px;
}
@media (max-width: 1199px) {
  .product-details-main .pro-gallery .gallery-thumbs .swiper-slide {
    min-height: 110px;
  }
}
@media (max-width: 767px) {
  .product-details-main .pro-gallery .gallery-thumbs .swiper-slide {
    min-height: 120px;
  }
}
@media (max-width: 340px) {
  .product-details-main .pro-gallery .gallery-thumbs .swiper-slide {
    min-height: 100px;
  }
}
.product-details-main .pro-gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--orangecolor);
}
.product-details-main .pro-gallery .gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-details-main .pro-gallery .swiper-button-next, .product-details-main .pro-gallery .swiper-button-prev {
  background: transparent;
  color: var(--orangecolor);
  width: 20px;
  height: 20px;
  top: 55%;
  box-shadow: none;
}
.product-details-main .pro-gallery .swiper-button-prev {
  left: 0;
}
.product-details-main .pro-gallery .swiper-button-next {
  right: 0;
}
.product-details-main .pro-main-img {
  min-height: 648px;
  background-color: var(--lightcolor1);
  border: 1px solid var(--lightcolor);
  border-radius: 24px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .product-details-main .pro-main-img {
    min-height: 520px;
  }
}
@media (max-width: 991px) {
  .product-details-main .pro-main-img {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .product-details-main .pro-main-img {
    min-height: 480px;
  }
}
@media (max-width: 380px) {
  .product-details-main .pro-main-img {
    min-height: 380px;
  }
}
.product-details-main .pro-main-img:after {
  content: "";
  width: 50%;
  height: 50%;
  background-color: var(--lightcolor);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.product-details-main .pro-main-img:before {
  content: "YAESU";
  position: absolute;
  top: 35%;
  left: -70px;
  font-size: 174px;
  line-height: 1.2;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
  transform: rotate(-90deg) translateY(-50%);
}
@media (max-width: 1199px) {
  .product-details-main .pro-main-img:before {
    font-size: 130px;
  }
}
.product-details-main .pro-main-img .img-wrap {
  z-index: 11;
}
.product-details-main .pro-details {
  margin-bottom: 25px;
  height: auto;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .product-details-main .pro-details {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.product-details-main .pro-details .pro-details-left, .product-details-main .pro-details .pro-detail-right {
  padding: 30px;
  border-radius: 12px;
  background: #FBFBFB;
  border: 1px solid #E6E6E6;
}
@media (max-width: 767px) {
  .product-details-main .pro-details .pro-details-left, .product-details-main .pro-details .pro-detail-right {
    padding: 15px;
  }
}
.product-details-main .pro-details .pro-detail-right {
  background: transparent;
}
@media (max-width: 991px) {
  .product-details-main .pro-details .pro-detail-right {
    margin-top: 25px;
  }
}
.product-details-main .pro-details .pro-heading h1 {
  font-size: 56px;
  line-height: 1.2;
  color: var(--orangecolor);
  font-weight: 700;
}
@media (max-width: 1199px) {
  .product-details-main .pro-details .pro-heading h1 {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .product-details-main .pro-details .pro-heading h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .product-details-main .pro-details .pro-heading h1 {
    font-size: 32px;
  }
}
.product-details-main .pro-details .pro-heading span {
  display: block;
  font-size: 17px;
  line-height: 1.7;
  color: #999999;
  font-weight: 500;
}
@media (max-width: 575px) {
  .product-details-main .pro-details .pro-heading span {
    font-size: 16px;
  }
}
.product-details-main .pro-details .pro-heading p {
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  margin: 22px 0 15px;
}
@media (max-width: 1199px) {
  .product-details-main .pro-details .pro-heading p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .product-details-main .pro-details .pro-heading p {
    font-size: 18px;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .product-details-main .pro-details .pro-heading p {
    font-size: 17px;
  }
}
.product-details-main .pro-details .test-data-wrap {
  margin-bottom: 24px;
}
.product-details-main .pro-details .test-data-wrap a {
  border-color: #FCDFCF;
  border-width: 1px;
  color: var(--orangecolor);
  font-size: 17px;
  font-weight: 400;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .product-details-main .pro-details .test-data-wrap a {
    padding: 12px 15px;
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  .product-details-main .pro-details .test-data-wrap a {
    padding: 8px 8px;
    font-size: 12px;
  }
}
.product-details-main .pro-details .test-data-wrap a svg {
  margin-right: 8px;
}
.product-details-main .pro-details .test-data-wrap a:after {
  content: "\f285";
  font-family: bootstrap-icons;
  color: #999999;
  font-size: 13px;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 15px;
}
.product-details-main .pro-details .test-data-wrap a:hover {
  color: white;
}
.product-details-main .pro-details .test-data-wrap a:hover svg path {
  stroke: white;
}
.product-details-main .pro-details .test-data-wrap a:hover:after {
  color: white;
}
.product-details-main .pro-details .pro-desc {
  padding-top: 20px;
  border-top: 1px solid var(--lightcolor);
}
@media (max-width: 991px) {
  .product-details-main .pro-details .pro-desc {
    margin-bottom: 0;
  }
}
.product-details-main .pro-details .pro-desc p {
  font-size: 18px;
  line-height: 1.7;
  color: #221F1F;
  margin-bottom: 20px;
}
.product-details-main .pro-details .pro-desc p span {
  font-weight: 500;
}
.product-details-main .pro-details .pro-desc p:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .product-details-main .pro-details .pro-desc p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.product-details-main .pro-details .conatct-wrap label {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .product-details-main .pro-details .conatct-wrap label {
    font-size: 17px;
  }
}
.product-details-main .pro-details .conatct-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-details-main .pro-details .conatct-wrap ul li {
  font-size: 17px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .product-details-main .pro-details .conatct-wrap ul li {
    font-size: 15px;
  }
}
@media (max-width: 420px) {
  .product-details-main .pro-details .conatct-wrap ul li {
    margin-bottom: 10px;
  }
}
.product-details-main .pro-details .conatct-wrap ul li a {
  color: #000000;
}
.product-details-main .pro-details .conatct-wrap ul li i {
  color: var(--orangecolor);
  margin-right: 12px;
  font-size: 22px;
}
.product-details-main .pro-details .conatct-wrap ul li i:before {
  font-weight: 600 !important;
}
.product-details-main .pro-details .note {
  font-size: 16px;
  line-height: 1.3;
  color: #BE0100;
  font-weight: 500;
  margin: 12px 0 0;
}
@media (max-width: 767px) {
  .product-details-main .pro-details .note {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .product-details-main .pro-details .note {
    font-size: 14px;
  }
}

.product-additional-details {
  position: relative;
  padding: 50px 0 55px;
}
@media (max-width: 991px) {
  .product-additional-details {
    background-size: 100%;
    padding: 50px 0 50px;
  }
}
@media (max-width: 767px) {
  .product-additional-details {
    padding: 30px 0;
  }
}
.product-additional-details .nav-tabs {
  border: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--lightcolor);
  margin-bottom: 30px;
}
.product-additional-details .nav-tabs .nav-item {
  margin-right: 12px;
}
@media (max-width: 449px) {
  .product-additional-details .nav-tabs .nav-item {
    margin-right: 5px;
  }
}
.product-additional-details .nav-tabs .nav-link {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  color: #000000;
  border: 2px solid var(--lightcolor1);
  padding: 15px;
  min-width: 200px;
  transition: all 0.5s;
  background: var(--lightcolor1);
  border-radius: 0;
}
@media (max-width: 991px) {
  .product-additional-details .nav-tabs .nav-link {
    padding: 10px;
    min-width: 150px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .product-additional-details .nav-tabs .nav-link {
    padding: 7px;
    min-width: 130px;
    font-size: 14px;
  }
}
@media (max-width: 449px) {
  .product-additional-details .nav-tabs .nav-link {
    padding: 5px;
    min-width: 120px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .product-additional-details .nav-tabs .nav-link {
    min-width: inherit;
    padding: 6px 15px;
  }
}
@media (max-width: 326px) {
  .product-additional-details .nav-tabs .nav-link {
    padding: 6px 12px;
  }
}
.product-additional-details .nav-tabs .nav-link.active {
  background: var(--orangecolor);
  color: #FFFFFF !important;
  border-color: var(--orangecolor);
}
.product-additional-details .nav-tabs .nav-link:hover {
  color: #FFFFFF;
  border-color: var(--orangecolor);
  background: var(--orangecolor);
}
.product-additional-details .card {
  padding: 24px;
  border-radius: 16px;
  border-color: var(--lightcolor);
  margin-bottom: 25px;
  height: auto;
}
@media (max-width: 767px) {
  .product-additional-details .card {
    padding: 15px;
  }
}
.product-additional-details .card:not(:last-child) {
  margin-bottom: 25px;
}
.product-additional-details .content p, .product-additional-details .content label {
  font-size: 17px;
  line-height: 1.67;
  color: #000000;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .product-additional-details .content p, .product-additional-details .content label {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.product-additional-details .content label {
  display: block;
  color: #666666;
}
.product-additional-details .content hr {
  border-top-color: var(--lightcolor);
  margin: 10px 0;
  opacity: 1;
}
.product-additional-details .content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.product-additional-details .content ul li {
  width: calc(25% - 10px);
  margin: 0 5px 10px;
  border: 1px solid var(--lightcolor);
  padding: 16px 30px;
  font-size: 17px;
  line-height: 1.64;
  color: #000;
  font-weight: 500;
}
@media (max-width: 767px) {
  .product-additional-details .content ul li {
    font-size: 16px;
    padding: 15px;
    width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .product-additional-details .content ul li {
    font-size: 15px;
    padding: 10px;
  }
}
@media (max-width: 420px) {
  .product-additional-details .content ul li {
    width: 100%;
    margin: 0 0 10px;
  }
}
.product-additional-details .content ul.two-col li {
  width: calc(50% - 10px);
}
@media (max-width: 420px) {
  .product-additional-details .content ul.two-col li {
    width: 100%;
    margin: 0 0 10px;
  }
}
.product-additional-details .content span {
  display: inline-block;
  margin: 0 5px 10px;
  border: 1px solid var(--lightcolor);
  padding: 16px 30px;
  font-size: 17px;
  line-height: 1.64;
  color: #000;
  font-weight: 500;
}
@media (max-width: 767px) {
  .product-additional-details .content span {
    font-size: 16px;
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .product-additional-details .content span {
    font-size: 15px;
    padding: 10px;
  }
}
.product-additional-details .supplied-accessories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-additional-details .supplied-accessories li {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
}
.product-additional-details .supplied-accessories li:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .product-additional-details .supplied-accessories li {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .product-additional-details .supplied-accessories li {
    width: 100%;
    margin: 0 0 10px;
  }
}
.product-additional-details .supplied-accessories li span {
  display: inline-block;
  font-size: 17px;
  line-height: 1.65;
  color: #000000;
  font-weight: 500;
}
.product-additional-details .supplied-accessories li p {
  font-size: 17px;
  line-height: 1.65;
  color: #000000;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767px) {
  .product-additional-details .supplied-accessories li p {
    font-size: 16px;
  }
}
.product-additional-details .pro-specifications h6 {
  font-size: 17px;
  line-height: 1.65;
  color: #999999;
  font-weight: 500;
  margin-bottom: 6px;
}
.product-additional-details .pro-specifications ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-additional-details .pro-specifications ul li {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 420px) {
  .product-additional-details .pro-specifications ul li {
    margin: 0 0 10px;
  }
}
.product-additional-details .pro-specifications ul li:last-child {
  margin-bottom: 0;
}
.product-additional-details .pro-specifications ul li span {
  color: #999999;
}
@media (max-width: 767px) {
  .product-additional-details .pro-specifications ul li {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .product-additional-details .pro-specifications ul li {
    font-size: 15px;
  }
}
.product-additional-details .pro-specifications p {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .product-additional-details .pro-specifications p {
    font-size: 16px;
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .product-additional-details .pro-specifications p {
    font-size: 15px;
    padding: 10px;
  }
}

.sub-title {
  position: relative;
  font-size: 44px;
  line-height: 1.2;
  color: #323232;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .sub-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .sub-title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .sub-title {
    font-size: 20px;
  }
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.8);
}

/*------------------Category Page----------------------*/
.breadcrumb-wrap {
  padding: 25px 0;
}
.breadcrumb-wrap.bg-light {
  background: #F2F2F2 !important;
  padding: 15px 0;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 11;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .breadcrumb-wrap {
    padding: 10px 0;
  }
}
.breadcrumb-wrap .breadcrumb {
  margin: 0;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item {
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 991px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item {
    font-size: 11px;
  }
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
  font-weight: 500;
  color: #999;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 15px;
}
@media (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
  }
}
@media (max-width: 375px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 4px;
  }
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "\f285";
  font-family: bootstrap-icons;
  font-size: 12px;
  color: #999;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    padding-right: 8px;
  }
}
@media (max-width: 375px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    padding-right: 4px;
  }
}
@media (max-width: 326px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    font-size: 9px;
  }
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item:last-child:before {
  color: #000;
}

@media (max-width: 767px) {
  .category-slider .swiper {
    height: 40vh;
  }
}
@media (max-width: 420px) {
  .category-slider .swiper {
    height: 25vh;
  }
}
.category-slider .swiper-slide {
  position: relative;
}
.category-slider .swiper-slide img {
  width: 100%;
}
@media (max-width: 767px) {
  .category-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.category-slider .swiper-slide .content {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.category-slider .swiper-slide .content h1 {
  font-size: 72px;
  line-height: 1.3;
  color: var(--orangecolor);
  font-weight: bold;
  margin-bottom: 15px;
  max-width: 650px;
}
@media (max-width: 1199px) {
  .category-slider .swiper-slide .content h1 {
    font-size: 58px;
  }
}
@media (max-width: 991px) {
  .category-slider .swiper-slide .content h1 {
    font-size: 42px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .category-slider .swiper-slide .content h1 {
    font-size: 28px;
    max-width: 300px;
  }
}
.category-slider .swiper-slide .content p {
  font-size: 56px;
  line-height: 1.4;
  color: #180A01;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  max-width: 470px;
}
@media (max-width: 1199px) {
  .category-slider .swiper-slide .content p {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .category-slider .swiper-slide .content p {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .category-slider .swiper-slide .content p {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .category-slider .swiper-slide .content p {
    font-size: 16px;
  }
}
.category-slider .swiper-slide .container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) {
  .category-slider .swiper-slide .container {
    padding: 0 40px;
  }
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .swiper .swiper-button-next, .swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
.swiper .swiper-button-next:after, .swiper .swiper-button-prev:after {
  font-size: 15px;
  color: var(--orangecolor);
  font-weight: bold;
}
@media (max-width: 767px) {
  .swiper .swiper-button-next:after, .swiper .swiper-button-prev:after {
    font-size: 12px;
  }
}
.swiper .swiper-button-prev {
  left: 100px;
}
@media (max-width: 1199px) {
  .swiper .swiper-button-prev {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .swiper .swiper-button-prev {
    left: 10px;
  }
}
.swiper .swiper-button-next {
  right: 100px;
}
@media (max-width: 1199px) {
  .swiper .swiper-button-next {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .swiper .swiper-button-next {
    right: 10px;
  }
}

.about-category-sec {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .about-category-sec {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .about-category-sec {
    padding: 30px 0;
  }
}
.about-category-sec .content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .about-category-sec .content p {
    font-size: 16px;
  }
}
.about-category-sec .content p.bold-text {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #000000;
  margin: 0;
}
@media (max-width: 991px) {
  .about-category-sec .content p.bold-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .about-category-sec .content p.bold-text {
    font-size: 17px;
  }
}

.cat-products-sec {
  padding: 0 0 60px;
}
@media (max-width: 1199px) {
  .cat-products-sec {
    padding: 0 0 30px;
  }
}
.cat-products-sec .sec-heading {
  margin-bottom: 30px;
}
.cat-products-sec .pro-inner {
  position: relative;
  height: 100%;
}
.cat-products-sec .pro-inner h3 {
  font-size: 20px;
  line-height: 23px;
  line-height: normal;
  font-weight: 400;
  margin: 16px 0 0;
  display: inline-block;
}
.cat-products-sec .pro-inner h3 a {
  color: #000000;
  position: relative;
  padding-right: 15px;
}
.cat-products-sec .pro-inner h3 a:hover {
  color: var(--orangecolor);
}
.cat-products-sec .pro-inner h3 a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: solid var(--orangecolor);
  border-width: 2px 2px 0 0;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  right: 0;
}
.cat-products-sec .pro-inner .pro-img {
  text-align: center;
  min-height: 345px;
  background: var(--lightcolor1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 360px) {
  .cat-products-sec .pro-inner .pro-img {
    min-height: 300px;
  }
}
.cat-products-sec .pro-inner .pro-img img {
  transition: all 0.5s;
}
.cat-products-sec .pro-inner .pro-img a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 345px;
}
@media (max-width: 360px) {
  .cat-products-sec .pro-inner .pro-img a {
    min-height: 300px;
  }
}
.cat-products-sec .pro-inner:hover .pro-img img {
  scale: 1.1;
}
.cat-products-sec .pro-inner .btn-outline {
  border-color: var(--orangecolor);
  color: var(--orangecolor);
}
.cat-products-sec .pro-inner .btn-outline:hover {
  color: white;
}
.cat-products-sec .pro-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.cat-products-sec .pro-list .pro-item {
  width: 33.333%;
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cat-products-sec .pro-list .pro-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cat-products-sec .pro-list .pro-item {
    width: 100%;
  }
}
.cat-products-sec .pro-list .pro-item .content {
  position: relative;
  left: -15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cat-products-sec .pro-list .pro-item .content {
    left: inherit;
    align-items: center;
  }
}
.cat-products-sec .pro-list .pro-item .content .pro-img img {
  transition: all 0.5s;
}

.sec-heading {
  position: relative;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .sec-heading {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .sec-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .sec-heading {
    font-size: 30px;
  }
}/*# sourceMappingURL=custom-theme.css.map */