.container {
  max-width: 1400px;
  margin: 0 auto;
}

.card-grid{
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr 1fr;
}

.embed{
  width: 100%;
  aspect-ratio: 1/1;
}
.grid {
  display: grid;
  grid-gap: 64px;}
  
.grid-2-col{
  grid-template-columns: 1fr 1fr;
}

.grid-3-col-uneven {
  grid-template-columns: 1fr 2fr 2fr;
}

.grid-3-col{
  grid-template-columns: 1fr 1fr 1fr;
}
  

body {
  font-family: "Poppins", sans-serif;
  background: #3a4852;
}
header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/sunset-kw.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 260px 0;
  color: white;
  text-align: center;
}

header h3 {
  letter-spacing: 5px;
  padding-top: 80px;

  font-style: normal;
  font-weight: 400;
  margin: 0;
}
header h1 {
  font-weight: 600;
  font-size: 96px;
  line-height: 1.5;
  margin: 0;
}
header h2 {
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5px;
  display: inline-block;
  margin-top: 30px;
  color: black;
  padding: 16px 32px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  background: white;
}



main{
  background-color: white;
  
}
main img {
  max-width: 500px;

}

main h3{
  font-weight:700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 5px;
  color: #272044;
  opacity: 0.3;
  margin: 0;

}

main h2 {
  font-weight:700;
  font-size:40px;
  line-height: 1.5;
  margin: 0;
}

main h4{
  font-weight: 700;
  font-size:24px;
  margin: 0;
  color: #272044;
}

main h5{
  font-weight: 700;
  font-size:13px;
  line-height: 1.5;
  color: #272044;
}

.img-responsive{
  width: 100%;
  display: block;
}

.joe-img{
  max-height: 237px;
}


main p{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #272044;
  opacity: 0.7;
}

section {
  padding: 100px;
  margin: 0 auto;
  
}

.secondary-section{
  background: #f8f8f8;
}

.text-center{
  text-align:center;
}
.card{
  background-color: white;
  margin: 30px 0;}
  
.card-body{
  padding: 20px;
}

.instagram-embeds{
  margin: 30px;
}
.bumper{
  padding-bottom: 30px;
}
  

.btn{
  display:block;
  color: white;
  background: #462CB3;
  font-weight: 700;
  font-size: 14px;
  line-height:1.5;
  text-align: center;
  text-transform: uppercase;
  padding: 16px;
  
  text-decoration:none;
}


footer {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/palms.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px;
  color: white;
}



footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  
}

footer p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.6);
  
}

footer ul {
  padding: 0;
}
footer li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
}
footer a {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 960px) {
  header {
    padding: 60px 0;
  }

  header h3 {
    padding-top: 0;
    font-size: 12px;
  }
  header h1 {
    font-size: 46px;
  }
  header h2 {
    font-size: 20px;
  }

  

  

  main h3{
    font-size:10px;
  }

  main h2 {
    font-size: 20px;
  }

  main p{
    font-size:12px;
  }
 

  footer{
    padding: 30px;
  }
  .grid{
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  section{
    padding: 30px;
  }

  footer h3{
    font-size: 20px;
    margin: 0px;
  }
  footer p{
    font-size: 12px;
    line-height: 15px
  }
  

  footer li{
    font-size: 12px;
  }
  .card-header img{
    display:none;
  }
  .embed{
    aspect-ratio: 16/9;
    
  }
  .bumper{
    padding-bottom:20px;
  }
}

