.speakusBanner {
  padding: 36px 0 39px;
  background: #4E65C2;
  color: #fff;
  overflow: hidden;
}
.speakusBanner__inner {
  position: relative;
  display: grid;
  z-index: 1;
}
@media (min-width: 1025px) {
  .speakusBanner__inner {
    grid-template-columns: 700px 1fr;
    gap: 36px;
    padding: 60px 0;
  }
}
@media (min-width: 700px) and (max-width: 1024px) {
  .speakusBanner__inner {
    grid-template-columns: 100%;
    gap: 32px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 700px) {
  .speakusBanner__inner {
    grid-template-columns: 100%;
    gap: 18px;
  }
}
.speakusBanner__h {
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .speakusBanner__h {
    margin-top: 10px;
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  .speakusBanner__h {
    font-size: 24px;
    line-height: 1.3;
  }
}
.speakusBanner__hLogo {
  position: relative;
  top: 5px;
  display: inline-block;
  margin-left: 5px;
  height: 24px;
}
@media screen and (max-width: 700px) {
  .speakusBanner__hLogo {
    height: 14px;
  }
}
.speakusBanner__subh {
  grid-column: 1;
  line-height: 1.5;
}
@media screen and (max-width: 700px) {
  .speakusBanner__subh {
    max-width: 80%;
    font-size: 12px;
  }
  .speakusBanner__subh br {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .speakusBanner__logo {
    position: absolute;
    right: 0px;
    top: 0;
    width: 192px;
  }
}
@media screen and (min-width: 1225px) {
  .speakusBanner__logo {
    right: -25px;
  }
}
@media (min-width: 700px) and (max-width: 1024px) {
  .speakusBanner__logo {
    position: absolute;
    right: 0;
    width: 240px;
    opacity: 0.05;
    z-index: -1;
  }
}
@media screen and (max-width: 700px) {
  .speakusBanner__logo {
    position: absolute;
    right: -50px;
    width: 240px;
    opacity: 0.05;
    z-index: -1;
  }
}
.speakusBanner__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.speakusBanner__offers {
  grid-column: 1/-1;
}
@media screen and (min-width: 1025px) {
  .speakusBanner__offers {
    margin-top: 4px;
  }
}
@media screen and (max-width: 700px) {
  .speakusBanner__offers {
    margin-top: 14px;
  }
}
.speakusBanner__offer {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .speakusBanner__offer {
    gap: 12px;
    font-size: 12px;
  }
}
.speakusBanner__button {
  --spcolor: transparent;
  grid-column: 1/-1;
  display: grid;
  place-items: center;
  border-radius: 25px;
  background-color: #fff;
  padding: 8px 12px;
  height: 47px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.4s background, 0.4s color;
}
.speakusBanner__button:hover {
  --spcolor: #fff;
  background-color: rgb(32, 186, 182);
}
@media screen and (min-width: 1222px) {
  .speakusBanner__button {
    margin: 3px -22px 0;
  }
}
@media screen and (min-width: 1025px) {
  .speakusBanner__button {
    margin-top: 3px;
  }
}
@media screen and (max-width: 700px) {
  .speakusBanner__button {
    margin-top: 16px;
  }
}
.speakusBanner__button span {
  background: linear-gradient(358.22deg, #4F8BFF -7.04%, #00CDEC 111.79%);
  -webkit-background-clip: text;
          background-clip: text;
  color: var(--spcolor);
  transition: 0.4s background, 0.4s color;
}
.speakusBanner__prefs {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .speakusBanner__prefs {
    margin: 13px 9px 0;
  }
}
@media screen and (min-width: 1225px) {
  .speakusBanner__prefs {
    grid-template-columns: repeat(auto-fill, 345px);
  }
}
@media screen and (max-width: 700px) {
  .speakusBanner__prefs {
    display: none;
  }
}
.speakusBanner__pref {
  position: relative;
  display: grid;
  gap: 4px;
  justify-items: center;
  grid-template-rows: 36px auto 1fr;
  border-radius: 12px;
  padding: 17px 12px 12px;
  background-color: var(--bgelem);
  font-size: 14px;
  line-height: 1.71;
  color: #000;
  text-align: center;
  z-index: 1;
  cursor: pointer;
}
.speakusBanner__pref::before, .speakusBanner__pref::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transition: 0.4s inset;
}
.speakusBanner__pref::before {
  background: linear-gradient(180deg, #4F8BFF 0%, #00CDEC 100%);
  inset: 0;
  z-index: -2;
}
.speakusBanner__pref::after {
  inset: 1px;
  background: inherit;
  z-index: -1;
}
.speakusBanner__pref:hover {
  --top: -4px;
}
.speakusBanner__pref:hover::before {
  inset: -16px;
}
.speakusBanner__pref:hover::after {
  inset: -14px;
}
.speakusBanner__prefIcon {
  position: relative;
  top: var(--top, 0);
  transition: 0.4s top;
}
.speakusBanner__prefName {
  position: relative;
  top: var(--top, 0);
  margin: 7px 0 -2px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.4s top;
}

@keyframes spin {
  0% {
    rotate: 0deg;
  }
  50% {
    rotate: 180deg;
  }
  100% {
    rotate: 360deg;
  }
}
.speakusHow {
  border-radius: 0 0 32px 32px;
  padding: 40px 0;
  background: var(--bgmain);
}
@media screen and (min-width: 1025px) {
  .speakusHow {
    border-radius: 0 0 80px 80px;
    padding: 40px 0 117px;
  }
}
@media screen and (max-width: 700px) {
  .speakusHow {
    padding: 16px 0 40px;
  }
}
.speakusHow__inner {
  display: grid;
  grid-template-columns: 100%;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .speakusHow__inner {
    gap: 40px;
  }
}
.speakusHow__h {
  margin: 0;
  line-height: 1.5;
}
@media screen and (min-width: 700px) {
  .speakusHow__h {
    text-align: center;
  }
}
.speakusHow__list {
  display: grid;
  justify-content: space-between;
  align-items: start;
}
@media screen and (min-width: 700px) {
  .speakusHow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .speakusHow__list {
    grid-template-columns: repeat(3, 357px);
  }
}
@media screen and (max-width: 700px) {
  .speakusHow__list {
    width: min(100%, 360px);
    gap: 24px;
  }
}
.speakusHow__item {
  --bb: calc(100% + 25px);
  --ab: calc(100% + 20px);
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(23, 24, 40);
}
@media screen and (min-width: 700px) {
  .speakusHow__item {
    gap: 86px;
  }
  .speakusHow__item:nth-child(3n+2) {
    margin-top: 36px;
  }
  .speakusHow__item:nth-child(3n+2) .speakusHow__itemImg {
    order: 1;
  }
  .speakusHow__item:nth-child(3n+2) .speakusHow__itemDescr::after {
    bottom: auto;
    top: var(--ab);
  }
  .speakusHow__item:nth-child(3n+2) .speakusHow__itemDescr::before {
    bottom: auto;
    top: var(--bb);
  }
}
.speakusHow__itemImg {
  aspect-ratio: 357/238;
  border-radius: 44px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .speakusHow__itemImg {
    border-radius: 45px;
  }
}
@media screen and (max-width: 700px) {
  .speakusHow__itemImg {
    height: 148px;
    aspect-ratio: initial;
  }
}
.speakusHow__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.speakusHow__itemDescr {
  position: relative;
}
@media screen and (max-width: 699px) {
  .speakusHow__itemDescr {
    font-size: 12px;
    line-height: 1.7;
  }
  .speakusHow__itemDescr br {
    display: none;
  }
}
@media screen and (min-width: 700px) {
  .speakusHow__itemDescr::before, .speakusHow__itemDescr::after {
    content: "";
    position: absolute;
    left: 50%;
    translate: -50% 0;
  }
  .speakusHow__itemDescr::before {
    width: 2px;
    height: 35px;
    background-color: #000;
    bottom: calc(100% + 25px);
  }
  .speakusHow__itemDescr::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(32, 32, 32);
    bottom: calc(100% + 20px);
  }
}

.speakusFos {
  position: relative;
  padding: 28px 0 36px;
  background: rgb(78, 101, 194);
  color: rgb(208, 240, 255);
}
@media screen and (min-width: 1025px) {
  .speakusFos {
    padding: 75px 0 82px;
  }
}
.speakusFos::before {
  content: "";
  position: absolute;
  inset: -100px 0 0;
  background: inherit;
  z-index: -5;
}
.speakusFos__inner {
  position: relative;
  display: grid;
  gap: 24px;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .speakusFos__inner {
    grid-template-columns: 400px 1fr;
    gap: 40px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__inner {
    padding: 0 12px;
    gap: 20px;
  }
}
.speakusFos__bg {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .speakusFos__bg {
    bottom: -300px;
    width: 540px;
  }
}
.speakusFos__bg img {
  opacity: 0.025;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.speakusFos__left {
  align-self: start;
  display: grid;
  grid-template-columns: 100%;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .speakusFos__left {
    gap: 49px;
    margin-top: 73px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusFos__left {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__left {
    grid-template-columns: 100%;
    gap: 29px;
  }
}
.speakusFos__h {
  letter-spacing: -0.005em;
}
@media screen and (min-width: 1025px) {
  .speakusFos__h {
    font-size: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .speakusFos__h {
    font-size: 24px;
    padding-right: 30px;
  }
}
.speakusFos__promo {
  position: relative;
  font-weight: 700;
  letter-spacing: -0.005em;
}
@media screen and (min-width: 1025px) {
  .speakusFos__promo {
    justify-self: end;
    margin-right: 10px;
    font-size: 48px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusFos__promo {
    justify-self: end;
    align-self: end;
    margin-right: 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__promo {
    justify-self: end;
    align-self: end;
    margin-right: 20px;
    font-size: 32px;
  }
}
.speakusFos__promo span {
  display: block;
  animation: 0.8s pulseA infinite;
}
.speakusFos__promoArrow {
  position: absolute;
  top: 56%;
  translate: 0 -50%;
}
@media screen and (min-width: 1025px) {
  .speakusFos__promoArrow {
    right: calc(100% + 56px);
    width: 75px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusFos__promoArrow {
    right: calc(100% + 30px);
    width: 75px;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__promoArrow {
    right: 10px;
    top: auto;
    bottom: calc(100% + 10px);
    width: 75px;
    transform-origin: 100% 50%;
    rotate: 90deg;
  }
}
.speakusFos__form {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
  background-color: var(--bgelem);
  border-radius: 45px;
  color: var(--blacktext);
}
@media screen and (min-width: 1025px) {
  .speakusFos__form {
    margin-right: -12px;
    border-radius: 60px;
    padding: 45px 45px 47px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusFos__form {
    justify-self: center;
    padding: 32px 32px;
    width: 600px;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__form {
    padding: 22px 19px;
  }
}
.speakusFos__formTitle {
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .speakusFos__formTitle {
    padding: 22px 10px 32px 22px;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__formTitle {
    justify-self: center;
    margin-bottom: 8px;
    width: min(258px, 100%);
    font-size: 12px;
    line-height: 1.166;
  }
}
@media screen and (min-width: 1025px) {
  .speakusFos__formBox--footnote {
    padding-left: 22px;
  }
}
.speakusFos__form input:is([type=text], [type=tel], [type=mail]) {
  margin: 0;
  border: 0;
  border-radius: 30px;
  padding-left: 15px;
  height: 40px;
  background: #fff;
  color: inherit;
}
.speakusFos__form input:is([type=text], [type=tel], [type=mail]):required:valid {
  color: inherit;
}
@media screen and (min-width: 1025px) {
  .speakusFos__form input:is([type=text], [type=tel], [type=mail]) {
    border-radius: 60px;
    padding-left: 35px;
    height: 82px;
  }
}
.speakusFos__form input:is([type=text], [type=tel], [type=mail])::-moz-placeholder {
  color: rgb(179, 179, 179);
}
.speakusFos__form input:is([type=text], [type=tel], [type=mail])::placeholder {
  color: rgb(179, 179, 179);
}
.speakusFos__form .agreement {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  font-size: 11px;
  line-height: 1.45;
}
@media screen and (min-width: 1025px) {
  .speakusFos__form .agreement {
    margin: 5px 0 0 22px;
  }
}
.speakusFos__form .agreement::before {
  align-self: start;
  content: "";
  grid-area: 1/1/2/2;
  border: 1px solid rgb(39, 39, 39);
  border-radius: 6px;
  width: 18px;
  height: 18px;
}
.speakusFos__form .agreement::after {
  content: "";
  align-self: start;
  justify-self: center;
  grid-area: 1/1/2/2;
  margin-top: 2px;
  border: 0;
  background-color: rgb(32, 186, 182);
  border-radius: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  scale: 0;
  transition: 0.4s opacity, 0.4s scale;
}
.speakusFos__form .agreement:has(input:checked)::after {
  opacity: 1;
  scale: 1;
}
.speakusFos__form .agreement input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.speakusFos__button {
  width: 100%;
  display: grid;
  place-items: center;
  border-radius: 12px;
  padding: 4px 12px;
  height: 40px;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: inherit;
  transition: 0.4s background, 0.4s color;
}
.speakusFos__button:hover {
  background-color: rgb(32, 186, 182);
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .speakusFos__button {
    height: 84px;
    font-size: 24px;
  }
}
@media screen and (max-width: 699px) {
  .speakusFos__button {
    height: 32px;
    font-size: 13px;
  }
}

.speakusPref {
  position: relative;
  border-radius: 0 0 32px 32px;
  background-color: var(--bgmain);
  z-index: 1;
  padding: 32px 0;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .speakusPref {
    border-radius: 0 0 80px 80px;
    padding: 68px 0 91px;
  }
}
@media screen and (max-width: 699px) {
  .speakusPref {
    border-radius: 0;
  }
}
.speakusPref__inner {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .speakusPref__inner {
    gap: 53px;
  }
}
.speakusPref__h {
  margin: 0;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 699px) {
  .speakusPref__h {
    display: none;
  }
}
.speakusPref__button {
  justify-self: center;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background-color: rgb(32, 186, 182);
  background-image: linear-gradient(90deg, #4F8BFF 0%, #00CDEC 100%);
  height: 49px;
  width: min(100%, 360px);
  padding: 6px 12px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
.speakusPref__button:hover {
  background-size: 1000% 100%;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .speakusPref__button {
    margin-top: 20px;
    height: 53px;
    width: 441px;
    font-size: 20px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusPref__button {
    margin-top: 10px;
  }
}
@media screen and (max-width: 699px) {
  .speakusPref__button {
    font-size: 15px;
  }
}
.speakusPref__button::before, .speakusPref__button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transition: 0.4s inset;
  pointer-events: none;
}
.speakusPref__button::before {
  background: linear-gradient(180deg, #4F8BFF 0%, #00CDEC 100%);
  inset: 0;
  z-index: -2;
}
.speakusPref__button::after {
  inset: 1px;
  background: inherit;
  z-index: -1;
}
.speakusPref__button span::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' fill='none' viewBox='0 0 23 21'%3e%3cpath fill='%23fff' d='M11.5 0C5.2 0 0 4.7 0 10.5v4.4q.2 1.7 2.3 1.9h1.2q.4 0 .8-.3.3-.4.3-.7v-5.5l-.3-.7q-.4-.3-.8-.3h-1c.5-4 4.4-7.2 9-7.2s8.5 3.1 9 7.2h-1q-.4 0-.8.3l-.3.7v6.5q-.2 2-2.3 2.1h-2.3v-1H9.2V21h6.9c2.5 0 4.6-1.9 4.6-4.2q2.1-.2 2.3-2v-4.3C23 4.7 17.8 0 11.5 0'/%3e%3c/svg%3e");
}
@media screen and (max-width: 699px) {
  .speakusPref__button span::before {
    right: 12px;
    width: 23px;
    height: 21px;
  }
}
.speakusPref__list {
  display: grid;
  justify-self: center;
}
@media screen and (min-width: 700px) {
  .speakusPref__list {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: var(--prefH, 1fr);
    gap: 59px 58px;
    width: min(100%, 1120px);
  }
  .speakusPref__list [class*=splide] {
    display: contents !important;
  }
}
@media screen and (max-width: 699px) {
  .speakusPref__list .splide__track {
    margin: -10px;
    padding: 10px !important;
  }
}
.speakusPref__item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  background-color: var(--bgelem);
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  line-height: 1.5;
  z-index: 1;
  padding: 16px;
  transition: 0.4s transform, 0.4s box-shadow;
}
@media screen and (min-width: 700px) {
  .speakusPref__item {
    padding: 30px 24px 31px;
  }
}
@media screen and (max-width: 699px) {
  .speakusPref__item {
    gap: 12px;
    padding: 18px 21px;
    height: 100%;
  }
}
.speakusPref__item::before, .speakusPref__item::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transition: 0.4s inset;
  pointer-events: none;
}
.speakusPref__item::before {
  background: linear-gradient(180deg, #4F8BFF 0%, #00CDEC 100%);
  inset: 0;
  z-index: -2;
}
.speakusPref__item::after {
  inset: 2px;
  background: inherit;
  z-index: -1;
}
@media screen and (pointer: fine) and (min-width: 700px) {
  .speakusPref__item {
    --fzn: 24px;
    --fzd: 16px;
    --mtn: 0;
    --mrd: 0;
  }
  .speakusPref__item:hover {
    --fzn: 32px;
    --fzd: 19px;
    --mtn: -20px;
    --mrd: -25px;
  }
  .speakusPref__item:hover > * {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
  }
  .speakusPref__item:hover::before {
    inset: -20px;
  }
  .speakusPref__item:hover::after {
    inset: -16px;
  }
}
.speakusPref__itemName {
  font-weight: 700;
  transition: 0.4s font, 0.4s margin;
  transform-origin: 0 0;
}
@media screen and (min-width: 700px) {
  .speakusPref__itemName {
    margin-top: var(--mtn, 0);
    font-size: var(--fzn, 24px);
  }
}
@media screen and (max-width: 699px) {
  .speakusPref__itemName {
    font-size: 22px;
  }
}
.speakusPref__itemDescr {
  margin-right: var(--mrd, 0);
  transform-origin: 0 50%;
  transition: 0.4s font, 0.4s margin;
  font-size: var(--fzd, 16px);
}
@media screen and (max-width: 699px) {
  .speakusPref__itemDescr {
    font-size: 14px;
    line-height: 1.7;
  }
}

.speakusSite {
  position: relative;
  padding: 40px 0;
  background: rgb(78, 101, 194);
  color: rgb(208, 240, 255);
}
@media screen and (min-width: 1025px) {
  .speakusSite {
    padding: 45px 0 55px;
  }
}
@media screen and (max-width: 699px) {
  .speakusSite {
    border-radius: 60px 60px 0 0;
    padding: 40px 0 20px;
    overflow: hidden;
  }
}
.speakusSite::before {
  content: "";
  position: absolute;
  inset: -100px 0 0;
  background: inherit;
  z-index: -5;
}
@media screen and (max-width: 699px) {
  .speakusSite::before {
    inset: 0;
  }
}
.speakusSite__inner {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .speakusSite__inner {
    grid-template-columns: max-content max-content;
    justify-content: space-between;
    padding-left: 33px;
  }
}
@media screen and (max-width: 699px) {
  .speakusSite__inner {
    padding: 0 10px;
  }
}
.speakusSite__h {
  margin: 0;
  line-height: 1.2;
  font-size: 24px;
}
@media screen and (min-width: 1025px) {
  .speakusSite__h {
    font-size: 32px;
  }
}
@media screen and (min-width: 1225px) {
  .speakusSite__h {
    font-size: 48px;
  }
}
.speakusSite__link {
  position: relative;
  align-self: end;
}
@media screen and (max-width: 1024px) {
  .speakusSite__link {
    justify-self: end;
  }
}
.speakusSite__arrow {
  position: absolute;
  bottom: 30%;
  translate: 0 50%;
}
@media screen and (min-width: 1025px) {
  .speakusSite__arrow {
    right: calc(100% + 128px);
    width: 75px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusSite__arrow {
    right: 20px;
    bottom: calc(100% + 10px);
    transform-origin: 100% 50%;
    rotate: 90deg;
    width: 54px;
  }
}
@media screen and (max-width: 699px) {
  .speakusSite__arrow {
    right: 20px;
    bottom: calc(100% + 10px);
    transform-origin: 100% 50%;
    rotate: 90deg;
    width: 54px;
  }
}
.speakusSite__a {
  display: grid;
  font-weight: 700;
  color: inherit;
}
@media screen and (max-width: 699px) {
  .speakusSite__a {
    font-weight: 600;
  }
}
.speakusSite__a:hover {
  --state: paused;
  color: inherit;
}
.speakusSite__a:has(svg) {
  grid-template-columns: var(--svgw) 1fr;
}
@media screen and (min-width: 1025px) {
  .speakusSite__a {
    --svgw: 32px;
    gap: 20px;
    margin-right: 20px;
    font-size: 40px;
  }
}
@media screen and (min-width: 1225px) {
  .speakusSite__a {
    --svgw: 60px;
    gap: 43px;
    margin-right: 0;
    font-size: 57px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .speakusSite__a {
    --svgw: 32px;
    gap: 16px;
    margin-right: 0;
    font-size: 24px;
  }
}
@media screen and (max-width: 699px) {
  .speakusSite__a {
    --svgw: 24px;
    gap: 12px;
    margin-right: 0;
    font-size: 20px;
  }
}
.speakusSite__a span {
  animation: 0.8s pulseA infinite;
  animation-play-state: var(--state);
}
@media screen and (max-width: 699px) {
  .speakusSite__a span {
    margin-top: -5px;
  }
}

@keyframes pulseA {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.122);
  }
  80% {
    transform: scale(1);
  }
}
.sbmContainer--speakus {
  max-width: 1222px;
}
@media screen and (max-width: 400px) {
  .sbmContainer--speakus {
    padding: 0 7px;
  }
}

:root {
  --bgelem: rgba(208, 240, 255, 1);
  --blacktext: rgba(23, 24, 40, 1);
  --bgmain: rgba(246, 246, 246, 1);
}

main {
  background: var(--bgmain);
}

.wow {
  visibility: hidden;
  opacity: 0;
  animation-fill-mode: forwards;
}

.splide__arrow--prev {
  left: -0.4em;
}
.splide__arrow--next {
  right: -0.4em;
}
.splide__arrow path {
  fill: #fff;
}