* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #191919;
}

.container {
  margin: 0 94px;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

input {
  border: 0;
  outline: 0;
}

input[type="button"] {
  cursor: pointer;
}

.mainScreen {
  background-image: url("../images/bgImage_donate.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  padding-top: 47px;
}

.nav {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 79px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 37px;
  margin: 0 auto;
}


#burger {
  cursor: pointer;
  width: 40px;
  display: none;
}

.burger-container {
  margin-left: auto;
}

.nav .list li {
  position: relative;
  padding-bottom: 5px;
}

.nav .list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.nav .list li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.logo {
  display: flex;
  align-items: center;
}

.logo div {
  display: flex;
  flex-direction: column;
  margin-left: 23px;
}

.logo div span:first-child {
  font-weight: 800;
  letter-spacing: 5px;
}

.logo div span:last-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
}

.list {
  display: flex;
  align-items: center;
}

.list li {
  margin-left: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.list li img {
  margin-right: 18px;
}

.title {
  position: relative;
}

.title h1:first-child {
  font-size: 64px;
}

.title .titleBg {
  position: absolute;
  left: 0;
  top: -25px;
  opacity: 0.5;
  font-size: 103px;
  color: transparent;
  -webkit-text-stroke: 0.4px white;
}

.mainScreenContent {
  margin-top: 169px;
}

.mainScreenContent p {
  margin-top: 70px;
  margin-bottom: 132px;
  width: 50%;
  font-weight: 500;
  font-size: 20px;
}

footer {
  background-color: #131313;
  position: relative;
  z-index: 2;
}

footer li {
  cursor: pointer;
}

.footerEnd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 39px;
  gap: 50px;
}

.footerList {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-top: 67px;
  margin-bottom: 57px;
}

.footerEnd p {
  font-weight: 500;
  font-size: 16px;
  color: #aeaeae;
}

.footerPay {
  display: flex;
  justify-content: end;
  gap: 28px;
}

.none {
  display: none;
}

.block {
  display: block !important;
}


.footerPay li {
  width: 85px;
  height: 35px;
  background-color: #fff;
  border-radius: 8px;
  transition: 0.5s;
}

.footerPay li:hover {
  transform: rotate(10deg);
}

.footerPay li img {
  padding: 10px 22px;
}

.footerActive {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

footer li {
  color: #aeaeae;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footerLogo {
  position: relative;
  margin-right: 100px;
}

.footerTitleBg {
  position: absolute;
  left: -31px;
  top: -30px;
  opacity: 0.5;
  font-size: 48px;
  color: transparent;
  font-weight: 800;
  -webkit-text-stroke: 0.2px white;
  letter-spacing: 10px;
}

.footerCircle {
  width: 210px;
  height: 155px;
  background-color: #fff;
  filter: blur(187px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50% 50% 0 0;
}

@media screen and (max-width: 1400px) {
  .footerList {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footerPay {
    justify-content: center;
  }
}

@media screen and (max-width: 1200px) {
  .title .titleBg {
    font-size: 85px;
    top: -20px;
  }

  .mainScreenContent {
    margin-top: 120px;
  }

  .title h1:first-child {
    font-size: 55px;
  }

  .mainScreenContent p {
    width: 75%;
    margin-top: 50px;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 1150px) {
  .list li {
    margin-left: 20px;
  }

  .list li img {
    margin-right: 10px;
  }

  .footerEnd {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  #list {
    display: none;
  }

  #list li {
    margin-bottom: 75px;
  }

  #list li a {
    font-size: 25px;
  }

  #burger {
    display: block;
  }

  .nav {
    padding: 15px 50px;
  }
}

@media screen and (max-width: 850px) {
  .mainScreenContent p {
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  .mainScreenContent p {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
  }

  .mainScreenContent {
    margin-top: 50px;
  }
}

@media screen and (max-width: 700px) {
  .footerList {
    text-align: center;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .container {
    margin: 0 30px;
  }

  .cardsContainer p {
    margin-bottom: 25px;
  }

  .footerLogo {
    width: 100%;
    margin: 0 auto;
  }

  .footerTitleBg {
    width: 50%;
    font-size: 36px;
    top: -45px;
    left: 25%;
  }
}

@media screen and (max-width: 500px) {
  .container {
    margin: 0 20px;
  }

  .footerList {
    gap: 30px;
  }

  .footerTitleBg {
    left: 20%;
  }
}

.termsBlock ul {
    padding-left: 20px;
}

.termsSection {
    padding: 130px 0 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.termsHeader {
    text-align: center;
    margin-bottom: 60px;
}

.termsHeader h1 {
    font-size: 35px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.termsHeader p {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

.termsContent {
    text-align: justify !important;
        line-height: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
}

.termsBlock {
    margin-bottom: 40px;
}

.termsBlock:last-child {
    margin-bottom: 0;
}

.termsBlock h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.termsBlock p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.termsFooter {
    text-align: center;
    margin-top: 50px;
}

.backBtn {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.backBtn:hover {
    background: #fff;
    color: #000;
}