.section-1 {
   background-color: #F8F9FA;
   padding: 5rem 0 2.5rem;
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
}
.section-1 .container {
   position: relative;
   height: fit-content;
}
.section-1 .headlines {
   position: relative;
   z-index: 1;
   text-shadow: 0px 0px 5px #fff;
}
.section-1 .headlines h1 {
   font-family: 'Sora';
   font-weight: 700;
   font-size: 3rem;
   padding: 5px;
   line-height: 1.2;
   text-align: center;
   color: #01579b;
   max-width: 576px;
   margin: auto;
}
.section-1 .headlines h2 {
   max-width: 576px;
   margin: 1.5rem auto 0;
   font-family: 'Sora';
   font-weight: 500;
   font-size: 1.2rem;
   line-height: 1.5;
   padding: 10px 20px;
   text-align: center;
}
.section-1 .headlines span {
   color: #01579b;
   font-weight: 500;
}
.section-1 .call-to-action {
   text-align: center;
   margin: 3.5rem auto;
}
.section-1 .call-to-action button {
   font-family: 'Inter';
   font-size: 1.2rem;
   font-weight: 500;
   cursor: pointer;
   display: block;
   width: 250px;
   margin: 5rem auto 1.5rem;
   background-color: #22c55e;
   color: #fff;
   border: 1px solid #ccc;
   border-radius: 5px;
   padding: 18px 30px;
   transition: all 0.3s ease;
}
.section-1 .call-to-action button:hover {
   background-color: #eee;
   color: #000;
   border-color: #aaa;
}
.section-1 .call-to-action button:active {
   background-color: #ddd;
   transform: scale(0.98);
}
.section-1 .images {
   width: 45%;
   height: 30%;
   position: absolute;
   top: 3rem;
   right: -5rem;
   display: none;
   perspective: 800px;
   z-index: 0;
   opacity: 0.8;
}
.images img {
   width: 100%;
   height: auto;
}
.images .image-1 {
   display: none;
   transform: rotateY(-25deg) rotateX(-2deg);
   position: absolute;
}
.images .image-2 {
   display: none;
   transform: rotateY(-25deg) rotateX(-2deg);
   position: absolute;
   margin: 40px -60px;
}
.images .image-3 {
   display: none;
   transform: rotateY(-25deg) rotateX(-2deg);
   position: absolute;
   margin: 80px -120px;
}


/****** MEDIA QUERIES ******/

@media(min-width: 768px) {
   .section-1 {
      padding-top: 4rem;
      display: block;
      min-height: 750px;
   }
   .section-1 .headlines h1 {
      text-align: left;
      margin-left: 2rem;
      max-width: 500px;
      font-size: 2.3rem;
   }
   .section-1 .headlines h2 {
      text-align: left;
      margin-left: 2rem;
      padding-left: 5px;
      max-width: 400px;
      font-size: 1rem;
   }
   .images .image-1,
   .images .image-2,
   .images .image-3 {
      display: block;
   }
   .section-1 .call-to-action {
      margin-top: 2rem;
   }
   .section-1 .call-to-action button {
      margin-left: 2rem;
      margin-top: 2rem;
   }
   .section-1 .images {
      display: initial;
   }
}

@media(min-width: 992px) {
   .section-1 {
      padding-top: 5rem;
   }
   .section-1 .headlines h1 {
      margin-left: 4rem;
      font-size: 3rem;
   }
   .section-1 .headlines h2 {
      margin-left: 4rem;
      font-size: 1.2rem;
   }
   .section-1 .call-to-action {
      margin-left: 2rem;
   }
   .section-1 .images {
      right: -1.7rem;
   }
}

@media(min-width: 1200px) {
   .section-1 .container {
      height: 100vh;
      max-height: 750px;
      width: 1220px;
      margin: 0 auto;
   }
   .section-1 .images {
      right: 3rem;
   }
}