/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Global
	6. 	Plugins
	7. 	Page Templates
		a. 	Template: Home
		b. 	Template: About
		c. 	Template: Move
		d. 	Template: Grow
		e. 	Template: Make
		f. 	Template: Sustainability
		g. 	Template: News
		h. 	Template: Careers
		i. 	Template: Contact


		...
		z. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Extras
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Domine", serif;
}

html {
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

@media (min-width: 1799px) {
  .container {
    max-width: 1743px;
  }
}

/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* -------------------------------------------------------------------------- */

main {
  position: relative;
  z-index: 9;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: "Asap", sans-serif;
}

p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* -------------------------------------------------------------------------- */
/*	3. Helper Classes
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */

#header {
  position: fixed;
  top: 26px;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-top-bar {
  background: linear-gradient(231deg, #29b24b 24.34%, #a3cd39 70.29%);
  padding: 7px 23px;
}

.header-top {
  display: flex;
  justify-content: end;
  gap: 41px;
}

.header-top .top-menu {
  display: flex;
  align-items: center;
  gap: 33px;
}

.header-top .top-menu .menu-item a {
  color: #fff;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
}

.header-top .sm-items {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top .sm-item {
  width: 18.7px;
  height: 18.7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top .sm-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .header-wrapper {
  display: flex;
  align-items: center;
  padding: 24px 24px 20px 41px;
  border-radius: 12px;
  background: #edf7f2;
  gap: 112px;
}

#header .header-start {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  flex: 1;
}

#header .logo-area {
  width: 316px;
  height: 58px;
  display: flex;
}

#header .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .main-menu {
  display: flex;
  align-items: center;
  gap: 87px;
}

#header .menu-item a {
  font-family: "Satoshi", sans-serif;
  color: #324e53;
  font-size: 22px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.44px;
}

#mobileMenu .cta-button,
#header .header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 225px;
  height: 54px;
  border-radius: 10px;
  background: #a3cd39;
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
}

#mobileMenu .cta-button i.arrow-right,
#header .header-cta i.arrow-right {
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
}

#header .mobile-menu-btn {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M20 7L4 7' stroke='%23324E53' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M20 12L4 12' stroke='%23324E53' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M20 17L4 17' stroke='%23324E53' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  display: none;
}

#mobileMenu {
  width: 100%;
  background: #edf7f2;
}

#mobileMenu .offcanvas-header {
  padding: 15px 30px;
}

#mobileMenu .offcanvas-body {
  padding: 25px 30px;
}

#mobileMenu .logo-area {
  width: 236px;
  height: 44px;
  display: flex;
}

#mobileMenu .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#mobileMenu .mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

#mobileMenu .mobile-menu .menu-item a {
  font-family: "Satoshi", sans-serif;
  color: #324e53;
  font-size: 28px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.44px;
}

/* -------------------------------------------------------------------------- */
/*	5. Global
/* -------------------------------------------------------------------------- */
main.page .s1 {
  padding: 150px 0;
}

main.page .s1 .heading {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 35px;
  text-align: center;
}

main.page .s1 .content-area {
  padding: 45px 35px;
  background-color: #fff;
  border-radius: 12px;
}

main.page .s1 .content-area ul,
main.page .s1 .content-area ol {
  padding-left: 1.5rem;
  margin-bottom: 20px;
}

main.page .s1 .content-area li {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  list-style: disc;
}

main.page .s1 .content-area p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

main.page .s1 .content-area li > a,
main.page .s1 .content-area p > a {
  text-decoration: underline;
  text-underline-offset: 2.5px;
  color: #324e53;
}

/* -------------------------------------------------------------------------- */
/*	6. Plugins
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7. Page Templates
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	a. Template: Home
/* -------------------------------------------------------------------------- */

body.page-template-home #header {
  top: 57px;
}

/* main.home {
  background-color: #324e53;
} */

main.home .bg {
  background: linear-gradient(
    180deg,
    #324e53 3.58%,
    #2fb34a 14.77%,
    #a3cd39 78.15%
  );
}

main.home .bg-2 {
  background: #a3cd39;
}

main.home .s1 {
  padding: 205px 0 95px 0;
}

main.home .s1 .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  background: linear-gradient(180deg, #edf7f2 61.2%, #7fc7bd 106.35%);
  position: relative;
  overflow: hidden;
  z-index: 3;
  padding: 0 70px 0 0;
  box-shadow: 0 51px 108.2px 0 #008d1d;
}

main.home .s1 .video-area {
  width: 65%;
  position: relative;
}

main.home .s1 .video-area::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url(../images/home/hero-video-overlay.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: 3;
}

main.home .s1 .video-area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url(../images/home/hero-mask-1.png);
  mask-image: url(../images/home/hero-mask-1.png);

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: cover;
  mask-size: cover;
}

main.home .s1 .content-area {
  max-width: 529px;
  width: 100%;
  padding: 77px 0;
}

main.home .s1 .description {
  max-width: 610px;
}

main.home .s1 .subtitle {
  color: #29b24b;
  font-family: "Red Hat Display";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  margin-bottom: 34px;
}

main.home .s1 .title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 65px;
}

main.home .s1 p > b {
  color: #324e53;
  font-size: 21px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.63px;
}

main.home .s1 p {
  color: #324e53;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.54px;
  margin-bottom: 20px;
}

main.home .s1 p:nth-last-child(1) {
  margin-bottom: 33px;
}

main.home .s1 .btns-wrap {
  display: flex;
  align-items: center;
  gap: 41px;
}

main.home .s1 .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  background: #324e53;
  color: #edf7f2;
  font-family: "Red Hat Display";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  width: 267px;
  height: 45px;
  transition: 0.3s ease;
}

main.home .s1 .cta-btn i.arrow-right {
  color: #a3cd39;
  font-family: "Red Hat Display";
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

main.home .s1 .cta-btn:hover {
  color: #edf7f2;
  border-radius: 14px;
  background: #b7dc49;
  box-shadow: 0 12px 28px 0 rgba(0, 141, 29, 0.28);
}

main.home .s1 .cta-btn:hover i.arrow-right {
  color: #a3cd39;
}

main.home .s1 .scroll-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(50, 78, 83, 0.72);
  font-family: "Red Hat Display";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

main.home .s1 .scroll-text::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(50, 78, 83, 0.45);
  display: block;
}

main.home .s-bar {
  display: flex;
  align-items: center;
  gap: 22px;
}

main.home .s-bar .bar-label {
  color: rgba(237, 247, 242, 0.78);
  font-family: "Red Hat Display";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

main.home .s-bar .line {
  flex: 1;
  height: 1px;
  background: rgba(237, 247, 242, 0.32);
}

main.home .s2 {
  padding: 175px 0 230px 0;
}

main.home .s2 .boxes-row {
  display: flex;
  gap: 30px;
}

main.home .s2 .box-item {
  border-radius: 12px;
  background: linear-gradient(140deg, #edf7f2 67.42%, #7fc7bd 106.42%);
  overflow: hidden;
  position: relative;
  z-index: 3;
  padding: 35px 80px 55px 50px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  flex: 1;
  transition: 0.3s ease;
  box-shadow: 0 51px 108.2px 0 #008d1d;
}

main.home .s2 .box-item:hover {
  border-radius: 18px;
}

main.home .s2 .box-item:hover .number,
main.home .s2 .box-item:hover .box-title,
main.home .s2 .box-item:hover p {
  translate: 0 -5px;
}

main.home .s2 .box-item:nth-last-child(1) {
  background: linear-gradient(41deg, #edf7f2 61.2%, #7fc7bd 106.35%);
}
main.home .s2 .box-item:nth-child(2) {
  border: 2px solid #edf7f2;
}

main.home .s2 .box-item .number {
  color: rgba(50, 78, 83, 0.65);
  font-family: "Red Hat Display";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.3px;
  position: absolute;
  top: 42px;
  right: 56px;
  transition: 0.3s ease;
}

main.home .s2 .box-item:nth-child(2) .number {
  color: rgba(237, 247, 242, 0.65);
}

main.home .s2 .box-item:nth-child(1):before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-image: url(../images/home/n-box-hover-default.svg);
  z-index: -1;
  transition: 0.3s ease;
  background-size: 105%;
}

main.home .s2 .box-item:nth-last-child(1):before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-image: url(../images/home/n-box-hover-default-3.svg);
  background-size: 105%;
  transition: 0.3s ease;
  z-index: -1;
}

main.home .s2 .box-item:hover:nth-last-child(1):before,
main.home .s2 .box-item:hover:nth-child(1)::before {
  background-size: 100%;
}

main.home .s2 .box-item .icon-area {
  margin-bottom: 150px;
}

main.home .s2 .box-item.gradient {
  background-image: url(../images/home/n-box-hover-default-2.svg);
  background-repeat: no-repeat;
  top: 62px;
  transition: 0.3s ease;
  background-size: 105%;
  box-shadow: none;
}

main.home .s2 .box-item.gradient:hover {
  background-size: 100%;
  filter: drop-shadow(0 28px 60px rgba(0, 141, 29, 0.36));
}

main.home .s2 .box-title {
  color: #324e53;
  font-size: 48px;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.92px;
  margin-bottom: 52px;
  transition: 0.3s ease;
}

main.home .s2 .box-item p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.3s ease;
}

main.home .s2 .box-item.gradient p,
main.home .s2 .box-item.gradient .box-title {
  color: #edf7f2;
}

main.home .s2 .box-item.gradient .box-title {
  margin-bottom: 150px;
}

main.home .s3 {
  padding-bottom: 250px;
  padding-top: 60px;
}

main.home .s3 .image-area {
  width: 100%;
  position: sticky;
  top: 0;
}

main.home .s3 .image-area img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

main.home .s3 .s3-content {
  position: relative;
  z-index: 3;
  margin-top: -45px;
  border-radius: 12px;
  background: linear-gradient(41deg, #edf7f2 61.2%, #7fc7bd 106.35%);
  box-shadow: 0 51px 108.2px 0 #008d1d;
}

main.home .s3 .content-row {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: end;
}

main.home .s3 .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #a3cd39;
  width: 370px;
  height: 54px;
}

main.home .s3 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/arrow-right.svg);
}

main.home .s3 .content-area {
  padding: 113px 180px 150px 103px;
  border-bottom: 1px solid #324e53;
}

main.home .s3 .items-area {
  display: flex;
  gap: 61px;
  padding: 54px 103px;
}

main.home .s3 .content-item {
  padding-right: 61px;
  border-right: 1px solid #324e53;
}

main.home .s3 .content-item:nth-last-child(1) {
  padding: 0;
  border: none;
}

main.home .s3 .title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 25px;
}

main.home .s3 .desc {
  color: #324e53;
  font-size: 32px;
  font-weight: 400;
  line-height: 102%;
}

main.home .s3 .content-title {
  color: #39b243;
  font-size: 42px;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.68px;
  margin-bottom: 50px;
}

main.home .s3 .content-item p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.home .s4 {
  padding: 75px 0 158px 0;
}

main.home .s4 .content-row {
  display: flex;
  align-items: center;
  gap: 105px;
  padding: 25px 60px 35px 21px;
  border-radius: 12px;
  border: 2px solid #edf7f2;
}

main.home .s4 .image-area {
  flex: 1.25;
  position: relative;
}

main.home .s4 .image-area::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='376' height='276' viewBox='0 0 376 276' fill='none'%3E%3Cpath d='M274.193 -235.001C67.9874 -162.826 -37.3487 -21.0157 12.0615 120.152C65.3078 272.28 217.905 314.847 439.499 237.287C520.838 208.818 777.124 105.813 698.252 -119.529C648.075 -262.889 483.477 -308.252 274.193 -235.001ZM288.348 -194.559C399.585 -233.493 595.346 -273.469 654.423 -104.681C701.378 29.4719 630.509 121.698 424.303 193.872C221.175 264.969 104.57 236.393 58.2284 103.993C-3.15065 -71.3703 198.655 -163.165 288.348 -194.559Z' fill='%23A3CD39'/%3E%3C/svg%3E");
  background-size: 37%;
}

main.home .s4 .image-area video {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 181/152;
  object-fit: cover;
}

main.home .s4 .content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 110px;
  position: relative;
}

main.home .s4 .title {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.92px;
  margin-bottom: 52px;
}

main.home .s4 p {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.home .s5 {
  padding-top: 75px;
  padding-bottom: 230px;
}

main.home .s5 .content-row {
  display: flex;
  gap: 30px;
}

main.home .s5 .box-content {
  flex: 1.08;
}

main.home .s5 .box-inner {
  padding: 70px 58px 175px 138px;
  border-radius: 12px;
  background: linear-gradient(154deg, #edf7f2 44.52%, #7fc7bd 109.97%);
  position: relative;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 51px 108.2px 0 #008d1d;
  top: 130px;
}

main.home .s5 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background-position: bottom right;
  background-image: url(../images/home/s5-overlay.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

main.home .s5 .icon-area {
  display: flex;
  justify-content: end;
  margin-bottom: 55px;
}

main.home .s5 .items-list {
  display: flex;
  gap: 24px;
}

main.home .s5 .items-list .item {
  color: #324e53;
  font-family: "Red Hat Display";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(127, 199, 189, 0.45);
  background: rgba(237, 247, 242, 0.92);
}

main.home .s5 .box-title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 77px;
  max-width: 480px;
}

main.home .s5 p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

main.home .s5 .content-wrap {
  margin-bottom: 100px;
  max-width: 518px;
}

main.home .s5 .image-area {
  flex: 1;
  position: relative;
}

main.home .s5 .image-area img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

main.home .s5 .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #a3cd39;
  width: 100%;
  max-width: 339px;
  height: 54px;
}

main.home .s5 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/arrow-right.svg);
}

/* -------------------------------------------------------------------------- */
/*	b. Template: About
/* -------------------------------------------------------------------------- */

body {
  background: linear-gradient(
    180deg,
    #324e53 2.51%,
    #2fb34a 9.14%,
    #a3cd39 96.47%
  );
}

main.hero-1 .s1 {
  padding: 255px 0 165px 0;
  position: relative;
}

main.hero-1 .s1 .container {
  position: relative;
  z-index: 3;
}

main.about .s1 {
  padding: 270px 0 50px 0;
}

main.about .s1 .content-row {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

main.about .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
}

main.about .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
}

main.about .s3 {
  padding: 125px 0 135px 0;
}

main.about .s3 .content-row {
  display: flex;
  border-radius: 12px;
  border: 2px solid #edf7f2;
  padding: 25px 30px 30px 50px;
  background-image: url(../images/about/s2-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 73%;
}

main.about .s3 .content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 52px;
}

main.about .s3 .icon-area {
  margin-bottom: 120px;
}

main.about .s3 .title {
  color: #edf7f2;
  font-size: 48px;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.92px;
}

main.about .s3 p {
  color: #edf7f2;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  max-width: 540px;
  margin-bottom: 35px;
}

main.about .s3 .image-area {
  flex: 1.1;
}

main.about .s3 .image-area img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

main.about .s4 {
  padding-bottom: 140px;
}

main.about .s4 .content-row {
  display: flex;
  gap: 45px;
}

main.about .s4 .image-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: max-content;
}

main.about .s4 .image-area::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-position: bottom left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='490' height='272' viewBox='0 0 490 272' fill='none'%3E%3Cpath d='M68.6322 37.5116C-131.893 112.706 -236.059 255.34 -190.623 394.699C-141.659 544.877 5.15189 584.553 220.642 503.747C299.741 474.086 549.186 367.419 476.658 144.965C430.516 3.44266 272.151 -38.8045 68.6322 37.5116ZM81.6483 77.4349C189.821 36.8717 379.718 -6.16512 434.044 160.459C477.222 292.893 407.194 385.694 206.669 460.888C9.13607 534.96 -103.114 508.567 -145.728 377.864C-202.17 204.748 -5.57393 110.142 81.6483 77.4349Z' fill='%23A3CD39'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 59%;
}

main.about .s4 .image-area img {
  border-radius: 12px;
  width: 100%;
}

main.about .s4 .content-box {
  flex: 1.08;
  margin-top: 46px;
}

main.about .s4 .box-inner {
  border-radius: 12px;
  background: linear-gradient(32deg, #edf7f2 49.2%, #7fc7bd 84.49%);
  position: relative;
  overflow: hidden;
  padding: 82px 155px 96px 120px;
  z-index: 2;
}

main.about .s4 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/about/s4-overlay.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

main.about .s4 .content-box .title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin: 130px 0 96px 0;
}

main.about .s4 .content-box p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.about .s6 .content-row {
  display: flex;
  gap: 45px;
}

main.about .s6 .content-box {
  flex: 1;
}

main.about .s6 .box-inner {
  border-radius: 12px;
  background: linear-gradient(32deg, #edf7f2 49.2%, #7fc7bd 84.49%);
  position: relative;
  overflow: hidden;
  padding: 82px 25px 100px 85px;
  z-index: 2;
}

main.about .s6 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background-image: url(../images/about/s6-overlay.svg);
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}

main.about .s6 .title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin: 150px 0 100px 0;
}

main.about .s6 .box-item-wrap {
  flex: 1.08;
}
main.about .s6 .box-item {
  border-radius: 12px;
  background: linear-gradient(143deg, #edf7f2 40.63%, #7fc7bd 84.48%);
  padding: 177px 80px 168px 92px;
  position: relative;
  top: 108px;
}

main.about .s6 p {
  color: #324e53;
  font-size: 32px;
  font-weight: 400;
  line-height: 118%;
}

main.about .s6 ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

main.about .s6 li {
  color: #324e53;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  font-family: "Asap", sans-serif;
  letter-spacing: -1.2px;
  padding-bottom: 15px;
  border-bottom: 1px solid #a3cd39;
}

main.about .s6 li b {
  font-family: "Asap", sans-serif;
}

main.about .s6 li:nth-last-child(1) {
  padding-bottom: 0;
  border-bottom: none;
}

main.about .s7 {
  padding: 200px 0 160px 0;
}

main.about .s7 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

main.about .s7 .title {
  color: #fff;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -2.56px;
}

main.about .s7 p {
  color: #324e53;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  max-width: 1004px;
}

main.about .s7 .filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 35px;
}

main.about .s7 .filter-tab::after {
  content: "";
  width: 1px;
  height: 40px;
  background: #fff;
  display: block;
}

main.about .s7 .filter-tab:nth-last-child(1)::after {
  display: none;
}

main.about .s7 .filter-tab {
  display: flex;
  align-items: center;
  gap: 50px;
  color: #324e53;
  font-family: "Asap", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 91%;
  letter-spacing: -1.6px;
}

main.about .s7 .filter-tab.active {
  color: #fff;
}

/* -------------------------------------------------------------------------- */
/*	c. Template: Move
/* -------------------------------------------------------------------------- */

main.move .s1 .content-row {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

main.move .s1 .title {
  color: #fff;
  font-size: 72px;
  font-weight: 600;
  line-height: 60%;
  letter-spacing: -3.2px;
}

main.move .s1 .title span {
  color: #fff;
  font-family: "Asap", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -1.6px;
}

main.move .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
}

main.move .s2 {
  padding: 0 0 270px 0;
}

main.move .s2 .content-row {
  display: flex;
  gap: 30px;
}

main.move .s2 .box-content {
  flex: 1;
  margin-top: 130px;
}

main.move .s2 .box-inner {
  position: relative;
  z-index: 3;
  padding: 180px 150px 97px 145px;
  border-radius: 12px;
  background: linear-gradient(18deg, #7fc7bd -11.63%, #edf7f2 85.58%);
  overflow: hidden;
}

main.move .s2 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url(../images/move/s2-overlay.svg);
  z-index: -1;
}

main.move .s2 .title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin: 290px 0 88px 0;
}

main.move .s2 p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.move .s2 .image-area {
  flex: 1;
}

main.move .s2 .image-area img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

main.move .s3 .content-row {
  padding: 25px 20px 35px 20px;
  gap: 180px;
  border-radius: 12px;
  border: 2px solid #edf7f2;
  display: flex;
  align-items: center;
  margin-bottom: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1142' height='776' viewBox='0 0 1142 776' fill='none'%3E%3Cpath d='M568.741 -48C911.887 -47.9999 1141.63 122.46 1141.63 379.851C1141.63 657.225 937.494 813.122 568.741 813.122C433.385 813.122 0 791.516 0 380.649C3.51419e-05 119.262 220.474 -48 568.741 -48ZM440.773 594.077L559.927 733.937C562.851 733.953 565.789 733.963 568.741 733.963C659.125 733.963 736.64 725.902 801.706 709.479L565.467 437.394L440.773 594.077ZM425.468 35.8447C256.397 61.1801 72.6797 143.299 72.6797 379.851C72.6799 595.142 191.145 705.777 453.518 729.2L239.955 478.521C198.251 429.761 191.645 323.415 231.886 273.855L425.468 35.8447ZM878.626 683.694C993.085 633.974 1053.35 546.732 1063.32 419.125L648.914 419.125L878.626 683.694ZM568.741 25.7373C558.747 25.7373 548.386 25.8726 537.727 26.1768L293.628 326.296C270.947 354.273 271.678 395.041 294.359 422.219L391.729 536.509L778.785 50.1533C700.107 30.0972 621.897 25.7373 568.741 25.7373ZM641.88 341.378L1063.04 341.378C1049.41 196.835 958.714 117.667 854.057 74.7666L641.88 341.378Z' fill='url(%23paint0_linear_1795_3884)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1795_3884' x1='-47.4908' y1='196.548' x2='951.989' y2='702.352' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2329B24B'/%3E%3Cstop offset='1' stop-color='%23A3CD39'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 65%;
}

main.move .s3 .image-area {
  flex: 1.23;
  position: relative;
}

main.move .s3 .image-area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -25px;
  left: -21px;
  display: block;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='608' height='355' viewBox='0 0 608 355' fill='none'%3E%3Cpath d='M277.062 -259.335C525.341 -172.434 652.17 -1.68887 592.679 168.282C528.568 351.45 344.835 402.703 78.0274 309.318C-19.9083 275.039 -328.485 151.017 -233.52 -120.303C-173.105 -292.914 25.0766 -347.532 277.062 -259.335ZM260.019 -210.642C126.085 -257.52 -109.617 -305.652 -180.749 -102.425C-237.284 59.1 -151.955 170.143 96.324 257.043C340.898 342.647 481.295 308.24 537.092 148.826C610.994 -62.318 368.012 -172.843 260.019 -210.642Z' fill='%23A3CD39'/%3E%3C/svg%3E");
  background-size: 71%;
}

main.move .s3 .content-area {
  flex: 1;
}

main.move .s3 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 93px;
}

main.move .s3 .desc-area {
  max-width: 612px;
  margin-bottom: 80px;
}

main.move .s3 p {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.move .s3 .cta-btn {
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 292px;
  height: 54px;
  border-radius: 10px;
  background: #fff;
}

main.move .s3 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/arrow-right.svg);
}

/* -------------------------------------------------------------------------- */
/*	d. Template: Grow
/* -------------------------------------------------------------------------- */

main.grow .s1 {
  padding: 270px 0 200px 0;
}

main.grow .s1 .content-row {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

main.grow .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
}

main.grow .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
}

main.grow .s2 .content-row {
  display: flex;
  gap: 30px;
}

main.grow .s2 .image-area {
  flex: 1;
  margin-top: 80px;
}

main.grow .s2 .image-area img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

main.grow .s2 .content-box {
  flex: 1;
}

main.grow .s2 .box-inner {
  border-radius: 12px;
  background: linear-gradient(32deg, #edf7f2 49.2%, #7fc7bd 84.49%);
  padding: 82px 168px 143px 143px;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

main.grow .s2 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(../images/grow/s2-overlay.svg);
  z-index: -1;
}

main.grow .s2 .title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin: 145px 0 50px 0;
}

main.grow .s2 p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.grow .s3 {
  padding: 280px 0 260px 0;
}

main.grow .s3 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 107px;
}

main.grow .s3 .boxes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

main.grow .s3 .box-item:not(.gradient)::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background-image: url(../images/grow/box-overlay.svg);
  background-position: top right;
  z-index: -1;
}

main.grow .s3 .box-item {
  border-radius: 12px;
  background: linear-gradient(41deg, #edf7f2 61.2%, #7fc7bd 106.35%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 35px 100px 75px 50px;
  z-index: 3;
}

main.grow .s3 .box-item.gradient {
  top: -42px;
  background-color: transparent;
  background-image: url(../images/grow/box-bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
  border: 2px solid #edf7f2;
}

main.grow .s3 .box-item .icon-area {
  margin-bottom: 90px;
}

main.grow .s3 .box-item .box-title {
  color: #324e53;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.92px;
  margin-bottom: 40px;
}

main.grow .s3 .box-item p {
  color: #324e53;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

main.grow .s3 .box-item.gradient p,
main.grow .s3 .box-item.gradient .box-title {
  color: #fff;
}

main.grow .s4 {
  padding-bottom: 165px;
}

main.grow .s4 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

main.grow .s4 .title {
  color: #324e53;
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  max-width: 1255px;
}

main.grow .s4 .cta-btn {
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 292px;
  height: 54px;
  gap: 25px;
  border-radius: 10px;
  background: #fff;
}

main.grow .s4 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
}

/* -------------------------------------------------------------------------- */
/*	e. Template: Make
/* -------------------------------------------------------------------------- */

main.make.hero-1 .s1 {
  padding: 200px 0 145px 0;
}

main.make .s1 .content-row {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

main.make .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
}

main.make .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
}

main.make .s2 {
  padding: 0 0 300px 0;
}

main.make .s2 .content-row {
  display: flex;
  gap: 30px;
}

main.make .s2 .image-area {
  flex: 1;
  margin-top: 80px;
}

main.make .s2 .image-area video {
  width: 100%;
  height: 100%;
  aspect-ratio: 27/36;
  border-radius: 12px;
  object-fit: cover;
}

main.make .s2 .content-box {
  flex: 1;
}

main.make .s2 .box-inner {
  padding: 82px 130px 175px 143px;
  position: relative;
  overflow: hidden;
  z-index: 3;
  border-radius: 12px;
  background: linear-gradient(32deg, #edf7f2 49.2%, #7fc7bd 84.49%);
}

main.make .s2 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background-position: top left;
  background-repeat: no-repeat;
  background-image: url(../images/make/s2-overlay.svg);
  z-index: -1;
}

main.make .s2 .title {
  color: #324e53;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin: 95px 0 108px 0;
}

main.make .s2 li,
main.make .s2 p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

main.make .s2 ul {
  padding-left: 1.5rem;
}

main.make .s2 li {
  list-style: disc;
  margin-bottom: 5px;
}

main.make .s3 {
  padding-bottom: 190px;
}

main.make .s3 .title-row {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 25px 110px 35px 20px;
  border-radius: 12px;
  border: 2px solid #edf7f2;
  margin-bottom: 260px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='827' height='776' viewBox='0 0 827 776' fill='none'%3E%3Cpath d='M568.741 -43C911.887 -42.9999 1141.63 127.46 1141.63 384.851C1141.63 662.225 937.494 818.122 568.741 818.122C433.385 818.122 0 796.516 0 385.649C3.51419e-05 124.262 220.474 -43 568.741 -43ZM440.773 599.078L559.926 738.937C562.85 738.953 565.789 738.963 568.741 738.963C659.125 738.963 736.64 730.902 801.707 714.479L565.468 442.394L440.773 599.078ZM425.467 40.8447C256.397 66.1802 72.6797 148.299 72.6797 384.851C72.6799 600.142 191.145 710.777 453.517 734.2L239.954 483.521C198.25 434.761 191.644 328.415 231.885 278.855L425.467 40.8447ZM878.627 688.694C993.085 638.974 1053.35 551.731 1063.32 424.125L648.915 424.125L878.627 688.694ZM568.741 30.7373C558.747 30.7373 548.385 30.8726 537.726 31.1768L293.627 331.296C270.946 359.273 271.677 400.041 294.358 427.219L391.729 541.51L778.786 55.1543C700.108 35.0979 621.897 30.7373 568.741 30.7373ZM641.881 346.378L1063.04 346.378C1049.41 201.835 958.714 122.668 854.057 79.7676L641.881 346.378Z' fill='url(%23paint0_linear_1792_3844)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1792_3844' x1='-47.4908' y1='201.548' x2='951.989' y2='707.352' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2329B24B'/%3E%3Cstop offset='1' stop-color='%23A3CD39'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
}

main.make .s3 .title-row .content-area {
  flex: 1;
}

main.make .s3 .title-row .image-area {
  flex: 1;
  position: relative;
}

main.make .s3 .title-row .image-area img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

main.make .s3 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 73px;
}

main.make .s3 p {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  max-width: 628px;
}

main.make .s3 .content-row {
  display: flex;
  gap: 30px;
}

main.make .s3 .image-area {
  flex: 1;
  position: relative;
  height: max-content;
}

main.make .s3 .content-row .image-area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='610' height='327' viewBox='0 0 610 327' fill='none'%3E%3Cpath d='M528.509 41.6123C776.789 128.513 903.618 299.258 844.126 469.23C780.015 652.397 596.283 703.65 329.475 610.265C231.539 575.986 -77.0382 451.964 17.9268 180.644C78.3423 8.03352 276.524 -46.585 528.509 41.6123ZM511.466 90.3057C377.533 43.4277 141.83 -4.70426 70.6984 198.522C14.1628 360.047 99.4918 471.09 347.771 557.991C592.345 643.594 732.742 609.188 788.539 449.774C862.441 238.629 619.46 128.105 511.466 90.3057Z' fill='%23A3CD39'/%3E%3C/svg%3E");
  background-size: 78%;
}

main.make .s3 .content-row .image-area video {
  width: 100%;
  height: auto;
  aspect-ratio: 35/42;
  border-radius: 12px;
  object-fit: cover;
}

main.make .s3 .box-content {
  flex: 1;
  margin-top: 130px;
}

main.make .s3 .box-inner {
  border-radius: 12px;
  background: linear-gradient(18deg, #7fc7bd -11.63%, #edf7f2 85.58%);
  padding: 100px 165px 97px 138px;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

main.make .s3 .box-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-repeat: no-repeat;
  background-image: url(../images/make/s3-overlay.svg);
  background-position: top right;
  z-index: -1;
}

main.make .s3 .box-title {
  color: #324e53;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 100px;
}

main.make .s3 .box-content p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

main.make .s3 .box-content p b {
  font-weight: 700;
}

main.make .s3 .icon-area {
  margin-bottom: 130px;
}

main.make .s3 .cta-btn {
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 339px;
  height: 54px;
  border-radius: 10px;
  background: #a3cd39;
  margin-top: 30px;
}

main.make .s3 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/arrow-right.svg);
}

/* -------------------------------------------------------------------------- */
/*	f. Template: Sustainability
/* -------------------------------------------------------------------------- */

main.hero-1.sustainability .s1 {
  padding: 225px 0 150px 0;
}

main.sustainability .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
}

main.sustainability .s1 .content-row {
  display: flex;
  flex-direction: column;
  gap: 53px;
}

main.sustainability .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
  max-width: 1350px;
}

main.sustainability .s2 .content-row {
  display: flex;
  gap: 30px;
}

main.sustainability .s2 .box-item {
  border-radius: 12px;
  background: linear-gradient(140deg, #edf7f2 67.42%, #7fc7bd 106.42%);
  padding: 100px 30px 70px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 2px solid #edf7f2;
}

main.sustainability .s2 .box-item:not(.gradient):before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-image: url(../images/sustainability/box-overlay.svg);
  background-position: center;
}

main.sustainability .s2 .box-item.gradient {
  background-image: url(../images/sustainability/box-bg.svg);
  background-position: top right;
  background-repeat: no-repeat;
  top: 63px;
  padding-bottom: 172px;
  justify-content: end;
}

main.sustainability .s2 .box-item .icon-area {
  margin-bottom: 80px;
}

main.sustainability .s2 .box-title {
  color: #324e53;
  font-size: 48px;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.92px;
  margin-bottom: 52px;
}

main.sustainability .s2 .box-item.gradient li,
main.sustainability .s2 .box-item.gradient p,
main.sustainability .s2 .box-item.gradient .box-title {
  color: #edf7f2;
}

main.sustainability .s2 .box-item p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 25px;
}

main.sustainability .s2 .box-item ul {
  padding-left: 1.5rem;
}

main.sustainability .s2 .box-item li {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
  list-style: disc;
}

main.sustainability .s3 {
  padding: 220px 0 165px 0;
}

main.sustainability .s3 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main.sustainability .s3 .title {
  color: #fff;
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 120px;
}

main.sustainability .s3 .cta-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  border-radius: 10px;
  background: #fff;
  width: 100%;
  max-width: 366px;
  height: 54px;
}

main.sustainability .s3 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/arrow-right.svg);
  background-repeat: no-repeat;
}

/* -------------------------------------------------------------------------- */
/*	g. Template: News
/* -------------------------------------------------------------------------- */

main.news .s1 {
  padding: 270px 0 240px 0;
}

main.news .s1 .content-row {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

main.news .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
}

main.news .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
  max-width: 933px;
}

main.news .s2 {
  padding-bottom: 225px;
}

main.news .s2 .news-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

main.news .s2 .news-item {
  border-radius: 12px;
  background: linear-gradient(140deg, #edf7f2 67.42%, #7fc7bd 106.42%);
  overflow: hidden;
  position: relative;
  z-index: 3;
  padding: 25px 30px 30px 30px;
}

main.news .s2 .news-item::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image: url(../images/news/overlay.svg);
  z-index: -1;
}

main.news .s2 .news-item .image-area {
  width: 100%;
  height: 218px;
}
main.news .s2 .news-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

main.news .s2 .news-item .news-title {
  margin: 60px 0 52px 0;
  color: #324e53;
  font-size: 48px;
  font-weight: 600;
  line-height: 97%;
  letter-spacing: -1.92px;
}

main.news .s2 .news-item p {
  color: #324e53;
  font-size: 21px;
  font-weight: 400;
  line-height: 140%;
}

/* -------------------------------------------------------------------------- */
/*	h. Template: Careers
/* -------------------------------------------------------------------------- */

body.page-template-careers {
  background: linear-gradient(
    180deg,
    #324e53 14.04%,
    #2fb34a 36.44%,
    #a3cd39 126.02%
  );
}

main.careers .s1 {
  padding: 250px 0 180px 0;
}

main.careers .s1 .content-row {
  display: flex;
  gap: 270px;
}

main.careers .s1 .subtitle {
  color: #fff;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  margin-bottom: 65px;
}

main.careers .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
}

main.careers .s1 .desc-area {
  max-width: 704px;
}

main.careers .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
  margin-bottom: 20px;
}

main.careers .s1 .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #fff;
  width: 100%;
  max-width: 292px;
  height: 54px;
  margin-top: 54px;
}

main.careers .s1 .cta-btn i.arrow-right {
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
}

/* -------------------------------------------------------------------------- */
/*	i. Template: Contact
/* -------------------------------------------------------------------------- */

body.page-template-contact {
  background: linear-gradient(
    180deg,
    #324e53 14.04%,
    #2fb34a 36.44%,
    #a3cd39 126.02%
  );
}

main.contact .s1 {
  padding: 270px 0 135px 0;
}

main.contact .content-row {
  display: flex;
  gap: 300px;
  justify-content: space-between;
}

main.contact .s1 .subtitle {
  color: #fff;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  margin-bottom: 65px;
}

main.contact .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 91%;
  letter-spacing: -3.2px;
  margin-bottom: 120px;
  max-width: 530px;
}

main.contact .s1 p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: -0.72px;
  max-width: 574px;
}

main.contact .s1 .form-area {
  flex: 1;
}

main.contact .form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 17px;
}

main.contact .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

main.contact .textarea-wrap label,
main.contact .input-wrap label {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

main.contact .input-wrap label i {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

main.contact .input-wrap select,
main.contact .input-wrap input {
  width: 100%;
  padding: 12px 14px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #fff;
  outline: none;
  box-shadow: none;
}

main.contact .input-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M1 1L5.5 5.5L10 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
}

main.contact .textarea-wrap textarea::placeholder,
main.contact .input-wrap input::placeholder {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

main.contact .textarea-wrap {
  margin-bottom: 17px;
  width: 100%;
}

main.contact .textarea-wrap textarea {
  width: 100%;
  resize: none;
  height: 140px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #fff;
}

main.contact .submit-wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #fff;
  color: #324e53;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  max-width: 224px;
  width: 100%;
  height: 54px;
}

main.contact .submit-wrap button i.arrow-right {
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}

main.contact .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

main.contact .cb-items {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 39px;
}

main.contact .wpcf7-acceptance .wpcf7-list-item label {
  position: relative;
  cursor: pointer;
}

main.contact .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

main.contact .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
}

main.contact
  .wpcf7-acceptance
  .wpcf7-list-item
  input[type="checkbox"]:checked
  ~ .wpcf7-list-item-label::before {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M5 16.577l2.194-2.195 5.486 5.484L24.804 7.743 27 9.937l-14.32 14.32z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: 14px;
}

main.contact .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: block;
  padding-left: 30px;
}

main.contact .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* -------------------------------------------------------------------------- */
/*	7z. Template: Full Width
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	8. Post: Archive
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	9. Post: Single
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	10. Blocks
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	11. Entry Content
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	13. Site Pagination
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	14. Error 404
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	15.	Extras
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	16. Site Footer
/* -------------------------------------------------------------------------- */

#footer .footer-wrapper {
  background-color: #324e53;
  border-radius: 12px 12px 0 0;
  padding: 74px 95px 275px 95px;
  background-image: url(../images/general/farmers-elite-footer.svg);
  background-position: bottom center;
  background-size: 100%;
  background-repeat: no-repeat;
}

#footer .logo-area {
  display: flex;
  width: 379.904px;
  height: 61.95px;
}

.logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 86px;
}

#footer .footer-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

#footer .footer-menu .menu-item a {
  color: #fff;
  font-family: "Satoshi", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.44px;
}

#footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

#footer .footer-child-menu {
  display: flex;
  gap: 33px;
}

#footer .footer-child-menu .menu-item a {
  color: #fff;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: -0.36px;
}

#footer .social-items {
  display: flex;
  gap: 12px;
}

#footer .sm-item img {
  filter: invert(1) contrast(3);
}

#footer .footer-start {
  display: flex;
  gap: 55px;
}

#footer .footer-end {
  display: flex;
  align-items: center;
  gap: 55px;
}

#footer .copyright,
#footer .legal-links,
#footer .legal-links a {
  color: #fff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15.71px;
}

/* -------------------------------------------------------------------------- */
/*	17. Media Queries
/* -------------------------------------------------------------------------- */

@media (max-width: 1799px) {
  main.hero-1 .s1 {
    padding: 200px 0 140px 0;
  }

  #header .header-start {
    gap: 140px;
  }

  #header .main-menu {
    gap: 35px;
  }

  #header .menu-item a {
    font-size: 20px;
  }

  /* Home */
  main.home .s1 .box {
    padding: 0 40px 0 0;
  }

  main.home .s1 .video-area{
    width: 62%;
  }

  main.home .s1 .title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  main.home .s1 p > b {
    font-size: 20px;
  }

  main.home .s1 .content-area {
    max-width: 460px;
    padding: 45px 0;
  }

  main.home .s1 .cta-btn {
    gap: 12px;
    width: 255px;
  }

  main.home .s1 .scroll-text {
    gap: 10px;
  }

  main.home .s1 .btns-wrap {
    gap: 20px;
  }

  main.home .s1 .scroll-text::after {
    width: 29px;
  }

  main.home .s2 {
    padding: 60px 0 175px 0;
  }

  main.home .s2 .box-item {
    padding: 30px 55px 45px 40px;
  }

  main.home .s2 .box-item.gradient .box-title {
    margin-bottom: 80px;
  }

  main.home .s2 .box-item .icon-area {
    margin-bottom: 100px;
  }

  main.home .s2 .box-item p {
    font-size: 20px;
  }

  main.home .s2 .box-title {
    font-size: 42px;
  }

  main.home .s3 {
    padding-bottom: 200px;
  }

  main.home .s3 .content-area {
    padding: 95px 100px 125px 75px;
  }

  main.home .s3 .items-area {
    gap: 40px;
    padding: 50px 75px;
  }

  main.home .s3 .content-item p {
    font-size: 20px;
  }

  main.home .s3 .title {
    font-size: 56px;
    margin-bottom: 20px;
  }

  main.home .s3 .desc {
    font-size: 24px;
  }

  main.home .s3 .content-item {
    padding-right: 40px;
  }

  main.home .s4 .image-area {
    flex: 1.3;
  }

  main.home .s4 p {
    font-size: 20px;
  }

  main.home .s4 .title {
    font-size: 40px;
    margin-bottom: 35px;
  }

  main.home .s4 .content-area {
    gap: 70px;
  }

  main.home .s4 .content-row {
    gap: 75px;
    padding: 25px 75px 35px 21px;
  }

  main.home .s5 .box-title {
    font-size: 56px;
  }

  main.home .s5 p {
    font-size: 20px;
  }

  main.home .s5 .content-wrap {
    margin-bottom: 100px;
  }

  main.home .s5 .icon-area {
    margin-bottom: 35px;
  }

  main.home .s5 .box-inner {
    padding: 60px 58px 80px 100px;
  }

  /* About */
  main.about .s1 {
    padding: 200px 0 50px 0;
  }

  main.about .s1 p {
    font-size: 22px;
  }

  main.about .s3 .content-row {
    gap: 35px;
  }

  main.about .s4 .content-box p,
  main.about .s3 p {
    font-size: 20px;
  }

  main.about .s4 .box-inner {
    padding: 80px 95px 90px 95px;
  }

  main.about .s4 .content-box .title {
    font-size: 56px;
    margin: 100px 0 60px 0;
  }

  main.about .s6 .title {
    font-size: 56px;
    margin: 100px 0 70px 0;
  }

  main.about .s6 .box-inner {
    padding: 75px 65px 80px 75px;
  }

  main.about .s6 li {
    font-size: 22px;
  }

  main.about .s6 p {
    font-size: 24px;
  }

  main.about .s6 .box-item {
    padding: 110px 50px 100px 80px;
  }

  /* Move */
  main.move .s1 p {
    font-size: 22px;
  }

  main.move .s2 .title {
    font-size: 56px;
    margin: 200px 0 80px 0;
  }

  main.move .s2 p {
    font-size: 20px;
  }

  main.move .s2 .box-inner {
    padding: 150px 100px 80px 95px;
  }

  main.move .s3 .title {
    font-size: 56px;
    margin-bottom: 35px;
  }

  main.move .s3 p {
    font-size: 20px;
  }

  main.move .s3 .desc-area {
    margin-bottom: 50px;
  }

  main.move .s3 .content-row {
    gap: 70px;
    background-size: 70%;
  }

  /* Make */
  main.make .s1 p {
    font-size: 22px;
  }

  main.make .s2 {
    padding: 0 0 200px 0;
  }

  main.make .s3 p,
  main.make .s2 li,
  main.make .s2 p {
    font-size: 20px;
  }

  main.make .s2 .title {
    font-size: 56px;
    margin: 75px 0 90px 0;
  }

  main.make .s2 .box-inner {
    padding: 50px 75px 120px 80px;
  }

  main.make .s3 .icon-area {
    margin-bottom: 80px;
  }

  main.make .s3 .title {
    font-size: 56px;
    letter-spacing: -2px;
  }

  main.make .s3 .box-title {
    font-size: 56px;
    margin-bottom: 50px;
    letter-spacing: -2px;
  }

  main.make .s3 .box-inner {
    padding: 95px 75px 75px 70px;
  }

  /* Grow */
  main.grow .s1 {
    padding: 200px 0 150px 0;
  }

  main.grow .s1 p {
    font-size: 22px;
  }

  main.grow .s2 .title {
    font-size: 56px;
    margin: 75px 0 45px 0;
  }

  main.grow .s2 p {
    font-size: 20px;
  }

  main.grow .s2 .box-inner {
    padding: 75px 70px 90px 70px;
  }

  main.grow .s3 {
    padding: 180px 0 160px 0;
  }

  main.grow .s3 .title {
    font-size: 56px;
  }

  main.grow .s3 .box-item {
    padding: 35px 45px 60px 30px;
  }

  main.grow .s3 .box-item .box-title {
    font-size: 40px;
    margin-bottom: 25px;
  }

  main.grow .s3 .box-item .icon-area {
    margin-bottom: 50px;
  }

  main.grow .s4 .title {
    font-size: 56px;
    max-width: 1100px;
  }

  main.grow .s4 {
    padding-bottom: 120px;
  }

  /* Sustainability */
  main.sustainability .s1 p {
    font-size: 22px;
    max-width: 1260px;
  }

  main.sustainability .s1 .title {
    font-size: 56px;
  }

  main.sustainability .s2 .box-item li,
  main.sustainability .s2 .box-item p {
    font-size: 18px;
  }

  main.sustainability .s2 .box-item .icon-area {
    margin-bottom: 70px;
  }

  main.sustainability .s2 .box-item {
    padding: 60px 30px 40px 35px;
  }

  main.sustainability .s3 {
    padding: 175px 0 150px 0;
  }

  main.sustainability .s3 .title {
    font-size: 56px;
  }

  /* News */
  main.news .s1 {
    padding: 230px 0 172px 0;
  }

  main.careers .s1 .title,
  main.news .s1 .title {
    font-size: 56px;
  }

  main.news .s1 p {
    font-size: 22px;
    max-width: 860px;
  }

  main.news .s2 .news-item .news-title {
    margin: 40px 0 35px 0;
    font-size: 42px;
  }

  main.news .s2 .news-item p {
    font-size: 20px;
  }

  /* Careers */
  main.careers .s1 {
    padding: 170px 0 160px 0;
  }

  main.careers .s1 p {
    font-size: 22px;
  }

  main.careers .s1 .desc-area {
    max-width: 630px;
  }

  main.careers .s1 .content-row {
    gap: 150px;
  }

  /* Contact */
  main.contact .s1 {
    padding: 230px 0 125px 0;
  }

  main.contact .s1 .title {
    font-size: 56px;
    max-width: 460px;
  }

  main.contact .s1 p {
    font-size: 22px;
    max-width: 500px;
  }

  main.contact .content-row {
    gap: 130px;
  }

  #footer .footer-box {
    padding: 65px 70px 65px 61px;
  }
}

@media (max-width: 1399px) {
  #header .logo-area {
    width: 236px;
    height: 44px;
  }

  #header .header-wrapper {
    gap: 70px;
  }

  #header .header-cta {
    height: 48px;
  }

  #header .header-cta {
    width: 210px;
  }

  #header .menu-item a {
    font-size: 18px;
  }

  #header .header-start {
    gap: 110px;
  }

  /* Home */
  main.home .s1 {
    padding: 175px 0 130px 0;
  }

  main.home .s1 .box {
    justify-content: space-between;
    padding: 0 20px 0 0;
  }

  main.home .s1 .content-area {
    padding: 30px 0;
    max-width: 433px;
  }

  main.home .s1 .video-area {
    width: 59%;
  }

  main.home .s1 .subtitle {
    margin-bottom: 24px;
  }

  main.home .s1 .btns-wrap {
    gap: 15px;
  }

  main.home .s1 .scroll-text {
    gap: 10px;
    font-size: 11px;
  }

  main.home .s1 .scroll-text::after {
    width: 20px;
  }

  main.home .s1 .cta-btn {
    font-size: 14px;
    width: 250px;
  }

  main.home .s1 p > b {
    font-size: 18px;
    letter-spacing: -0.32px;
  }

  main.home .s1 p {
    font-size: 16px;
    letter-spacing: -0.27px;
    margin-bottom: 15px;
  }

  main.home .s1 .title {
    font-size: 42px;
    letter-spacing: -2px;
  }

  main.home .s2 .box-title {
    font-size: 40px;
    letter-spacing: -0.96px;
  }

  main.home .s2 .box-item.gradient .box-title {
    margin-bottom: 52px;
  }

  main.home .s2 .box-item .icon-area {
    margin-bottom: 70px;
  }

  main.home .s2 .box-item {
    padding: 30px 35px 45px 35px;
  }

  main.home .s3 {
    padding-bottom: 175px;
  }

  main.home .s3 .content-area {
    padding: 80px 50px 110px 50px;
  }

  main.home .s3 .content-row {
    gap: 45px;
  }

  main.home .s3 .desc {
    font-size: 22px;
  }

  main.home .s3 .title {
    font-size: 48px;
    letter-spacing: -1.6px;
  }

  main.home .s3 .content-title {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 35px;
  }

  main.home .s3 .content-item p {
    font-size: 18px;
  }

  main.home .s3 .items-area {
    padding: 50px;
  }

  main.home .s3 .content-item {
    padding-right: 30px;
  }

  main.home .s5 p,
  main.home .s2 .box-item p,
  main.home .s4 p {
    font-size: 18px;
  }

  main.home .s4 .image-area {
    flex: 1.2;
  }

  main.home .s4 .content-row {
    gap: 45px;
    padding: 25px 35px 35px 21px;
  }

  main.home .s4 .title {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -0.96px;
  }

  main.home .s4 .content-area {
    gap: 50px;
  }

  main.home .s5 .items-list {
    gap: 16px;
  }

  main.home .s5 .box-content {
    flex: 1.15;
  }

  main.home .s5 .box-inner {
    padding: 45px 55px 60px 90px;
    top: 60px;
  }

  main.home .s5 .box-title {
    font-size: 48px;
    letter-spacing: -1.6px;
    max-width: 390px;
    margin-bottom: 40px;
  }

  /* Sustainability */
  main.hero-1.sustainability .s1 {
    padding: 175px 0 120px 0;
  }

  main.sustainability .s1 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.sustainability .s1 p {
    font-size: 20px;
    letter-spacing: -0.36px;
  }

  main.sustainability .s2 .box-item li,
  main.sustainability .s2 .box-item p {
    font-size: 18px;
  }

  main.sustainability .s2 .box-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  main.sustainability .s2 .content-row {
    gap: 15px;
  }

  main.sustainability .s2 .box-item {
    padding: 60px 20px 40px 25px;
  }

  main.sustainability .s2 .box-item.gradient {
    top: 30px;
    padding-bottom: 167px;
  }

  main.sustainability .s3 .title {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 80px;
  }

  main.sustainability .s3 {
    padding: 150px 0 125px 0;
  }

  /* About */
  main.hero-1 .s1 {
    padding: 180px 0 120px 0;
  }

  main.about .s1 {
    padding: 180px 0 40px 0;
  }

  main.about .s1 .title {
    font-size: 48px;
    letter-spacing: -2.2px;
  }

  main.about .s1 p {
    font-size: 20px;
  }

  main.about .s3 {
    padding: 100px 0 110px 0;
  }

  main.about .s3 .title {
    font-size: 38px;
  }

  main.about .s3 .content-area {
    gap: 30px;
  }

  main.about .s3 .content-row {
    gap: 35px;
    padding: 20px 25px 25px 35px;
  }

  main.about .s4 .content-box p,
  main.about .s3 p {
    font-size: 18px;
  }

  main.about .s4 .content-box .title {
    font-size: 48px;
    margin: 80px 0 50px 0;
  }

  main.about .s4 .box-inner {
    padding: 75px 80px 90px 85px;
  }

  main.about .s6 .title {
    font-size: 48px;
    margin: 80px 0 45px 0;
  }

  main.about .s6 li {
    font-size: 20px;
  }

  main.about .s6 p {
    font-size: 22px;
  }

  main.about .s6 .box-item {
    padding: 90px 35px 80px 48px;
    top: 80px;
  }

  main.about .s7 {
    padding: 175px 0 120px 0;
  }

  main.about .s7 p {
    font-size: 20px;
  }

  main.about .s7 .filter-tab {
    font-size: 28px;
    letter-spacing: -1.2px;
  }

  /* News */

  main.news .s1 {
    padding: 175px 0 120px 0;
  }

  main.careers .s1 .title,
  main.news .s1 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.news .s1 p {
    font-size: 20px;
    max-width: 770px;
  }

  main.news .s2 .news-item .image-area {
    height: 175px;
  }

  main.news .s2 .news-item .news-title {
    font-size: 38px;
    letter-spacing: -0.96px;
  }

  main.news .s2 .news-item p {
    font-size: 18px;
  }

  /* Careers */
  main.careers .s1 {
    padding: 150px 0 125px 0;
  }

  main.careers .s1 p {
    font-size: 20px;
  }

  main.careers .s1 .desc-area {
    max-width: 570px;
  }

  main.careers .s1 .cta-btn {
    margin-top: 30px;
  }

  /* Contact */
  main.contact .s1 {
    padding: 200px 0 125px 0;
  }

  main.contact .content-row {
    gap: 90px;
  }

  main.contact .s1 p {
    font-size: 20px;
    max-width: 460px;
    letter-spacing: -0.36px;
  }

  main.contact .s1 .title {
    font-size: 48px;
    max-width: 400px;
    letter-spacing: -2px;
    margin-bottom: 100px;
  }

  /* Move */

  main.move .s1 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.move .s1 p {
    font-size: 20px;
  }

  main.move .s1 .title span {
    font-size: 24px;
    letter-spacing: -0.8px;
  }

  main.move .s2 {
    padding: 0 0 170px 0;
  }

  main.move .s2 .title {
    font-size: 48px;
    margin: 180px 0 80px 0;
  }

  main.move .s2 p {
    font-size: 18px;
  }

  main.move .s2 .box-inner {
    padding: 120px 75px 80px 80px;
  }

  main.move .s3 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.move .s3 p {
    font-size: 18px;
  }

  /* Make */
  main.make.hero-1 .s1 {
    padding: 175px 0 80px 0;
  }

  main.make .s1 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.make .s1 p {
    font-size: 20px;
  }

  main.make .s2 .title {
    font-size: 48px;
    margin: 45px 0 60px 0;
  }

  main.make .s2 p {
    font-size: 18px;
  }

  main.make .s2 li {
    margin-bottom: 3px;
    font-size: 18px;
  }

  main.make .s2 .box-inner {
    padding: 70px 50px 90px 45px;
  }

  main.make .s3 .title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  main.make .s3 .icon-area {
    margin-bottom: 70px;
  }

  main.make .s3 .title-row {
    gap: 70px;
    padding: 25px 60px 35px 20px;
    margin-bottom: 180px;
  }

  main.make .s3 p {
    max-width: 500px;
    font-size: 18px;
  }

  main.make .s3 .box-title {
    font-size: 48px;
    margin-bottom: 45px;
  }

  main.make .s3 .box-content p {
    font-size: 18px;
  }

  main.make .s3 .box-content {
    margin-top: 90px;
  }

  main.make .s3 .box-inner {
    padding: 82px 50px 75px 45px;
  }

  /* Grow */
  main.grow .s1 {
    padding: 180px 0 105px 0;
  }

  main.grow .s2 .title,
  main.grow .s1 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.grow .s1 p {
    font-size: 20px;
  }

  main.grow .s2 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.grow .s2 .box-inner {
    padding: 70px 45px 75px 55px;
  }

  main.grow .s2 p {
    font-size: 18px;
  }

  main.grow .s3 .title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  main.grow .s3 .boxes-row {
    gap: 15px;
  }

  main.grow .s3 .box-item .box-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  main.grow .s3 .box-item {
    padding: 30px 25px 40px 20px;
  }

  main.grow .s4 .title {
    font-size: 48px;
    max-width: 900px;
    letter-spacing: -2px;
  }

  main.grow .s4 {
    padding-bottom: 100px;
  }

  #footer .footer-wrapper {
    padding: 70px 50px 200px 50px;
  }

  #footer .footer-top {
    margin-bottom: 75px;
  }

  #footer .logo-area {
    width: 290.904px;
    height: 47.45px;
  }

  #footer .footer-menu .menu-item a {
    font-size: 20px;
  }

  #footer .footer-start,
  #footer .footer-end {
    gap: 35px;
  }
}

@media (max-width: 1199px) {
  #header .header-wrapper {
    padding: 15px 25px;
    gap: 20px;
  }

  #header .main-menu {
    gap: 20px;
  }

  #header .header-start {
    gap: 65px;
  }

  /* Home */

  main.home .s1 {
    padding: 140px 0 90px 0;
  }

  main.home .s1 .box {
    flex-direction: column;
    gap: 45px;
    padding: 0;
  }

  main.home .s1 .video-area {
    width: 100%;
  }

  main.home .s1 .video-area::after {
    background-image: url(../images/home/hero-video-overlay-mobile.svg);
    background-position: left -6px top -5px;
  }

  main.home .s1 .video-area video {
    -webkit-mask-image: url(../images/home/hero-mask-mobile.png);
    mask-image: url(../images/home/hero-mask-mobile.png);
    aspect-ratio: 943/753;
  }

  main.home .s1 .box .content-area {
    padding: 0 45px 50px 45px;
    width: 100%;
    max-width: 100%;
  }

  main.home .s1 .title {
    font-size: 64px;
    letter-spacing: -3.2px;
  }

  main.home .s1 p > b {
    font-size: 21px;
    letter-spacing: -0.63px;
  }
  main.home .s1 p {
    font-size: 18px;
    letter-spacing: -0.54px;
    margin-bottom: 20px;
  }

  main.home .s2 {
    padding: 50px 0 125px 0;
  }

  main.home .s2 .boxes-row {
    flex-direction: column;
    gap: 45px;
  }

  main.home .s2 .box-item:nth-child(1):before {
    background-image: url(../images/home/n-box-overlay-1-mobile.svg);
  }
  main.home .s2 .box-item:nth-child(2):before {
    background-image: url(../images/home/n-box-overlay-2-mobile.svg);
  }
  main.home .s2 .box-item:nth-last-child(1):before {
    background-image: url(../images/home/n-box-overlay-3-mobile.svg);
  }

  main.home .s2 .box-item.gradient {
    top: 0;
  }

  main.home .s3 {
    padding-bottom: 125px;
  }

  main.home .s4 .content-row {
    flex-direction: column;
    padding: 30px;
  }

  main.home .s5 .content-row {
    flex-direction: column;
  }

  main.home .s5 .box-inner {
    top: 0;
  }

  main.home .s5 {
    padding-top: 45px;
    padding-bottom: 100px;
  }

  /* About */
  main.about .s1 {
    padding: 150px 0 100px 0;
  }

  main.about .s1 p {
    font-size: 18px;
  }

  /* Sustainability */
  main.hero-1.sustainability .s1 {
    padding: 175px 0 100px 0;
  }

  main.sustainability .s1 p {
    font-size: 18px;
  }

  main.sustainability .s2 .content-row {
    flex-direction: column;
  }

  main.sustainability .s2 .box-item.gradient {
    top: 0;
    padding-bottom: 35px;
  }

  main.sustainability .s2 .box-item {
    padding: 55px 35px 45px 35px;
  }

  main.sustainability .s3 .title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  /* Move */
  main.move .s1 p {
    font-size: 18px;
  }

  main.move .s2 {
    padding: 0 0 120px 0;
  }

  main.move .s2 .title {
    margin: 100px 0 50px 0;
  }

  main.move .s2 .box-inner {
    padding: 80px 50px 65px 50px;
  }

  main.move .s2 .box-content {
    margin-top: 90px;
  }

  main.move .s3 .content-row {
    flex-direction: column;
    align-items: start;
    gap: 45px;
    margin-bottom: 75px;
    background-image: none;
  }

  /* Make */

  main.make .s1 p {
    font-size: 18px;
  }

  main.make .s2 .title {
    font-size: 38px;
    margin: 25px 0 40px 0;
  }

  main.make .s2 .image-area {
    margin-top: 100px;
  }

  main.make .s2 .box-inner {
    padding: 45px 25px 50px 35px;
  }

  main.make .s3 .box-title {
    font-size: 38px;
    margin-bottom: 35px;
  }

  main.make .s3 .box-inner {
    padding: 70px 40px 50px 35px;
  }

  main.make .s3 {
    padding-bottom: 100px;
  }

  /* Grow */
  main.grow .s1 p {
    font-size: 18px;
  }

  main.grow .s2 .title {
    margin: 35px 0 45px 0;
  }

  main.grow .s2 .image-area img {
    object-fit: cover;
    aspect-ratio: 30 / 37;
    height: 100%;
  }

  main.grow .s2 .box-inner {
    padding: 60px 45px 70px 40px;
  }

  main.grow .s3 .boxes-row {
    grid-template-columns: repeat(2, 1fr);
  }

  main.grow .s3 .box-item .box-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  /* News */
  main.news .s1 p {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  main.news .s2 {
    padding-bottom: 125px;
  }

  main.news .s2 .news-item .image-area {
    height: 150px;
  }

  /* Careers */
  main.careers .s1 .content-row {
    flex-direction: column;
    align-items: start;
    gap: 35px;
  }

  main.careers .s1 .title {
    max-width: 570px;
  }

  main.careers .s1 .subtitle {
    margin-bottom: 45px;
  }

  /* Contact */
  main.contact .content-row {
    flex-direction: column;
    gap: 45px;
  }

  main.contact .s1 p {
    max-width: 100%;
  }

  #footer .footer-bottom,
  #footer .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  #header .header-cta,
  #header .main-menu {
    display: none;
  }

  #header .mobile-menu-btn {
    display: block;
  }

  main.about .s1 {
    padding: 140px 0 50px 0;
  }

  main.about .s1 .content-row {
    gap: 35px;
  }

  main.about .s3 .content-row {
    flex-direction: column;
    background-image: none;
    gap: 45px;
    padding: 35px;
  }

  main.about .s3 p {
    margin-bottom: 0;
  }

  main.about .s4 .content-row {
    flex-direction: column-reverse;
  }

  main.about .s4 .content-box {
    margin-top: 0;
  }

  main.about .s6 .content-row {
    flex-direction: column;
  }

  main.about .s6 .box-item {
    padding: 90px 65px 80px 75px;
    top: 0;
  }

  main.about .s7 {
    padding: 120px 0 75px 0;
  }

  main.about .s7 .filter-tab {
    font-size: 24px;
    letter-spacing: -1px;
    gap: 30px;
  }

  main.about .s7 .filter-tabs {
    gap: 30px;
  }

  /* Sustainability */
  main.hero-1.sustainability .s1 {
    background-size: cover;
  }

  main.sustainability .s1 .content-row {
    gap: 45px;
  }

  /* Move */
  main.move .s1 .content-row {
    gap: 35px;
  }

  main.move .s1 .title {
    line-height: 90%;
  }

  main.move .s2 .content-row {
    flex-direction: column;
  }

  main.move .s2 .box-content {
    margin-top: 0;
  }
  /* Make */
  main.make .s1 .content-row {
    gap: 35px;
  }

  main.make.hero-1 .s1 {
    background-size: cover;
  }

  main.make .s2 {
    padding: 25px 0 120px 0;
  }

  main.make .s2 .content-row {
    flex-direction: column;
  }

  main.make .s2 .image-area {
    margin-top: 0;
  }

  main.make .s2 .title {
    margin: 45px 0 60px 0;
    font-size: 48px;
  }

  main.make .s3 .title-row {
    flex-direction: column;
    align-items: start;
    gap: 45px;
  }

  main.make .s3 .title-row {
    padding: 25px;
    margin-bottom: 125px;
  }

  main.make .s3 .content-row {
    flex-direction: column;
  }

  main.make .s3 .box-content {
    margin-top: 0;
  }

  main.make .s3 .box-title {
    font-size: 48px;
    margin-bottom: 45px;
  }

  main.page .s1 .content-area p > a,
  main.page .s1 .content-area li > a,
  main.page .s1 .content-area li,
  main.page .s1 .content-area p {
    font-size: 18px;
  }

  main.page .s1 .heading {
    font-size: 48px;
    letter-spacing: -2px;
  }

  /* Grow */
  main.grow .s1 .content-row {
    gap: 35px;
  }

  main.grow .s2 .content-row {
    flex-direction: column;
  }

  main.grow .s2 .image-area {
    margin-top: 0;
  }

  main.grow .s2 .image-area img {
    aspect-ratio: unset;
    height: auto;
    object-fit: contain;
  }

  main.grow .s3 {
    padding: 125px 0 110px 0;
  }

  /* News */
  main.news .s1 {
    padding: 150px 0 100px 0;
  }

  main.news .s1 .content-row {
    gap: 35px;
  }

  main.news .s2 .news-row {
    grid-template-columns: repeat(1, 1fr);
  }

  main.news .s2 .news-item .image-area {
    height: 218px;
  }

  /* Careers */
  main.careers .s1 {
    padding: 120px 0;
  }

  main.careers .s1 p {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  /* Contact */
  main.contact .s1 {
    padding: 150px 0 100px 0;
  }

  main.contact .s1 .subtitle {
    margin-bottom: 45px;
  }

  main.contact .s1 .title {
    margin-bottom: 60px;
  }

  /* Home */
  main.home .s1 .box .content-area {
    padding: 0 45px 50px 45px;
  }

  main.home .s1 .title {
    font-size: 48px;
    letter-spacing: -1.6px;
  }

  main.home .s3 .content-row {
    flex-direction: column;
    align-items: start;
  }

  main.home .s3 .s3-content {
    margin-top: -20px;
  }

  main.home .s3 .image-area img {
    min-height: 220px;
    object-fit: cover;
  }

  main.home .s3 .title {
    font-size: 42px;
  }

  main.home .s3 .content-area {
    padding: 70px 45px 85px 45px;
  }

  main.home .s3 .items-area {
    padding: 50px 45px;
    flex-direction: column;
    gap: 45px;
  }

  main.home .s3 .content-item {
    padding-right: 0;
    padding-bottom: 45px;
    border-right: none;
    border-bottom: 1px solid #324e53;
  }

  main.home .s3 .cta-btn {
    width: 100%;
    max-width: 370px;
    font-size: 16px;
    gap: 10px;
    padding: 0 15px;
  }

  #footer .footer-start {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #footer .footer-wrapper {
    padding: 60px 35px 150px 35px;
  }

  #footer .footer-top {
    margin-bottom: 20px;
  }

  #footer .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  #footer .copyright,
  #footer .legal-links,
  #footer .legal-links a {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Home */
  body.page-template-home #header {
    top: 20px;
  }

  main.home .s1 .box .content-area {
    padding: 0 45px 50px 45px;
  }

  main.home .s3 .content-area {
    padding: 55px 35px 60px 35px;
  }

  main.home .s3 .items-area {
    padding: 50px 35px;
  }

  main.home .s4 .title,
  main.home .s2 .box-title {
    font-size: 32px;
  }

  main.home .s2 .box-item {
    padding: 30px 35px 45px 35px;
  }

  main.home .s5 .box-inner {
    padding: 45px 35px 55px 35px;
  }

  main.home .s5 .box-title {
    font-size: 36px;
    letter-spacing: -1.2px;
    max-width: 290px;
    margin-bottom: 35px;
  }

  /* About*/
  main.about .s4 .box-inner {
    padding: 75px 45px 80px 45px;
  }

  main.about .s6 .box-item,
  main.about .s6 .box-inner {
    padding: 75px 45px 80px 45px;
  }

  main.about .s6 p {
    font-size: 20px;
  }

  main.about .s7 .filter-wrap {
    overflow-x: scroll;
    width: 100%;
    margin-bottom: 35px;
    padding: 0 20px;
  }

  main.about .s7 .filter-wrap::-webkit-scrollbar {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  main.about .s7 .filter-tabs {
    justify-content: start;
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  main.about .s7 .filter-tab {
    white-space: nowrap;
  }

  /* Sustainability */
  main.sustainability .s2 .box-item .icon-area {
    margin-bottom: 50px;
  }

  main.sustainability .s3 {
    padding: 125px 0 100px 0;
  }

  main.sustainability .s3 .title {
    font-size: 32px;
  }

  /* Move */
  main.move .s2 {
    padding: 0 0 100px 0;
  }

  main.move .s2 .title {
    margin: 70px 0 35px 0;
    font-size: 40px;
    letter-spacing: -2px;
  }

  main.move .s3 .title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  main.move .s1 .title span {
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  main.move .s2 .box-inner {
    padding: 70px 35px 55px 35px;
  }

  /* Grow */
  main.grow .s3 .title {
    margin-bottom: 45px;
  }

  main.grow .s3 .boxes-row {
    grid-template-columns: repeat(1, 1fr);
  }

  main.grow .s3 .box-item.gradient {
    top: 0;
  }

  #footer .footer-wrapper {
    background-size: 180%;
    background-position: bottom left;
  }
}

@media (max-width: 576px) {
  main.hero-1 .s1 {
    padding: 125px 0 100px 0;
  }

  #header .header-wrapper {
    padding: 15px 20px;
  }

  #header .logo-area {
    width: 200px;
    height: 38px;
  }

  .header-top .top-menu .menu-item a {
    font-size: 16px;
  }

  .header-top .top-menu {
    gap: 21px;
  }
  /* Home */
  main.home .s1 .video-area::after {
    background-position: left -5px top -5px;
  }
  main.home .s1 .box .content-area {
    padding: 0 35px 45px 35px;
  }

  main.home .s1 .title {
    font-size: 42px;
  }

  main.home .s1 .cta-btn {
    width: 100%;
  }

  main.home .s1 .scroll-text {
    gap: 14px;
    font-size: 12px;
  }

  main.home .s1 .btns-wrap {
    flex-direction: column;
  }

  main.home .s3 {
    padding-bottom: 125px;
  }

  main.home .s3 .cta-btn {
    font-size: 15px;
    padding: 0 10px;
  }

  main.about .s1 .title {
    font-size: 36px;
  }

  main.about .s3 .title {
    font-size: 32px;
    letter-spacing: -0.92px;
  }

  main.about .s3 .content-row {
    padding: 30px 25px;
  }

  main.about .s4 .content-box .title {
    font-size: 38px;
    margin: 65px 0 35px 0;
  }

  main.about .s4 .box-inner {
    padding: 65px 35px 70px 35px;
  }

  main.about .s6 .title {
    font-size: 38px;
    margin: 80px 0 40px 0;
    letter-spacing: -2.2px;
  }

  main.about .s6 .box-inner {
    padding: 65px 35px 70px 35px;
  }

  main.about .s7 .title {
    font-size: 38px;
    letter-spacing: -0.92px;
  }

  main.about .s7 p {
    font-size: 18px;
  }

  main.about .s7 .container {
    padding: 0;
  }

  main.about .s7 p,
  main.about .s7 .title {
    padding: 0 12px;
  }

  /* News */
  main.news .s2 .news-item .image-area {
    height: 150px;
  }

  /* Contact */
  main.contact .form-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  main.grow .s4 {
    padding-bottom: 75px;
  }

  #footer .footer-end {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #footer .logo-area {
    width: 250px;
    height: 41px;
  }

  #footer .footer-wrapper {
    padding: 60px 20px 100px 20px;
  }
}
