/********** Template CSS **********/
:root {
  --primary: #009CFF;
  --secondary: #777777;
  --light: #F8F8F8;
  --dark: #252525;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 20px 0;
  color: #FFFFFF;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #bc4c1f;
}

.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 8px 0;
  }

  .navbar .navbar-nav {
    margin-top: 8px;
    border-top: 1px solid rgba(256, 256, 256, .1)
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
#header-carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 500px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#header-carousel .carousel-indicators [data-bs-target] {
  width: 60px;
  height: 60px;
  text-indent: 0;
  margin-bottom: 15px;
  border: 2px solid #FFFFFF;
  border-radius: 60px;
  overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header1 {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/bann1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header2 {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/bann2.jpg) center center no-repeat;
  background-size: cover;
}

.page-header3 {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/bann4.jpg) center center no-repeat;
  background-size: cover;
}

.page-header4 {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/bann5.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}


/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: #b24b21;
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 4px;
  left: -60px;
  background: #b24b21;
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}



/*** Img Border ***/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0rem;
  bottom: 3rem;
  border: 5px solid #b24b21;
  border-radius: 6px;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  object-fit: cover;
  border-radius: 6px;
}


/*** Facts ***/
.fact-item {
  transition: .5s;
}

.fact-item:hover {
  margin-top: -10px;
  background: #FFFFFF !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  border: 1px solid transparent;
  transition: .5s;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: none;
  border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0px;
  transition: 3s;
}


/*** Project ***/
.project-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(0, 0, 0, .5);
  border-radius: 6px;
  opacity: 0;
  transition: .5s;
}

.project-item:hover a {
  opacity: 1;
}

.project-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-carousel .owl-dot {
  width: 35px;
  height: 35px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE2E6;
  border-radius: 35px;
  transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
  color: #FFFFFF;
  border-color: var(--primary);
  background: var(--primary);
}


/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
  position: relative;
  height: 65px;
  overflow: hidden;
}

.team-item .team-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-item:hover .team-title {
  top: -65px;
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 65px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  transition: .5s;
}

.team-item .team-social .btn {
  margin: 0 3px;
}

.team-item:hover .team-social {
  top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #c19969 !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE2E6;
  border-radius: 50px;
  font-size: 18px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #FFFFFF;
  border-color: #b64c29;
  background: #b64c29;
}


/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: white;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #b24b21;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}







/* New Changes Made By BS */
:root {
  --background-color: #ffffff;
  --color: #000000;
  --card-background-color: #1f1d2b;
  --card-color: white;
  --card-color--hover: black;
  --card-box-shadow: -1px 8px 14px -5px rgba(85, 85, 85, 0.88);
  --card-color-green: #a9e190;
  --card-color-red: #e79ca5;
  --card-color-yellow: #ffd791;
}

.dark {
  --background-color: #1f1d2b;
  --color: #ffffff;
  --card-background-color: white;
  --card-color: #1f1d2b;
  --card-color--hover: black;
  --card-box-shadow: -1px 8px 14px -5px rgba(85, 85, 85, 0.88);
  --card-color-green: #a9e190;
  --card-color-red: #e79ca5;
  --card-color-yellow: #ffd791;
}

/* * {
    box-sizing: border-box;
  }
  
  a {
    text-decoration: none;
    color: unset;
  }
  
  body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--background-color);
    color: var(--color);
  }
  
  .default-spacing, p,
  div,
  a, body {
    padding: 0;
    margin: 0;
  }
  
  .center-content, .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    flex-direction: column;
    height: auto;
    padding: 0 50px;
  }
  
  .header {
    font-size: 36px;
    text-align: left;
  } */

.card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 50px 0px;
}

.card-wrapper .card {
  padding: 20px;
  color: var(--card-color--hover);
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 20px;
}

.card-wrapper .card .card-icon-title-wrapper {
  position: relative;
  top: -20px;
}

.card-wrapper .card .card__icon {
  display: inline-block;
  padding: 30px;
  position: relative;
  top: -30px;
  border-radius: 50%;
  background-color: var(--background-color);
}

.card-wrapper .card .card__icon i {
  font-size: 64px;
}

.card-wrapper .card .card__title {
  padding: 0 10px 10px 0;
  font-size: 26px;
  font-weight: bold;
  transition: all 0.4s;
}

.card-wrapper .card .card__description {
  font-size: 20px;
  padding: 0 15px;
}

@media (min-width: 992px) {
  /* .container {
      height: 100vh;
    } */

  .card-wrapper {
    width: 50%;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: min(350px);
    gap: 20px;
  }

  .card-wrapper .card {
    position: relative;
    padding: 30px;
    background-color: var(--card-background-color);
    color: var(--card-color);
  }

  .card-wrapper .card .card-icon-title-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 210px;
  }

  .card-wrapper .card .card__description {
    opacity: 0;
  }

  .card-wrapper .card .card__icon {
    background-color: transparent;
    top: 0px;
    padding-bottom: 10px;
    transform-origin: top center;
  }

  .card-wrapper .card .card__icon i {
    font-size: 7em;
  }

  .card-wrapper .card .card__title {
    padding: 0px;
    position: relative;
    top: 0px;
  }

  .card-wrapper .card:hover {
    transform: scale(1.04);
    /* color: var(--card-color--hover); */
    color: #ffffff;
    box-shadow: var(--card-box-shadow);
  }

  .card-wrapper .card:hover .card-wrapper .card .card__icon {
    background-color: black !important;
    top: 0px;
    padding-bottom: 10px;
    transform-origin: top center;
  }

  .card-wrapper .card:hover .card-icon-title-wrapper {
    position: relative;
    top: -20px;
  }

  .card-wrapper .card:hover .card__description {
    position: absolute;
    /* bottom: 15px; */
    /* bottom: 6px; */
    left: 17%;
    bottom: 105px;
    padding: 10px 30px 10px 30px;
    animation: fadeInDescription 0.5s 0.5s forwards;
  }

  .card-wrapper .card:hover .card__icon {
    top: -60px;
    padding: 30px;
    animation: resizeIcon 0.5s forwards, fadeInBg 1s forwards;
  }

  .card-wrapper .card:hover .card__title {
    animation: translateTitle 0.5s 0.2s forwards;
  }

  .card-discover:hover {
    background-color: var(--card-color-green);
  }

  .card-empathize:hover {
    background-color: var(--card-color-red);
  }

  .card-prototype:hover {
    background-color: var(--card-color-yellow);
  }
}

.card-discover {
  background-color: var(--card-color-green);
}

.card-empathize {
  background-color: var(--card-color-red);
}

.card-prototype {
  background-color: var(--card-color-yellow);
}

.icon__discover {
  color: var(--card-color-green);
}

.icon__empathize {
  color: var(--card-color-red);
}

.icon__prototype {
  color: var(--card-color-yellow);
}

@keyframes resizeIcon {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.65) translateY(-70px);
  }
}

@keyframes fadeInBg {
  0% {
    background-color: transparent;
  }

  100% {
    background-color: var(--background-color);
  }
}

@keyframes translateTitle {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-100px);
  }
}

@keyframes fadeInDescription {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(-20px);
  }
}

@media (min-width: 992px) and (max-width: 1099px) {
  .card-wrapper {
    width: 100%;
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .card-wrapper {
    width: 75%;
  }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  .card-wrapper {
    width: 100%;
  }
}


.iconsize1 {
  width: 70px;
  height: 70px;
}

.whatsapp-float img {
  width: 50px;
  position: fixed;
  bottom: 40px;
  left: 20px;
  border-radius: 10px;
  z-index: 1;
}

.footer p {
  color: white;
}

.contactsize {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carousel-item img {
  height: 540px;
}

/* Button Animation Start */
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --body-color: #393937;
  --accent-color: #009cff;
  --white-color: #fff;
  --box-shadow: 0 0 5px #009cff, 0 0 25px #009cff, 0 0 50px #009cff, 0 0 100px #009cff;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 1rem;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

.button-animation {
  position: relative;
  display: inline-block;
  padding: 20px 30px;
  color: #b24b21;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 4px;
  transition: 0.5s;
}

.button-animation span {
  position: absolute;
  display: block;
}

.button-animation span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #b24b21;
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.button-animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: #b24b21;
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

.button-animation span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: #b24b21;
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

.button-animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: #b24b21;
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

.button-animation:hover {
  background-color: #b24b21;
  color: var(--white-color);
  border-radius: 5px;
  box-shadow: #b24b21;
}



/* Button Animation End */


.bg2 {
  background-image: url(../NEWIMAGES/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.bg3 {
  background-image: url(../NEWIMAGES/bg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.project-carousel .owl-dots {
  display: none;
}


/* gallery starts */
.gallery {
  margin: auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.gallery-item {
  flex: 1 1 calc(33% - 20px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.6;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:hover img {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: flex;
  margin: 10% auto;
  padding: 20px;
  background: #fff;
  max-width: 70%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}


.modal-left img {
  max-width: 100%;
  height: auto;
  float: left;
  border-radius: 10px;
}

.modal-right {
  margin-left: 20px;
  padding: 0 2em;
  width: 40%;
}

.modal-right p {
  margin: 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.nav-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
}

.nav-btn:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 calc(50% - 20px);
  }

  .modal-content {
    flex-direction: column;
  }

  .modal-right {
    margin-left: 0;
    margin-top: 20px;
    width: 80%;
    padding: 0;
  }

  .nav-btn {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%;
  }

}

/* gallery ends */

/* product starts */
.content-image-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #f9f9f9;
}

.content1 {
  flex: 1;
  padding: 20px;
  color: #000000;
  font-size: 16px;
}

.image1 {
  flex: 1;
  text-align: right;
}

.image2 {
  flex: 1;
  text-align: left;
}

.image1 img {
  width: 100%;
  height: 400px;
  max-width: 600px;
  /* Adjust the max-width as needed */
  border-radius: 8px;
}

.image2 img {
  width: 100%;
  height: 400px;
  max-width: 600px;
  /* Adjust the max-width as needed */
  border-radius: 8px;
}

.learn-more-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .content-image-section {
    flex-direction: column;
  }

  .content1,
  .image1,
  .image2 {
    text-align: justify;
    padding: 10px;
  }

  .image1 {
    margin-top: 15px;
  }

  .image2 {
    margin-top: 15px;
  }


}

/* products end */

/* mission starts */
.two-box-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: #f9f9f9;
}

.box2 {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 5.1);
  transition: transform 0.3s ease;
  height: 450px;
  width: 100%;
  margin-right: 143px;
}


.box2 img {
  width: 100%;
  height: 250px;
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

.content2 {
  padding: 15px;
  text-align: center;
  width: 100%;
}

.content2 h3 {
  margin-top: 0;
  font-size: 1.25em;
  color: #b24b21;
}

.content2 p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 0;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .two-box-section {
    flex-direction: column;
    gap: 15px;
  }
}

/* mission ends */
.logoheader {
  height: 120px;
  width: 150px;
}

.logofooter {
  height: 120px;
  width: 150px;
}

.bg-primary {
  background-color: #111111 !important;
}

.content1 h2 {
  color: #b24b21;
}

.text-primary {
  color: #b24b21 !important;
}

.btn-primary:hover {

  background-color: #b24b21 !important;
  border-color: #b24b21 !important;
}

.btn-primary {

  background-color: #b24b21;
  border-color: #b24b21;
}

.btn-outline-secondary:hover {
  color: white;
  background-color: #9f5031;
  border-color: #ba4d24;
}

.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #9f5031;
}

.dropdown-item {
  color: #9f5031 !important;
}

@media(max-width:600px) {
  .image1 img {
    width: 309px;
    height: 305px;
  }

  .image2 img {
    width: 309px;
    height: 305px;
  }

  .box2 {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 5.1);
    transition: transform 0.3s ease;
    height: 450px;
    width: 100%;

  }

  .img-border img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
  }

  .img-border {
    position: relative;
    height: 11%;
    min-height: 237px;
  }
}










.product-container {
  background-color: #fff;
  height: 400px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.tag-sale {
  background-color: #4fdaa4;
  width: 86px;
  height: 98px;
  position: absolute;
  color: #fff;
  right: -41px;
  z-index: 9;
  top: -44px;
  transform: rotate(137deg);
}

.tag-sale::before {
  content: "SALE";
  color: #fff;
  font-weight: bold;
  display: block;
  transform-origin: top center;
  transform: rotate(222.5deg) translateX(-28px) translateY(-37px);
}

.product-description {
  background-color: #f7f7f7;
  border-top: 1px solid #efefef;
  padding: 10px 20px;
  color: #797979;
}

.product-image {
  /* padding: 20px; */
  height: 300px;
  position: relative;
  overflow: hidden;
  transition: 1s;
}

.product-link {
  position: absolute;
  background: #fff;
  width: 100px;
  height: 100px;
  color: #4fdaa4;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  padding: 22px 0;
  line-height: 25px;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  opacity: 0;
  transition: 1s;
  font-style: italic;
}

.product-link:hover {
  text-decoration: none;
  color: #4fdaa4;
}

.hover-link {
  background-color: #4fdaa4;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.product-image img {
  width: 100%;
  height: 301px;
}

.product-description h1 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
  display: inline-block;
  width: 78%;
}

.product-description p {
  color: #c4c4c4;
}

.product-description .price {
  display: inline-block;
  width: 20%;
  font-size: 23px;
  text-align: right;
  font-weight: bold;
  color: #2dd493;
  margin-bottom: 5px;
}

.product-option {
  border-top: 1px solid #d2d2d2;
}

.product-option h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 3px;
}

.product-option .product-color ul {
  list-style-type: none;
  padding: 0;
}

.product-option .product-color li {
  display: inline-block;
  width: 15px;
  height: 15px;
}

.product-color li.red {
  background-color: #f75375;
}

.product-color li.blue {
  background-color: #53a0f7;
}

.product-color li.green {
  background-color: #59cfaf;
}

.product-color li.gray {
  background-color: #c7c7c7;
}

.product-color li.black {
  background-color: #4e5156;
}

.product-color li.dark-blue {
  background-color: #2060af;
}

/* .product-container:hover {
  box-shadow: 0px 10px 25px -2px rgba(0, 0, 0, 0.36);
}

.product-container:hover .product-image {
  height: 180px;
  transition: 1s;
}
.product-container:hover .product-option {
  display: block;
}
.product-container:hover .hover-link {
  opacity: 0.5;
}
.product-container:hover .product-link {
  opacity: 1;
} */

.product-link:hover {
  -webkit-animation: hovering 1000ms linear both;
  animation: hovering 1000ms linear both;
}

@-webkit-keyframes hovering {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  2.3% {
    -webkit-transform: matrix3d(1.102,
        0,
        0,
        0,
        0,
        1.102,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.102, 0, 0, 0, 0, 1.102, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  4.6% {
    -webkit-transform: matrix3d(1.136,
        0,
        0,
        0,
        0,
        1.136,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.136, 0, 0, 0, 0, 1.136, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  7.41% {
    -webkit-transform: matrix3d(1.099,
        0,
        0,
        0,
        0,
        1.099,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.099, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  10.21% {
    -webkit-transform: matrix3d(1.023,
        0,
        0,
        0,
        0,
        1.023,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.023, 0, 0, 0, 0, 1.023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  13.01% {
    -webkit-transform: matrix3d(0.962,
        0,
        0,
        0,
        0,
        0.962,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.962, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  15.72% {
    -webkit-transform: matrix3d(0.942,
        0,
        0,
        0,
        0,
        0.942,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.942, 0, 0, 0, 0, 0.942, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  18.52% {
    -webkit-transform: matrix3d(0.958,
        0,
        0,
        0,
        0,
        0.958,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.958, 0, 0, 0, 0, 0.958, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  21.32% {
    -webkit-transform: matrix3d(0.99,
        0,
        0,
        0,
        0,
        0.99,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.99, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  24.12% {
    -webkit-transform: matrix3d(1.016,
        0,
        0,
        0,
        0,
        1.016,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.016, 0, 0, 0, 0, 1.016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  26.83% {
    -webkit-transform: matrix3d(1.025,
        0,
        0,
        0,
        0,
        1.025,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.025, 0, 0, 0, 0, 1.025, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  32.43% {
    -webkit-transform: matrix3d(1.004,
        0,
        0,
        0,
        0,
        1.004,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.004, 0, 0, 0, 0, 1.004, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  38.04% {
    -webkit-transform: matrix3d(0.989,
        0,
        0,
        0,
        0,
        0.989,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.989, 0, 0, 0, 0, 0.989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  49.15% {
    -webkit-transform: matrix3d(1.005,
        0,
        0,
        0,
        0,
        1.005,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.005, 0, 0, 0, 0, 1.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  60.26% {
    -webkit-transform: matrix3d(0.998,
        0,
        0,
        0,
        0,
        0.998,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.998, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  71.37% {
    -webkit-transform: matrix3d(1.001,
        0,
        0,
        0,
        0,
        1.001,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.001, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  82.48% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  93.59% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes hovering {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  2.3% {
    -webkit-transform: matrix3d(1.102,
        0,
        0,
        0,
        0,
        1.102,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.102, 0, 0, 0, 0, 1.102, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  4.6% {
    -webkit-transform: matrix3d(1.136,
        0,
        0,
        0,
        0,
        1.136,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.136, 0, 0, 0, 0, 1.136, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  7.41% {
    -webkit-transform: matrix3d(1.099,
        0,
        0,
        0,
        0,
        1.099,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.099, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  10.21% {
    -webkit-transform: matrix3d(1.023,
        0,
        0,
        0,
        0,
        1.023,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.023, 0, 0, 0, 0, 1.023, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  13.01% {
    -webkit-transform: matrix3d(0.962,
        0,
        0,
        0,
        0,
        0.962,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.962, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  15.72% {
    -webkit-transform: matrix3d(0.942,
        0,
        0,
        0,
        0,
        0.942,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.942, 0, 0, 0, 0, 0.942, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  18.52% {
    -webkit-transform: matrix3d(0.958,
        0,
        0,
        0,
        0,
        0.958,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.958, 0, 0, 0, 0, 0.958, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  21.32% {
    -webkit-transform: matrix3d(0.99,
        0,
        0,
        0,
        0,
        0.99,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.99, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  24.12% {
    -webkit-transform: matrix3d(1.016,
        0,
        0,
        0,
        0,
        1.016,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.016, 0, 0, 0, 0, 1.016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  26.83% {
    -webkit-transform: matrix3d(1.025,
        0,
        0,
        0,
        0,
        1.025,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.025, 0, 0, 0, 0, 1.025, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  32.43% {
    -webkit-transform: matrix3d(1.004,
        0,
        0,
        0,
        0,
        1.004,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.004, 0, 0, 0, 0, 1.004, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  38.04% {
    -webkit-transform: matrix3d(0.989,
        0,
        0,
        0,
        0,
        0.989,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.989, 0, 0, 0, 0, 0.989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  49.15% {
    -webkit-transform: matrix3d(1.005,
        0,
        0,
        0,
        0,
        1.005,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.005, 0, 0, 0, 0, 1.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  60.26% {
    -webkit-transform: matrix3d(0.998,
        0,
        0,
        0,
        0,
        0.998,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(0.998, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  71.37% {
    -webkit-transform: matrix3d(1.001,
        0,
        0,
        0,
        0,
        1.001,
        0,
        0,
        0,
        0,
        1,
        0,
        0,
        0,
        0,
        1);
    transform: matrix3d(1.001, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  82.48% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  93.59% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}



.granatiecontainer {
  position: relative;
  top: 35px;
}

@media(max-width:600px) {
  .topbarstart {
    display: none;
  }

  .content1 h2 {
    color: #b24b21;
    /* width: 158px; */
    text-align: left;
    width: 110%;
  }
}