
/* footer css start */
.as_newsletter_wrapper{
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.as_newsletter_box{
    position:relative;
}

/* ===== NEWSLETTER INPUT FIX ===== */

.as_newsletter_box input{
    background: #f1f1f1 !important;   /* light gray */
    border: 1px solid #ddd;
    color: #333 !important;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    outline: none;
}

/* placeholder */
.as_newsletter_box input::placeholder{
    color: #888;
}

/* focus state */
.as_newsletter_box input:focus{
    background: #f1f1f1 !important;   /* SAME light gray */
    border-color: #ff7010;            /* orange highlight */
    box-shadow: 0 0 0 2px rgba(255,112,16,0.15);
}

/* wrapper alignment fix */
.as_newsletter_box{
    display: flex;
    align-items: center;
}

.as_newsletter_box .form-control {
    border-radius: 0px;
    height: 60px;
}
.as_newsletter_wrapper .row {
    align-items: center;
}
.as_newsletter_box:after,.as_newsletter_box:before{
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 17px solid var(--dark-color2);
	display:none
}
.as_newsletter_box:after{
    right:100%;
    left:auto;
    border-left: none;
    border-right: 17px solid var(--dark-color2);
}
.as_newsletter_box .as_btn{
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    z-index: 1;
}
.as_footer_inner {
    display: flex;
}
.as_footer_widget{
    margin-top: 30px;
}
.as_footer_widget>p {
    margin: 18px 0 20px;
}
.as_footer_widget > ul > li:hover {
    color: var(--secondary-color);
}
.as_footer_widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.as_footer_widget > ul > li {
    padding-bottom: 10px;
    position: relative;
    font-size: 14px;
}
.as_footer_widget>ul>li span svg {
    fill:#ffffff;
    margin-right: 10px;
}
.as_footer_widget>ul>li:hover span svg path{
    fill:var(--secondary-color);
}
.as_footer_widget>ul>li:hover span{
    transition: none;
}
.as_footer_heading {
    font-size: 22px;
    line-height: 60px;
    margin: 0;
    position: relative;
     margin-bottom: 22px;
}

.as_footer_heading:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 92px;
    height: 2px;
    background-color: var(--secondary-color);
}
.as_footer_widget .as_contact_list li {
    padding-left: 0;
    display: flex;
    align-items: baseline;
}

.as_footer_widget .as_contact_list li:before {
    display: none;
}

.as_footer_widget .as_contact_list li img {
    margin: 0 15px 0 0;
    transform: translateY(3px);
}

.as_footer_widget .as_contact_list li p {
    margin: 0;
}
.as_share_box ul li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0c2d43;
    border-radius: 100%;
}
.as_share_box ul li a:hover{
    background-color: var(--secondary-color);
}
.as_share_box ul li {
    display: inline-flex;
    margin-right: 5px;
}
.as_copyright_wrapper {
    background-color: #07273c;
    padding:13px 0 5px
}
