
.section-sub-title {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-orange);
  text-transform: uppercase;
  padding-top: 20px;
}
.section-title {
  font-size: 38px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}
/* product section start*/

.product-section {
  padding-top: 20px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.product-card .product-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.product-card h4 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
.product-card h5 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.small-product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-card {
  background-color: #c2dfd4;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 4px 12px #00000014;
  cursor: pointer;
  transition: 0.3s ;
}
.product-card:hover {
  transform: scale3d(1.02, 1.02, 1.02) !important;
  box-shadow: 2px 4px 16px #00000029 !important;
}


.card-1{
  background-image: url(../images/jute-small.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  scale: 1 1;
  
}
.product-card img {
  width: 100%;
  height: 100%;
}
.hover-div {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: 0.4s;
}
.view-product-btn {
  padding: 0px 16px;
  font-size: 16px;
  height: 36px;
  border-radius: 50px;
  background-color: var(--primary-orange);
  border: none;
  color: white;
}
.product-card:hover .hover-div {
  opacity: 1;
  pointer-events: initial;
}
.coming-soon {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming-soon h6 {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* product section end*/

/* r-sqrd-slogan section start*/

.r-sqrd-slogan {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 70px;
 position: relative;
}
.r-sqrd-slogan  img{
  position: absolute;
  left: 25% !important;
  top: 80px;
  opacity: 0.5 !important;
  width: 50%;
  z-index: -1;
  /* transform:translateX(-10%) ; */
}
.r-sqrd-slogan h1 {
  font-family: "Baskervville", serif;
  font-size: 62px;
  margin-bottom: 24px;
  overflow: hidden;
  line-height: 1.4;
}
.r-sqrd-slogan h1 p {
  margin: 0;
  display: block;
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.r-sqrd-slogan h5 {
  overflow: hidden;
}
.r-sqrd-slogan h5 p {
  display: block;
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.r-sqrd-slogan h5 p {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}
.r-sqrd-slogan span {
  color: var(--primary-orange);
}

/* r-sqrd-slogan section end*/

/* services section start*/
.our-services-section .section-title {
  text-align: center;
}
.services-bg {
  background-color: #f5f5f7;
  background-image: url(../images/service-bg-img.png);
  /* background-position: center; */
  background-repeat: no-repeat;
  
}
.our-services-section {
  padding: 100px 0px;
}

.our-services-cards {
  /* display: grid; */
  display: flex;
  margin-bottom: 140px;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.services-item {
  min-width: 18.76%;
  max-width: 18.76%;
}
.services-item {
  display: flex;
  /* border-radius: 15px; */
  /* justify-content: center; */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  background-color: white;
  box-shadow: 2px 4px 12px #00000014;
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: 0.3s !important;
}
.services-item h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.services-item:hover {
  color: var(--primary-orange);
  background-color: white;
  transform: scaleY(1.03);
  box-shadow: 0px 8px 30px 4px rgba(0, 0, 0, 0.2);
}
.services-item img {
  height: 70px;
  width: auto;
  margin-bottom: 24px;
  transition: 0.3s;
}
.read-more-btn {
  font-size: 16px;
  color: #ff7e1d;
  /* display: none; */
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.card-hover:hover .read-more-btn {
  opacity: 1;
}
.card-hover:hover img {
  transform: rotateY(180deg);
}

.special-service-bg {
  height: 400px;
  background-color: var(--primary-blue);
  margin: 0px -12px;
}
.special-service-content {
  padding-left: 100px;
  margin-top: -350px;
}
.special-service-content img {
  width: 100%;
  height: auto;
}
.special-service-img-container {
  position: relative;
}
.special-service-img-content {
  position: absolute;
  bottom: 0;
  padding: 24px;
}
.special-service-img-content p {
  font-size: 18px;
  color: white;
  margin-bottom: 24px;
}
.special-service-img-content a {
  background-color: none;
  border: 1px solid white;
  color: white;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.sanshawn-container {
  padding-top: 36px;
  padding-left: 40px;
}
.sanshawn-logo img {
  height: 90px;
  width: auto;
  margin-bottom: 16px;
}
.sanshawn-container h1 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}
.sanshawn-container p {
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
}
.special-service-img-content a:hover {
  background-color: white;
  color: var(--primary-orange);
}

/* services section end*/

/* our vision section start */

.our-vision-bg {
  background-color: var(--primary-blue);
  height: 350px;
  padding-top: 100px !important;
}

.our-vision-title-container .section-sub-title {
  text-align: start;
}
.our-vision-title-container .section-title {
  text-align: start;
  color: white;
}
.our-vision-cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -90px;
  /* grid-template-rows: repeat(1, 600px); */
}
.visions img {
  width: 100%;
  height: auto;
}
.mobile-img {
  display: none;
}

.visions {
  position: relative;
  background-color: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8491771708683473) 0%,
    rgba(0, 0, 0, 0.3029586834733894) 100%
  );
  z-index: 4;
}

.visions::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8491771708683473) 0%,
    rgba(0, 0, 0, 0.3029586834733894) 100%
  );
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 1;
  transition: opacity 0.3s linear;
}

.visions::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(251, 124, 29, 1) 0%,
    rgba(251, 124, 29, 0.196516106442577) 100%
  );
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.visions:hover::before {
  background: linear-gradient(
    0deg,
    rgba(251, 124, 29, 1) 0%,
    rgba(251, 124, 29, 0.196516106442577) 100%
  );
  opacity: 1;
}

.vision-content {
  position: absolute;
  bottom: 0;
  color: white;
  z-index: 3;
  text-align: center;
  padding: 0px 24px;
  transition: 0.4s;
}

.vision-content h2 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  transition: 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.vision-content .head-1 {
  /* margin-bottom: -130px; */
  bottom: 27%;
}
.vision-content .head-2 {
  bottom: 40%;
}
.vision-content .head-3 {
  bottom: 40%;
}
.vision-content .head-4 {
  bottom: 32%;
}
.vision-content .head-5 {
  bottom: 32%;
}

.visions:hover h2 {
  /* margin-bottom: 8px; */
  bottom: 100%;
}

.vision-content p {
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.visions:hover p {
  opacity: 1;
  pointer-events: initial;
}
/* our vision section end */

/* about us section start */

.about-us-container {
  margin-top: 100px;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.about-us-content .section-sub-title {
  text-align: start;
}
.about-us-content .section-title {
  text-align: start;
  color: rgb(0, 0, 0);
  margin-bottom: 36px;
}
.about-us-content-container {
  display: flex;
  align-items: center;
}
.about-us-para {
  font-size: 18px;
  margin-bottom: 24px;
  text-align: justify;

}
.about-read-more-btn {
  height: 48px;
  /* padding: 0px 24px; */
  width: 180px;
  background: none !important;
  border: 1px solid var(--primary-orange);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s;
}
.about-read-more-btn img {
  margin-left: -20px;
  transition: 0.5s;
  opacity: 0;
}
.about-read-more-btn:hover {
  background-color: var(--primary-orange) !important;
  color: white;
}
.about-read-more-btn:hover img {
  margin-left: 10px;
  opacity: 1;
}
.about-us-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us-img-container img{
  height: 400px;
  width: auto;
}

/* about us section end */

/* out team section start */
.our-team-img {
  padding-right: 0;
  z-index: -1;
}
.our-team-img img {
  width: 100%;
  height: auto;
}
.our-team-content-container {
  padding-top: 100px;
}
.team-details-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.our-team-content {
  background-color: white;
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.16);
  margin-left: -80px;
  padding: 34px;
  padding-bottom: 70px;
}
.our-team-title h3 {
  font-size: 32px;
  color: black;
  font-weight: 700;
  margin-bottom: 70px;
}
.our-team-title span {
  color: var(--primary-orange);
}
.team-details .name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-details .role {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--primary-blue);
  text-transform: uppercase;
  /* white-space: nowrap; */
}
.team-details .number {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
}

/* out team section end */

/* out global section start */
.our-global-container {
  padding-bottom: 100px;
}
.our-global-content-container {
  display: flex;
  align-items: end;
  padding-right: 70px;
}
.our-global-content {
  width: 100%;
}
.our-global-title h3 {
  font-size: 32px;
  color: black;
  font-weight: 700;
  margin-bottom: 34px;
}
.our-global-title span {
  color: var(--primary-orange);
}
.global-details {
  border: 1px solid var(--primary-blue);
  padding: 16px 0px;
}
.global-1 {
  margin-bottom: 24px;
}
.global-content {
  border-left: 5px solid var(--primary-orange);
  padding-left: 16px;
}
.global-content p {
  margin: 0;
}
.global-content .name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.our-global-img {
  padding-left: 0;
}
.our-global-img img {
  width: 100%;
  height: auto;
}

/* out global section end */

/* contact us section start */

.contact-us-container {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(255, 126, 29, 0.4962359943977591) 100%
    ),
    url(../images/contact-us-bg.jpg);
  padding: 100px 0px;
  background-size: cover;
  background-position: center;
}

.contact-us-content {
  background-color: white;
  margin: 0 auto;
  padding: 34px;
}
.contact-us-form-container .section-sub-title,
.section-title {
  text-align: left;
}
.contact-us-form-container .section-title {
  margin-bottom: 32px;
}
.contact-us-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-us-form input,
textarea {
  width: 100%;
}
.contact-input-3 {
  grid-column: span 2;
}
.contact-input-4 {
  grid-column: span 2;
}
.contact-input-5 {
  grid-column: span 2;
}
.contact-btn-1 {
  grid-column: span 2;
}
.submit-btn {
  height: 58px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  color: white;
  transition: 0.4s;
}
.submit-btn:hover {
  opacity: 0.7;
}

.contact-us-form input {
  height: 58px;
  padding-left: 18px;
  background-color: #ebebed;
  border: 1px solid #ebebed;
  outline: none;
  font-size: 16px;
}

.contact-us-form input:focus {
  border: 1px solid var(--primary-orange);
  box-shadow: 0px 0px 5px 2px rgba(255, 126, 29, 1);
}
.contact-us-form textarea {
  min-height: 150px;
  max-height: 200px;
  padding: 18px;
  outline: none;
  background-color: #ebebed;
  border: 1px solid #ebebed;
}
.contact-us-form textarea:focus {
  border: 1px solid var(--primary-orange);
  box-shadow: 0px 0px 5px 2px rgba(255, 126, 29, 1);
}
.get-in-touch-container {
  display: flex;
  align-items: center;
}
.get-in-touch-container .title {
  color: black;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 34px;
}
.get-in-touch-container .title span {
  color: var(--primary-orange);
}

.icon-container {
  min-width: 70px;
  min-height: 70px;
  background-color: #fff2e8;
  margin-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-container img {
  height: 30px;
  width: auto;
}
.get-in-touch-content {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.get-in-touch-content p {
  margin: 0;
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 500;
}
.get-in-touch-content .usa {
  margin-bottom: 8px;
}
/* contact us section end */

/* footer section start */

.footer-container {
  background-color: black;
  margin-top: -1px;
}
.footer-container-content {
  padding-top: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 50px;
}
.footer-logo {
  margin: 0 auto;
  width: fit-content;
}
.footer-logo img {
  height: 160px;
  width: auto;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}
.footer-links li {
  list-style: none;
}
.footer-links li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}
.footer-links li a:hover {
  text-decoration: underline;
}
.copyright {
  font-size: 12px;
  color: white;
  margin: 0 auto;
  width: fit-content;
  padding: 20px 0px;
}
.copyright p {
  margin: 0;
}
/* footer section end */

/* contact form validation */
.error-message {
  color: red;
}