:root {
    --theme-color: #D82227;
    --title-color: #1B1B1B;
    --body-color: #74787C;
    --smoke-color: #F7F7F7;
    --black-color: #000000;
    --white-color: #ffffff;
    --light-color: #B0B0B0;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #f2f2f2;
    --title-font: 'Radio Canada', sans-serif;
    --body-font: 'Inter', sans-serif;
    --icon-font: "FontAwesome";
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s
}



.widget {
    padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 30px);
    background-color: var(--smoke-color);
    margin-bottom: 40px;
    position: relative
}

.widget_title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    text-transform: uppercase;
    margin: -0.07em 0 29px 0
}


.footer-widget .widget_title {
    position: relative;
    border: none;
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    line-height: 1;
    border-bottom: 0;
    padding: 0 0 15px 0;
    margin: 0 0 35px 0;
    max-width: 275px
}

.footer-widget .widget_title:before,.footer-widget .widget_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background-color: var(--theme-color)
}

.footer-widget .widget_title:after {
    width: 16px;
    border: 3px solid var(--title-color);
    height: 10px;
    background-color: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite
}


.footer-widget {
    margin-bottom: 40px
}

.footer-widget,.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent
}


.footer-widget.widget_meta ul,.footer-widget.widget_pages ul,.footer-widget.widget_archive ul,.footer-widget.widget_categories ul,.footer-widget.widget_nav_menu ul {
    margin-top: -4px
}

.footer-widget.widget_meta .menu,.footer-widget.widget_meta>ul,.footer-widget.widget_pages .menu,.footer-widget.widget_pages>ul,.footer-widget.widget_archive .menu,.footer-widget.widget_archive>ul,.footer-widget.widget_categories .menu,.footer-widget.widget_categories>ul,.footer-widget.widget_nav_menu .menu,.footer-widget.widget_nav_menu>ul {
    margin-bottom: -4px
}

.footer-widget.widget_meta a,.footer-widget.widget_pages a,.footer-widget.widget_archive a,.footer-widget.widget_categories a,.footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 400;
    /* padding: 0 0 0 28px; */
    margin-bottom: 22px;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    position: relative;
    border-bottom: none
}

.footer-widget.widget_meta a:before,.footer-widget.widget_pages a:before,.footer-widget.widget_archive a:before,.footer-widget.widget_categories a:before,.footer-widget.widget_nav_menu a:before {
    content: "\f061";
    font-weight: 900;
    left: 0;
    top: 0;
    color: inherit
}

.footer-widget.widget_meta a:hover,.footer-widget.widget_pages a:hover,.footer-widget.widget_archive a:hover,.footer-widget.widget_categories a:hover,.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--theme-color)
}

.footer-widget.widget_meta a:hover:before,.footer-widget.widget_pages a:hover:before,.footer-widget.widget_archive a:hover:before,.footer-widget.widget_categories a:hover:before,.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color)
}

.footer-widget.widget_meta li>span,.footer-widget.widget_pages li>span,.footer-widget.widget_archive li>span,.footer-widget.widget_categories li>span,.footer-widget.widget_nav_menu li>span {
    width: auto;
    height: auto;
    position: relative;
    background-color: transparent;
    color: var(--body-color);
    line-height: 1
}

.footer-widget.widget_meta li:last-child a,.footer-widget.widget_pages li:last-child a,.footer-widget.widget_archive li:last-child a,.footer-widget.widget_categories li:last-child a,.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0
}

.footer-widget .recent-post {
    max-width: 280px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2B2F3A
}

.footer-widget .recent-post .media-img {
    margin-right: 20px;
    max-height: 70px;
}

.footer-widget .recent-post .post-title {
    color: var(--white-color)
}

.footer-widget .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.footer-widget .footer-logo {
    margin-bottom: 15px
}


.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}


.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 18px
}

.recent-post:last-child {
    margin-bottom: 0
}

.recent-post .media-img {
    position: relative;
    margin-right: 15px;
    max-width: 95px;
    border-radius: 10px;
    overflow: hidden
}

.recent-post .media-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.recent-post .media-img:after {
    content: "\f0c1";
    font-family: var(--icon-font);
    position: absolute;
    inset: 0;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    background-color: rgba(0,0,0,0.7);
    color: var(--theme-color);
    pointer-events: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}


.recent-post .post-title a:hover , .recent-post-meta a:hover{
    color: var(--theme-color);
}
.recent-post .post-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 -0.1em 0;
    font-family: var(--title-font);
    text-transform: capitalize;
    margin-bottom: 5px
}

.recent-post .line-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px
}

.recent-post .line-btn:hover {
    color: var(--white-color)
}

.recent-post .line-btn:before {
    display: none
}

.recent-post .recent-post-meta {
    margin-top: -0.4em;
    margin-bottom: 0px
}

.recent-post .recent-post-meta a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: var(--body-color)
}

.recent-post .recent-post-meta a i {
    color: var(--theme-color);
    margin-right: 8px
}

.recent-post:hover .media-img:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}


.th-widget-about {
    max-width: 290px
}

.footer-text {
    margin-bottom: 30px;
    margin-top: -0.5em
}

.footer-info-title {
    font-size: 14px;
    font-family: var(--title-font);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 7px;
    margin-top: -0.2em
}

.footer-info {
    position: relative;
    margin: 0 0 25px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0 0 35px;
    max-width: 300px
}

.footer-info:last-child {
    margin-bottom: 0
}

.footer-info i {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: var(--theme-color);
    /* color: var(--title-color); */
    position: absolute;
    left: 0;
    font-size: 10px
}

.footer-info:nth-child(2) i {
    background-color: var(--theme-color)
}

.footer-info:nth-child(3) i {
    background-color: var(--title-color)
}

@media (max-width: 1199px) {
    .recent-post .post-title {
        font-size:16px;
        line-height: 22px
    }
}

.footer-info a:hover {
    color: var(--theme-color) !important;
}

.recent-post .line-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--theme-color);
    text-transform: uppercase;
}

.recent-post .line-btn:hover {
    color: var(--white-color)
}

.recent-post .line-btn:before {
    display: none
}

.recent-post .line-btn i {
    margin-left: 5px;
}