.footer{
   margin-top: 20px;
}
.footer-info{
   display:flex;
   flex-direction: column;
   text-align: justify;
   gap:10px;
   color :rgb(235, 235, 235);
   margin-bottom: 30px;
}
.footer-info h4{
   color :rgb(235, 235, 235);
   margin:0 0 10px 0;
}
.footer-info p{
   line-height: 1.75em;
   
}
.footer-info img{
   width:100%;
   max-width: 250px;
}

.footer-info input{
   outline: none;
   border: 1px rgb(235, 235, 235) solid;
   background-color: transparent;
   border-radius: 30px !important;
   padding:5px 15px;
   transition: .15s all ease-in;
}
.footer-info input:focus{
   outline: none;
   border: 1px #FF7900 solid;
   background-color: transparent;
   /* border-radius: 30px !important; */
   padding:5px 15px;
   transition: .15s all ease-in;
}
#footer{
   text-align: left !important;
}
.footer-socials{
   display:flex;
   flex-direction: row;
}
.footer-socials .social-icon-ar{
   margin-bottom: 0;
   background-image: none !important;
   background-color: rgb(235, 235, 235) !important;
   transition: .15s all ease-in;
}
.footer-socials a:hover.social-icon-ar{
   opacity: 0.8;
   transform: scale(0.95);
   transition: .15s all ease-in;
}
.footer-socials a{
   display:flex;
   justify-content: center;
   align-items: center;
   height: 30px;
   width: 30px;
}
.footer-socials a i{
   padding: 0 !important;
   font-size: 20px;
   color:#2d353c;
}
.footer-info .button{
   background:#FF7900;
   color:white;
}
.footer .footer-twoRow{
   display:flex;
   flex-direction: row;
   align-items: center;
}

.footer-info .fa-spinner{
   display:none;
   animation: infinite 1s newsLetter-spinner linear;
}
.footer-info #newsletter-feedback{
   display:none;
}

.custom-paragraph {
   color: rgb(235, 235, 235);
   font-size: 20px;
}

.icon-custom {
   color: white;
   font-size: 24px;
   margin-right: 10px;
}

.custom-paragraph {
   color: rgb(235, 235, 235);
   font-size: 20px;
}

@keyframes newsLetter-spinner {
   from{
      transform: rotate(0);
   }
   to{
      transform: rotate(360deg);
   }
}