.wrapper {
  padding: 100px;
}

.image--cover {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px; 
  border: 3px solid #f2c007;
  object-fit: cover;
  object-position: center right;
}
.image--cover1 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px; 
  border: 3px solid #962F2F;
  object-fit: cover;
  object-position: center right;
}
.image--cover2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px; 
  border: 3px solid #3C4988;
  object-fit: cover;
  object-position: center right;
}
.square {
  height: 495px;
  width: 250px;
  border:3px solid #962F2F;
  color:#3884c7;
}
.square1 {
  height: 617px;
  width: 250px;
  border:3px solid #3C4988;
  color:#3884c7;
}
.square3 {
  height: 385px;
  width: 250px;
  border:3px solid #f2c007;
  color:#3884c7;
}
.card {
         background: #fff;
         color: #333;
         margin: 4rem auto;
         width: 90%;
         max-width: 1200px;
         min-height: 30rem;
         border-radius: 2rem;
         }
         .hero {
         display: flex;
         justify-content: center;
         transform: translateY(-55%);
         }
         .hero .img {
         filter: drop-shadow(0rem 1.5rem rgba(0,0,0,0.1));
         transition: 0.3s ease-out;
         }
         .card:hover .img {
         filter: drop-shadow(0rem 2.5rem rgba(0,0,0,0.1));
         }
         .title {
         text-align: center;
         font-size: 5rem;
         padding: 1rem;
         }
         .acc-container {
         padding: 4rem 2rem;
         }
         .acc-btn {
         width: 100%;
         padding: 1.6rem 2rem;
         font-size:14px;
         cursor: pointer;
         background: inherit;
         border: none;
         outline: none;
         text-align: left;
         transition: all 0.5s linear;
         color:#fa8d0c;
         font-weight: 700;
         }
         .acc-btn:after {
         content: "\27A4";
         color: #fa8d0c;
         float: right;
         transition: all 0.3s linear;
         }
         .acc-btn.is-open:after {
         transform: rotate(90deg);
         }
         .acc-btn:hover, .acc-btn.is-open {
         color: #000;
         font-weight: bold;
         }
         .acc-content {
         max-height: 0;
         color: rgba(0,0,0,0.75);
         font-size: 14px;
         margin: 0 2rem;
         padding-left: 1rem;
         overflow: hidden;
         transition: max-height 0.3s ease-in-out;
         border-bottom: 1px solid #ccc;
         }
         .credit {
         text-align: center;
         padding: 1rem;
         }
         .credit a {
         text-decoration: wavy underline;
         color: dodgerblue;
         }
         }