body {
  font-family: "Montserrat";
  overflow-x: hidden;
  background-color: #1a1a1a;
  color: #ffffff;
}
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

header {
  margin-bottom: 64px;
}

/*Header*/

.top-bar {
  margin: 10px 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cryptocoin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cryptocoin img {
  width: 30px;
  height: 30px;
}

.coin {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;

  white-space: nowrap;
}

.procent {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #5dd662;

  white-space: nowrap;
}

.procent-down {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #caff33;

  white-space: nowrap;
}

.procent svg {
  width: 12px;
  height: 12px;
}

/*Menu*/

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 100px;

  margin: 45px 160px 0;
  padding: 10px 60px;
}

.main-nav .logo img {
  width: 140px;
  height: auto;
}

.menu {
  font-family: "lexend";
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.menu li a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  padding: 12px 24px;
  transition: all 0.3s;
}
.menu li a:hover {
  background-color: #caff33;
  padding: 12px 24px;
  border-radius: 82px;
  color: #000000;
}

.menu li a:focus {
  background-color: #262626;
  padding: 12px 24px;
  border-radius: 82px;
  color: #ffffff;
}

.menu-buttons {
  display: flex;
  gap: 12px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.38) 0%, rgba(140, 140, 140, 0.38) 100%);
  box-shadow: -31px 22px 18.299999237060547px rgba(0, 0, 0, 0.21);
  border-radius: 20px;
  backdrop-filter: blur(4.5px);
  border: 1px solid #262626;
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #caff33;
  color: #000000;
  margin: 0 8px;
  border-radius: 15px;
}

.sign-up {
  outline: none;
  border: 0;
  background: transparent;
  padding: 14px 30px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.sign-up:hover {
  background-color: #caff33;
  color: #000000;
  border-radius: 80px;
}

.sign-up:active {
  background-color: #262626;
  color: #ffffff;
  border-radius: 80px;
}

.login {
  background-color: #caff33;
  border: 0;
  padding: 14px 30px;
  border-radius: 80px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  background: none;
  cursor: pointer;
  background: #caff33;
  border-radius: 82px;
  padding: 6px 14px;
}

.menu-toggle img {
  width: 28px;
  height: 28px;
}

.burger-menu {
  position: fixed;
  right: 0;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.burger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #262626, #8c8c8c);
  opacity: 0.65; /* Прозрачность градиента */
  z-index: -1;
}

.burger-menu.active {
  transform: translateX(0);
}

.hidden {
  display: none;
}

@media (max-width: 1440px) {
  header {
    margin-bottom: 16px;
  }
  .top-bar {
    margin: 10px 36px 0;
  }

  .cryptocoin {
    gap: 7px;
  }

  .cryptocoin img {
    width: 22px;
    height: 22px;
  }

  .coin,
  .procent,
  .procent-down {
    font-size: 12px;
  }

  .procent svg {
    width: 9px;
    height: 9px;
  }

  /*Menu*/

  .main-nav {
    border-radius: 75px;
    margin: 32px 120px 0;
  }

  .main-nav .logo img {
    width: 105px;
    height: auto;
  }

  .menu li a {
    font-size: 12px;
  }

  .menu-buttons {
    gap: 22px;
  }

  .sign-up,
  .login {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  header {
    margin-bottom: 40px;
  }

  .top-bar {
    display: none;
  }

  .main-nav {
    width: 100%;
    padding: 14px 24px;
    margin: 0 auto;
    gap: 0;
  }

  .main-nav .menu,
  .main-nav .menu-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hidden {
    display: block;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999; /* ниже чем .burger-menu (1000) */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .burger-menu {
    padding: 60px 40px;
  }

  .burger-menu .logo img {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
  }

  .burger-menu .menu {
    display: block;
  }

  .burger-menu ul {
    margin: 0;
    padding: 0;
  }

  .burger-menu .menu li a {
    font-size: 20px;
    display: block; /* чтобы весь li реагировал */
    padding: 0 0 15px;
    margin: 0;
  }

  .burger-menu .menu li a:hover {
    background-color: #caff33;
    color: #000000;
    margin: 15px;
    padding: 12px 24px;
    text-align: center;
  }

  .burger-menu .menu li a:active {
    background-color: #caff33;
    color: #000000;
    margin-left: 15px;
    margin: 15px;
    padding: 12px 24px;
    text-align: center;
  }

  .menu-contact {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .menu-contact .phone,
  .menu-contact .email,
  .menu-contact .location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
  }

  .menu-contact p {
    font-family: "Lexend";
    font-size: 16px;
    font-weight: 400;
  }

  .sign-up,
  .login {
    font-size: 18px;
  }

  /* Dropdown в burger-menu */
  .burger-menu .dropdown {
    position: relative;
  }

  .burger-menu .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding: 0;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .burger-menu .dropdown-menu.show {
    max-height: 200px;
    padding: 10px 0;
  }

  .burger-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .burger-menu .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .burger-menu .dropdown-toggle::after {
    content: "▼";
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .burger-menu .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/*Hero Section*/
.hero__section {
  position: relative;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 50px;
  z-index: -2;
}

.hero__section-text {
  position: relative;
  padding: 60px 60px 300px;
  width: 50%;
}

.hero__section-text h2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 130%;
}

.hero__section-text span {
  color: #caff33;
}

.hero__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 30px;
}

.hero__section-image {
  position: absolute;
  right: 50px;
  top: 50px;
}

.hero__section-image img {
  width: 660px;
}

.hero__section .abstract {
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(90deg);
  opacity: 30%;
  z-index: -1;
}

@media (max-width: 1440px) {
  .hero__section {
    position: relative;
    margin: 100px 120px 0;
    border-radius: 14px;
    padding: 80px 60px;
    z-index: -2;
  }

  .hero__section-text {
    position: relative;
    padding: 35px 35px 200px;
    width: 40%;
  }

  .hero__section-text h2 {
    font-size: 29px;
  }

  .hero__section-text p {
    margin: 20px 0 30px;
  }

  .hero__section-image img {
    width: 580px;
  }
}

@media (max-width: 768px) {
  .hidden-mob {
    display: none;
  }

  .hidden {
    display: block;
  }

  .hero__section {
    margin: 20px 16px 0;
    padding: 0;
  }

  .hero__section-text {
    position: relative;
    padding: 36px 30px;
    width: 100%;
    text-align: center;
  }

  .hero__section-text h2 {
    font-family: "Lexend";
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
  }

  .hero__section-text p {
    margin: 20px 0 40px;
  }

  .hero__section-text button {
    background-color: #caff33;
    border: 0;
    padding: 12px 20px;
    border-radius: 60px;
    margin: 0 auto;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
  }

  .hero img {
    margin-top: 50px;
    width: 100%;
  }

  .hero__section .abstract {
    margin-top: 0;
    width: 300px;
    transform: rotate(0deg);
    top: 0;
    left: 0;
  }
}

/* users */
.users {
  margin: 120px 160px 0;
}

.users h2 {
  text-align: center;
  margin-bottom: 40px;
}

.title-2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
}

.title-2 span {
  color: #caff33;
}

.slider-container1 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.slider-wrapper1 {
  overflow: hidden;
  padding: 0 40px;
}

.slider-track1 {
  display: flex;
}

.slide1 {
  min-width: calc(100% / 7);
  margin: 0 14px;
  display: block;
  text-align: center;
}

.slider-arrow1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  transition: 0.3s;
}

.slider-arrow1.left1 {
  left: 0;
}

.slider-arrow1.right1 {
  right: 0;
}

@media (max-width: 1440px) {
  .users {
    margin: 80px 120px;
  }

  .title-2 {
    font-size: 32px;
  }

  .slider-container1 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .users {
    margin: 60px 16px 0;
  }

  .title-2 {
    font-size: 32px;
  }

  .slider-container1 {
    max-width: 100%;
    margin: 20px auto;
    overflow: visible;
  }

  .slider-wrapper1 {
    overflow: hidden;
    padding: 0;
  }

  .slide1 {
    min-width: 100%;
    margin: 0 auto;
    height: auto;
    display: block;
    text-align: center;
  }
}

/*why*/
.why__section {
  margin: 200px 160px;
}

.why__section h2 {
  text-align: center;
}

.why__section .description {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 80px;
  text-align: center;
}

.why__section-columns {
  display: flex;
  gap: 80px;
}

.why-item {
  flex: 1;
  border-left: 1px solid #caff33;
}

.why-item h3 {
  font-family: "Lexend";
  font-size: 46px;
  font-weight: 500;
  line-height: 150%;
  color: #4c4c4d;
  margin-left: 30px;
}

.why-item p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 30px 0 30px 30px;
}

.two {
  margin-top: 80px;
}

@media (max-width: 1440px) {
  .why__section {
    margin: 60px 120px;
  }

  .why__section-columns {
    gap: 60px;
  }

  .why-item h3 {
    font-size: 36px;
    margin-left: 20px;
  }

  .why-item p {
    font-size: 14px;
    margin: 20px 0 20px 20px;
  }

  .two {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .why__section {
    margin: 60px 16px;
  }

  .why__section-columns {
    flex-direction: column;
    gap: 40px;
  }

  .why-item h3 {
    font-size: 30px;
    margin-left: 20px;
  }

  .why-item p {
    font-size: 14px;
    margin: 20px 0 20px 20px;
  }

  .two {
    margin-top: 40px;
  }
}

/*advantages*/

.advantages {
  margin: 0 160px;
  display: flex;
  gap: 50px;
}

.advantages-item {
  flex: 1;
  background: linear-gradient(to top right, #1c1c1c 41%, #1c1c1c 100%);
  border: 1px solid #262626;
  border-radius: 20px 50px;
  padding: 50px;
}

.advantages-title {
  display: flex;
  gap: 20px;
  align-items: center;
}

.advantages-title img {
  width: 70px;
  height: 70px;
}

.advantages-title h3 {
  font-family: "Lexend";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.advantages-item p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 30px 0 30px;
}

.dotted-line {
  border-left: 1px dashed #262626;
}

@media (max-width: 1440px) {
  .advantages {
    margin: 0px 120px;
    gap: 30px;
  }

  .advantages-item {
    flex: 1;
    background: linear-gradient(to top right, #1c1c1c 41%, #1c1c1c 100%);
    border: 1px solid #262626;
    border-radius: 14px 35px;
    padding: 30px;
  }

  .advantages-title {
    gap: 14px;
  }

  .advantages-title img {
    width: 50px;
    height: 50px;
  }

  .advantages-title h3 {
    font-size: 16px;
  }

  .advantages-item p {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .advantages {
    margin: 0px 16px;
    flex-direction: column;
    gap: 20px;
  }
  .advantages-title img {
    width: 70px;
    height: 70px;
  }
}

/* map */
.map__section {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 80px 160px 0 0;
}

.map__section-image img {
  width: 750px;
}

.map__section-text h2 {
  font-family: "Lexend";
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.map__section-text span {
  color: #caff33;
}

.map__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 30px;
  text-align: center;
}

.map__section-columns {
  margin-top: 60px;
  display: flex;
  gap: 100px;
}

.map__section-item {
  flex: 1;
}

.map__section-item h3 {
  font-family: "Lexend";
  font-size: 42px;
  font-weight: 400;
  line-height: 150%;
  color: #caff33;
}

.map__section-item p {
  text-align: left;
  margin: 0;
}

@media (max-width: 1440px) {
  .map__section {
    margin: 60px 120px 0 0;
  }
  .map__section-image img {
    width: 600px !important;
  }

  .map__section-text {
    display: flex;
    flex-direction: column;
  }

  .map__section-text h2 {
    font-size: 25px;
  }

  .map__section-text p {
    margin-bottom: 0;
  }

  .map__section-columns {
    margin-top: 40px;
    display: flex;
    gap: 60px;
  }

  .map__section-item h3 {
    font-size: 40px;
  }

  .map__section-item p {
    text-align: left;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .map__section {
    margin: 40px 16px 0;
    background-color: transparent;
    flex-direction: column;
    gap: 20px;
  }

  .map__section-image img {
    width: 380px !important;
  }

  .map__section-text h2 {
    font-size: 32px;
  }

  .map__section-text button {
    margin: 0 auto;
  }

  .map__section-columns {
    margin-top: 30px;
    gap: 16px;
    text-align: center;
  }

  .map__section-item p {
    text-align: center;
  }

  .line-decor {
    margin-top: 20px;
  }
}

/*Form*/

.meeting-form {
  position: relative;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px;
}

.meeting-form .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  width: 298px;
}

.meeting-form h2 {
  text-align: center;
}

.form-container {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  margin-bottom: 60px;
}
.form-left {
  width: 100%;
}
.calendar {
  background-color: #1a1a1a;
  padding: 50px 70px;
  user-select: none;
  margin-bottom: 26px;
  border-radius: 30px;
}
.calendar-header {
  display: none;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-day {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  padding: 20px;
  text-align: center;
}
.calendar-date {
  text-align: center;
  padding: 20px 16px;
  cursor: pointer;
  border-radius: 50%;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}
.calendar-date:hover {
  background-color: #caff33;
}
.calendar-date.selected {
  background-color: #caff33;
}

#time {
  width: 100%;
  padding: 24px;
  margin-top: 12px;
  border-radius: 88px;
  background: #1a1a1a;
  color: white;
  border: 1px solid #262626;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.form-rigth {
  width: 100%;
}

.input-section {
  flex: 1;
  min-width: 300px;
}

.input-icon {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 88px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #262626;
}

.input-icon input {
  background: none;
  border: none;
  flex-grow: 1;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.input-icon span {
  color: #caff33;
}

.privacy-text {
  font-family: "Lexend";
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 24px;
}

.submit-button {
  background: #caff33;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 500;
  cursor: pointer;

  display: block;
  margin: 0 auto;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 1440px) {
  .meeting-form {
    margin: 100px 120px 0;
    padding: 30px;
  }

  .meeting-form .abstract {
    width: 214px;
  }

  .form-container {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .calendar {
    padding: 40px;
  }

  .calendar-day {
    font-size: 12px;
    padding: 16px;
  }

  .calendar-date {
    padding: 18px 12px;
    font-size: 12px;
  }

  label {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
  }

  #time {
    padding: 20px;
    margin-top: 10px;
    border-radius: 60px;
  }

  .input-section {
    min-width: 100%;
  }

  .input-icon {
    border-radius: 60px;
    margin-bottom: 10px;
    padding: 20px;
  }

  .privacy-text {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .meeting-form {
    margin: 40px 16px 0;
    padding: 25px;
  }

  .meeting-form .abstract {
    width: 298px;
  }

  .form-container {
    flex-direction: column;
    gap: 30px;
    margin-top: 26px;
    margin-bottom: 40px;
  }

  .calendar {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px 20px 60px;
  }

  .calendar-day {
    font-size: 8px;
    padding: 8px;
  }

  .calendar-date {
    font-size: 8px;
    padding: 11px 8px;
  }

  label {
    font-size: 14px;
  }

  #time {
    padding: 24px;
  }
}

/* Footer*/

footer {
  overflow: hidden;
  margin: 100px 160px;
  padding: 100px 0 50px;
}

.footer__section img {
  width: 155px;
  display: block;
  margin: 0 auto;
}

.footer__section .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.footer__section .menu li a {
  font-weight: 400;
  font-size: 14px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-contact .email,
.footer-contact .phone,
.footer-contact .location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.footer-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social {
  display: flex;
  gap: 14px;
}

.footer-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  text-align: center;
}

.policy {
  display: flex;
  align-items: center;

  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.policy a {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  footer {
    overflow: hidden;
    margin: 60px 16px 0;
    padding: 50px 0 30px;
  }

  .footer__section img {
    width: 142px;
    margin-bottom: 24px;
  }

  .menu-mob {
    display: none;
  }

  ul.menu {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
  }

  .menu li a {
    font-size: 14px;
  }

  .footer-contact {
    flex-wrap: wrap;
  }

  .footer-block {
    flex-direction: column;
    gap: 20px;
  }

  .social img {
    width: 44px;
  }

  .PayOut2025 {
    margin-top: 10px;
  }
}
