footer {
    position: relative;
    display: block;
    width: 100%;
    background-color: #e69a05;
    background: linear-gradient(to bottom, #d76900 0%, #e69a05 100%);
}

footer section {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 75px;
    padding-right: 75px;
}

footer .main_footer {
    padding-top: 50px;
    padding-bottom: 50px;
}

footer .main_footer h4 {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

footer .main_footer ul.footer_links {
    position: relative;
    display: block;
    width: 100%;
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

footer .main_footer ul.footer_links li {
    position: relative;
    display: block;
    width: 100%;
}

footer .main_footer ul.footer_links li+li {
    margin-top: 5px;
}

footer .main_footer ul.footer_links li a,
footer .main_footer ul.footer_links li a i {
    position: relative;
    width: auto;
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
}

footer .main_footer ul.footer_links li a {
    display: block;
    transition: 0.3s transform;
}

footer .main_footer ul.footer_links li a i {
    margin-right: 3px;
}

footer .main_footer ul.footer_links li a:hover,
footer .main_footer ul.footer_links li a:hover i {
    color: #b03600;
}

footer .main_footer ul.footer_links li a:hover {
    font-weight: 500;
    transform: translateX(3px);
    transition: 0.3s transform;
}

footer .main_footer .news_letter .subscribe {
    position: relative;
    display: block;
    width: 100%;
    padding: 7.5px;
    border: 1px solid #ffffff25;
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgb(31 27 45 / 8%), 0 0.25rem 0.75rem rgb(31 27 45 / 8%);
    border-radius: 25px;
}

footer .main_footer .news_letter .subscribe form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

footer .main_footer .news_letter .subscribe form input {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 10px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
}

footer .main_footer .news_letter .subscribe form input::placeholder {
    color: #ffffff50;
}

footer .main_footer .news_letter .subscribe form i {
    position: relative;
    display: block;
    width: auto;
    margin-left: 10px;
    color: #ffffff;
}

footer .main_footer .news_letter .subscribe form button {
    border-radius: 20px;
    padding: 0;
    min-width: 100px;
    font-size: 13px;
}

footer .sub_footer {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ffffff75;
}

footer .sub_footer .flex {
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

footer .sub_footer p {
    position: relative;
    display: block;
    width: auto;
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.3;
}

footer .sub_footer p a {
    position: relative;
    display: inline-block;
    width: auto;
    color: inherit;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.3;
}

footer .sub_footer ul.social_links {
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .sub_footer ul.social_links li {
    position: relative;
    display: block;
    width: 100%;
}

footer .sub_footer ul.social_links li+li {
    margin-left: 15px;
}

footer .sub_footer ul.social_links li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff25;
    text-align: center;
}

footer .sub_footer ul.social_links li a i {
    position: relative;
    display: block;
    width: auto;
    color: #fff;
    font-size: 13px;
    line-height: 30px;
}

footer .sub_footer ul.social_links li a:hover {
    background: #fff;
}

footer .sub_footer ul.social_links li a:hover i {
    color: #e69a05;
}

@media (max-width: 1000px) {
    footer .main_footer>.flex {
        flex-direction: column;
    }
    footer .main_footer>.flex>.flex {
        flex-wrap: wrap;
    }
    footer .main_footer>.flex>.flex>div+div {
        margin-top: 25px;
    }
}

@media (max-width: 800px) {
    footer section {
        padding-left: 15px;
        padding-right: 15px;
    }
    footer .main_footer>.flex {
        flex-wrap: wrap;
    }
    footer .main_footer>.flex>div+div {
        margin-top: 35px;
    }
}

@media (max-width: 600px) {
    footer .sub_footer .flex {
        flex-direction: column;
    }
    footer .sub_footer p {
        margin-bottom: 15px;
    }
}