* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #000131;
  color: #fff;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
p {
  margin: 0;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
}
.container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}
.button {
  display: inline-flex;
  height: 45px;
  align-items: center;
  text-decoration: none;
  padding: 0 20px;
  border-radius: 10px;
  background-color: #1298ff;
  color: #000131;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #1298ff;
  transition: all 0.3s ease-in;
}
.button:hover {
  background-color: transparent;
  color: #fff;
}
/* ============= Header ============= */
header.main-header {
  padding: 30px 0 20px;
}
header.main-header .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
header.main-header .logo img {
  max-height: 100px;
}
header.main-header .menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 5px 25px;
}
header.main-header .menu ul a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
header.main-header .container {
  position: relative;
}
header.main-header .social-icons {
  position: absolute;
  top: 0;
  right: 0;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.social-icons a {
  display: flex;
  color: #fff;
}
/* ============= Header ============= */
/* ============= Hero ============= */
section.hero-section .headline {
  font-size: 45px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}
section {
  position: relative;
  overflow: hidden;
}
section.hero-section .headline span {
  color: #1298ff;
}
section.hero-section {
  padding-top: 40px;
}
section.hero-section .hero-image {
  border-radius: 20px;
  width: 100%;
}
/* ============= Hero ============= */
/* ============= Image and Text Block ============= */
section.image-text-block {
  margin: 20px 0;
}
section.image-text-block .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
section.image-text-block .right {
  display: flex;
}
section.image-text-block .right img {
  width: 100%;
  border-radius: 15px;
}
section.image-text-block .left {
  text-align: center;
}
section.image-text-block .left .headline {
  font-size: 38px;
  font-weight: 500;
}
section.image-text-block .left .icon {
  margin-bottom: 30px;
}
section.image-text-block .left .description {
  margin-bottom: 30px;
}
section.image-text-block .top-area {
  text-align: center;
}
section.image-text-block .top-area .contents {
  font-size: 22px;
  margin: 40px 0 100px;
}
form.newsletter-form {
  display: flex;
  width: 100%;
  gap: 10px;
}
form.newsletter-form input {
  height: 45px;
  background-color: #161846;
  border: none;
  flex: 1;
  padding: 0 20px;
  color: rgba(255, 255, 255);
  outline: none;
  border-radius: 10px;
}
form.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form.newsletter-form button {
  display: inline-flex;
  height: 45px;
  align-items: center;
  text-decoration: none;
  padding: 0 20px;
  border-radius: 10px;
  background-color: #1298ff;
  color: #000131;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #1298ff;
  transition: all 0.3s ease-in;
}
form.newsletter-form button:hover {
  background-color: transparent;
  color: #fff;
}
section.image-text-block.donate-section {
  margin: 30px 0;
  padding: 100px 0;
}
section.image-text-block.donate-section .left {
  text-align: left;
}
section.image-text-block.about-section,
section.image-text-block.message-kevin-section {
  padding-bottom: 120px;
}
section.image-text-block .top-area .logo img {
  width: 100%;
  max-width: 320px;
}
section.image-text-block .container {
  margin-top: 50px;
}
/* ============= Image and Text Block ============= */
/* ============= Gallery Block ============= */
section.gallery-block .item img {
  width: 100%;
}
section.gallery-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 20px;
}
/* ============= Gallery Block ============= */
/* ============= Footer ============= */
footer.main-footer {
  text-align: center;
  padding: 30px 0 150px;
  position: relative;
}
footer.main-footer .headline {
  font-weight: 400;
  margin-bottom: 30px;
}
footer.main-footer form.newsletter-form {
  max-width: 550px;
  margin: 0 auto 40px;
}
/* ============= Footer ============= */
img.dotted-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 600px;
  padding: 0 25px;
}
.bikers-shape {
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: 0;
}
@media screen and (max-width: 980px) {
  section.hero-section .headline {
    font-size: 40px;
  }
  section.image-text-block .grid {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  header.main-header .social-icons {
    position: relative;
    margin-bottom: 30px;
    display: none;
  }
  header.main-header {
    padding: 15px 0;
  }
  section.hero-section .headline {
    font-size: 30px;
  }
  section.image-text-block .grid {
    grid-template-columns: 1fr;
  }
  section.image-text-block .left .headline {
    font-size: 30px;
  }
  section.image-text-block .left .icon {
    margin-bottom: 10px;
  }
  section.image-text-block .top-area .contents {
    font-size: 16px;
    margin-bottom: 50px;
  }
  section.gallery-block .container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  section.image-text-block {
    margin: 50px 0;
  }
  section.image-text-block.donate-section {
    padding: 50px 0;
  }
  footer.main-footer {
    padding: 50px 0 80px;
  }
  section.image-text-block .top-area .logo img {
    max-width: 220px;
  }
  .bikers-shape {
    height: 50px;
    background-size: cover;
  }
  section.image-text-block.about-section,
  section.image-text-block.message-kevin-section {
    padding-bottom: 60px;
  }
}
