footer {
    width: 100%;
    background-color: #000;
    padding-top: 45px;
    padding-bottom: 30px;
}
.subscription-sec {
    margin-bottom: 100px !important;
    width: 90%;
    margin: 0 auto;
}
.newsletter {
    margin: 0 auto 20px;
}
.newsletter-content {
    width: 1020px;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
    color: #fff;
}
.newsletter-content h3 {
    font-size: 36px;
}
.newsletter-p p {
    color: #999999;
    font-size: 16px;
}
.subscription-content {
    width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    display: flex;
}
.subscription-input input {
    width: 100%;
    height: 60px;
    padding-left: 48px;
    padding-right: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    outline: none;
    background: #fff;
	border: 0;
}
.subscription-button {
    border-radius: 30px;
    display: flex;
    align-items: center;
	margin-left: -70px;
    z-index: 9;
}
.subscription-button input {
    font-size: 16px;
    line-height: 58px;
    text-align: center;
    color: #fff;
	border: 0;
    width: 100%;
    cursor: pointer;
   border-radius: 30px;
    outline: none;
    background: #a52228;
}
.subscription-button input:hover {
   
    background:#FF5900;
}
.footer-menu-sec {
    width: 75%;
    margin: 0 auto;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.foot-menu-col ul {
    padding: 0;
}
.foot-menu-col ul li {
    list-style-type: none;
	padding-bottom: 5px;
}
.foot-menu-col ul h4 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 12px;
    color: #fff;
}
.foot-menu-col ul li a {
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0.7;
}
 .foot-menu-col ul li a:hover {
    color: #fff;
    opacity: 1;
}
.social-info-sec {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 20px;
    display: flex;
    width: 90%;
	align-items: center;
    margin: 0 auto;
    
}
ul.social-icons {
    display: inline-flex;
    padding: 0;
	    margin: 0;
}
.social-icons li a {
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    color: #fff;
	display: inline-block;
    margin-right: 10px;
    text-align: center;
    box-sizing: border-box;
}
.social-info {
    display: inline-flex;
	align-items: center;
}
.social-icons li {
    list-style-type: none;
}
.footer-cont-btn {
    display: inline-block;
    margin-left: 50px;
}
.ftr-contact-btn {
    background: #a52228;
    color: #fff;
    border-color: #a52228;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 10px 35px;
    line-height: 1;
    font-size: 16px;
}
.ftr-contact-btn:hover {
    background: #FF5900;
    color: #fff;
    border-color: #FF5900;
}
.footer-logo {
    text-align-last: right;
}
.footer-logo img {
    width: 35%;
    height: -webkit-fill-available;
}
.copyright-sec {
    padding-top: 30px;
    color: rgba(255,255,255,0.8);
    justify-content: space-between;
    display: flex;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
}
#menu-footer-menu {
    display: inline-flex;
    padding: 0;
    margin: 0;
	justify-content: space-between;
    gap: 35px;
}
.copyright-cont p {
    margin: 0;
}
#menu-footer-menu li {
    list-style-type: none;
}
#menu-footer-menu li a:hover {
    color: #ff5900;
}
#back-to-top{
    position: fixed;
    right: 25px;
    bottom: 75px;
    width: 50px;
    height: 50px;
    background: none;
    color: #fff;
    border-radius: 50%;
	border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 9999;
}

#back-to-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover{
    background: #FF5900;
    border: none;
}