/** @format */

.about {
  background-image: url(./images/mobile-bg.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.about-div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.heading-div h1 {
  margin-left: 25px;
  color: #ec5242;
  font-family: 'cocogoose', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding-top: 40px;
}

.description {
  background-color: rgb(255, 255, 250, 0.8);
  border-radius: 2px;
  margin: 25px;
  border: 1px solid gainsboro;
  display: flex;
  align-items: center;
  text-align: center;
  width: 60%;
}

.description p {
  padding: 20px;
  font-style: italic;
  font-family: 'lato', sans-serif;
}

.contact {
  margin: 25px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
}

.contact span {
  text-decoration: underline;
  cursor: pointer;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  justify-content: center;
}

.logo h3 {
  text-align: center;
  font-weight: 600;
  font-family: 'cocogoose', sans-serif;
  padding-bottom: 40px;
  padding-top: 40px;
}

.logo span {
  text-align: center;
  text-transform: capitalize;
  font-family: 'lato', sans-serif;
}

.logo-div {
  margin: 15%;
  border: 1px solid gainsboro;
}

.logo-div img {
  width: 300px;
}

.tribs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5%;
}

.context {
  padding-bottom: 40px;
  gap: 5px;
}

.images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.image1 {
  box-shadow: inset 0 0 0 2000px rgba(255, 0, 0, 0.438);
  width: 300px;
}

.image1 img {
  width: 100%;
  height: 100%;
}

.image2 {
  box-shadow: inset 0 0 0 2000px rgba(255, 0, 0, 0.438);
  width: 300px;
}

.image2 img {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .about {
    background-image: url(./images/mobile-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .heading-div h1 {
    margin-left: 32px;
    color: #ec5242;
    font-family: 'cocogoose', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding-top: 40px;
    width: 600px;
  }

  .description p {
    padding: 20px;
    font-style: italic;
    font-family: 'lato', sans-serif;
  }

  .logo-div {
    margin: 0%;
    border: 1px solid gainsboro;
  }

  .logo span {
    text-align: center;
    text-transform: capitalize;
    font-family: 'lato', sans-serif;
    margin-bottom: 3%;
  }

  .images {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }

  .images img {
    width: 400px;
    opacity: 0.5;
  }

  .image1 img {
    width: 100%;
    height: 100%;
  }

  .image1 {
    width: 400px;
    box-shadow: inset 0 0 0 2000px rgba(255, 0, 0, 0.438);
  }

  .image2 {
    width: 400px;
    box-shadow: inset 0 0 0 2000px rgba(255, 0, 0, 0.438);
  }

  .image2 img {
    width: 100%;
    height: 100%;
  }
}
