/*
Theme Name: Better together
Author: Meduzzen
Description: A blank WordPress theme
Version: 2.2
*/

/* standartization */

:root {
  --font-family: "Asap", sans-serif;

  --petal-pink: #fef5f4;
  --primary-white: #ffffff;
  --primary-black: #282828;
  --dark-blue: #1d3e70;
  --native-orange: #ff492c;
  --primary-blue: #192232;
  --indigo: #062846;
  --navy-indigo: #1c3c70;
  --primary-orange: #ff5c35;
  --sky-blue: #07a5f0;
  --light-orange: #fef5f4;
  --light-gray: #f5f5f5;
  --primary-gray: #5a5a5a;
}

html,
body {
  overflow: hidden auto;
}

/* container */

.container {
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (min-width: 2001px) {
  .container {
    max-width: 1920px;
  }
}

@media screen and (min-width: 1601px) and (max-width: 2000px) {
  .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 800px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#primary section {
  margin-left: 40px;
  margin-right: 40px;
  border-radius: 16px;
}

@media screen and (max-width: 1300px) {
  #primary section {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* body */

body {
  font-family: var(--font-family);
}

/* h1 */

h1,
.h1 {
  font-weight: 700;
  line-height: 96%;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media screen and (min-width: 801px) {
  h1,
  .h1 {
    font-size: 102px;
  }
}

@media screen and (max-width: 800px) {
  h1,
  .h1 {
    font-size: 65px;
  }
}

.standard__cover {
  border-radius: 16px;
}

@media screen and (min-width: 801px) {
  .standard__cover {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .standard__cover {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

@media screen and (max-width: 800px) {
  .standard__cover {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (min-width: 801px) {
  .standard__section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .standard__section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

@media screen and (max-width: 800px) {
  .standard__section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.btn {
  position: relative;
  z-index: 0;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  border-radius: 100px;
  background: linear-gradient(335.64deg, #ff492c 33.04%, #ff880f 74.86%);
  padding: 13px 42px;
  cursor: pointer;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: fit-content;
  box-sizing: border-box;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 100px;
  background: linear-gradient(335.64deg, #ff492c 33.04%, #ff880f 74.86%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}

.btn:active {
  background: #ff492c;
  color: #ffffff;
}

@media screen and (min-width: 1201px) {
	.btn:hover {
  background: transparent;
  color: #ff880f;
}
}

@media screen and (max-width: 550px) {
  .btn {
    padding: 18px 20px;
  }
}

/* hero banner */

.hero-banner {
  margin-top: 19px;
  padding-top: 32px;
  padding-bottom: 32px;
  box-sizing: border-box;
  display: block;
  margin-left: 40px;
  margin-right: 40px;
  border-radius: 16px;
}

.hero-banner__title.banner-title h2 {
  display: contents;
}

.hero-banner__title.banner-title svg {
  margin-bottom: 3px;
}

.hero-banner__title-mobile.banner-title h2 {
  display: contents;
}

.g-icon {
  max-height: 33px;
	width:auto;
}

.infuse-icon {
  max-height: 27px;
	width:auto;
}

.hero-banner__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-banner__info {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.hero-banner__icon-group {
  display: flex;
  gap: 14px;
  align-items: center;
  align-self: baseline;
}

.hero-banner__sub-title {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 17px;
  line-height: 110%;
  letter-spacing: 0;
  background: var(--primary-white);
  position: relative;
  padding: 9px 9px 10px 10px;
  margin-right: 30px;
  border-radius: 7px 0 0 7px;
  max-width: fit-content;
}

.hero-banner__sub-title::after {
  content: "";
  background: center / contain no-repeat
    url(/wp-content/uploads/2025/07/banner-pseudo1.svg);
  width: 30px;
  height: 100%;
  position: absolute;
  right: -29px;
  top: 0;
}

.hero-banner__sub-title strong {
  color: var(--native-orange);
}

.banner-title {
  font-weight: 400;
  font-size: 40px;
  line-height: 115%;
  letter-spacing: 0.01em;
  color: var(--primary-white);
}

.hero-banner__icon-group svg {
  min-width: 13px;
}

.banner-title strong {
  font-weight: 500;
}

.hero-banner__title-mobile {
  display: none;
}

.hero-banner__sub-title br {
  display: none;
}

@media screen and (max-width: 1300px) {
  .hero-banner__icon {
    display: none;
  }

  .hero-banner__title {
    display: none;
  }

  .hero-banner__title-mobile {
    display: block;
  }

  .hero-banner__info {
    gap: 25px;
  }

  .hero-banner__sub-title {
    margin-top: -14px;
  }
}

@media screen and (max-width: 800px) {
  .hero-banner {
    margin-right: 30px !important;
    margin-left: 30px !important;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .banner-title {
    font-size: 24px;
    font-weight: 500;
  }

  .banner-title strong {
    font-weight: 700;
  }

  .hero-banner__icon-group {
    gap: 10px;
  }

  .infuse-icon {
    max-height: 22px;
  }

  .g-icon {
    max-height: 22px;
  }

  .hero-banner__sub-title br {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .banner-title {
    max-width: 300px;
  }

  .banner-title br {
    display: none;
  }

  .hero-banner__sub-title {
    font-size: 13px;
  }
}

@media screen and (min-width: 1301px) and (max-width: 1393px) {
  .hero-banner__sub-title::after {
    right: -38px;
    width: 40px;
  }
}

@media screen and (max-width: 800px) {
  .hero-banner__sub-title::after {
    right: -35px;
    width: 40px;
  }
}

/* our source */

.our-source__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--indigo);
}

.our-source__subtitle {
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy-indigo);
  margin-top: 3px;
  margin-bottom: 4px;
}

.our-source__icon-block {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.our-source__icon-block h2 {
  color: var(--native-orange);
}

.our-source__icon-block img {
  max-height: 40px;
  max-width: fit-content;
}

.our-source__card img {
  max-height: 60px;
}

.our-source__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 37px;
}

.our-source__card {
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
  border-right: 2px solid var(--primary-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.our-source__card h4 {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--navy-indigo);
  margin-top: 32px;
  margin-bottom: 19px;
}

.our-source__card p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  color: var(--primary-black);
}

.our-source__card:last-child {
  border: none;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .our-source__card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 1200px) {
  .our-source__list {
    margin-top: unset;
  }

  .our-source__card {
    border-bottom: 2px solid var(--primary-orange);
    border-right: unset;
    padding: 40px;
  }

  .our-source__card:last-child {
    border-bottom: 2px solid var(--primary-orange);
  }
}

@media (max-width: 768px) {
  .our-source__list {
    gap: 0;
  }

  .our-source__title {
    font-size: 24px;
  }

  .our-source__subtitle {
    font-size: 46px;
    margin-top: 4px;
    margin-bottom: 1px;
  }

  .our-source__card {
    flex: 1 1 100%;
  }

  .our-source__card:last-child {
    border-bottom: unset;
    padding-bottom: unset;
  }

  .our-source__card h4 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .our-source__card p {
    font-size: 18px;
  }
}

/* seamlessly */

.seamlessly {
  background: linear-gradient(275.99deg, #0860a8 -9.81%, #062846 68.86%);
}

.seamlessly__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: var(--primary-white);
  text-transform: uppercase;
}

.seamlessly__title strong {
  color: var(--sky-blue);
  font-weight: 700;
}

.seamlessly__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  justify-content: space-around;
}

.measure__list .measure__card:first-child p {
  max-width: 266px;
}

.measure__list .measure__card:nth-child(2) p {
  max-width: 325px;
}

.seamlessly__list .seamlessly__card:nth-child(3) p {
  max-width: 235px;
}

.seamlessly__list .seamlessly__card:first-child p {
  max-width: 266px;
}

.seamlessly__list .seamlessly__card:nth-child(2) p {
  max-width: 287px;
}

.seamlessly__list .seamlessly__card:nth-child(3) p {
  max-width: 314px;
}

.seamlessly__card h4 {
  font-weight: 800;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: var(--primary-white);
}

.seamlessly__card p {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--primary-white);
  max-width: 314px;
}

.seamlessly__card {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  border-left: 2px solid var(--sky-blue);
  padding-left: 31px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 348px;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .seamlessly__title {
    font-size: 45px;
  }

  .seamlessly__card {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 1200px) {
  .seamlessly__card {
    border-left: unset;
    border-bottom: 2px solid var(--sky-blue);
    padding-bottom: 40px;
    padding-top: 40px;
    max-width: unset;
  }

  .seamlessly__list {
    gap: 20px;
    justify-content: unset;
    margin-top: unset;
  }
}

@media (max-width: 768px) {
  .seamlessly__card p {
    max-width: unset;
    padding-left: 30px;
    padding-right: 30px;
  }

  .seamlessly__list .seamlessly__card:last-child p {
    padding-left: 15px;
    padding-right: 15px;
  }

  .seamlessly__card h4 br {
    display: none;
  }
  .seamlessly__top {
    display: flex;
    justify-content: center;
  }

  .seamlessly__title {
    max-width: 427px;
  }

  .seamlessly__card {
    flex: 1 1 100%;
    text-align: center;
    align-items: center;
    padding-left: unset;
    gap: 18px;
  }

  .seamlessly__card:last-child {
    border-bottom: unset;
    padding-bottom: unset;
  }

  .seamlessly__title {
    font-size: 40px;
  }

  .seamlessly__card h4 {
    font-size: 24px;
  }
}

/* demand fueled */

.top-logo__item {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.top-logo__item img {
  position: relative;
  z-index: 2;
}

.top-logo__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-65%);
  width: 152px;
  height: 152px;
  background-image: url("/wp-content/uploads/2025/07/orange_blur.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.bottom-logo__item {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.bottom-logo__item img {
  position: relative;
  z-index: 2;
}

.bottom-logo__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-65%);
  width: 152px;
  height: 152px;
  background-image: url("/wp-content/uploads/2025/07/blue_blur.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.demand-fueled {
  padding-top: 80px;
}

.demand-fueled__top-logo {
  display: none;
}

.demand-fueled__bottom-logo {
  display: none;
}

.demand-fueled__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 2;
}

.demand-fueled__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #395580;
}

.demand-fueled__title strong {
  color: var(--native-orange);
}

.demand-fueled__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.demand-fueled__border-gradient {
  padding: 2px;
  background: linear-gradient(90deg, #ff492c 50%, #2194d2 50%);
  border-radius: 16px;
  display: inline-block;
  width: 90%;
}

.demand-fueled__content {
  position: relative;
  background-color: white;
  border-radius: 14px;
  display: flex;
  justify-content: space-around;
  padding: 48px 20px 47px;
}

.demand-fueled__left-list ul,
.demand-fueled__right-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.demand-fueled__left-list li,
.demand-fueled__right-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: var(--primary-black);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
}

.demand-fueled__left-list > ul > li::before,
.demand-fueled__right-list > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 22px;
  height: 13px;
}

.demand-fueled__left-list > ul > li::before {
  background-image: url("/wp-content/uploads/2025/07/bullet_orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.demand-fueled__content > div {
  z-index: 2;
}

.demand-fueled__right-list > ul > li::before {
  background-image: url("/wp-content/uploads/2025/07/bullet_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.sub-list {
  list-style-type: disc !important;
  margin-top: 16px !important;
  margin-left: -10px !important;
}

.sub-list li {
  list-style: none;
  position: relative;
}

.sub-list li::before {
  width: 2.5px;
  height: 2.5px;
  content: "";
  position: absolute;
  border-radius: 100px;
  background: #5f5f5f;
  left: -13.5px;
  top: 12px;
}

.sub-list li {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #5f5f5f;
  margin-bottom: 4px;
  padding-left: 0 !important;
  margin-left: 20px;
}

.sub-list li:last-child {
  margin-bottom: unset;
}

.demand-fueled__content::after {
  content: "";
  position: absolute;
  left: 23px;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: url("/wp-content/uploads/2025/07/G2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.demand-fueled__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/07/stripes.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  pointer-events: none;
  z-index: 1;
}

.demand-fueled__icon-mobile {
  display: none;
}

@media screen and (max-width: 1500px) {
  .demand-fueled__border-gradient {
    width: 100%;
  }
}

@media screen and (max-width: 1400px) {
  .demand-fueled__content::before {
    display: none;
  }

  .demand-fueled__content::after {
    display: none;
  }

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

@media screen and (max-width: 975px) {
  .demand-fueled__list-cover {
    display: flex;
    width: 100%;
  }

  .demand-fueled__title {
    font-size: 40px;
  }

  .demand-fueled__wrapper {
    margin-top: 24px;
  }

  .demand-fueled__top-logo {
    display: block;
  }

  .demand-fueled__border-gradient {
    background: linear-gradient(180deg, #ff492c 37.5%, #2194d2 62.5%);
    max-width: fit-content;
  }

  .demand-fueled__icon-desktop {
    display: none;
  }

  .demand-fueled__icon-mobile {
    display: block;
  }

  .demand-fueled__bottom-logo {
    display: block;
  }

  .demand-fueled__content {
    flex-direction: column;
    align-items: center;
    padding: 40px 26px;
    gap: 40px;
  }

  .demand-fueled__icon {
    position: static;
    transform: unset;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .demand-fueled {
    padding-top: 65px;
  }
}

@media screen and (max-width: 768px) {
  .demand-fueled__right-list li:last-child {
    margin-bottom: unset;
  }

  .demand-fueled {
    padding-top: 50px;
  }
}

@media screen and (max-width: 470px) {
  .demand-fueled__right-list br {
    display: none;
  }
}

/* trusted */

.trusted__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: -0.01em;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy-indigo);
}

.trusted__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 59px;
}

.trusted__card {
  flex: 0 1 calc((100% / 6) - 20px);
  box-sizing: border-box;
  text-align: center;
  background-color: var(--light-gray);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.trusted__card img {
  max-width: fit-content;
}

#primary section.trusted {
  margin-left: unset !important;
  margin-right: unset !important;
}

@media screen and (min-width: 769px) and (max-width: 1500px) {
  .trusted__card {
    flex: 0 1 calc((100% / 3) - 20px);
  }
}

@media (max-width: 768px) {
  .trusted__list .trusted__card:nth-child(4) img {
    max-width: 79px;
  }

  .trusted__card {
    min-height: 80px;
    flex: 0 1 calc(50% - 10px);
  }

  .trusted__card img {
    max-width: 126px;
    max-height: 56px;
  }

  .trusted__list {
    gap: 10px;
    margin-top: 30px;
  }
}

/* hero */

.hero__form-title {
  max-width: 323px;
  font-weight: 800;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #1d3e70;
  margin-bottom: 15px;
}

.hero__desktop-pseudo-1 {
  position: absolute;
  top: -58px;
  left: -157px;
}

.hero__form-wrap {
  position: relative;
}

.hero__desktop-pseudo-2 {
  position: absolute;
  bottom: 56px;
  right: -79px;
}

.hero {
  overflow: hidden;
  margin-top: 40px;
  background: var(--petal-pink);
  box-sizing: border-box;
  padding-top: 37px;
  padding-bottom: 37px;
  position: relative;
  z-index: 0;
  border-radius: 16px;
}

.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.logo-group {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
}

.logo-group img{
	width:auto;
}

.logo-group svg {
  min-width: 23px;
  transform: translateY(8px);
}

.logo-first {
  max-height: 55px;
}

.logo-second {
  max-height: 48px;
  margin-top: auto;
  margin-left: 5px;
}

.hero__form {
  background: var(--primary-white);
  border-radius: 24px;
  position: relative;
  z-index: 2;
  padding: 46px 40px 50px;
  box-sizing: border-box;
  box-shadow: 0 0px 2px 0 rgba(255, 73, 44, 0.02),
    0 1px 5px 0 rgba(255, 73, 44, 0.03), 0 2px 10px 0 rgba(255, 73, 44, 0.04),
    0 3px 18px 0 rgba(255, 73, 44, 0.04), 0 5px 33px 0 rgba(255, 73, 44, 0.05),
    0 12px 80px 0 rgba(255, 73, 44, 0.07);
  min-height: 553px;
  width: 434px;
}

.hero__title {
  margin-top: 50px;
  margin-bottom: 22px;
  color: var(--dark-blue);
}

.hero__subtitle {
  color: var(--dark-blue);
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  max-width: 549px;
}

@media screen and (min-width: 1301px) {
  .hero__mobile-pseudo {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .hero__mobile-pseudo-1 {
    left: -47px;
    top: -22px;
    position: absolute;
  }

  .hero__mobile-pseudo-2 {
    right: -101px;
    top: 153px;
    position: absolute;
  }

  .hero__desktop-pseudo {
    display: none;
  }

  .hero {
    margin: 10px;
    position: relative;
    z-index: 0;
    padding-top: 33px;
  }

  .hero__wrapper {
    flex-direction: column;
  }

  .hero__subtitle {
    margin-bottom: 37px;
  }

  .hero__form {
    width: 100%;
  }

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

  .logo-first {
    max-height: 39px;
  }

  .logo-second {
    max-height: 34px;
  }

  .logo-group svg {
    min-width: 17px;
    transform: translateY(6px);
  }

  .hero__title {
    margin-top: 23px;
    margin-bottom: 17px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1300px) {
}

@media screen and (max-width: 800px) {
  .hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--petal-pink);
    height: calc(100% - 107px);
    border-radius: 24px;
  }

  .hero__content {
    position: relative;
    z-index: 2;
  }

  .hero__form {
    box-shadow: 0 0px 1px 0 rgba(255, 73, 44, 0.02),
      0 1px 3px 0 rgba(255, 73, 44, 0.03), 0 1px 5px 0 rgba(255, 73, 44, 0.04),
      0 2px 10px 0 rgba(255, 73, 44, 0.04), 0 5px 20px 0 rgba(255, 73, 44, 0.05),
      0 12px 80px 0 rgba(255, 73, 44, 0.07);
  }

  .hero {
    padding-bottom: unset;
    background: unset;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .logo-group {
    gap: unset;
  }

  .logo-first {
    margin-right: 8px;
  }

  .logo-second {
    margin-left: 11px;
  }

  .hero__subtitle {
    font-size: 20px;
  }
}
