.--button {
  display: inline-block;
  background: linear-gradient(90deg, #FF11E3, #A13DFF);
  color: #fff;
  padding: 1em 3em;
  font-size: 18px;
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  margin-right: auto;
  margin-left: 0;
  transition: all 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.--button:hover {
  transform: scale(1.05);
}
.--button:active {
  transform: scale(0.95);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.site-header {
  background-color: #550EBF;
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header .logo img {
  max-height: 80px;
  width: auto;
}
.site-header .main-nav ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}
.site-header .main-nav a:hover {
  color: #FF11E3;
}
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 20px;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.section-footer {
  padding: 60px 0;
  background-color: #550EBF;
  /* ---------- MAIN FOOTER ITEMS ---------- */
  /* ---------- SOCIAL ---------- */
}
.section-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.section-footer .footer-item {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: transparent;
}
.section-footer .footer-item .footer-image {
  margin-bottom: 15px;
}
.section-footer .footer-item .footer-image img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-footer .footer-item .footer-text p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 992px) {
  .section-footer .footer-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 600px) {
  .section-footer .footer-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.section-footer .footer-social-wrapper {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}
.section-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.section-footer .footer-social__item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section-footer .footer-social__item img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-footer .footer-social__item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.section-footer .footer-social-text p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  text-align: center;
}

.container {
  max-width: 1300px !important;
  margin: 0 auto !important;
  width: calc(100% - 128px) !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: white;
}

::-moz-placeholder {
  color: rgb(95, 95, 95);
  font-size: 16px;
  line-height: 100%;
}

::placeholder {
  color: rgb(95, 95, 95);
  font-size: 16px;
  line-height: 100%;
}

body {
  margin: 0 !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  background-color: white;
  z-index: 1;
  position: relative;
}
body * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body a {
  transition: all 0.25s ease !important;
  color: black;
  text-decoration: none;
}
body a:hover {
  color: black;
}
body h1 {
  font-size: 38px;
  margin: 0;
  line-height: 120%;
  font-weight: normal;
}
body h2 {
  font-size: 32px;
  line-height: 100%;
  margin: 0;
  font-weight: normal;
}
body h3 {
  font-size: 26px;
  line-height: 120%;
  font-weight: 400;
  margin: 0;
}
body h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: normal;
  margin: 0;
}
body p {
  margin: 0;
  font-size: 18px;
}/*# sourceMappingURL=theme.css.map */