@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --first-color: #231F20;
  --second-color: #F5821F; 
  --third-color: #FFF200; 
}

:root {
  font-size: 0.6rem;
}

body {
  font-family: "Josefin Sans", sans-serif;
}

.container {
  max-width: 1200px;
}

.container-fluid {
  padding: 0 30px;
}

.section-padding {
padding: 40px 0;
}

/* h1,h2,h3,h4,h5,h6 {
  
} */

a,button{
  display: inline-block;
  text-decoration: none;
  
  transition: 0.2s ease-in;
}

i {
  display: inline-block;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

label, input { 
font-family: "Josefin Sans", sans-serif;
}


/* header */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}


.mobile-toggler {
  display: none;
}

.toggler-wrapper {
  text-align: right;
}
.toggler-wrapper a {
  font-size: 25px;
  color: #fff;
}

.top-header {
  padding: 9px 0;
  background-color: #F5821F;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.top-flex p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgb(255 255 255);
  font-weight: 400;
  text-decoration: none;
  transition: .5s ease-in-out;
}

.top-flex p strong {
  /* margin-right: 10px; */
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
  transition: .5s ease-in-out;
  font-weight: 400;
}

.top-flex p a {
  font-size: 13px;
  color: rgb(255 255 255);
  font-weight: 400;
  letter-spacing:0.5px;
}

.top-flex p a:hover {
  color: #fff;
}

.top-flex p i {
  font-size: 14px;
  margin-right: 5px;
}

.header {
  background-color: var(--first-color);
  z-index: 999999;
}

.header-logo  img{
  width: 100%;
}

.menu-links {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-links li a {
  display: block;
  font-size: 17px;
  color: rgba(256, 256, 256, 0.9);
  /* text-transform: uppercase; */
  font-weight: 500;
  padding: 23px 18px;
  letter-spacing: 1px;
  position: relative;
  transition: 0.2s ease-in;
}

.menu-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff200;
  opacity: 0;
}

.menu-links li:hover a::after  {
  opacity: 1;
}

.menu-links li:hover a {
  color: var(--second-color);
  background-color: #2a2a2a;
}

.header-social {
  text-align: center;
  background-color: #2a2a2a;
  padding: 21px 0;
  border-radius: 0 5px 0 0; 
}


.header-social a {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 27px;
  text-align: center;
  background-color: var(--second-color);
  border-radius: 50%;
  margin: 0 7px;
  color: #fff;
  font-size: 13px;
}
/* Off Canvas */


/* Off Canvas */

.offcanvas-header {
  background-color: var(--first-color);
  padding: 10px 30px;
  border-bottom: 1px solid rgba(256,256,256,0.2);
}

.offcanvas-header .bi {
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 0px;
  border-radius: 50%;
  padding: 2px;
  font-size: 20px;
}

.offcanvas-header img {
  width: 150px;
}

.offcanvas-body {
  padding: 30px;
background-color: var(--first-color);
}


.off-search {
  display: flex;
  margin-bottom: 20px;
}

.off-search button {
  background-color: #ddd;
  color: #222;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 15px;
  border-right: 2px solid #ccc;
}
.off-search input {
  border: 2px solid #fff;
  height: 40px;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  background-color: #ffff;
  padding-left: 15px;
}

.off-search input:focus {
  outline: none;
}

.off-search input::placeholder {
  color: rgba(256, 256, 256, 0.7);
}

.off-canvas-navs {

  padding-bottom: 5px;
  margin-bottom: 25px;
}


.off-canvas-navs li a {
  display: block;
  color: rgba(256, 256, 256, 0.8);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(256,256,256,0.2);
  margin-bottom: 15px;
  transition: 0.1s ease-in;
}

.off-canvas-navs li a i {
  margin-right: 15px;
  font-size: 13px;
  float: right;
  margin-top: 3px;
}

.off-canvas-navs li a:hover {
  padding-left: 5px;
  color: #fff;
}

.card-body {
  flex: 1 1 auto;
  padding: 0rem 1rem;
}

.off-contact {

  margin-bottom: 40px;
}

.off-contact h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.off-contact p {
  margin-bottom: 5px;
  font-size: 15px;
  color: rgba(256,256,256,0.8);
  font-weight: 500;
  line-height: 27px;
}

.off-contact p strong {
  display: block;
  margin-right: 10px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.off-contact p a {
  font-size: 14px;
  color: rgba(256,256,256,0.8);
  font-weight: 500;
  margin-left: 5px;
}

.off-contact p a:hover {
  color: var(--second-color);
}

/* footer  */

.footer {
  background-color: var(--first-color);
  padding: 30px 0 0;
  position: relative;
}

.footer-content,.footer-link,
.footer-contact, .map {
  margin-bottom: 30px;
}

.f-img-1 {
  position: absolute;
  bottom: 40px;
  right: 20px;
}

.f-img-1 img {
  width: 250px;
}

.f-img-2 {
  position: absolute;
  top: 10px;
  left: 20px;
}

.f-img-2 img {
  width: 180px;
}


.f-logo img {
  max-width: 220px;
  margin-bottom: 15px;
}

.f-logo P {
  color: rgba(256,256,256,0.9);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
}

.footer-content {
  margin-top: 20px;
}

.footer-title {
  color: #fff;
}

.footer-link {
  margin-bottom: 30px ;
}



.footer-link  a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(256,256,256,0.1);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-link  a:hover {
  color: var(--second-color) !important;  
  transform: scale(0.95);
}

.contact-flex {
  margin-bottom: 15px;
}

.footer-contact h2,
.footer-link h2,
.map h2 {
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-contact p {
  display: flex;
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(256,256,256,0.8);
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-contact p strong {
  margin-right: 10px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-contact p a {
  font-size: 14px;
  color: rgba(256,256,256,0.8);
  font-weight: 500;
}

.footer-contact p a:hover {
  color: var(--second-color);
}

.footer-contact p i {
  font-size: 14px;
  margin-right: 5px;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social li {
  list-style: none;
  display: inline-block;
  margin: 0 10px;
}

.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 34px;
  text-align: center;
  background:transparent;
  border: 2px solid rgba(256,256,256,0.2);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
}

.footer-social a:hover {
  background-color: var(--second-color);
  border-color: var(--second-color);
  transform: scale(.8);
}

.copyright {
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, 0.2);
}

.copyright p {
  color: rgba(256, 256, 256, 0.8);
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 0px;
}

.copyright p a {
  color: var(--secondaryColor);
  margin-left: 3px;
  letter-spacing: 1px;
}

/* footer end */

/* Products Section */


.product-box .img-box {
  position: relative;
  overflow: hidden;
}

.product-box {
  /* margin-bottom: 20px; */
  border-radius: 7px 7px 7px 7px;
  border: 1px solid #f5821f;
}

.product-box .img-box img {
  width: 100%;
  /* border: 1px solid #ddd; */
  border-radius: 7px 7px 0 0;
  filter: brightness(97%);
}


.product-box .img-box .overlay {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 110%;
  background-color:rgba(35,31,32,0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* transform: translateY(220px); */
  transition: 0.3s ease-in-out;
  border-radius: 7px 7px 0 0;
  opacity: 0;
}


.product-box:hover .overlay {
  /* transform: translateY(0); */
  opacity: 1;
}


.product-box .img-box .overlay h3 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: vertical-lr;
  background-color: var(--second-color);
  height: 100%;
  padding: 0 7px;
  text-align: center;
}

.product-box .img-box .overlay a {
  background-color: #fff;
  color: var(--first-color);
  margin: auto;
  padding: 5px 15px;
  border-radius: 1px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease-in;
}

.product-box .img-box .overlay a:hover {
  background-color: #ebebeb;
}

.product-box .img-box .overlay a i {
  margin-right: 5px;
}

.product-box .pro-title   {
  padding: 12px 10px;
  background-color: #ebebeb;
  border: 1px solid #ddd;
  /* border-top: 0; */
  border-radius: 0 0 7px 7px;
}

.product-box .pro-title h2 {
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
  color: var(--first-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.pro-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 7px;
}

/* section title  */

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  font-size:33px;
  /* text-transform: uppercase; */
  font-weight: 700;
  margin-bottom: 7px;
}

.section-title h2 span {
  color: var(--second-color);
}

.section-title h3 {
  font-size: 18px;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 20px;
  color: rgba(0,0,0,0.7)
}

.section-title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: var(--first-color);
  width: 70px;
  height: 3px;
  transform: translateX(-50%);
}


/* Contact Section */

.contact-section {
  margin-top: 30px;
}
.contact-form {
  background-color: var(--first-color);
  padding: 34px 52px 43px;
  margin-top: 0px;
  border-top: 23px solid #f5821f;
  border-bottom: 23px solid #f5821f;
}

.contact-form h2 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 25px;
}

.contact-form  label {
  color: rgba(256,256,256,0.7);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: 2px solid rgba(256,256,256,0.2);
  height: 47px;
  color: rgba(256,256,256,0.7);
  font-size: 15px;
  margin-bottom: 15px;
  padding-left: 15px;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: transparent;
  box-shadow: none;
  border-color: #fff;
  color: rgba(256,256,256,0.7);
}

.contact-form textarea {
  height: 150px;
  margin-bottom: 0;
}

.contact-form button {
  outline: none;
  border: none;
  background-color: var(--second-color);
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: #f5a81f;
}

.contact-box {
  background-color: var(--second-color);
  text-align: center;
  padding: 35px 50px;
  border-bottom: 2px solid rgba(256,256,256,0.1);
}

.contact-box i  {
  display: inline-block;
  background-color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 23px;
  color: var(--second-color);
  border-radius: 50%;
  margin-bottom: 5px;
}

.contact-box h2 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 10px;
}

.contact-box p,
.contact-box a {
  font-size: 16px;
  color: rgba(256,256,256,0.7);
  font-weight: 500;
}

.contact-box a:hover {
  color: #fff;
  transform: scale(1.1);
}

.contact-box.two {
  background-color: #f5a81f;
}

.contact-box.two i {
  color: #f5a81f;
}

/* Choose Section */

.choose-section {
  padding: 50px 0 30px;
}

.choose-box {
  text-align: center;
  padding: 20px;
  border: 1px solid #231f20;
  /* outline: 4px solid #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.choose-icon i {
  display: inline-block;
  font-size: 40px;
  color: var(--second-color);
  margin-bottom: 15px;
}

.Choose-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}
.Choose-info p {
  font-size: 16px;
  color: rgba(0,0,0,0.7);
  font-weight: 500;
}

/* banner */

#mob {
  display: none;
}

/* About section */

.about-section {
  padding: 35px 0;
  background-color: #efefef;
}

.about-img img {
  /* width: 200px; */
  width: 360px;
  border-radius: 50%;
  /* background-color: #fff; */
  border-bottom: 3px solid rgba(0,0,0,0.1);
  border-top: 2px solid rgba(0,0,0,0.1);
  margin-bottom: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgb(245 130 31) 0px 18px 36px -18px inset;
  border: 2px solid #f5821f;
}

/* .about-box {
  text-align: center;
} */

.about-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 7px;
}

.about-content h2 span {
  color: var(--second-color);
}


.about-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: rgb(33 37 41);
  margin-bottom: 10px;
}

.about-content h3 span {
  color: #f5821f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}
.about-content {
  padding: 10px;
}

.about-content p {
  font-size: 15px;
  line-height: 28px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: justify;
}

.about-content a {
  display: inline-block;
  background-color: var(--first-color);
  padding: 9px 20px;
  font-size: 15px;
  color: #fff;
  border-radius: 3px;
  margin-top: 10px;
}

.about-content a i {
  margin-right: 5px;
}


.about-content a:hover {
  background-color: var(--second-color);
}

/* Mobile Dropdown */

.mobile-dropdown {
  text-align: center;
  padding: 25px;
  display: none;
  opacity: 0;
  transition: 0.2s ease-in;
}

.mobile-dropdown a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(256,256,256,0.1);
}

.mobile-dropdown a i {
  margin-right: 10px;
}

.mob-drop li  a{
  padding: 10px 0;
  font-size: 12px;
  color: var(--first-color);
  border-bottom: 1px solid rgba(0,0,0,0.2) !important;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.mob-drop li>span {
  float: right;
  margin-top: -45px;
  padding: 10px;
  font-size: 15px;
}


/* .mob-drop li:last-child a {
  border-bottom: 0 !important ;
} */

.mob-drop li  a:hover {
  color: var(--first-color);
  background-color: #f7f7f7;
}



/* dropdown */

.dropdown {
  position: relative;
}

.pro-drop {
  position: absolute;
  top:70px;
  left: 0;
  width: 300px;
  height: auto;
  /* overflow-y: auto; */
  z-index: 9999;
  /* padding: 10px 10px; */
  /* border-radius: 0 0 10px 10px; */
  background-color: #2a2a2a;
  display: none;
  opacity: 0;
  transition: 0.2s ease-in;
}

.sub_menu_scroll {
  height: 440px;
  overflow-y: auto;
}


/* width */
.sub_menu_scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.sub_menu_scroll:hover::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.sub_menu_scroll:hover::-webkit-scrollbar-thumb {
  /* background: #685c5c; */
  background: #f5821f;
}

/* Handle on hover */
.sub_menu_scroll:hover::-webkit-scrollbar-thumb:hover {
  /* background: #685c5c; */
  background: #f5821f;
}
.dropdown:hover .pro-drop {
  display: block;
  opacity: 1;
  margin-top:9px;
}

.menu-links li a:hover .pro-drop li a {
  background-color: unset;
}

.pro-drop li a {
  display: block;
  padding: 10px 15px !important;
  border-bottom: 1px solid rgba(256,256,256,0.2);
  text-align: left;
  color: #ebebeb !important;
  font-size: 13px;
  background-color: #222;
  text-transform: capitalize;
}

/* .pro-drop li:last-child a {
  border-bottom: 0;
} */

.pro-drop li a:hover {
  background-color: #333;
}

.pro-drop li a::after {
  content: unset;
}

/*  */

.contact-page {
  margin: 3px 0;
}

.about-page {
  padding: 25px 0 0;
}

.about-page .choose-section {
  background-color: #f7f7f7;
}

/* breadcrumb */

.breadcrumb {
  padding: 10px 0;
  background-color: #f7f7f7;
  margin-bottom: 0;
}

.breadcrumb a {
  font-size: 18px;
  color: var(--first-color);
  font-weight: 800;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.breadcrumb span {
  margin: 0 7px;
}

/* Product Detail Page */

.product-details {
  padding: 25px 0;
}

.pro-d-img img {
  width: 100%;
  border: 1px solid #ccc;
}

.pro-d-btn {
  /* text-align: center; */

}

.pro-d-btn a {
  display: inline-block;
  padding: 7px 15px;
  background-color: var(--first-color);
  border-radius: 2px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--first-color);
  font-weight: 500;
  margin-top: 15px;
  margin-right: 5px;
}

.pro-d-btn .enq-btn {
  border: 2px solid var(--first-color);
  color: var(--first-color);
  background-color: #fff;
}

.pro-d-btn .enq-btn:hover {
  border-color: var(--second-color);
  color: var(--second-color);
  background-color: transparent;
}

.pro-d-btn a:hover {
  background-color: var(--second-color);
  border-color: var(--second-color);
}

.pro-d-content  {
  padding: 0px 30px;
}

.pro-d-content h2 {
  font-size: 29px;
  margin-bottom: 10px;
  font-weight: 800;
}
.pro-d-content h3 {
  font-weight: 800;
  font-size: 20px;
  color: #000;
}
.pro-d-content P {
  font-size: 17px;
  line-height: 27px;
  color: #000;
}
.modal-body button{ 
    outline: none;
    border: none;
    background-color: var(--second-color);
    color: #fff;
    padding: 7px 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}


/* submenu dropdown s  */

.menu-link {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.menu-link:hover {
  background: #444;
}

.submenu_dropdown {
  position: relative;
}

.pro-drop,
.sub-drop {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.pro-drop {
  top: 100%;
  left: 0;
}

.sub-drop {
  top: 0;
  left: 100%;
}

.pro-drop li,
.sub-drop li {
  white-space: nowrap;
}

.pro-drop li a,
.sub-drop li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.pro-drop li a:hover,
.sub-drop li a:hover {
  background: #f5821f;
}

/* Show the first-level dropdown on hover */
.submenu_dropdown:hover > .pro-drop {
  display: block;
}

/* Show the second-level dropdown on hover */
.pro-drop .submenu_dropdown:hover > .sub-drop {
  display: block;
}

/* Styling for overflow (optional, if the submenu is long) */
.sub_menu_scroll {
  max-height: 350px;
  overflow-y: auto;
}

/* Add some transition effects */
.pro-drop,
.sub-drop {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.submenu_dropdown:hover > .pro-drop,
.pro-drop .submenu_dropdown:hover > .sub-drop {
  display: block;
  opacity: 1;
  transform: translateY(0);
  width: 320px;
  overflow-x: hidden;
}

.submenu_dropdown i{
  float: right;
  margin-top:2px;
}



/* submenu dropdown e */

/*  */

.rotated-border {
  position: relative;
  display: inline-block; /* Ensure proper placement */
}

/* .rotated-border::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 102px solid #f5821f;
  border-top: 3px solid transparent;
  border-bottom: 1px solid transparent;
  transform: translate(-45%, 11%) rotate(53deg);
  transform-origin: center;
} */

.rotated-border::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 90px solid #f5821f;
    border-top: 3px solid transparent;
    border-bottom: 1px solid transparent;
    transform: translate(-49%, -114%) rotate(60deg);
    transform-origin: center;
}



.rotated1-border {
  position: relative;
  display: inline-block; /* Ensure proper placement */
}

.rotated1-border::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 102px solid #f5821f;
  border-top: 3px solid transparent;
  border-bottom: 1px solid transparent;
  transform: translate(-45%, -262%) rotate(123deg);
  transform-origin: center;
}
/*  */

/* hardeners color sec s */
.hardenes_colors {
  padding-top: 20px;
  padding-bottom: 20px;
}

.product1-box .img-box {
  position: relative;
  overflow: hidden;
}

.product1-box {
  /* margin-bottom: 20px; */
  border-radius: 7px 7px 7px 7px;
  border: 1px solid #f5821f;
  margin-bottom: 15px;
}

.product1-box .img-box img {
  width: 100%;
  /* border: 1px solid #ddd; */
  border-radius: 7px 7px 0 0;
  filter: brightness(97%);
}

.product1-box .img-box .overlay {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 110%;
  /* background-color:rgba(35,31,32,0.95); */
  background-color: rgb(245 130 31 / 54%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* transform: translateY(220px); */
  transition: 0.3s ease-in-out;
  border-radius: 7px 7px 0 0;
  opacity: 0;
}

.product1-box:hover .overlay {
  /* transform: translateY(0); */
  opacity: 1;
}

.product1-box .img-box .overlay h3 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: vertical-lr;
  background-color: var(--second-color);
  height: 100%;
  padding: 0 7px;
  text-align: center;
}

.product1-box .img-box .overlay a {
  background-color: #fff;
  color: var(--first-color);
  margin: auto;
  padding: 5px 15px;
  border-radius: 1px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease-in;
}

.product1-box .img-box .overlay a:hover {
  background-color: #ebebeb;
}

.product1-box .img-box .overlay a i {
  margin-right: 5px;
}

.product1-box .pro-title   {
  padding: 12px 10px;
  background-color: #ebebeb;
  border: 1px solid #ddd;
  /* border-top: 0; */
  border-radius: 0 0 7px 7px;
}

.product1-box .pro-title h2 {
  font-size: 15px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
  color: #231f20;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* hardeners color e */

/* gallery section s  */
.gallery_sec {
  padding-top: 20px;
  padding-bottom: 20px;
}

.gallery-item {
	
	flex: 1 0 24rem;
	margin: 1rem;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	overflow: hidden;
  padding: 15px;
  border: 1px solid #f5821f;
}

.gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease-out;
}

.gallery-image:hover {
	transform: scale(1.15);
}

@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}

/* gallery section e  */


/* blogs section s  */

.blogs_sections {
  padding-top: 20px;
  padding-bottom: 20px;
}

.product1-box .pro1-title h2 {
  font-size: 15px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
  color: #231f20;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product1-box .pro1-title {
  padding: 12px 10px;
  background-color: #ebebeb;
  border: 1px solid #ddd;
  /* border-top: 0; */
  border-radius: 0 0 7px 7px;
}
.pro1-title p{
  display: inline-block;
  font-size: 13px;
  color: #f5821f;
  font-weight: 600;
}
.pro1-title a{
  float: right;
  font-size: 13px;
  color: #f5821f;
  font-weight: 600;
}


/* blogs section e */
