@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Oswald:wght@300");

* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: "Lato";
  color: #777777;
}

h2 {
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #555555;
}

#logo {
  float: left;
  font-size: 280%;
  margin-left: 30px;
}

#menu {
  font-size: 110%;
  list-style-type: none;
  letter-spacing: 4px;
}

#logo,
#menu {
  line-height: 75px;
}

#menu li {
  float: right;
  margin-right: 30px;
}

#menu a {
  text-decoration: none;
  color: inherit;
}

#menu a:hover {
  border-bottom: 1px solid #777777;
}

.active {
  border-bottom: 1px solid #777777;
}

#hero-image {
  height: 600px;
  width: 100%;
  background: url("https://res.cloudinary.com/jimlynx/image/upload/v1592513499/LIONS/Lions-Rescue_yimsoc.png") no-repeat center center;
  animation-name: hero-zoom;
  animation-duration: 10s;
  animation-fill-mode: forwards;
}

#hero-outer {
  height: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.3);
  }

  to {
    transform: scale(1.6);
  }
}

#cover-text,
#cover-text h2 {
  color: #ffffff;
}

#cover-text {
  font-size: 100%;
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 4px;

  width: 300px;
  height: 200px;

  padding-top: 40px;
  padding-left: 10px;

  background-color: rgba(210, 180, 140, 0.7);

  bottom: 30px;
  right: 150px;

  position: absolute;
}

#project-ethos {
  height: 600px;
}

#left-about {
  padding-top: 30px;
  width: 33%;
  float: left;
}

#right-about {
  padding-top: 30px;
  width: 33%;
  float: right;
}

#center-about {
  width: 33%;
  margin: 0 auto;
}

hr {
  border-top: 1px solid #777777;
  width: 100%;
  margin: 5px 0;
}

.left-about-heading {
  width: 50%;
  float: right;
  line-height: 20px;
  clear: both;
  margin-bottom: 50px;
}

.right-about-heading {
  width: 50%;
  float: left;
  line-height: 20px;
  clear: both;
  margin-bottom: 50px;
}

.right-about-heading h2 {
  text-align: right;
}

.right-about-heading p {
  text-align: right;
}

#welcome {
  margin: 20px 0;
  text-align: center;
  font-size: 280%;
}

#circle-container {
  width: 300px;
  height: 300px;
  padding: 30px;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px;
  border-radius: 50%;
  margin: 0 auto;
}

#circle-cover-bg {
  background: url("https://res.cloudinary.com/jimlynx/image/upload/c_scale,e_fill_light:68,h_300,w_300/v1592514618/LIONS/cub1.jpg") no-repeat center center;
  height: 100%;
  border-radius: 50%;
}

#support-heading {
  margin: 20px 0;
  text-align: center;
  font-size: 280%;
}

#support-img {
  background: url("https://res.cloudinary.com/jimlynx/image/upload/v1592513512/LIONS/Untitled_Design_sonyub.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  overflow: hidden;
  display: table;
}

#support-img div {
  color: #fafafa;
  background-color: rgba(0, 0, 0, 0.6);
  width: 18.5%;
  height: 300px;
  /*float: left;*/
  padding: 30px 0px 0px 10px;
  text-align: center;
  display: table-cell;
  vertical-align: bottom;
  border: 1px solid transparent;
  background-clip: padding-box;
}

#support-img h1 {
  color: #d2b48c;
  margin-bottom: 25px;
  padding-top: 15px;
}

#support-img h2 {
  color: #d2b48c;
  margin-bottom: 25px;
  font-size: 100%;
}

#support-img h4 {
  color: #fafafa;
  margin-bottom: 50px;
  padding-top: 1px;
}

.social-networks {
  text-align: center;
}

.social-networks li {
  display: inline;
}

.social-networks i {
  font-size: 160%;
  margin: 1%;
  padding: 5%;
  color: #d2b48c;
  transition: ease-in-out .6s;
}

.social-networks i:hover {
  transform: scale(1.5);
  color: red;
}

#photos {
  clear: both;
  line-height: 2;
  column-count: 4;
  column-gap: 10px;
}

#photos img {
  width: 100%;
}

/* form */

.form-section {
  clear: left;
  background: url("../images/lion-pride-under-tree.jpeg");
  background-size: cover;
  background-position: bottom;
  height: 800px;
}

.signup-form {
  margin-top: 150px;
  color: #fff;
  background-color: rgba(60, 60, 60, 0.6);
  max-width: 400px;
  position: absolute;
  left: 10%;
  padding: 30px;
}

.signup-form h2 {
  color: #fafafa;
  margin-bottom: 20px;
}

.text-input {
  background: transparent;
  color: #fafafa;
  width: 100%;
  height: 25px;
  margin: 5px 0 20px 0;
  border: 1px solid #fafafa;
  border-radius: 2px;
}

.text-input:hover {
  border-color: #f16c6b;
}

.join-button {
  margin-top: 20px;
  border-radius: 2px;
  padding: 15px 32px 15px 32px;
  text-align: center;
  font-size: 100%;
  background-color: #f16c6b;
  color: #fafafa;
  display: block;
}

.join-button:hover {
  background-color: #fafafa;
  color: #f16c6b;
}

/*end form*/

@media screen and (max-width: 1365px) {
  #project-ethos {
    width: 65%;
    height: 1200px;
    margin: 0 auto;
  }

  #welcome {
    padding: 30px 0;
    margin-top: 0;
  }

  #left-about,
  #right-about {
    width: 100%;
    float: left;
    padding: 0;
  }

  #center-about {
    clear: both;
    width: 100%;
    float: left;
    padding: 0;
  }

  #support-img div {
    width: 100%;
    float: left;
    clear: both;
    height: 150px;
    border-style: solid;
    border-bottom-width: 2px;
    border-bottom: #fff;
    padding: 0;
    vertical-align: bottom;
  }

  hr {
    display: none;
  }
}

@media screen and (max-width: 943px) {
  #menu {
    clear: left;
    float: left;
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 25px;
  }

  #cover-text {
    left: 0px;
  }

  #project-ethos {
    width: 90%;
    height: 1200px;
    margin: 0 auto;
  }

  .left-about-heading,
  .right-about-heading {
    width: inherit;
  }

  .left-about-heading h2,
  .right-about-heading h2 {
    width: 100%;
    text-align: center;
  }

  .left-about-heading p,
  .right-about-heading p {
    text-align: center;
    padding: 0 20px 0 20px;
  }

  #photos {
    column-count: 3;
  }

}

  @media screen and (max-width: 800px) {
    #photos {
      column-count: 2;
    }
  }
