:root {
  --menu-mobile-bar-bg-color: #000;
  --menu-mobile-bar-bg-color: #fff;
  --primary: rgba(16, 16, 16, 1);
  --body-bg: rgba(242, 249, 244, 1);
}

.container {
  width: min(81.7708333333vw, 95%);
  margin-inline: auto;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.grid {
  display: grid;
  height: 100%;
  width: 100%;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.general_loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  /* HTML: <div class="loader"></div> */
  height: clamp(40px, 2.0833333333vw, 2.0833333333vw);
  aspect-ratio: 1.5;
  --c: no-repeat linear-gradient(rgba(101, 168, 121, 1) 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 33.4% 50%;
  animation: l6 2s infinite linear;
}

@keyframes l6 {
  0% {
    background-position: 0 0, 50% 0, 0 100%, 50% 100%;
  }
  12.5% {
    background-position: 0 0, 100% 0, 0 100%, 50% 100%;
  }
  25% {
    background-position: 0 0, 100% 0, 0 100%, 50% 0;
  }
  37.5% {
    background-position: 0 0, 100% 0, 50% 100%, 50% 0;
  }
  50% {
    background-position: 0 100%, 100% 0, 50% 100%, 50% 0;
  }
  62.5% {
    background-position: 0 100%, 100% 0, 50% 100%, 0 0;
  }
  75% {
    background-position: 0 100%, 100% 100%, 50% 100%, 0 0;
  }
  87.5% {
    background-position: 0 100%, 100% 100%, 50% 0, 0 0;
  }
  100% {
    background-position: 0 100%, 50% 100%, 50% 0, 0 0;
  }
}
.general_button {
  width: fit-content;
  background: var(--white);
  border-radius: clamp(8px, 0.4166666667vw, 0.4166666667vw);
  cursor: pointer;
  padding-block: clamp(12px, 0.625vw, 0.625vw);
  padding-inline: clamp(23px, 1.1979166667vw, 1.1979166667vw);
}
.general_button__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 0.625vw, 0.625vw);
}
.general_button__text {
  font-weight: 400 !important;
  font-size: clamp(16px, 0.8333333333vw, 0.8333333333vw) !important;
  line-height: 150% !important;
  letter-spacing: -2% !important;
  background-color: unset !important;
  padding: 0 !important;
}
.general_button__end_icon, .general_button__start_icon {
  width: max(20px, 1.0416666667vw);
  height: max(20px, 1.0416666667vw);
}
.general_button__end_icon svg,
.general_button__end_icon img, .general_button__start_icon svg,
.general_button__start_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.general_button:hover {
  transition: all 0.3s ease;
}

:root {
  --menu-mobile-bar-bg-color: #000;
  --menu-mobile-bar-bg-color: #fff;
  --primary: rgba(16, 16, 16, 1);
  --body-bg: rgba(242, 249, 244, 1);
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  font-family: "Assistant", sans-serif;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

/*
  9. Improve link defaults
*/
a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(200px, 30vw); /* adjust based on header height */
}
html body {
  background: white;
}
html body * {
  transition: all ease-in 300ms;
}
html body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in 300ms;
  width: 100%;
  height: 100%;
}
html body.open-popup {
  overflow: hidden;
}
html body.open-popup::before {
  visibility: visible;
  opacity: 1;
}
html body.loader {
  overflow: hidden;
}
html body.loader::before {
  visibility: visible;
  opacity: 1;
}
html body.loader .general_loader {
  opacity: 1 !important;
  visibility: visible !important;
}
html body img,
html body picture,
html body video,
html body canvas,
html body svg {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
html body header ul,
html body header ol {
  list-style: none;
  padding-inline-start: unset;
}
html body section {
  overflow-x: clip;
}

.site-logo {
  width: max(254px, 13.2291666667vw);
  height: max(237px, 12.34375vw);
  margin-block: max(4.6875vw, 90px);
  margin-inline: auto;
}
@media only screen and (max-width: 1024px) {
  .site-logo {
    width: 157px;
    height: auto;
    margin-block: max(2.6041666667vw, 50px);
  }
}

.container {
  color: hsl(35, 17%, 22%);
}
.container .top-wrapper {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .container .top-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.container .top-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.container .top-wrapper .text-wrapper h1.single-title {
  flex: 1;
  font-size: clamp(2rem, 1.58rem + 1.81vw, 3.75rem);
  font-weight: 700;
  line-height: 1em;
}
.container .top-wrapper .text-wrapper .divider {
  height: 3px;
  width: 60px;
  border-radius: 50px;
  background-color: #e359c9;
}
.container .top-wrapper .text-wrapper .excerpt {
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.13rem);
  font-weight: 500;
  line-height: 1.3em;
}
.container .top-wrapper .text-wrapper .date {
  font-size: clamp(1.13rem, 0.94rem + 0.26vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3em;
}
.container .top-wrapper .featured-image {
  flex: 1;
  max-height: 300px;
  border-radius: 15px;
}
.container .single-content {
  margin-top: 60px;
  background-color: hsl(285, 70%, 90%);
  padding: 30px;
  border-radius: 20px;
}
.container .single-content h2 {
  font-size: clamp(1.5rem, 1.27rem + 1.03vw, 2.5rem);
  font-weight: 600;
  line-height: 1.375em;
  margin-block: 15px;
}
.container .single-content h3 {
  font-size: clamp(1.125rem, 0.94rem + 0.776vw, 1.875rem);
  font-weight: 600;
  line-height: 1.375em;
  margin-block: 10px;
}
.container .single-content h4 {
  font-size: clamp(1.3rem, 1.04rem + 0.38vw, 1.5rem);
  font-weight: 600;
  line-height: 1.375em;
  margin-block: 7.5px;
}
.container .single-content p {
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.13rem);
  font-weight: 400;
  line-height: 1.275em;
  margin-block: 5px;
}

.error404__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-block: 100px;
  padding-inline: 20px;
}
.error404__title {
  font-size: clamp(2rem, 1.58rem + 1.81vw, 3.75rem);
  font-weight: 700;
  line-height: 1em;
  color: hsl(35, 17%, 22%);
}
.error404__text {
  font-size: clamp(1rem, 0.91rem + 0.388vw, 1.375rem);
  font-weight: 500;
  line-height: 1.375em;
  color: hsl(35, 17%, 22%);
}
.error404__link {
  background-color: #e359c9;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: clamp(1.13rem, 0.94rem + 0.26vw, 1.25rem);
  font-weight: 500;
  line-height: 1.375em;
  color: rgb(255, 255, 255);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.error404__link:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

:root {
  --menu-mobile-bar-bg-color: #000;
  --menu-mobile-bar-bg-color: #fff;
  --primary: rgba(16, 16, 16, 1);
  --body-bg: rgba(242, 249, 244, 1);
}

.header {
  position: sticky;
  top: 0;
  z-index: 998;
  background-color: #e359c9;
}
.header__container {
  width: max(min(95%, 1280px), 66.6666666667vw);
  margin-inline: auto;
  padding-block: max(28px, 1.4583333333vw) max(21px, 1.09375vw);
}
@media only screen and (max-width: 1140px) {
  .header__container {
    justify-content: space-between;
  }
}
.header__logo {
  position: absolute;
  right: 5%;
  display: flex;
  width: max(216px, 11.25vw);
}
@media only screen and (max-width: 1200px) {
  .header__logo {
    right: 3%;
  }
}
@media only screen and (max-width: 1140px) {
  .header__logo {
    right: unset;
    left: 10%;
  }
}
@media only screen and (max-width: 650px) {
  .header__logo {
    max-width: 157px;
  }
}
.header__logo a {
  width: 100%;
  height: 100%;
}
.header__logo a * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.header__desktop {
  margin-inline-start: 2.5vw;
  width: calc(100% - 7.5vw - 2.5vw);
  justify-content: center;
}
@media only screen and (max-width: 1140px) {
  .header__desktop {
    display: none;
  }
}
.header__desktop:has(.header__desktop_search_container.open) .header__menu {
  width: 0;
  max-height: 40px;
  overflow: hidden;
}
.header__menu {
  transition: all ease-in 300ms;
}
.header__menu .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.7604166667vw;
}
@media only screen and (max-width: 1140px) {
  .header__menu .menu {
    flex-direction: column;
  }
}
.header__menu .menu li {
  position: relative;
}
@media only screen and (max-width: 1140px) {
  .header__menu .menu li {
    position: unset;
  }
}
.header__menu .menu li a {
  padding-inline: clamp(12px, 0.625vw, 0.625vw);
  padding-block: clamp(8px, 0.4166666667vw, 0.4166666667vw);
}
.header__menu .menu a {
  font-family: "Assistant";
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: clamp(21px, 1.09375vw, 1.09375vw);
  line-height: 1.15em;
  letter-spacing: 0em;
  display: flex;
  align-items: center;
  transition: all ease-in 300ms;
}
.header__menu .menu a .arrow {
  width: clamp(10px, 0.5208333333vw, 0.5208333333vw);
  height: clamp(8px, 0.4166666667vw, 0.4166666667vw);
  margin-inline-start: clamp(8px, 0.4166666667vw, 0.4166666667vw);
}
.header__menu .menu .item .sub-menu {
  min-width: 13.0208333333vw;
  position: absolute;
  background-color: var(--white);
  top: calc(100% + 0px);
  right: 0;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in 300ms;
  z-index: 999;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3), 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1140px) {
  .header__menu .menu .item .sub-menu {
    box-shadow: unset;
  }
}
.header__menu .menu .item .sub-menu > .item:not(:last-of-type) {
  border-block-end: clamp(1px, 0.0520833333vw, 0.0520833333vw) solid rgba(0, 0, 0, 0.1);
}
.header__menu .menu .item .sub-menu > .item a {
  padding-block: clamp(10px, 0.5208333333vw, 0.5208333333vw);
  padding-inline: clamp(8px, 0.4166666667vw, 0.4166666667vw);
  text-align: start;
  font-family: "Noto Sans Hebrew";
  font-weight: 400;
  font-size: clamp(14px, 0.7291666667vw, 0.7291666667vw);
  line-height: 150%;
  letter-spacing: 0%;
}
.header__menu .menu .item .sub-menu > .item:hover {
  background-color: var(--brand-green-10);
}
.header__menu .menu .item .sub-menu > .item:hover > a {
  font-variation-settings: "wght" 700;
}
.header__menu .menu .item .sub-menu > .item.menu-item-has-children a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__menu .menu .item .sub-menu > .item.menu-item-has-children .arrow {
  transform: rotate(90deg);
}
.header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu {
  left: -100%;
  right: unset;
  top: 50%;
  transform: translate(0, -50%);
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3), 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1140px) {
  .header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu {
    box-shadow: unset;
  }
}
@media only screen and (max-width: 1140px) {
  .header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu {
    left: unset;
    right: 0;
    transform: unset;
    top: 0;
    position: absolute;
    padding-inline: 20px;
  }
  .header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu.open {
    opacity: 1;
    visibility: visible;
  }
}
.header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu .return {
  display: none;
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
}
.header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu .return svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 1140px) {
  .header__menu .menu .item .sub-menu > .item.menu-item-has-children .sub-menu .return {
    display: block;
    width: 15px;
    height: 20px;
  }
}
.header__menu .menu .item .sub-menu > .item.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header__menu .menu .item.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header__menu .menu .item:hover {
  background-color: var(--brand-green-20);
}
.header__mobile {
  display: none;
}
@media only screen and (max-width: 1140px) {
  .header__mobile {
    display: flex;
    order: 1;
    align-items: center;
    grid-area: max(8px, 0.4166666667vw);
  }
}
.header__mobile #menuToggle {
  position: relative;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.3019607843);
  padding: 5px 10px;
  width: fit-content;
  border-radius: 8px;
}
.header__mobile #menuToggle #checkbox {
  display: none;
}
.header__mobile #menuToggle #checkbox:checked + .toggle .bar--top {
  transform: rotate(-135deg);
  transition-delay: 0s;
  bottom: calc(50% - 1px);
  background: var(--menu-mobile-bar-color);
}
.header__mobile #menuToggle #checkbox:checked + .toggle .bar--middle {
  opacity: 0;
  transform: rotate(-135deg);
  transition-delay: 0.105s;
  background: var(--menu-mobile-bar-color);
}
.header__mobile #menuToggle #checkbox:checked + .toggle .bar--bottom {
  top: calc(50% - 1px);
  transform: rotate(-225deg);
  transition-delay: 0.21s;
  background: var(--menu-mobile-bar-color);
}
.header__mobile #menuToggle .toggle {
  position: relative;
  width: 21.33px;
  cursor: pointer;
  margin: auto;
  display: block;
  height: 28px;
}
.header__mobile #menuToggle .toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--menu-mobile-bar-bg-color);
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(0.5, -0.35, 0.35, 1.5) 0s;
}
.header__mobile #menuToggle .toggle .bar.bar--top {
  bottom: calc(50% + 6px + 1px);
  transition-property: bottom, transform, background;
  transition-delay: 0.21s;
}
.header__mobile #menuToggle .toggle .bar.bar--middle {
  top: calc(50% - 1px);
  transition-property: opacity, transform, background;
  transition-delay: 0.105s;
}
.header__mobile #menuToggle .toggle .bar.bar--bottom {
  top: calc(50% + 6px + 1px);
  transition-property: top, transform, background;
  transition-delay: 0s;
}
.header__mobile #menuToggle .toggle .bar.bar--top, .header__mobile #menuToggle .toggle .bar.bar--bottom {
  width: 62.4941397093%;
  margin-inline: auto;
}
.header__mobile_search_icon {
  width: max(40px, 2.0833333333vw);
  height: max(40px, 2.0833333333vw);
  padding: max(8.5px, 0.4427083333vw);
}
.header__mobile_search_icon svg,
.header__mobile_search_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__mobile_search_icon svg path,
.header__mobile_search_icon img path {
  stroke: var(--menu-mobile-bar-bg-color);
}
.header__mobile_search_container {
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: max(20px, 1.0416666667vw);
}
.header__mobile_search_container.open {
  opacity: 1;
  visibility: visible;
}
.header__mobile_search_container form {
  width: 100%;
  padding-block: max(8px, 0.4166666667vw);
}
.header__mobile_search_container form input {
  background-color: transparent;
  border: none;
  width: 100%;
}
.header__mobile_search_container form input:focus-visible {
  outline: none;
  box-shadow: none;
  border: none;
}
.header__mobile_search_container form input {
  font-weight: 400;
  font-size: max(16px, 0.8333333333vw);
  line-height: 150%;
}
.header__mobile_search_container form input::placeholder {
  font-weight: 400;
  font-size: max(16px, 0.8333333333vw);
  line-height: 150%;
  opacity: 0.4;
  color: var(--primary);
}
.header__mobile_search_container form button {
  display: none;
}
.header__mobile_search_close {
  top: 20px;
  left: 20px;
  width: max(40px, 2.0833333333vw);
  height: max(40px, 2.0833333333vw);
}
.header__mobile_container {
  z-index: 999;
  left: 0;
  top: -100px;
  width: 100%;
  background-color: #e359c9;
  max-height: 0px;
  transition: max-height ease-in 300ms, top ease-in 0.3s;
  overflow: hidden;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 52px 0 45px 0;
}
.header__mobile_container.open {
  max-height: 2000px;
  z-index: 1003;
  top: 0;
}
.header__mobile_container .header__menu {
  margin: 0;
}
.header__mobile_container .header__menu .menu-menu-container .menu {
  gap: 0px;
}
.header__mobile_container .header__menu .menu-menu-container .menu .item {
  padding-block: 12px;
}

:root {
  --menu-mobile-bar-bg-color: #000;
  --menu-mobile-bar-bg-color: #fff;
  --primary: rgba(16, 16, 16, 1);
  --body-bg: rgba(242, 249, 244, 1);
}

.footer {
  height: 27.5520833333vw, 529px;
  background-color: rgb(255, 255, 255);
}
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 4.4270833333vw;
  padding-block: 7.2916666667vw 4.6875vw;
}
@media only screen and (max-width: 1600px) {
  .footer__container {
    flex-wrap: wrap;
    row-gap: 1.5625vw;
  }
}
@media only screen and (max-width: 575px) {
  .footer__container {
    row-gap: 30px;
  }
}
.footer__container > * {
  width: 28%;
}
@media only screen and (max-width: 1600px) {
  .footer__container > * {
    width: 28%;
  }
}
@media only screen and (max-width: 768px) {
  .footer__container > * {
    width: 100%;
  }
}
.footer__container .details {
  display: flex;
  flex-direction: column;
  gap: max(3.125vw, 60px);
}
.footer__container .details .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: max(0.78125vw, 15px);
}
.footer__container .details .text .title {
  font-size: clamp(27px, 1.40625vw, 1.40625vw);
  color: hsl(35, 17%, 22%);
  font-weight: 600;
  line-height: 1.18em;
}
.footer__container .details .text .details-content {
  font-size: clamp(16px, 0.8333333333vw, 0.8333333333vw);
  color: hsl(35, 17%, 22%);
  font-weight: 400;
  line-height: 1.4em;
  text-align: start;
}
.footer__container .details .social-links {
  padding: 0;
  display: flex;
  align-items: center;
  gap: max(1.5625vw, 30px);
}
.footer__container .details .social-links .social-link {
  width: max(1.3020833333vw, 25px);
}
.footer__container .details .social-links .social-link img {
  object-fit: cover;
}
.footer__container .contact {
  display: flex;
  flex-direction: column;
  gap: max(0.78125vw, 15px);
}
.footer__container .contact .title {
  font-size: clamp(22px, 1.1458333333vw, 1.1458333333vw);
  color: hsl(35, 17%, 22%);
  font-weight: 600;
  line-height: 1.18em;
}
.footer__container .contact .contact-wrapper {
  display: flex;
  justify-content: center;
  gap: max(1.5625vw, 30px);
  width: 100%;
  overflow-wrap: anywhere;
  width: 95%;
  margin-top: 50px;
}
.footer__container .contact .contact-wrapper .footer-links {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: max(1.3020833333vw, 25px);
  white-space: nowrap;
  width: 50%;
}
@media only screen and (max-width: 575px) {
  .footer__container .contact .contact-wrapper .footer-links {
    flex-direction: column;
  }
}
.footer__container .contact .contact-wrapper .footer-links .footer-link {
  font-size: clamp(18px, 0.9375vw, 0.9375vw);
  color: hsl(35, 17%, 22%);
  font-weight: 600;
  line-height: 1em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__container .contact .contact-wrapper .contact-links {
  display: flex;
  flex-direction: column;
  gap: max(1.0416666667vw, 20px);
  width: 50%;
}
@media only screen and (max-width: 575px) {
  .footer__container .contact .contact-wrapper .contact-links {
    flex-direction: column;
  }
}
.footer__container .contact .contact-wrapper .contact-links .contact-link {
  display: flex;
  align-items: center;
  gap: max(0.78125vw, 15px);
}
.footer__container .contact .contact-wrapper .contact-links .contact-link img {
  width: 34px;
  height: 34px;
}
.footer__container .contact .contact-wrapper .contact-links .contact-link .contact-text {
  display: flex;
  flex-direction: column;
  font-size: clamp(14px, 0.7291666667vw, 0.7291666667vw);
  color: hsl(35, 17%, 22%);
  font-weight: 400;
  line-height: 1.4em;
}
.footer__container .form-section {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .footer__container .form-section {
    width: 48%;
  }
}
@media only screen and (max-width: 575px) {
  .footer__container .form-section {
    justify-content: center;
    width: 100%;
  }
}
.footer__container .form-section form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(0.5208333333vw, 10px);
}
.footer__container .form-section form input {
  border: 2px solid hsl(285, 70%, 90%);
  border-radius: 5px;
  padding: max(0.8333333333vw, 16px) max(1.0416666667vw, 20px);
  background-color: transparent;
}
.footer__container .form-section form button {
  padding: max(0.78125vw, 15px) max(1.8229166667vw, 35px);
  border: none;
  border-radius: 5px;
  background-color: #e359c9;
  color: rgb(255, 255, 255);
  font-size: clamp(20px, 1.0416666667vw, 1.0416666667vw);
  font-weight: 600;
}
.footer__container .footer-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(1.5625vw, 30px);
}
@media only screen and (max-width: 768px) {
  .footer__container .footer-images {
    width: 48%;
  }
}
@media only screen and (max-width: 575px) {
  .footer__container .footer-images {
    justify-content: center;
    width: 100%;
  }
}
.footer__container .footer-images .first-image-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.footer__container .footer-images .second-image-wrapper {
  width: 50%;
}
.footer__container .footer-images .first-image {
  width: max(8.2291666667vw, 158px);
  height: max(8.2291666667vw, 158px);
}
.footer__container .footer-images .second-image {
  width: max(8.2291666667vw, 158px);
  height: max(8.2291666667vw, 158px);
}
.footer .theguy-credit {
  padding-inline: 4.4270833333vw;
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.13rem);
  font-weight: 500;
  line-height: 1em;
  color: hsl(35, 17%, 22%);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer .theguy-credit a svg {
  width: 100px;
  stroke: hsl(35, 17%, 22%);
}
.footer .theguy-credit a:hover svg {
  stroke: #e359c9;
}
.footer .rights-reserved {
  height: max(3.6458333333vw, 70px);
  background-color: hsl(285, 70%, 90%);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.text {
  font-family: "Assistant";
  font-size: clamp(21px, 1.09375vw, 1.09375vw);
  line-height: 1.15em;
  letter-spacing: 0em;
}

/*# sourceMappingURL=theme.min.css.map */
