@media (max-width: 768px) {
  :root {
    --column-width: 90.625vw;
    --offset: 4.6875vw;
  }

  body, input, textarea, select {
    font-family: 'Arial', sans-serif;
    font-size: 5vw;
    -webkit-text-size-adjust: none;
  }

  img, svg {
    max-width: 100%;
    display: block;
  }

  * {
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance:none;
  }

  body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
    margin: 0;
    padding: 0;
  }

  .none {
    display: none;
  }

  .fade-out {
    opacity: 1;
    transition: 0.3s;
    pointer-events: auto;
  }

  .fade-out.active {
    opacity: 0;
    pointer-events: none;
  }

  .fade-in {
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }

  .fade-in.active {
    opacity: 1;
    pointer-events: auto;
  }

  .container {
    padding-left: var(--offset);
    padding-right: var(--offset);
  }

  .container-offset {
    width: var(--column-width);
    margin-left: auto;
    margin-right: auto;
  }

  a {
    text-decoration: none;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,.4);
    padding-bottom: 6.25vw;
  }

  .languages {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6.25vw;
  }

  .lang {
    color: #fff;
    margin-left: 4.6875vw;
    font-weight: 700;
    font-size: 1.7rem;
  }

  .lang.active {
    text-decoration: underline;
  }

  .main-banner-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .uk-logo {
    width: 156.25vw;
    margin: 31.25vw auto 15.625vw auto;
  }

  .title-block {
    width: 100%;
    padding: 6.25vw;
    background: rgba(0,0,0,.5);
  }

  .h1 {
    font-size: 11.25vw;
    font-weight: 400;
    color: #ffd500;
    margin-bottom: 4.6875vw;
    text-align: center;
  }

  .p {
    font-size: 5vw;
    color: #fff;
    text-align: center;
  }

  .items-to-pay {
    width: 100%;
    margin-top: 15.625vw;
    margin-bottom: 15.625vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .item-to-pay {
    display: block;
    width: 49%;
    padding: 4.6875vw;
    background: rgba(00, 91, 187,.5);
    margin-bottom: 1.5625vw;
  }

  .item-to-pay-img {
    display: block;
    width: 25vw;
    height: 25vw;
    object-fit: contain;
    margin: 0 auto;
    filter: invert(1);
  }

  .item-to-pay-text {
    margin-top: 3.125vw;
  }

  .gallery {
    margin: 15.625vw 0;
  }

  .slick-next:before, .slick-prev:before {
    color: rgba(00, 91, 187,.5);
  }

  .slider img {
    width: 94%;
    margin: 0 auto;
    height: 93.75vw;
    object-fit: cover;
  }

  .flag-item {
    height: 125vw;
    padding: 6.25vw;
    color: #fff;
    font-size: 5vw;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .yellow-flag {
    background: url("./background-images/yellow.jpeg");
    background-size: cover;
    color: #000;
  }

  .blue-flag {
    background: url("./background-images/blue.jpeg");
    background-size: cover;
  }

  .gallery2-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15.625vw 0 6.25vw 0;
  }

  .gallery2-items img {
    width: 49%;
    margin-bottom: 1.5625vw;
    height: 46.875vw;
    object-fit: cover;
  }

  .gallery2-text {
    font-size: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15.625vw;
  }

  .social {
    padding: 0.7722vw 6.9444vw;
    background: url("./background-images/yellow.jpeg");
  }

  .social-items {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7722vw 6.9444vw;
    margin: 2.625vw;
  }

  .social-item {
    display: flex;
    align-items: center;
    color: black;
  }

  .social-item-img {
    width: 7.8125vw;
    height: 7.8125vw;
    display: block;
    margin-right: 4.6875vw;
  }

  .donated-h2 {
    text-align: center;
    margin-bottom: 9.375vw;
    font-size: 11.25vw;
  }

  .slider2 img {
    width: 96%;
    margin: 0 auto;
    height: 62.5vw;
    object-fit: contain;
  }

  footer {
    background: rgba(00, 91, 187,.5);
    padding: 6.25vw 6.25vw;
    margin: 15.625vw 0 0 0;
    font-weight: 100;
    font-size: 11.25vw;
    color: #ffd500;
    text-align: center;
  }

  .btn-donate {
    padding: 4.6875vw 12.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: red;
    margin: 4.6875vw 0;
    font-weight: 700;
    transition: .3s;
    width: 50%;
    border: 1px solid red;
    font-size: 1.5rem;
  }

  .btn-donate:hover {
    background: darkred;
  }

  table {
    margin: 0 auto;
  }

  figure {
    margin: 0;
  }

  .comments-text {
    margin: 7.8125vw;
    color: gray;
    font-size: 3.4375vw;
  }

  ul{
    margin-left: 5.25vw;
  }
  ul li{
    width: 100%;
    float: left;
  }
}
