@font-face {
  font-family: "Gibson";
  src: url("/fonts/Gibson/Gibson_Bold.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Scandia";
  src: url("/fonts/Scandia/Scandia.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Allison Script";
  src: url("/fonts/Allison_Script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
p {
  margin: 0;
  color: #ffffff;
  font-family: "Gibson";
}

.clip-container {
  position: relative;
  padding-bottom: clamp(8rem, 32%, 25rem);
  max-height: 1200px;
}

.circle {
  width: 100%;
  height: clamp(300px, 60vw, 750px);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  background-color: #ff7567;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  max-height: 650px;
}

.content-container {
  margin-bottom: 10px;
}

.bottom-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -2.5%);
  width: 100%;
  text-align: center;
  z-index: 2;
  margin-bottom: 0;
}

.bottom-container img {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 220px;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-title {
  font-size: clamp(2.5rem, 12vw, 200px);
  max-width: 100%;
  line-height: 1.2;
  -webkit-text-stroke: 5px #0d1937;
  text-shadow: 0px 10px 0px #0d1937;
  font-family: "Gibson";
  font-weight: 700;
  margin-top: clamp(1rem, 4vh, 4rem);
}

.herd-content-1,
.herd-content-2 {
  font-size: clamp(0.8rem, 2vw, 1.8rem);
  font-weight: 600;
  font-family: "Gibson";
}

.herd-content-1 {
  color: #0d1937;
}

.herd-content-2 {
  color: #f7f1eb;
}

.herd-content-3 {
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  font-family: "Scandia";
  font-weight: 400;
  color: #f7f1eb;
  margin-top: clamp(10px, 2vh, 20px);
  max-width: clamp(700px, 70vw, 1000px);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-container {
  margin-top: 10px;
}

.section-title {
  font-size: clamp(24px, 4vw, 70px);
  color: #f7f1eb;
  -webkit-text-stroke: 0.05em #0d1937;
  text-shadow: 0 0.1em 0 #0d1937;
  font-family: "Gibson";
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.content-container-2 {
  position: relative;
  margin-top: 10px;
  width: 100%;
  min-height: 750px;
  background-color: #b3bcc9;
  border: 2px solid #0d1937;
}

.first-row,
.second-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
}

.first-row {
  transform: translateY(max(-4vh, -40px));
}

.second-row {
  margin-bottom: -30px;
  width: 100%;
}

.content-container-2 img {
  max-width: 300px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.input-container {
  margin-top: 50px;
  width: 100%;
  height: auto;
  background-color: #9ad4d6;
  padding: 35px 30px 20px 30px;
  border: 2px solid #0d1937;
  display: flex;
  flex-direction: column;
}

.input-content {
  max-width: 500px;
  width: 100%;
  margin-bottom: 45px;
}

.input-container p:not(.input-title) {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 120%;
  color: #0d1937;
  font-family: "Scandia";
}

.input-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0d1937;
  font-family: "Gibson";
}

.input-section {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  width: 100%;
  flex-wrap: nowrap;
}

.input-section input {
  flex: 2;
  height: 60px;
  max-width: 60%;
  padding: 0 10px;
  border: none;
}

.input-section input::-moz-placeholder {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #0d1937;
  font-weight: 400;
  line-height: 120%;
}

.input-section input::placeholder {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #0d1937;
  font-weight: 400;
  line-height: 120%;
}

.input-section button {
  flex: 1;
  height: 60px;
  padding: 10px;
  background-color: salmon;
  border-top: 4px solid #0d1937;
  border-left: 4px solid #0d1937;
  border-right: 4px solid #0d1937;
  box-shadow: 0px 12px 0px 0px #0d1937;
  border-radius: 35px;
  color: #f7f1eb;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-family: "Gibson";
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-section button:hover {
  background-color: #ff8e80;
}

.input-section button:active {
  box-shadow: 0px 4px 0px 0px #0d1937;
  transform: translateY(8px);
  background-color: #ff7260;
}

.polygon-container {
  display: flex;
  width: 100%;
  min-height: clamp(400px, 60vh, 550px);
  margin-top: clamp(10px, 2vh, 10px);
  margin-bottom: clamp(200px, 25vh, 300px);
  gap: 10px;
}

.polygon-left {
  flex: 2;
  background-color: #0d1937;
  border: none;
  position: relative;
  clip-path: polygon(100% 0, 100% 55%, 79% 100%, 0 100%, 0 0);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 750px;
}

.polygon-left .polygon-inner {
  background-color: #ffffff;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  clip-path: polygon(100% 0, 100% 55%, 79% 100%, 0 100%, 0 0);
  padding: clamp(20px, 4vw, 50px);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 1vw, 20px);
  margin-top: 30px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.icon-item img {
  width: clamp(40px, 5vw, 60px);
  height: auto;
  flex-shrink: 0;
}

.support-text-small {
  font-family: "Scandia";
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  color: #0d1937;
  line-height: 1.3;
  max-width: 200px;
  word-wrap: break-word;
}

.polygon-right-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.ehe-arrow-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.arrow-img {
  width: clamp(50px, 10vw, 120px);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(50px, 100px);
}

.ehe-img {
  width: clamp(120px, 30vw, 350px);
  height: 500px;
}

.polygon-top {
  flex: 1;
  max-height: 350px;
  background-color: #564787;
  border: 2px solid #0d1937;
  display: flex;
  align-items: center;
  color: #f7f1eb;
  font-family: "Gibson";
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 2.2rem);
  padding: clamp(15px, 2vw, 30px);
  padding-left: 15px;
}

.polygon-right {
  flex: 1;
  background: #0d1937;
  position: relative;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 28% 0);
  border: none;
  margin-left: -38%;
}

.polygon-right .polygon-right-inner {
  background: #b3bcc9;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 28% 0);
}

.support-title {
  font-size: clamp(1.8rem, 7vw, 5rem);
  color: #ff7f6e;
  font-weight: 700;
  font-family: "Gibson";
  -webkit-text-stroke: 4px #0d1937;
  text-shadow: 0px 8px 0px #0d1937;
  margin-bottom: clamp(10px, 2vh, 30px);
  margin-top: 1vh;
}

.support-text {
  font-family: "Scandia";
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #0d1937;
  max-width: 600px;
}

.herd-mobile-image {
  display: none;
}

.broken-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 50px;
}

.founder-section {
  display: grid;
  gap: 20px;
  margin-top: 0;
}

.founder-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
}

.founder-top-bg {
  width: 100%;
  height: auto;
  display: block;
}

.founder-top-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 5px 10px 10px 30px;
  display: flex;
  justify-content: start;
  align-items: start;
}

.founder-top-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.founder-top-text h2 {
  color: #0d1937;
  font-family: "Gibson";
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 20px;
  margin: 0;
  padding: 0;
}

.founder-top-text p {
  font-family: "Gibson";
  font-weight: 700;
  color: #F7F1EB;
  -webkit-text-stroke: 0.05em #C86D13;
  text-shadow: 0px 0.1em 0px #C86D13;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-align: center;
  margin: 0;
  padding: 0;
}

.founder-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: stretch;
}

.founder-left {
  background-color: #ff7f6e;
  padding: 25px;
  color: #0d1937;
  font-family: "Scandia";
  display: flex;
  margin: -12px auto 0 auto;
  border: 2px solid #0D1937;
}

.founder-left p {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: #0D1937;
  font-weight: 400;
  line-height: 1.6;
}

.founder-left span {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: #0D1937;
  text-align: center;
  font-weight: 700;
}

.founder-right {
  position: relative;
  overflow: hidden;
  margin-top: clamp(-20%, -7.5vh, -15.5%);
}

.founder-bottom-bg {
  width: 100%;
  height: auto;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.founder-right-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 20px;
  z-index: 1;
}

.founder-right-image {
  align-self: end;
  display: flex;
  justify-content: end;
}

.founder-right-image img {
  width: 100%;
  max-width: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

.founder-right-text p {
  max-width: 480px;
  padding-top: 30px;
  color: #f7f1eb;
  font-family: "Scandia";
  font-size: clamp(1rem, 1.8vw + 0.3rem, 1.5rem);
}

.founder-right-text span {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 3.5rem);
  color: #9AD4D6;
  font-family: "Gibson";
  font-weight: 700;
  -webkit-text-stroke: 0.05em #0D1937;
  text-shadow: 0px 0.1em 0px #0D1937;
}

.feel-better {
  display: flex;
  flex: 1;
  min-height: 100px;
  border: 2px solid #0D1937;
  padding: clamp(1rem, 2vw, 2rem);
  margin-bottom: 3vw;
  color: rgba(255, 127, 110, 0.1019607843);
}

.better-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  gap: 20px;
}

.feel-main {
  color: #FF7F6E;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  -webkit-text-stroke: 0.05em #0d1937;
  text-shadow: 0 0.1em 0 #0d1937;
  font-family: "Gibson";
  font-weight: 700;
  max-width: 700px;
  flex: 1;
}

.better-sig {
  display: flex;
  flex: 2;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.sig-bottom {
  color: #0D1937;
  font-weight: 700;
  font-family: "Scandia";
  font-size: clamp(0.75rem, 1vw, 1rem);
}

.better-signature {
  font-weight: 400;
  font-family: "Allison Script", cursive;
  font-size: clamp(1.8rem, 4vw, 4rem);
  color: #0D1937;
}

.story-grid {
  display: grid;
  grid-template-columns: 48% 32% 20%;
  color: #0d1937;
  overflow: hidden;
  gap: 10px;
  margin-bottom: 3rem;
}

.story {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story.left {
  background: #D9D9D9;
  border-radius: 170px;
  border: 2px solid #0D1937;
}

.story.right {
  background-color: #9AD4D6;
  align-items: flex-end;
  text-align: right;
  border: 2px solid #0D1937;
  border-radius: 180px 0 0 180px;
  padding-left: 20px;
  padding-right: clamp(10px, 2vw, 20px);
  margin-left: -15%;
  position: relative;
}

.story h3 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #0D1937;
  font-family: "Gibson";
}

.story h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.story.left h2 {
  color: #FF7F6E;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  -webkit-text-stroke: 0.05em #0d1937;
  font-family: "Gibson";
  text-shadow: 0 0.1em 0 #0d1937;
}

.story.right h2 {
  color: #3d358b;
  font-size: clamp(1.8rem, 4vw, 2rem);
  color: #564787;
  font-weight: 700;
  font-family: "Gibson";
}

.story p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: #0D1937;
  font-family: "Scandia";
  line-height: 1.5;
  color: #333;
  max-width: 380px;
}

.story-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-height: 400px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fdf5ef;
  color: #0d1937;
  gap: 10px;
  margin-bottom: 2.5vw;
}

.why-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.why-box.first {
  background: #ffffff;
  text-align: left;
}

.why-box.first h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #0d1937;
  margin-bottom: 15px;
}

.why-box.first h2 span {
  color: #3d358b;
}

.why-box.first p {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6a6a;
}

.why-box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.why-box p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1937;
  line-height: 1.3;
}

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

.contact-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  margin-bottom: 2rem;
}

.founder-contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 1vw, 15px);
  padding: clamp(10px, 2vw, 30px);
  background-color: #faf6f2;
  border: 2px solid #0D1937;
}

.founder-contact-form input,
.founder-contact-form textarea {
  width: 100%;
  padding: clamp(8px, 2vw, 12px);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  box-sizing: border-box;
  border: 2px solid #0D1937;
  border-radius: 5px;
  background-color: #B3BCC9;
}

.founder-contact-form input::-moz-placeholder, .founder-contact-form textarea::-moz-placeholder {
  color: #0D1937;
}

.founder-contact-form input::placeholder,
.founder-contact-form textarea::placeholder {
  color: #0D1937;
}

.founder-contact-form textarea {
  min-height: clamp(250px, 20vw, 350px);
  resize: none;
}

.founder-contact-form button {
  width: 200px;
  height: 50px;
  background-color: #564787;
  color: #F7F1EB;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-family: "Gibson";
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 0.3rem auto;
  border-top: 3px solid #0D1937;
  border-right: 3px solid #0D1937;
  border-bottom: 7px solid #0D1937;
  border-left: 3px solid #0D1937;
}

.founder-contact-form button:hover {
  background-color: #3b2e60;
}

.contact-illustration {
  position: relative;
  background-color: #c34a47;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-illustration img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feel-again-container {
  width: 100%;
  background-color: #FF7F6E;
  border: 2px solid #0D1937;
  height: clamp(150px, 20vw, 300px);
  text-align: center;
}

.feel-again-title {
  font-size: clamp(2rem, 8vw, 120px);
  max-width: 100%;
  line-height: 1.2;
  -webkit-text-stroke: 0.05em #0d1937;
  text-shadow: 0 0.08em 0 #0d1937;
  font-family: "Gibson";
  font-weight: 700;
  margin-top: clamp(1rem, 3vh, 3rem);
  letter-spacing: -0.05em;
}

.feel-again-content {
  color: #0D1937;
  font-size: clamp(0.8rem, 1.5vw, 4rem);
  font-weight: 700;
  font-family: "Gibson";
}

@media (max-width: 480px) {
  .main-title {
    margin-top: 0;
  }
  .circle {
    max-height: clamp(260px, 300px, 40vh);
    padding-top: 15px;
  }
  .clip-container {
    padding-bottom: clamp(148px, 37%, 200px);
  }
  .herd-content-3 {
    margin-top: clamp(5px, 1vh, 10px);
    color: #F7F1EB;
  }
  .bottom-container {
    transform: translate(-50%, -0.5%);
  }
}
@media (max-width: 600px) {
  .main-title {
    font-size: clamp(1.8rem, 15vw, 3.8rem);
    -webkit-text-stroke: 2px #0d1937;
    text-shadow: 0px 4px 0px #0d1937;
  }
  .section-title {
    font-size: 1.8rem;
    -webkit-text-stroke: 2px #0d1937;
    text-shadow: 0px 4px 0px #0d1937;
    margin-bottom: 4vh;
  }
  .support-title {
    font-size: clamp(1.4rem, 10vw, 2.8rem);
    -webkit-text-stroke: 2px #0d1937;
    text-shadow: 0px 4px 0px #0d1937;
  }
  .support-icon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .icon-item {
    gap: 10px;
  }
  .icon-item img {
    width: 45px;
  }
  .support-text-small {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .polygon-right-wrapper {
    flex-direction: column;
    height: auto;
  }
  .polygon-top {
    flex: 0 0 30%;
    padding: 20px;
    text-align: center;
  }
  .polygon-right {
    flex: 0 0 70%;
    margin-left: 0;
    clip-path: none;
  }
  .polygon-left .polygon-inner {
    position: static;
    width: 100%;
    height: 100%;
    transform: none;
    padding: clamp(20px, 4vw, 50px);
    padding-top: 0;
    clip-path: none;
    border: 2px solid #0d1937;
  }
  .polygon-right .polygon-right-inner {
    position: static;
    width: 100%;
    height: 100%;
    transform: none;
    clip-path: none;
  }
  .ehe-img {
    height: clamp(400px, 50vh, 500px);
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .arrow-img {
    width: clamp(50px, 10vw, 120px);
    height: auto;
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%);
  }
}
@media (max-width: 700px) {
  .input-section {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .input-section input,
  .input-section button {
    max-width: 100% !important;
    width: 100%;
    flex: none !important;
  }
  .input-section input {
    height: 55px;
  }
  .input-section button {
    height: 55px;
    margin-top: 10px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .polygon-container {
    display: none !important;
  }
  .herd-mobile-image {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .herd-mobile-image img {
    width: 100%;
    min-height: 400px;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .why-box {
    border-right: none;
    border-bottom: 2px solid #0d1937;
  }
  .founder-section {
    display: none !important;
  }
  .feel-better {
    display: none !important;
  }
  .founder-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }
  .founder-mobile img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .story-grid {
    display: none !important;
  }
  .story-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 3vw auto;
  }
  .story-mobile img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .feel-better {
    min-height: 100px;
    height: auto;
    gap: 8px;
    padding: 10px;
    align-items: center;
    justify-content: space-evenly;
  }
  .feel-main {
    font-size: clamp(1rem, 3vw, 2rem);
    -webkit-text-stroke: 1px #0d1937;
    text-shadow: 0px 2px 0px #0d1937;
  }
  .sig-bottom {
    font-size: clamp(0.5rem, 0.5vw, 1rem);
  }
  .better-signature {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
}
@media (min-width: 769px) {
  .polygon-container {
    display: flex;
  }
  .herd-mobile-image {
    display: none;
  }
  .founder-mobile {
    display: none;
  }
  .story-mobile {
    display: none;
  }
}
@media (max-width: 900px) {
  .content-container-2 {
    min-height: auto;
    padding: 0 15px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
  }
  .first-row,
  .second-row {
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 10px;
    transform: none;
  }
  .first-row {
    margin-top: -30px;
  }
  .second-row {
    margin-bottom: -20px;
  }
  .content-container-2 img {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .support-title {
    font-size: clamp(2rem, 9vw, 3rem);
    -webkit-text-stroke: 3px #0d1937;
    text-shadow: 0px 6px 0px #0d1937;
  }
  .icon-item {
    gap: 5px;
  }
  .content-container-2 {
    min-height: auto;
  }
  .first-row,
  .second-row {
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 10px;
    transform: none;
  }
  .content-container-2 img {
    max-width: 28vw;
  }
}
@media (max-width: 992px) {
  .founder-top-content,
  .founder-right-content {
    text-align: center;
  }
  .founder-top-image img,
  .founder-right-image img {
    max-width: 250px;
    margin: 0 auto;
  }
  .founder-left {
    padding: 25px;
  }
  .founder-top-text,
  .founder-right-text {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .contact-container {
    display: flex;
    flex-direction: column;
  }
  .contact-illustration {
    order: -1;
  }
  .contact-illustration img {
    width: 100%;
    height: auto;
    max-height: clamp(365px, 4vw, auto);
  }
}

/*# sourceMappingURL=frontend-custom-2.css.map*/