.footer {
   margin-top: 200px;
}

.footer-flex {
   display: flex;
   flex-wrap: wrap-reverse;
   gap: 25px
}

.footer-slider {
   flex: 1 1 300px;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 300px;
}

.footer-form {
   flex: 1 1 400px;
   background: #fff;
   padding: 40px;
   border-radius: 10px;
   width: 100%;
   text-align: center;
}

.footer-title {
   font-family: "Montserrat";
   font-size: 40px;
   color: #222;
   text-align: left;
   font-weight: 1000;
   max-width: 500px;
}

.footer-label {
   font-size: 20px;
   font-family: "Montserrat";
   display: block;
   text-align: left;
   margin-top: 25px;
   color: #3E3188;
}

.footer-input,
.footer-where {
   width: 100%;
   padding: 15px;
   margin-top: 5px;
   border: 2px solid #3E3188;
   outline: 0;
   font-size: 20px;
   border-radius: 5px;
   transition: 0.2s;
}

.footer-input::placeholder {
   color: #8c7fd7
}

.footer-input:focus {
   border: 2px solid #000;
   color: #000;
}

.footer-input:focus::placeholder {
   color: #000;
   transition: 0.2s;
}


.footer-send {
   margin-top: 20px;
}

.slider-img {
   max-width: 200px;
   animation: pulse 1.3s infinite;
}

.footer-links {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 50px;
   padding-bottom: 100px;
}

.footer-item {}

.footer-link {
   margin-top: 0;
   text-decoration: none;
   color: #fff;
   font-family: "Montserrat";
   font-size: 16px;
}

@keyframes pulse {
   0% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.2);
   }

   100% {
      transform: scale(1);
   }

}