/*!*********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style.scss ***!
  \*********************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style.scss (1) ***!
  \*************************************************************************************************************/
html {
  scroll-behavior: smooth;
}

body {
  background-color: #01020e;
  color: #fff;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  margin: 0;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.container {
  margin: auto;
  width: 1500px;
  padding: 0 15px;
  max-width: 100%;
  position: relative;
}
@media (max-width: 1600px) {
  .container {
    width: 1200px;
  }
}
@media (max-width: 1250px) {
  .container {
    width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    width: 736px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 600px;
  }
}
@media (max-width: 630px) {
  .container {
    width: 450px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
}

.header {
  background-image: linear-gradient(180deg, #01020e, #01020e 60%, rgba(1, 2, 14, 0));
  left: 50%;
  padding: 40px 0;
  position: fixed;
  top: 0;
  transform: translate(-50%);
  transition: 1s;
  width: 100vw;
  z-index: 100;
}
@media (max-width: 480px) {
  .header {
    padding: 20px 0;
  }
}
.header__logo {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #bb2865;
  font-size: 28px;
  letter-spacing: 1.5px;
  font-weight: bold;
}
.header__logo img {
  height: 40px;
}
.header__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header__menu {
    display: none;
  }
}
.header__connect__btns {
  display: flex;
  gap: 19px;
}
@media (max-width: 630px) {
  .header__connect__btns {
    flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 400px) {
  .header__connect__btns {
    max-width: 40%;
  }
}
@media (max-width: 360px) {
  .header__connect__btns {
    max-width: 30%;
  }
}
.header__btn {
  background-color: #bb2765;
  border: 2px solid #bb2765;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__btn {
    padding: 10px 12px;
  }
}
@media (max-width: 400px) {
  .header__btn {
    padding: 3px 5px;
  }
}
.header__btn:hover {
  background-color: #27a0bb;
  border: 2px solid #27a0bb;
}
.header__staking {
  background-color: rgba(1, 2, 14, 0.4);
  border: 2px solid #bb2765;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__staking {
    padding: 10px 12px;
  }
}
@media (max-width: 400px) {
  .header__staking {
    padding: 3px 5px;
  }
}
.header__staking:hover {
  background-color: #27a0bb;
  border: 2px solid #27a0bb;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav ul a {
  cursor: pointer;
  font-size: 16px;
  opacity: 0.5;
  padding: 0 20px;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.2s;
  color: #fff;
}
.header__nav ul a:hover {
  color: #27a0bb;
}

.hero {
  background: url(be9ba6594387b78c6ab0.png) no-repeat center center/cover;
}
.hero__box {
  background: url(8f3448a2bfc3f9d035e3.png) no-repeat center center/100%;
  animation: gbg 10s linear infinite;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  justify-content: center;
  min-height: 810px;
  align-items: center;
  align-content: center;
}
.hero__title {
  font-size: 60px;
  line-height: 140%;
  padding-bottom: 100px;
  width: 100%;
  text-align: center;
}
.hero__title span {
  color: #bb2765;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 28px;
  }
}
.hero__subtitle {
  color: #fff;
  font-size: 24px;
  line-height: 130%;
  max-width: 515px;
  padding-bottom: 20px;
  text-align: center;
  margin: auto;
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 22px;
  }
}
.hero__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 50px;
  width: 100%;
}
@media (max-width: 480px) {
  .hero__btns {
    flex-direction: column;
    align-items: center;
  }
}
.hero__btn {
  background-color: #bb2765;
  border: 2px solid #bb2765;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}
.hero__btn:hover {
  background-color: #27a0bb;
  border: 2px solid #27a0bb;
}
.hero__btn--fill {
  background: none;
}

@keyframes gbg {
  0% {
    background-image: url(8f3448a2bfc3f9d035e3.png);
  }
  13% {
    background-image: url(d18d035afb87223bfd59.png);
  }
  26% {
    background-image: url(797887f74603770787c2.png);
  }
  39% {
    background-image: url(9ce2d360b5a9dc550338.png);
  }
  52% {
    background-image: url(500f1351b0be2a14d6d8.png);
  }
  65% {
    background-image: url(fb061262287db9583179.png);
  }
  77% {
    background-image: url(fb061262287db9583179.png);
  }
  90% {
    background-image: url(9ce2d360b5a9dc550338.png);
  }
}
.there {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .there {
    padding: 60px 0;
  }
}
.there__box {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 767px) {
  .there__box {
    flex-wrap: wrap;
  }
}
.there__text {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 600;
}
.there__text span {
  color: #bb2765;
}
@media (max-width: 767px) {
  .there__text {
    font-size: 24px;
  }
}

.lack {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .lack {
    padding: 60px 0;
  }
}
.lack__box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .lack__box {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.lack__title {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 600;
}
.lack__title span {
  color: #bb2765;
}
@media (max-width: 767px) {
  .lack__title {
    font-size: 24px;
  }
}
.lack__item {
  width: 25%;
}
@media (max-width: 767px) {
  .lack__item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .lack__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.lack__img {
  width: 140px;
  margin-bottom: 30px;
}
.lack__subtext {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .lack__subtext {
    width: 100%;
    text-align: center;
  }
}
.lack__text {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
.lack__text span {
  color: #bb2765;
}
@media (max-width: 992px) {
  .lack__text {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .lack__text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .lack__text {
    width: 100%;
    text-align: center;
  }
}

.chain {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .chain {
    padding: 60px 0;
  }
}
.chain__title {
  font-size: 40px;
  line-height: 140%;
  margin-bottom: 25px;
  width: 100%;
}
@media (max-width: 767px) {
  .chain__title {
    font-size: 24px;
  }
}
.chain__title span {
  color: #bb2765;
}
.chain__subtitle {
  color: #fff;
  font-size: 18px;
  line-height: 130%;
  padding-bottom: 40px;
}

.bridge {
  background: url(ffd605e6055369b22e0a.png) no-repeat center center/contain;
  padding: 100px 0;
  min-height: calc(100vh - 294px);
}
@media (max-width: 767px) {
  .bridge {
    padding: 40px 0;
  }
}
.bridge__box {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.bridge__box--coll {
  flex-direction: column;
  gap: 0;
  align-items: center;
}
@media (max-width: 992px) {
  .bridge__box {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
.bridge__info {
  width: 510px;
}
@media (max-width: 767px) {
  .bridge__info {
    width: 100%;
  }
}
.bridge__title {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .bridge__title {
    font-size: 24px;
  }
}
.bridge__title span {
  color: #bb2765;
}
.bridge__text {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.bridge__connect__btns {
  display: flex;
  gap: 19px;
}
.bridge__connect {
  background-color: #bb2765;
  border: 2px solid #bb2765;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
  display: inline-block;
}
.bridge__connect:hover {
  background-color: #27a0bb;
  border: 2px solid #27a0bb;
}
.bridge__staking {
  background-color: rgba(1, 2, 14, 0.4);
  border: 2px solid #bb2765;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}
.bridge__staking:hover {
  background-color: #27a0bb;
  border: 2px solid #27a0bb;
}
.bridge__form {
  border-radius: 8px;
  background: #252028;
  width: 510px;
  padding: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .bridge__form {
    width: 100%;
  }
}
.bridge__top {
  border-radius: 8px;
  background: #353038;
  padding: 16px 8px;
  margin-bottom: 20px;
}
.bridge__line {
  color: #88818C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.bridge__btn {
  background: #bb2765;
  border-radius: 8px;
  border: none;
  padding: 10px;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}
.bridge__btn:hover {
  background: #734CE2;
}
.bridge__wallet {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.bridge__wallet:hover {
  color: #A5B4FC;
}
@media (max-width: 480px) {
  .bridge__wallet {
    font-size: 12px;
  }
}
.bridge__wallet:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  border-radius: 9999px;
  border: 1px solid #A5B4FC;
  width: 8px;
  height: 8px;
  margin-top: -4px;
}
.bridge__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.bridge__row.border {
  padding: 9px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bridge__row:last-child {
  margin-bottom: 0;
}

.staking {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.staking.active {
  display: flex;
}
.staking__dropdown-toggle {
  width: 200px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  margin-top: 35px;
  border: 1px solid #BB2765;
  border-radius: 4px;
  cursor: pointer;
}
.staking__dropdown-toggle.hide {
  display: none;
}
.staking__transfer-btn {
  display: none;
  background-color: rgba(1, 2, 14, 0.4);
  border: 2px solid #bb2765;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 15px 30px;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}
.staking__transfer-btn:hover {
  background-color: #27a0bb;
  border: 2px solid #27a0bb;
}
.staking__transfer-btn.active {
  display: block;
}
.staking__loader {
  display: none;
  margin-top: 75px;
  width: 50px;
  height: 50px;
  animation: rotateLoader 0.6s linear infinite;
}
@keyframes rotateLoader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.staking__loader.active {
  display: block;
}

.modal-content {
  position: relative;
  background-color: #252028;
  border-radius: 10px;
  padding: 20px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 190px;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  overflow: visible;
  box-sizing: content-box;
}
@media (max-width: 500px) {
  .modal-content {
    padding: 20px;
  }
}

.modal-items {
  position: absolute;
  top: -100;
  opacity: 0;
  z-index: -99;
  background-color: #353038;
  padding: 20px 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  max-height: 300px;
  overflow: auto;
  transition: opacity 0.5s ease;
}
.modal-items.active {
  top: 95px;
  opacity: 1;
  z-index: 1;
}
.modal-items.hide {
  display: none;
}

.modal-item {
  width: 200px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  padding: 10px 20px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-item:hover {
  background-color: #3a3745;
}

.item-icon {
  width: 20px;
  height: 20px;
}

.staking-outcome__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 99;
}
.staking-outcome__container.active {
  display: flex;
}
.staking-outcome__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2a2731;
  border-radius: 10px;
  padding: 20px 110px;
}
@media (max-width: 500px) {
  .staking-outcome__wrapper {
    padding: 20px;
  }
}
.staking-outcome__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.staking-outcome__close:hover {
  color: #bb2765;
}
.staking-outcome__img {
  width: 84px;
  height: 84px;
}
.staking-outcome__text {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.staking-outcome__result {
  color: #BB2765;
}

.chose__list {
  overflow: auto;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #252028;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
  transition: 0.3s;
}
.chose__list.open {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.chose__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.5rem 36px 0.5rem 0.5rem;
  transition: 0.3s;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
}
.chose__item:hover {
  border: 1px solid #d33d7a;
  background: #cc3072;
}

.select-chains__from {
  color: #CCCAD3;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.select-chains__list {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #252028;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
  transition: 0.3s;
}
.select-chains__list.open {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.select-chains__list .select-chains__item {
  padding: 16px;
}
.select-chains__list .select-chains__item:after {
  display: none;
}
.select-chains__list .select-chains__from {
  display: none;
}
.select-chains__name {
  color: #EEEDEF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.select-chains__pic {
  width: 24px;
  margin-right: 10px;
}
.select-chains__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.5rem 36px 0.5rem 0.5rem;
  transition: 0.3s;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
}
.select-chains__item:hover {
  border: 1px solid rgba(204, 12, 12, 0.7098039216);
  background: rgba(206, 85, 85, 0.1882352941);
}
.select-chains__item:after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzNfNDcwMSkiPgo8cGF0aCBkPSJNMi43MTYxNCAxLjVIMTEuMTgzOEMxMS45NjExIDEuNSAxMi40NDEyIDIuMzQ3OTcgMTIuMDQxMyAzLjAxNDVMNy44MDc0NCAxMC4wNzA4QzcuNDE5MDQgMTAuNzE4MiA2LjQ4MDg2IDEwLjcxODIgNi4wOTI0NiAxMC4wNzA4TDEuODU4NjUgMy4wMTQ1QzEuNDU4NzQgMi4zNDc5NyAxLjkzODg1IDEuNSAyLjcxNjE0IDEuNVoiIGZpbGw9IiNDMEJDQzIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zXzQ3MDEiPgo8cmVjdCB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjk0OTk1MSkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
}

.select-token {
  display: flex;
}
.select-token__pic {
  width: 24px;
  margin-right: 10px;
  border-radius: 1000%;
  overflow: hidden;
  background: #FFFFFF;
}
.select-token__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.5rem 36px 0.5rem 0.5rem;
  border-radius: 4px;
  background: #bb2765;
  margin-right: 16px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}
.select-token__item:hover {
  border: 1px solid #d33d7a;
  background: #cc3072;
}
.select-token__item:after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzNfNDcwMSkiPgo8cGF0aCBkPSJNMi43MTYxNCAxLjVIMTEuMTgzOEMxMS45NjExIDEuNSAxMi40NDEyIDIuMzQ3OTcgMTIuMDQxMyAzLjAxNDVMNy44MDc0NCAxMC4wNzA4QzcuNDE5MDQgMTAuNzE4MiA2LjQ4MDg2IDEwLjcxODIgNi4wOTI0NiAxMC4wNzA4TDEuODU4NjUgMy4wMTQ1QzEuNDU4NzQgMi4zNDc5NyAxLjkzODg1IDEuNSAyLjcxNjE0IDEuNVoiIGZpbGw9IiNDMEJDQzIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zXzQ3MDEiPgo8cmVjdCB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjk0OTk1MSkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
}
@media (max-width: 480px) {
  .select-token__item > .select-token__name {
    white-space: nowrap;
    font-size: 14px;
    width: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.select-token__name {
  color: #EEEDEF;
  font-size: 17.859px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.select-token__in {
  color: #88818C;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  width: 100px;
}

.footer {
  background: #251f27;
  padding: 35px 0 15px;
}
.footer__title {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 35px;
}
.footer__soc {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.footer__soc .soc__item {
  width: 65px;
  height: 65px;
}
.footer__soc .soc__item img {
  width: 35px;
  height: 35px;
}
.footer__logo {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #bb2865;
  font-size: 28px;
  letter-spacing: 1.5px;
  font-weight: bold;
}
.footer__logo img {
  height: 40px;
}
.footer__copy {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-left: 15px;
}
.footer__logo {
  display: flex;
  align-items: center;
}
.footer__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__flex {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.blocks-box {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .blocks-box {
    padding: 60px 0;
  }
}
.blocks-box {
  background: url(8a3be840382202447729.png) no-repeat center center/cover;
}
.blocks-box .blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.blocks-box .blocks .block {
  width: calc(33% - 20px);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .blocks-box .blocks .block {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .blocks-box .blocks .block {
    width: 100%;
  }
}
.blocks-box .blocks .block-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .blocks-box .blocks .block-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .blocks-box .blocks .block-title {
    font-size: 24px;
  }
}
.blocks-box .blocks .block-par {
  opacity: 0.7;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
