/* footer_wrap
============================================== */
.footer_inner2 {
    border-top: 1px solid #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #297fdf;
}
.footer_contents {
    max-width: 1300px;
    margin-inline: auto;
}
.footer_contents + .footer_contents {
    margin-top: 60px;
}
#footer h3.footer_wrap_title-top {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}
#footer h4.footer_wrap_title {
    text-align: left;
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.footer_wrap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}
.footer_item {
    display: block;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #a8d5e3;
    color: #fff !important;
    transition: all .5s ease-out;
}
#footer h5.footer_item_title {
    color: #fff;
    font-size: 16px;
    text-align: left;
    transition: all .5s ease-out;
}
#footer p.footer_item_text {
    margin-top: 10px;
    color: #8fd1e5;
    font-size: 13px;
    text-align: left;
    transition: all .5s ease-out;
}
.footer_item_img {
    width: 50%;
}
.footer_item_img img {
    width: 100%;
}
.footer_item_body {
    width: 48%;
}
.footer_item_btn {
    position: relative;
    margin-top: 10px;
    margin-left: auto;
    max-width: 120px;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    padding: 6px 4px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: all .5s ease-out;
}
.footer_item_btn:after {
    font-family: 'themify';
    content: "\e649";
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 6px;
    z-index: 1;
    line-height: 26px;
    transition: all 0.3s;
}
.footer_item:hover {
    background-color: #fff;
}
.footer_item:hover .footer_item_title {
    color: #000 !important;
}
.footer_item:hover .footer_item_text {
    color: #000 !important;
}
.footer_item:hover .footer_item_btn {
    color: #000;
    border: 1px solid #000;
}

@media only screen and (max-width:1024px) {
    .footer_wrap {
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width:768px) {
    .footer_inner2 {
        padding: 60px 5% 70px;
    }
    .footer_wrap {
        grid-template-columns: repeat(1,1fr);
    }
    #footer h3.footer_item_title {
        font-size: 14px;
    }
    #footer p.footer_item_text {
        margin-top: 6px;
        font-size: 12px;
    }
    .footer_item_img {
        width: 50%;
    }
    .footer_item_body {
        width: 48%;
    }
    .footer_item_btn {
        margin-top: 10px;
        font-size: 12px;
        padding: 6px 4px;
    }
    .footer_item_btn:after {
        font-size: 10px;
        right: 6px;
        line-height: 26px;
    }
}