/*
Theme Name: Shopping Builders
Theme URI:
Author: Shopping Builders
Author URI: https://shoppingbuilders.com/
Description: Tailor-made by Shopping Builders
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* GENERAL */
:root {
  --white: #FFFCF8;
  --black: #40412B;
  --beige: #CECDBF;
  --light-beige: #EFEEE7;
  --dark-green: #535A3F;
}

html,
body {
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}


body.modal-open {
  overflow: hidden;
}

header {
  font-size: 43px;
  letter-spacing: -1.07px;
  line-height: 57px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  position: absolute;
  top: 24px;
  left: 0;
  color: var(--white);
}

footer {
  background-color: var(--dark-green);
  padding: 120px 0;
}

footer .title {
  font-size: 34px;
  letter-spacing: -0.85px;
  line-height: 45px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  color: var(--white);
}

footer .socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  margin: 24px 0 30px;
}

.video-section {
  object-fit: cover;
  height: 80vh;
}

.video-section video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.experience-section {
  text-align: center;
  max-width: 950px;
  margin: 120px auto;
}

.title {
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -1.2px;
  line-height: 63px;
  color: var(--black);
  margin: 0;
  font-family: 'minion-pro', serif;
}

.subtitle {
  font-size: 18px;
  line-height: 24px;
  margin: 24px 0 40px;
  font-weight: 300;
  color: var(--black);
}

.subtitle-grid {
  font-size: 18px;
  line-height: 24px;
  margin: 24px 0 0;
  font-weight: 300;
  color: var(--black);
}

.subtitle-header {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
  font-weight: 400;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 0;
}

.inup-button {
  background-color: var(--beige);
  color: var(--black);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease-out;
}

.inup-button:hover {
  background-color: transparent;
}

.inup-button:after {
  content: '';
  width: 48px;
  height: 1px;
  background-color: var(--black);
  bottom: 4px;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.35s ease-out;
}

.inup-button:hover:after {
  opacity: 1;
}

.traceability-section, 
.solutions-section {
  background-color: var(--light-beige);
  padding: 80px 0;
}

.sustainability-section {
  padding: 80px 0;
}

.traceability-section .inner,
.sustainability-section .inner,
.solutions-section .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.traceability-section .col-left,
.sustainability-section .col-right,
.solutions-section .col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.traceability-section .col-left,
.solutions-section .col-left {
  padding-right: 48px;
}

.sustainability-section .col-right {
  padding-left: 48px;
}

.traceability-section .col-right,
.sustainability-section .col-left,
.solutions-section .col-right {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}

.traceability-section .col-right img,
.sustainability-section .col-left img,
.solutions-section .col-right img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.solutions-section .col-left a {
  margin-top: 24px;
}

.slider-section {
  padding: 120px 0;
}

.slider-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.slider-section .inner {
  display: flex;
  overflow-x: auto;
  column-gap: 40px;
  padding-bottom: 80px;
}

.slider-section .inner .slider-item {
  flex: 1 0 26%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-section .inner .slider-item img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.slider-section .inner .slider-item h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
  color: var(--black);
  font-weight: 400;
}

.slider-section .inner .slider-item p {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
}

.footer-signature {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  margin-top: 40px;
}

.footer-signature a {
  color: var(--white);
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 1 0 90%;
  }
}

.slider-section .inner::-webkit-scrollbar {
  height: 12px;
}
.slider-section .inner::-webkit-scrollbar-thumb {
  background: var(--beige);
  border-radius: 4px;
  max-width: 100px;
}
.slider-section .inner::-webkit-scrollbar-track {
  background: var(--light-beige);
  border-radius: 4px;
  max-width: 400px;
  margin: 40px 20vw 0;
}

.faqs-section {
  max-width: 1280px;
  margin: 120px auto;
}

.faqs-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faqs-section .inner {
  max-width: 800px;
  margin: 0 auto;
}

.faqs-section .inner .faq-item {
  border-bottom: 0.5px solid var(--black);
  padding: 22px 0 6px;
  position: relative;
  cursor: pointer;
}

.faqs-section .inner .faq-item h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
  color: var(--black);
  font-weight: 400;
  margin: 0;
}

.faqs-section .inner .faq-item p {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  margin-top: 12px;
  margin-bottom: 4px;
  padding-right: 32px;
  transition: all 0.35s ease-in-out;
}

.faqs-section .inner .faq-item.active p {
  max-height: 300px;
}

.faqs-section .inner .faq-item:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 32px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

.faqs-section .inner .faq-item.active:after {
  content: '-';
  position: absolute;
  right: 6px;
  top: 18px;
  font-size: 32px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

.form-section {
  background-color: var(--light-beige);
  padding: 120px 0;
}

.form-section .top {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  column-gap: 180px;
}

.form-section .top .col-left h2 {
  text-align: left;
  margin-bottom: 40px;
  margin-top: 0;
}

.form-section .top .col-right {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.form-section .top .col-right .logo-box {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  align-items: center;
}

.form-section .top .col-right .logo-box img {
  width: 45px;
  height: 45px;
}

.form-section .top .col-right .logo-box a {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
  text-decoration: none;
}

.form-section .logos {
  max-width: 1280px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  align-items: center;
}

.form-section .logos img {
  width: 100%;
  max-height: 128px;
  object-fit: contain;
}

.col-2-inputs {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}

input.full-width,
textarea.full-width {
  width: calc(100% - 14px);
}

.new-stuff img {
  max-width: 500px;
  padding: 0 16px;
  text-align: center;
}

.governlinks a {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
}

.new-stuff {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 48px 0;
}

.governlinks {
  gap: 24px;
  display: flex;
  justify-content: center;
}

#get-in-touch-form input:not('.wpcf7-email'),
#get-in-touch-form input:not('.wpcf7-submit'),
#get-in-touch-form input:not('.wpcf7-tel'),
#get-in-touch-form textarea {
	width: calc(100% - 14px);
}

#get-in-touch-form input,
#get-in-touch-form textarea {
  border: none;
  border-radius: 4px;
  background-color: #FCFCFC;
  font-size: 18px;
  padding: 14px 0 14px 14px;
}

#get-in-touch-form input:focus-visible,
#get-in-touch-form textarea:focus-visible {
  outline: none;
}

#get-in-touch-form label {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
}

#get-in-touch-form .align-right {
  position: relative;
}

#get-in-touch-form input[type="submit"] {
  background-color: var(--beige);
  color: var(--black);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.36px;
  position: absolute;
  right: 0;
  transition: all 0.35s ease-out;
}

#footer-form {
  max-width: 598px;
  margin: 0 auto;
  position: relative;
}

#footer-form input[type="email"] {
  border: none;
  width: 100%;
  border-radius: 4px;
  background-color: #FCFCFC;
  padding: 14px 12px;
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
}

#footer-form input[type="submit"] {
  position: absolute;
  right: 0;
  width: 48.7px;
  height: 20px;
  top: 19px;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url('https://dev.shoppingbuilders.com/inup/wp-content/uploads/2025/01/arrow.svg');
  font-size: 0;
  cursor: pointer;
}

#footer-form .wpcf7-list-item {
  margin: 16px 0 0;
  font-size: 14px;
  color: #CECDBF;
  font-weight: 300;
}

.wpcf7-form-control-wrap {
  top: 5px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: var(--light-beige);
  border: none;
  border-radius: 3px;
  text-align: center;
}

.quality-policy {
  margin: 30px auto 40px;
  width: fit-content;
  display: block;
  font-size: 14px;
    background-color: var(--beige);
  color: var(--black);
  border-radius: 4px;
  padding: 8px 24px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease-out;
}

.quality-policy:hover {
  background-color: transparent;
  color: var(--white);
}

.quality-policy:after {
  content: '';
  width: 48px;
  height: 1px;
  background-color: var(--white);
  bottom: 4px;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.35s ease-out;
}

.quality-policy:hover:after {
  opacity: 1;
}


@media screen and (max-width: 1279px) {
	.traceability-section .inner, .sustainability-section .inner, .solutions-section .inner {
	  max-width: 1025px;
	}
	
	.sustainability-section .col-left img:first-child {
		display:none;
	}
	
	.form-section .top {
		max-width: 1025px;
		flex-direction: column-reverse;
		row-gap: 48px;
	}
	
	.form-section .logos {
		max-width: 1025px;
		flex-wrap: wrap;
		row-gap:24px;
	}
	
	.form-section {
		padding: 120px 32px;
	}
	
	.form-section .logos img {
	  flex: 1;
	}
	
	.slider-section .inner .slider-item {
		flex: 1 0 40%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.traceability-section .inner, 
	.sustainability-section .inner, 
	.solutions-section .inner,
	.experience-section {
	  padding: 0 32px!important;
	}
	
	.slider-section,
	.form-section {
	  padding: 80px 32px!important;
	}
}

@media screen and (max-width: 1024px) {
	.title {
    font-size: 32px;
    letter-spacing: -0.8px;
    line-height: 44px;
  }

  .subtitle {
    font-size: 16px;
    line-height: 21px;
  }

  .subtitle-grid {
    font-size: 16px;
    line-height: 21px;
  }

  .subtitle-header {
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 26px;
  }

  .solutions-section .col-right img {
    height: 230px;
    object-fit: cover;
  }

  .inup-button {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 21px;
  }

  .experience-section {
    margin: 80px auto;
  }

  .video-section {
    max-height: 474px;
  }

  .experience-section {
    padding: 0 16px;
  }

  .traceability-section .inner, 
  .sustainability-section .inner, 
  .solutions-section .inner {
    padding: 0 16px;
    grid-template-columns: 1fr;
  }

  .traceability-section .inner .col-right,
  .sustainability-section .inner .col-left, 
  .solutions-section .inner .col-right {
    row-gap: 16px;
  }

  .traceability-section .inner,
  .sustainability-section .inner,
  .solutions-section .inner {
    row-gap: 40px;
  }

  .traceability-section .col-left, 
  .sustainability-section .col-right,
  .solutions-section .col-left {
    padding-right: 0;
    padding-left: 0;
  }

  .sustainability-section .inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .slider-section {
    padding: 80px 16px;
  }

  .slider-section .inner .slider-item {
    flex: 1 0 100%;
  }

  .slider-section .inner .slider-item p {
    text-align: center;
  }

  .slider-section .inner::-webkit-scrollbar-track {
    margin: 20px 0 0;
  }

  .slider-section .inner {
    padding-bottom: 40px;
  }

  .faqs-section {
    padding: 0 16px;
  }

  .faqs-section .inner .faq-item h3 {
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 26px;
  }

  .faqs-section .inner .faq-item p {
    font-size: 16px;
    line-height: 21px;
  }

  .faqs-section .inner .faq-item:after {
    right: 0;
    top: 24px;
    font-size: 20px;
  }

  .faqs-section .inner .faq-item.active:after {
    right: 6px;
    top: 24px;
    font-size: 20px;
  }

  .form-section {
    padding: 80px 16px;
  }

  .form-section .top {
    flex-direction: column-reverse;
    row-gap: 48px;
  }

  .col-2-inputs {
    flex-direction: column;
  }

  #get-in-touch-form input[type="email"],
  #get-in-touch-form input[type="tel"] {
    width: 100%;
  }

  footer {
    padding: 120px 16px;
  }

  #footer-form input[type="email"] {
    padding: 14px 0px;
    padding-inline-start: 16px;
    font-size: 16px;
    max-width: calc(100% - 16px);
  }

  .form-section .logos {
	  flex-direction: row;
	  column-gap: 24px;
	  row-gap: 24px;
	  flex-wrap: wrap;
	  justify-content: center;
  }

  .form-section .logos img {
	  flex: 1;
  }
}

@media screen and (max-width: 768px) {
	.traceability-section .inner .col-right img:first-child,
	.sustainability-section .inner .col-left img:first-child {
		display: none;
	}
	
	#get-in-touch-form input[type="submit"] {
		right: unset;
		left: 50%;
		transform: translateX(-50%);
  	}
	
	.form-section .logos img {
		width: 74px;
		height: 74px;
  }
}