.footer-bg{
    background-color: rgb(65 64 66);
}
.social-media-footer{
    display: flex;
    justify-content: end;
}
.social-media-footer-link{
    background-color: rgb(51 51 51);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(153 153 153);
}
.social-media-footer-link:not(:first-child){
    margin-right: 12px;
}
.social-media-footer-link:hover{
    background-color: orange;
    color: white;
    transform: scale(1);
    animation: pulse-black 0.5s infinite;
}
@keyframes pulse-black {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
.main-footer-links{
    display: flex;
    justify-content: space-around;
}
.footer-links-title{
    font-family: "Dubai-Regular",sans-serif;
    color: rgb(255 255 255);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    position: relative;
}
.contact-footer-div,.help-footer-div{
    margin-top: 35px;
}
.contact-footer-flex,.help-footer-flex{
    display: flex;
}
.footer-links-title:after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: rgb(170 48 0);
    position: absolute;
    bottom: -9px;
    /* right: 0; */
    top: 36px;
}
.footer-icon{
    font-size: 14px;
    color: rgb(170 48 0);
}
.footer-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    color: rgb(170 170 170);
    margin-right: 14px;
    /*width: 88%;*/
}
.contact-footer-flex:hover .footer-text,.contact-footer-flex:hover .footer-icon{
    color: white;
}
.help-icon{
    font-size: 12px;
    color: rgb(170 170 170);
}
.help-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(170 170 170);
    margin-right: 14px;
}
.help-footer-flex:hover .help-icon{
    color: white;
}
.help-footer-flex:hover .help-text{
    color: rgb(170 48 0);
}
.footer-input-style,.footer-input-style:focus{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    background-color: white;
    border: 1px solid #aaaaaa;
    border-radius: 5px;
    padding-right: 15px;
    width: 75%;
    height: 45px;
    outline: none;
}
.submit-footer-btn{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: white;
    border-radius: 5px;
    border: 1px solid rgb(0 123 255);
    background-color: rgb(29 70 82);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    height: 45px;
}
.submit-footer-btn:hover{
    background-color: rgb(67 80 110);
}
.copyright-div{
    background-color: rgb(52 50 53);
}
.copyright-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(153 153 153);
}
.copyright-by,.copyright-by:hover{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(226 175 2);
}
@media (max-width: 900px) {
    .footer-text{width: 100%;}
    .main-footer-links{
        display: block;
    }
    .copyright-text{
        font-size: 15px;
        display:block;
    }
    .copyright-by, .copyright-by:hover{font-size: 15px;}
}
