:root {
  --black-text: #000;
  --green-text: #337e58;
  --green-elem: #337e58;
  --white-text: #fff;

  --border-radius: 7px;

  --text-big: 18px;
  --text-normal: 17px;
  --text-small: 16px;
  --text-tiny: 15px;

  --bg-color-1: #f0f0f0;
  --bg-color-2: #f6f6f6;
  --bg-color-3: #f7f7f7;
  --bg-color-4: #f1f2f2;
}

@font-face {
  font-family: "Montserrat";
  src: url(font/Montserrat-Light.ttf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Montserrat";
  src: url(font/Montserrat-Regular.ttf);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url(font/Montserrat-SemiBold.ttf);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url(font/Montserrat-Bold.ttf);
  font-style: normal;
  font-weight: 700;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  height: -webkit-fill-available;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-family: "Montserrat";
}

body {
  overscroll-behavior: none;
  min-height: -webkit-fill-available;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

a[href^="tel"],
a[href^="mailto"] {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

input::placeholder,
textarea::placeholder {
  font-family: "Montserrat" !important;
}

.cont-link {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
}

.page-container {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

header {
  position: static;
  display: block;
  padding-top: 10px;
  padding-left: 2vw;
}

.header-over-screen {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  overflow: hidden;
  z-index: 2;
  transition: background-color 0.2s ease-in;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-right: 4vw;
  margin-left: auto;
}

.header-over-screen .header-container {
  width: 295px;
  height: fit-content;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0 20px 10px;
  border-radius: 0 0 12px 12px;
  background-color: #fff;
  box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in 0.4s;
}

.logo-container {
  padding-right: 2%;
}

.logo-box {
  width: 10vw;
  min-width: 120px;
  height: auto;
}

.header-over-screen .logo-container {
  padding: 0;
  margin: auto 8px auto auto;
}

nav {
  display: flex;
  opacity: 1;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 20px;
}

.header-over-screen nav {
  display: flex !important;
  justify-content: center;
  flex-basis: 100%;
  opacity: 1 !important;
  transition: all 0.5s;
}

nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: var(--text-big);
}

.header-over-screen ul {
  flex-direction: column;
  align-items: center;
  padding: 20px 0 10px;
  transform: scaleY(1) !important;
  transition: all 1s ease-in;
}

nav li {
  white-space: nowrap;
  list-style: none;
}

nav ul > *:not(:last-child) {
  margin-right: 3vw;
}

nav li:not(:last-child) {
  color: var(--black-text);
}

nav li:last-child {
  color: var(--green-text);
}

nav li:hover {
  cursor: pointer;
}

.header-over-screen li {
  margin: 10px auto 10px 0 !important;
}

.header-container button {
  display: none;
  width: fit-content;
  margin: auto 20px;
}

.header-container button svg {
  width: 40px;
  height: 40px;
}

.header-container button .line {
  fill: var(--black-text);
  transform-origin: center;
  transition: transform 0.3s ease-in-out, opacity 0s 0.3s,
    fill 0.3s ease-in 0.3s;
}

.header-container button .middle {
  fill: var(--green-elem);
}

.header-container button .cont {
  transition: transform 0.3s ease-in-out 0.3s;
}

.header-container button .t-cont {
  transform: translateY(-8px);
}

.header-container button .b-cont {
  transform: translateY(8px);
}

.header-container button[aria-expanded="true"] .line {
  fill: var(--green-elem);
  transition: transform 0.3s ease-in 0.3s, opacity 0s 0.3s, fill 0.3s ease-in;
}

.header-container button[aria-expanded="true"] .cont {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.header-container button[aria-expanded="true"] .top {
  transform: rotate(45deg);
}

.header-container button[aria-expanded="true"] .middle {
  opacity: 0;
}

.header-container button[aria-expanded="true"] .bottom {
  transform: rotate(-45deg);
}

/*//////////////////////////////////////////////////////////////*/

@media (max-width: 840px) {
  .header-container nav {
    opacity: 0;
    display: none;
  }

  .header-container ul {
    transform: scaleY(0.1);
    transition: scaleY 1s ease-in;
  }

  .header-container button {
    display: flex;
  }
}

@media (max-width: 584px) {
  .logo-box {
    min-width: 90px;
    margin-right: 12px;
  }

  .header-container {
    font-size: var(--text-normal);
  }
}

/*//////////////////////////////////////////////////////////////*/

.sec-1 {
  display: block;
}

.sec-1 .top-container {
  position: relative;
  height: auto;
  margin: 6vw 0 9vw;
  overflow: hidden;
}

.sides-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-shrink: 100%;
  align-items: center;
  justify-content: space-evenly;
  width: 60px;
  min-width: 50px;
  max-height: 705px;
  margin-right: 370px;
  border-radius: 0 9px 9px 0;
  background-color: var(--green-elem);
  z-index: 1;
}

.button-box {
  padding-bottom: 2px;
  transform: rotate(-90deg);
}

.sidebar-wrapper button {
  padding: 13px 15px;
  border-radius: var(--border-radius);
  background-color: var(--white-text);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-text);
  white-space: nowrap;
}

.picture-wrapper {
  position: relative;
  width: calc(18% + 654px);
}

.picture-box {
  width: 1000px;
  height: auto;
  transform: translateY(30px);
}

.picture-box svg {
  position: absolute;
  width: fit-content;
  height: auto;
  left: 300px;
  top: 30px;
  stroke: var(--green-elem);
  stroke-width: 2px;
  fill: transparent;
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  animation: draw 4s ease-out forwards;
  animation-delay: 1.5s;
  z-index: 1;
}

@keyframes draw {
  85% {
    stroke-dashoffset: 0;
  }
  86% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.picture-box img {
  max-width: 1000px;
  height: auto;
  opacity: 0;
  animation: fade-in 1.7s ease-in forwards;
  animation-delay: 4.8s;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.welcome-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.welcome-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: left;
  width: 640px;
  margin-top: 50px;
}

.welcome-wrapper > *:not(:last-child) {
  margin-bottom: 60px;
}

.title-box {
  font-weight: 600;
  font-size: 54px;
  color: var(--black-text);
}

.description-box {
  margin-right: 30px;
  padding-right: 160px;
  font-weight: 400;
  font-size: var(--text-big);
  line-height: 35px;
  color: var(--black-text);
}

.discover-box {
  font-weight: 600;
  font-size: 20px;
  color: var(--white-text);
}

.discover-box button {
  padding: 20px 40px;
  border-radius: var(--border-radius);
  font-family: "Montserrat";
  font-weight: 600;
  letter-spacing: 0.2ch;
  font-size: 1rem;
  color: var(--white-text);
  background-color: var(--green-elem);
}

.cases-box {
  font-weight: 600;
  font-size: 1rem;
}

.cases-box:hover {
  cursor: pointer;
}

@media (min-width: 1100px) and (max-width: 1289px) {
  .sec-1 {
    margin-top: 40px;
  }

  .sidebar-wrapper {
    margin-right: 39.5vw;
  }

  .picture-wrapper {
    min-width: 700px;
    width: auto;
  }

  .picture-box {
    width: auto;
    max-width: 1000px;
  }

  .picture-box svg {
    width: 395px;
    left: 160px;
    top: 39px;
  }

  .picture-box img {
    width: 800px;
    transform: translate(-80px, 15px);
  }

  .welcome-wrapper {
    margin-top: 20px;
  }

  .welcome-wrapper > *:not(:last-child) {
    margin-bottom: 38px;
  }
}

@media (min-width: 800px) and (max-width: 1099px) {
  .sec-1 {
    margin-top: 7vw;
  }

  .picture-wrapper {
    display: none;
  }

  .welcome-container {
    width: 100%;
  }

  .welcome-wrapper {
    margin-left: 50px;
  }

  .description-box {
    padding-right: 80px;
  }

  .welcome-wrapper > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 799px) {
  .sec-1 {
    margin-top: 8vw;
  }

  .picture-wrapper {
    display: none;
  }

  .welcome-container {
    width: 100%;
  }

  .welcome-wrapper {
    margin-top: 15px;
    margin-left: 80px;
    margin-right: 10px;
  }

  .description-box {
    max-width: 550px;
    padding-right: 0;
  }

  .welcome-wrapper > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 584px) {
  .title-box {
    font-size: 38px;
  }

  .button-box {
    margin-bottom: 115px;
  }

  .description-box {
    max-width: 400px;
    font-size: var(--text-small);
    line-height: 28px;
  }

  .discover-box button {
    padding: 15px 30px;
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .welcome-wrapper {
    margin-top: 10px;
    margin-left: 60px;
    margin-right: 10px;
  }

  .title-box {
    font-size: 28px;
  }
}

@media (max-width: 350px) {
  .title-box {
    font-size: 24px;
  }
}

/*//////////////////////////////////////////////////////////////*/

.sec-1 .bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 90px auto 0;
}

.sec-1 .bottom-columns-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  width: 100%;
  padding: 0 3%;
}

.sec-1 .bottom-columns-wrapper > *:not(:last-child) {
  margin-right: 80px;
}

.sec-1 .bottom-box-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 25%;
  min-width: 285px;
}

.sec-1 .bottom-box-wrapper:first-child {
  display: none;
}

.sec-1 .bottom-box-wrapper > *:not(:last-child) {
  margin-bottom: 15px;
}

.sec-1 .bottom-container .logo-box {
  width: 185px;
  height: auto;
}

.sec-1 .bottom-container .text-box {
  display: flex;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
}

@media (max-width: 1099px) {
  .sec-1 .bottom-container {
    margin-bottom: 15vw;
  }
  .sec-1 .bottom-columns-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 93%;
    padding: 0 calc(20% - 140px);
  }

  .sec-1 .bottom-columns-wrapper > *:first-child {
    position: relative;
    display: block;
  }

  .sec-1 .bottom-columns-wrapper > *:first-child img {
    position: absolute;
    left: -60%;
    top: 0;
    width: 700px;
    transform: rotate(-6deg);
    transform: scaleX(-1);
  }

  .sec-1 .bottom-columns-wrapper > *:not(:last-child) {
    margin-right: 0;
  }

  .sec-1 .bottom-columns-wrapper > *:nth-child(n + 3) {
    margin-top: 60px;
  }

  .sec-1 .bottom-box-wrapper {
    max-width: 45%;
  }

  .sec-1 .bottom-box-wrapper img {
    width: fit-content;
    height: auto;
  }
}

@media (max-width: 799px) {
  .sec-1 .bottom-columns-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .sec-1 .bottom-columns-wrapper > *:first-child {
    display: none;
  }

  .sec-1 .bottom-box-wrapper {
    max-width: 80%;
  }
}

@media (max-width: 584px) {
  .sec-1 .bottom-container .text-box {
    font-size: var(--text-small);
    line-height: 28px;
  }
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.sec-2.section-container {
  margin-top: 8vw;
}

.sec-2 .section-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--green-elem);
}

.sec-2 .section-wrapper::before,
.sec-2 .section-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
}
.sec-2 .section-wrapper::before {
  top: 0;
}

.sec-2 .section-wrapper::after {
  bottom: 0;
}

.sec-2 .left-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 1600px;
  width: 100%;
}

.sec-2 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: min-content;
}

.sec-2 .platform-items-wrapper,
.sec-2 .craft-items-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 35px auto 35px 0;
  width: auto;
}

.sec-2 .text-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 295px;
  margin-right: 3vw;
}

.sec-2 .platform-items-wrapper .text-wrapper {
  padding-top: 10px;
}

.sec-2 .craft-items-wrapper .text-wrapper {
  padding-bottom: 5px;
}

.sec-2 .text-wrapper :first-child {
  font-weight: 700;
  font-size: 36px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: var(--white-text);
  border-left: 2px solid var(--white-text);
  padding-left: 5px;
}

.arrow-line {
  position: relative;
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 38px;
  line-height: 28px;
  color: var(--black-text);
  /* border-top: 2px solid var(--white-text); */
  padding: 12px 20px 0 20px;
}

.arrow-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 220px;
  border: 1px solid var(--white-text);
  transform-origin: left;
  transform: scaleX(0);
}

.arrow-line::after {
  content: "";
  position: absolute;
  left: 220px;
  top: -7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 20px solid var(--white-text);
  border-radius: 2px;
  transform: translateX(-220px);
}

.sec-2 .items-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
}

.parent-1::before,
.parent-2::before,
.parent-3::before {
  content: "{";
}

.parent-1::after,
.parent-2::after,
.parent-3::after {
  content: "}";
}

.parent-1::before,
.parent-2::before,
.parent-3::before,
.parent-1::after,
.parent-2::after,
.parent-3::after {
  padding: 0 10px 15px;
  font-weight: 300;
  font-size: 90px;
  line-height: 95px;
  text-align: center;
  z-index: 2;
}

.parent-1::before,
.parent-2::before {
  transform: translateX(426px);
}

.parent-3::before {
  transform: translateX(217px);
}

.parent-1::after,
.parent-2::after {
  transform: translateX(-426px);
}

.parent-3::after {
  transform: translateX(-217px);
}

.parent-1::after,
.parent-2::before {
  display: none;
}

.mask-elem {
  position: absolute;
  height: 100%;
  top: 0;
  background-color: var(--green-elem);
}

.el-1 {
  width: 100%;
  left: calc(-100% + 25px);
  transform: translateX(calc(100% - 40px));
}

.el-2 {
  width: 100%;
  right: calc(-100% + 25px);
  transform: translateX(calc(-100% + 40px));
}

.el-3 {
  width: 50%;
  left: calc(-50% + 25px);
  transform: translateX(calc(50% + 90px));
}

.el-4 {
  width: 50%;
  right: calc(-50% + 25px);
  transform: translateX(calc(-50% - 90px));
}

.parent-1 .el-2,
.parent-2 .el-1 {
  display: none;
}

.sec-2 .pair-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.sec-2 .item-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 12px;
}

.sec-2 .right-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: auto;
  min-height: 430px;
  flex-basis: 22%;
  max-width: 350px;
  margin-right: 0;
}

.sec-2 .logo {
  height: 28vw;
  min-height: 350px;
  max-height: 550px;
  width: auto;
}

.sec-2 .logo img {
  width: auto;
  height: 28vw;
  min-height: 350px;
  max-height: 550px;
}

@media (max-width: 1750px) {
  .sec-2 .platform-items-wrapper {
    flex-wrap: wrap;
  }

  .sec-2 .platform-items-wrapper > :last-child {
    margin-right: 0;
    margin-left: auto;
  }

  .sec-2 .logo,
  .sec-2 .logo img {
    height: 544px;
  }
}

@media (max-width: 1400px) {
  .sec-2 .right-box {
    display: none;
  }

  .sec-2 .items-container {
    padding-top: 10px;
    padding-bottom: 25px;
  }
}

@media (max-width: 1000px) {
  .sec-2 .items-container {
    width: 80%;
    max-width: 588px;
  }

  .sec-2 .platform-items-wrapper > :first-child {
    margin-bottom: 30px;
  }

  .sec-2 .platform-items-wrapper > :nth-child(2) {
    margin-left: auto;
    margin-right: 49px;
  }

  .sec-2 .craft-items-wrapper {
    align-items: flex-start;
  }

  .sec-2 .craft-items-wrapper > :first-child {
    padding-top: 7px;
  }

  .sec-2 .craft-items-wrapper .pair-wrapper:first-child {
    margin-left: auto;
    margin-right: 49px;
  }

  .sec-2 .craft-items-wrapper .pair-wrapper:last-child {
    margin-right: 0;
    margin-left: auto;
  }

  .arrow-line::before {
    width: 190px;
  }

  .arrow-line::after {
    left: 190px;
    transform: translateX(-190px);
  }

  .sec-2 .items-wrapper {
    flex-wrap: wrap;
  }

  .el-3 {
    top: 0;
    height: 50%;
    width: 78%;
    left: calc(-78% + 25px);
    transform: translateX(calc(50% + 90px));
  }

  .el-4 {
    top: 50%;
    height: 50%;
    width: 78%;
    right: calc(-78% + 25px);
    transform: translateX(calc(-50% - 90px));
  }
}

@media (max-width: 850px) {
  .sec-2 .platform-items-wrapper,
  .sec-2 .craft-items-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 725px) {
  .sec-2 .items-container {
    justify-content: center;
  }

  .sec-2 .platform-items-wrapper,
  .sec-2 .craft-items-wrapper {
    width: min-content;
    margin-left: 0;
    margin-right: 0;
  }

  .arrow-line::before {
    width: 230px;
  }

  .arrow-line::after {
    left: 230px;
    transform: translateX(-230px);
  }

  .sec-2 .items-wrapper {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .sec-2 .pair-wrapper {
    flex-wrap: nowrap;
  }

  .sec-2 .craft-items-wrapper {
    flex-wrap: wrap;
    align-items: center;
  }

  .sec-2 .craft-items-wrapper > :first-child {
    margin-bottom: 30px;
    padding-top: 0;
  }
  .sec-2 .craft-items-wrapper .pair-wrapper {
    margin: 0 !important;
  }

  .el-3 {
    height: 100%;
    width: 50%;
    left: calc(-50% + 25px);
    transform: translateX(calc(50% + 90px));
  }

  .el-4 {
    top: 0;
    height: 100%;
    width: 50%;
    right: calc(-50% + 25px);
    transform: translateX(calc(-50% - 90px));
  }
}

@media (max-width: 650px) {
  .arrow-line::before {
    width: 210px;
  }

  .arrow-line::after {
    left: 210px;
    transform: translateX(-210px);
  }

  .sec-2 .items-container {
    padding-bottom: 30px;
  }

  .sec-2 .pair-wrapper {
    flex-wrap: wrap;
  }

  .sec-2 .platform-items-wrapper > :last-child {
    width: min-content;
  }

  .sec-2 .items-wrapper {
    margin: 0 !important;
  }

  .sec-2 .item-box {
    margin: 15px 20px;
  }

  .parent-1::before,
  .parent-2::before,
  .parent-3::before {
    align-self: flex-start;
    line-height: 90px;
  }

  .parent-1::after,
  .parent-2::after,
  .parent-3::after {
    align-self: flex-end;
    line-height: 92px;
  }

  .parent-1::after,
  .parent-2::before {
    display: block;
  }

  .parent-1 .el-2,
  .parent-2 .el-1 {
    display: block;
  }

  .el-1 {
    height: 50%;
    width: 140%;
    left: calc(-140% + 25px);
    transform: translateX(calc(100% - 40px));
  }

  .el-2 {
    height: 50%;
    top: 50%;
    width: 140%;
    right: calc(-140% + 25px);
    transform: translateX(calc(-100% + 40px));
  }

  .el-3 {
    height: 50%;
    width: 75%;
    left: calc(-75% + 25px);
    transform: translateX(calc(50% + 90px));
  }

  .el-4 {
    top: 50%;
    height: 50%;
    width: 75%;
    right: calc(-75% + 25px);
    transform: translateX(calc(-50% - 90px));
  }
}

@media (max-width: 585px) {
  .sec-2 .items-container {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .sec-2 .text-wrapper :first-child {
    font-size: 34px;
    padding-left: 0;
  }

  .sec-2 .text-wrapper :last-child {
    font-size: 28px;
    line-height: 25px;
    padding: 9px 20px 0 15px;
  }
}

@media (max-width: 415px) {
  .arrow-line::before {
    width: 190px;
  }

  .arrow-line::after {
    left: 190px;
    transform: translateX(-190px);
  }

  .sec-2 .items-container {
    width: 100%;
  }

  .sec-2 .item-box {
    margin: 16px 15px;
  }

  .el-1 {
    width: 145%;
    left: calc(-145% + 25px);
    transform: translateX(calc(100% - 40px));
  }

  .el-2 {
    width: 145%;
    right: calc(-145% + 25px);
    transform: translateX(calc(-100% + 40px));
  }

  .el-3 {
    height: 50%;
    width: 80%;
    left: calc(-80% + 25px);
    transform: translateX(calc(50% + 90px));
  }

  .el-4 {
    top: 50%;
    height: 50%;
    width: 80%;
    right: calc(-80% + 25px);
    transform: translateX(calc(-50% - 90px));
  }
}

@media (max-width: 375px) {
  .arrow-line::before {
    width: 180px;
  }

  .arrow-line::after {
    left: 180px;
    transform: translateX(-180px);
  }

  .sec-2 .item-box {
    margin: 12px 10px;
  }

  .el-1 {
    width: 152%;
    left: calc(-152% + 25px);
    transform: translateX(calc(100% - 40px));
  }

  .el-2 {
    width: 152%;
    right: calc(-152% + 25px);
    transform: translateX(calc(-100% + 40px));
  }

  .el-3 {
    height: 50%;
    width: 83%;
    left: calc(-83% + 25px);
    transform: translateX(calc(50% + 90px));
  }

  .el-4 {
    top: 50%;
    height: 50%;
    width: 83%;
    right: calc(-83% + 25px);
    transform: translateX(calc(-50% - 90px));
  }
}

.arrow-line-motion::before {
  transform: scaleX(1);
  transition: all ease-in-out 3s;
}

.arrow-line-motion::after {
  transform: translateX(0);
  transition: all ease-in-out 3s;
}

.opening-mask,
.opening-parenthesis::before,
.opening-parenthesis::after {
  transform: translateX(0);
  transition: transform ease 3s;
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.sec-3.section-container {
  background-image: linear-gradient(to right, var(--bg-color-1), #fff);
}

.sec-3 .section-title-box {
  display: flex;
  flex-direction: row;
}

.sec-3 .section-title-box .title {
  margin: 0 auto 0 20%;
}

.sec-3 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.sec-3 .items-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 40vw;
  flex-basis: 50%;
}

.sec-3 .items-wrapper:nth-child(1) {
  background-color: var(--bg-color-1);
}

.sec-3 .items-wrapper:nth-child(2) {
  background-color: var(--bg-color-2);
}

.sec-3 .items-wrapper:nth-child(3) {
  background-color: var(--bg-color-3);
}

.sec-3 .items-wrapper:nth-child(4) {
  background-color: var(--bg-color-4);
}

.sec-3 .item-title-box {
  margin-top: calc(8vw - 80px);
  margin-bottom: 40px;
  order: 2;
}

.sec-3 .items-wrapper .title {
  font-weight: 600;
  font-size: 2.25rem;
  color: var(--black-text);
}

.sec-3 .items-wrapper a {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--green-text);
}

.sec-3 .item-pic-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 500px;
  padding-top: 70px;
  order: 1;
}

.sec-3 .items-wrapper:nth-child(1) img,
.sec-3 .items-wrapper:nth-child(4) img {
  width: auto;
  height: 500px;
}

.sec-3 .items-wrapper:nth-child(2) img,
.sec-3 .items-wrapper:nth-child(3) img {
  width: auto;
  height: 380px;
}

.thank-page {
  width: auto;
  margin-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thank-page-header {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}

.thank-page-header .logo {
  margin-top: 10px;
  width: 150px;
  height: 110px;
}

@media (max-width: 1800px) {
  .sec-3 .items-wrapper {
    height: 45vw;
  }
}

@media (max-width: 1680px) {
  .sec-3 .items-wrapper {
    height: 47vw;
  }
}

@media (max-width: 1570px) {
  .sec-3 .items-wrapper:nth-child(1) img,
  .sec-3 .items-wrapper:nth-child(4) img {
    width: auto;
    height: 32vw;
    max-height: 500px;
  }

  .sec-3 .items-wrapper:nth-child(2) img,
  .sec-3 .items-wrapper:nth-child(3) img {
    width: auto;
    height: 24vw;
    max-height: 380px;
  }
}

@media (max-width: 1200px) {
  .sec-3 .items-wrapper .title {
    font-size: 2rem;
  }

  .sec-3 .items-wrapper a {
    font-size: 1.1rem;
  }

  .sec-3 .item-title-box {
    margin-top: 10px;
  }

  .sec-3 .item-pic-box {
    padding-top: 5vw;
  }
}

@media (max-width: 1000px) {
  .sec-3 .items-wrapper {
    flex-basis: 100%;
    height: max-content;
  }

  .sec-3 .items-wrapper:nth-child(3) {
    order: 4;
  }

  .sec-3 .items-wrapper:nth-child(1) img,
  .sec-3 .items-wrapper:nth-child(4) img {
    width: auto;
    height: 64vw;
    max-height: 500px;
  }

  .sec-3 .items-wrapper:nth-child(2) img,
  .sec-3 .items-wrapper:nth-child(3) img {
    width: auto;
    height: 48vw;
    max-height: 380px;
  }

  .sec-3 .item-title-box {
    margin-top: 100px;
    margin-bottom: 70px;
  }

  .sec-3 .item-pic-box {
    padding-top: 150px;
  }
}

@media (max-width: 780px) {
  .sec-3 .item-pic-box {
    height: calc(48vw + 125px);
    padding-top: 15vw;
  }

  .sec-3 .item-title-box {
    margin-top: 70px;
  }
}

@media (max-width: 600px) {
  .sec-3 .items-wrapper .title {
    font-size: 1.8rem;
  }

  .sec-3 .item-title-box {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .sec-3 .items-wrapper .title {
    font-size: 1.5rem;
  }

  .sec-3 .item-title-box {
    margin-top: -5px;
    margin-bottom: 8vw;
  }

  .sec-3 .item-pic-box {
    padding-top: 5vw;
  }
}

@media (max-width: 375px) {
  .sec-3 .items-wrapper .title {
    font-size: 1.1rem;
  }

  .sec-3 .items-wrapper a {
    font-size: 1rem;
  }
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.sec-4.section-container {
  padding-bottom: 50px;
  background-color: rgb(25, 25, 25);
}

.sec-4 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 90%;
  margin: auto;
}

.sec-4 .section-title-box {
  color: var(--white-text);
}

.sec-4 .section-title-box .title {
  margin-left: 4%;
}

.sec-4 .item-box {
  margin: 3vw 4%;
}

.sec-4 img {
  width: 125px;
  height: 125px;
}

@media (max-width: 1610px) {
  .sec-4 .section-title-box .title {
    margin-left: 6%;
  }

  .sec-4 .item-box {
    margin: 5vw 6%;
  }
}

@media (max-width: 1068px) {
  .sec-4 .section-title-box .title {
    margin-left: 10%;
  }
}

@media (max-width: 890px) {
  .sec-4 .section-title-box .title {
    margin-left: 8%;
  }
}

@media (max-width: 652px) {
  .sec-4 .section-title-box .title {
    margin-left: 14%;
  }

  .sec-4 .items-container {
    width: 86%;
  }

  .sec-4 .item-box {
    margin: 7vw 6%;
  }
}

@media (max-width: 500px) {
  .sec-4 .section-title-box .title {
    margin: auto;
  }
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.sec-5.section-container,
.sec-6.section-container {
  background-color: rgb(250, 250, 250);
}

.sec-5.section-container {
  padding-bottom: 8vw;
}

.sec-5 .section-wrapper {
  width: 100%;
}

.sec-5 .section-title-box {
  color: #333333;
}

.sec-5 .title {
  margin: 0 10% 0 auto;
}

.sec-5 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto 0;
  padding-top: 70px;
}

.sec-5 .partner-wrapper {
  position: relative;
  width: fit-content;
  margin: 20px 60px 20px 30px;
}

.sec-5 .bg-circle-box {
  position: relative;
}

.sec-5 .gr-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: radial-gradient(
    #fff 0%,
    var(--green-elem) 70%,
    var(--green-elem) 100%
  );
}

.sec-5 .bg-circle-box svg {
  width: 300px;
  height: auto;
}

.sec-5 .partner-logo-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 132px;
  transform: translate(-50%, -50%);
  box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.sec-5 .partner-logo-box img {
  margin-top: -5px;
  margin-left: -1px;
  width: 140px;
  height: 140px;
}

.sec-5 .items-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.sec-5 .text-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.sec-5 .text-box > *:first-child {
  width: fit-content;
  white-space: nowrap;
  font-weight: 700;
  font-size: 45px;
  color: var(--green-text);
}

.sec-5 .text-box {
  width: max-content;
  align-self: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--black-text);
}

.sec-5 .text-box > p {
  width: fit-content;
}

.sec-5 .items-wrapper .partner-wrapper {
  display: none;
}

@media (max-width: 1920px) {
  .sec-5 .items-wrapper {
    flex-wrap: wrap;
  }

  .sec-5 .items-wrapper .partner-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-basis: 100%;
  }

  .sec-5 .items-wrapper .partner-wrapper {
    display: block;
    margin: 0 auto;
  }

  .sec-5 .items-container > .partner-wrapper {
    display: none;
  }

  .sec-5 .items-wrapper {
    width: 98%;
    justify-content: space-around;
    align-items: center;
  }

  .sec-5 .text-wrapper:nth-of-type(1) {
    flex-basis: 33%;
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    transform: translate(70px, 70px);
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box > *:first-child {
    font-weight: 700;
    font-size: 56px;
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box > p {
    width: max-content;
    margin-top: 12px;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: rgb(115, 115, 115);
  }

  .sec-5 .text-wrapper:nth-of-type(2) {
    flex-basis: 33%;
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    transform: translate(-90px, -40px);
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box > *:first-child {
    font-weight: 700;
    font-size: 24px;
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box > p {
    width: max-content;
    margin-top: -5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: rgb(94, 94, 94);
  }

  .sec-5 .text-wrapper:nth-of-type(3) {
    flex-basis: 33%;
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box {
    transform: translate(-120px, 30px);
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box > *:first-child {
    font-weight: 700;
    font-size: 74px;
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box > p {
    width: max-content;
    margin-top: 20px;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: rgb(80, 80, 80);
  }

  .sec-5 .text-wrapper:nth-of-type(5) {
    flex-basis: 25%;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    transform: translate(-30px, -160px);
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box > *:first-child {
    font-weight: 700;
    font-size: 45px;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box > p {
    width: max-content;
    margin-top: 10px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: rgb(116, 116, 116);
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    flex-basis: 25%;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    transform: translate(-70px, -50px);
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box > *:first-child {
    font-weight: 700;
    font-size: 67px;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box > p {
    width: max-content;
    margin-top: 15px;
    font-weight: 700;
    font-size: 36px;
    line-height: 38px;
    color: rgb(83, 83, 83);
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    flex-basis: 25%;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    transform: translate(150px, -160px);
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box > *:first-child {
    font-weight: 700;
    font-size: 28px;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box > p {
    width: max-content;
    margin-top: -3px;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: rgb(71, 71, 71);
  }

  .sec-5 .text-wrapper:nth-of-type(8) {
    flex-basis: 25%;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    transform: translate(40px, -100px);
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box > *:first-child {
    font-weight: 700;
    font-size: 45px;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box > p {
    width: max-content;
    font-weight: 700;
    margin-top: 8px;
    font-size: 28px;
    line-height: 31px;
    color: rgb(115, 115, 115);
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    flex-basis: 100%;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    transform: translate(210px, -100px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box > *:first-child {
    font-weight: 700;
    font-size: 48px;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box > p {
    width: max-content;
    margin-top: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: rgb(92, 92, 92);
  }
}

@media (max-width: 1340px) {
  .sec-5 .items-container {
    width: 93%;
  }
}

@media (max-width: 1270px) {
  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    transform: translate(70px, 70px);
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    transform: translate(-60px, -50px);
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box {
    transform: translate(-45px, 10px);
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    transform: translate(30px, -170px);
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    transform: translate(-70px, 60px);
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    transform: translate(190px, -250px);
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    transform: translate(10px, -110px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    transform: translate(210px, -100px);
  }
}

@media (max-width: 1220px) {
  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    transform: translate(-20px, -55px);
  }
}

@media (max-width: 1130px) {
  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    transform: translate(30px, 50px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    transform: translate(200px, -80px);
  }
}

@media (max-width: 1015px) {
  .sec-5 .items-container {
    width: 100%;
  }

  .sec-5 .text-wrapper:nth-of-type(5) {
    flex-basis: 33%;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    transform: translate(0, -190px);
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    flex-basis: 33%;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    transform: translate(-180px, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    flex-basis: 33%;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    transform: translate(0, -250px);
  }

  .sec-5 .text-wrapper:nth-of-type(8) {
    flex-basis: 50%;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    transform: translate(500px, -210px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    flex-basis: 50%;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    transform: translate(-90px, -50px);
  }
}

@media (max-width: 890px) {
  .sec-5 .items-container {
    padding-top: 45px;
  }

  .sec-5 .text-wrapper:nth-of-type(1) {
    order: 1;
  }

  .sec-5 .text-wrapper:nth-of-type(2) {
    order: 3;
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    transform: translate(-40px, 70px);
  }

  .sec-5 .text-wrapper:nth-of-type(3) {
    order: 2;
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box {
    transform: translate(30px, -50px);
  }

  .sec-5 .items-wrapper .partner-container {
    order: 4;
  }
  .sec-5 .text-wrapper:nth-of-type(5) {
    order: 5;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    transform: translate(-10px, -200px);
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    order: 6;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    transform: translate(70px, 60px);
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    order: 7;
  }
  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    transform: translate(-70px, -70px);
  }

  .sec-5 .text-wrapper:nth-of-type(8) {
    order: 8;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    transform: translate(20px, -140px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    order: 9;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    transform: translate(80px, -340px);
  }
}

@media (max-width: 835px) {
  .sec-5 .items-container {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .sec-5 .items-wrapper {
    width: 72%;
    justify-content: space-between;
    align-items: center;
  }

  .sec-5 .items-wrapper .partner-container {
    order: 1;
    flex-basis: 0;
  }

  .sec-5 .items-wrapper .partner-wrapper {
    margin-left: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(8) {
    order: 2;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    margin-right: 0;
    margin-left: auto;
    padding-left: 10px;
    transform: translate(0, 50px);
  }

  .sec-5 .text-wrapper:nth-of-type(5) {
    order: 3;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    margin-left: 0;
    margin-right: 18px;
    transform: translate(0, 55px);
  }

  .sec-5 .text-wrapper:nth-of-type(3) {
    order: 4;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box {
    margin-left: auto;
    margin-right: 0;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(2) {
    order: 5;
    flex-basis: 100%;
    padding: 50px 0;
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    margin-left: 55%;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    order: 6;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    margin-left: 50px;
    margin-right: auto;
    transform: translate(0, -40px);
  }

  .sec-5 .text-wrapper:nth-of-type(1) {
    order: 7;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    margin-left: auto;
    margin-right: 0;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    order: 8;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    margin-left: 25px;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    order: 9;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    margin-left: auto;
    margin-right: 50%;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(9),
  .sec-5 .text-wrapper:nth-of-type(7) {
    margin-top: 50px;
  }
}

@media (max-width: 730px) {
  .sec-5 .items-wrapper {
    width: 76%;
  }

  .sec-5 .text-wrapper:nth-of-type(5) {
    order: 4;
    flex-basis: 100%;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(3) {
    order: 3;
    flex-basis: 100%;
  }

  .sec-5 .text-wrapper:nth-of-type(3) .text-box {
    margin-left: auto;
    margin-right: 0;
    margin-top: 40px;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(2) {
    order: 5;
    flex-basis: 100%;
    padding: 0 0;
    margin-top: -10px;
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    margin-left: 55%;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    order: 6;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    margin-left: 15%;
    margin-right: auto;
    padding-right: 10px;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(1) {
    order: 7;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    margin-left: 10px;
    margin-right: 0;
    transform: translate(0, 60px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    order: 8;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    margin-left: 10%;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    order: 9;
    flex-basis: 50%;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    margin-left: 10%;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(9),
  .sec-5 .text-wrapper:nth-of-type(7) {
    margin-top: 100px;
  }
}

@media (max-width: 650px) {
  .sec-5 .items-wrapper {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .sec-5 .items-wrapper {
    width: 82%;
  }
}

@media (max-width: 580px) {
  .sec-5 .items-container {
    margin-top: -50px;
    padding-bottom: 65px;
  }

  .sec-5 .items-wrapper {
    width: 80%;
  }

  .sec-5 .items-wrapper .partner-container {
    flex-basis: 100%;
    transform: translate(0, 65px);
  }

  .sec-5 .items-wrapper .partner-wrapper {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 550px) {
  .sec-5 .items-container {
    margin-top: 0;
    padding-top: 15px;
  }

  .sec-5 .items-wrapper {
    width: 84%;
  }

  .sec-5 .items-wrapper .partner-container {
    flex-basis: 100%;
    transform: translate(0);
  }
  .sec-5 .items-wrapper .partner-wrapper {
    margin: auto;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    transform: translate(0, 20px);
  }
}

@media (max-width: 515px) {
  .sec-5 .items-wrapper {
    width: 84%;
  }

  .sec-5 .text-wrapper:nth-of-type(1) {
    order: 9;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    margin-left: 10px;
    margin-right: 0;
    transform: translate(0, 60px);
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    order: 7;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    margin-left: 10%;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    order: 8;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    margin-left: 10%;
    margin-right: auto;
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box > *:first-child {
    font-weight: 700;
    font-size: 34px;
  }

  .sec-5 .text-wrapper:nth-of-type(7) .text-box > p {
    width: max-content;
    margin-top: 3px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    order: 6;
    flex-basis: 0;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    margin-left: 15%;
    margin-right: auto;
    padding-right: 10px;
    transform: translate(0, -30px);
  }

  .sec-5 .text-wrapper:nth-of-type(1),
  .sec-5 .text-wrapper:nth-of-type(7) {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .sec-5 .text-wrapper:nth-of-type(7) .text-box {
    transform: translate(0, -30px);
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    margin-right: 0;
    margin-left: auto;
    padding-left: 10px;
    transform: translate(0, 20px);
  }
}

@media (max-width: 470px) {
  .sec-5.section-container {
    padding-bottom: 0;
  }

  .sec-5 .items-container {
    flex-wrap: wrap;
  }

  .sec-5 .items-wrapper {
    flex-wrap: wrap;
    justify-content: space-around !important;
    width: 90% !important;
    min-width: 300px;
  }

  .sec-5 .partner-container {
    margin-bottom: 25px;
  }

  .sec-5 .text-wrapper {
    justify-content: center !important;
    max-width: min-content;
    margin: 40px 0 !important;
    padding: 0 !important;
    flex-basis: 50% !important;
    max-width: 50%;
  }

  .sec-5 .text-wrapper .text-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: min-content;
    padding: 0 !important;
    margin: 0 !important;
  }

  .sec-5 .text-wrapper:nth-of-type(7) {
    order: 1;
  }

  .sec-5 .text-wrapper:nth-of-type(6) {
    order: 2;
  }

  .sec-5 .text-wrapper:nth-of-type(6) .text-box {
    transform: rotate(90deg);
  }

  .sec-5 .text-wrapper:nth-of-type(5) {
    order: 3;
  }

  .sec-5 .text-wrapper:nth-of-type(5) .text-box {
    transform: translate(-10px, -20px) rotate(90deg);
  }

  .sec-5 .text-wrapper:nth-of-type(8) {
    order: 4;
  }

  .sec-5 .text-wrapper:nth-of-type(8) .text-box {
    transform: translate(0, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(3) {
    order: 5;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }

  .sec-5 .text-wrapper:nth-of-type(9) {
    order: 6;
    margin: 0 !important;
  }

  .sec-5 .text-wrapper:nth-of-type(9) .text-box {
    transform: translate(10px, 0);
  }

  .sec-5 .text-wrapper:nth-of-type(2) {
    order: 7;
    margin: 20px 0 !important;
  }

  .sec-5 .text-wrapper:nth-of-type(2) .text-box {
    transform: rotate(90deg);
  }

  .sec-5 .text-wrapper:nth-of-type(1) {
    order: 8;
  }

  .sec-5 .text-wrapper:nth-of-type(1) .text-box {
    transform: translate(-5px, 10px);
  }
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.footer-container {
  overflow: hidden;
}

.sec-6.section-container {
  display: flex;
  width: 100%;
}

.sec-6 .section-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 70px;
  background-color: var(--green-elem);
}

.sec-6 .left-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-basis: 50%;
}

.sec-6 .left-wrapper {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}

.sec-6 .title {
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--white-text);
}

.sec-6 .left-wrapper .comment {
  margin-top: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white-text);
}

.sec-6 form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-top: 40px;
  margin-bottom: 20px;
  max-width: 580px;
}

.sec-6 input,
.sec-6 textarea {
  width: 100%;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 1.1rem;
  color: #2f2f2f;
  background-color: var(--white-text);
  border: transparent;
  border-radius: var(--border-radius);
  border-style: solid;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.sec-6 textarea {
  min-height: 120px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  resize: none;
}

.sec-6 input::placeholder,
.sec-6 textarea::placeholder {
  color: rgb(130, 130, 130);
}

.sec-6 form button {
  padding: 15px 0;
  border-radius: var(--border-radius);
  background-color: #bebdbd;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1ch;
  color: var(--green-text);
}

.sec-6 form button:hover {
  cursor: pointer;
  background-color: #cbcbcb;
}

.sec-6 .right-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-basis: 50%;
}

.sec-6 .right-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 80%;
  height: 100%;
  margin: 0 auto;
}

.sec-6 .right-wrapper .title,
.sec-6 .contact-box:first-child {
  margin-bottom: 50px;
}

.sec-6 .contact-box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.sec-6 .contacts-container .contact:first-child,
.cont-link {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #3c3c3c;
}

.sec-6 .contact-box .contact:not(:first-child) {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white-text);
}

.sec-6 .contact-box:first-child .contact:last-child {
  margin-top: 10px;
}

.sec-6 .social-img-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 130px;
  height: 360px;
  margin-top: 70px;
}

.sec-6 .social-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
}

.sec-6 .social-box svg {
  stroke: #f9f9f9;
}

.sec-6 .social-box:first-child svg {
  width: 53px;
  height: auto;
}

.sec-6 .social-box:last-child svg {
  width: 50px;
  height: auto;
}

footer {
  position: relative;
  width: 100%;
}

footer .bg-circle-container {
  position: absolute;
  width: 600px;
  height: auto;
  right: -200px;
  bottom: -300px;
}

footer .bg-circle-box {
  position: relative;
  width: 100%;
  height: 100%;
}

footer .bg-circle-container svg {
  width: 100%;
  height: auto;
}

footer .bg-circle-container svg path {
  fill: #eaeaea;
}

footer .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-80%, -280%);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-text);
  text-align: right;
}

@media (max-width: 1100px) {
  footer .bg-circle-container {
    bottom: -300px;
  }

  footer .text {
    transform: translate(-75%, -220%);
  }
}

@media (max-width: 1000px) {
  .sec-6 .section-wrapper {
    padding-top: 10vw;
  }

  .sec-6 .left-container,
  .sec-6 .right-container {
    flex-basis: 100%;
  }

  .sec-6 form {
    max-width: none;
  }

  .sec-6 .right-container {
    margin-top: 100px;
  }

  .sec-6 .right-wrapper,
  .sec-6 .left-wrapper {
    width: 80%;
    max-width: 650px;
  }
}

@media (max-width: 480px) {
  .sec-6 .section-wrapper {
    padding-top: 12vw;
  }

  .sec-6 .right-container {
    margin-top: 70px;
  }

  .sec-6 .right-wrapper,
  .sec-6 .left-wrapper {
    width: 85%;
  }

  .sec-6 .right-wrapper .title,
  .sec-6 .contact-box:first-child {
    margin-bottom: 30px;
  }

  .sec-6 .social-img-container {
    margin-top: 40px;
  }

  footer .bg-circle-container {
    bottom: -350px;
  }

  footer .text {
    transform: translate(-70%, -450%);
  }
}

@media (max-width: 375px) {
  .sec-6 .section-wrapper {
    padding-top: 40px;
  }

  .sec-6 .left-wrapper .comment {
    margin-top: 40px;
    font-weight: 400;
    font-size: 1.1rem;
  }

  .sec-6 form {
    margin-top: 30px;
  }

  .sec-6 .contacts-container .contact:first-child,
  .cont-link {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .sec-6 .contact-box .contact:not(:first-child) {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--white-text);
  }

  footer .text {
    transform: translate(-65%, -450%);
  }
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.section-title-box {
  display: flex;
  width: 100%;
  height: fit-content;
  padding: 60px 0 70px;
  font-weight: 700;
  font-size: 2.8rem;
}

@media (max-width: 840px) {
  .section-title-box {
    padding: 50px 0 60px;
  }

  .sec-5 .section-title-box .title {
    margin: 0 auto 0 12%;
  }
}

@media (max-width: 670px) {
  .sec-5 .section-title-box .title {
    margin: 0 auto 0;
  }
}

@media (max-width: 584px) {
  .section-title-box {
    padding: 45px 15%;
    font-size: 2.3rem;
    line-height: 2.3rem;
  }

  .sec-6 .title {
    font-size: 2.3rem;
  }
}

@media (max-width: 375px) {
  .section-title-box {
    padding: 40px 0 45px;
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .sec-6 .title {
    font-size: 1.3rem;
  }
}

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

.offset-down {
  transform: translateY(120px);
}

.move-up {
  transform: translateY(0);
  transition: transform ease 1.2s;
}

.size-down {
  transform: scale(0.6);
}

.size-up {
  transform: scale(1);
  transition: transform 1s ease 1s;
}

.offset-left {
  transform: scale(0.01) translateX(-500px);
}

.move-right {
  transform: scale(1) translateX(0);
  transition: transform ease-in-out 1s;
}

.offset-right {
  transform: scale(0.01) translateX(500px);
}

.move-left {
  transform: scale(1) translateX(0);
  transition: transform ease-out 1.2s;
}

.offset-depth-far {
  transform: scale(0.01) perspective(4000px) translateZ(-4000px);
}

.move-depth-close {
  transform: scale(1) translateZ(0);
  transition: transform ease 1.5s;
}

.offset-depth-close {
  transform: perspective(100px) translateZ(201px);
}

.move-depth-far {
  transform: translateZ(0);
  transition: transform ease-in-out 0.8s;
}
