/* 
1. Main CSS
2. Spinner
3. Button
4. Navbar
5. Header carousel
6. Section Title
7. Service
8. Categories & Courses
9. Team
10. Testimonial
11. Articles
*/

/*** 1. Main CSS ***/
:root {
    --primary: #00453D;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 2. Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** 3. Button ***/
.btn {
    font-family: "Optima", sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.btn-wide {
    width: 400px; 
}

.center-container {
    display: flex;
    justify-content: center;
}

/*** 4. Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Optima", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 1.5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: 1.5s;
        opacity: 1;
    }
}

/*** 5. Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: 2s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg); 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
   background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** 6. Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** 7. Service ***/
.service-item {
    background: var(--light);
    transition: 2s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: 2s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/*** 8. Categories & Courses ***/
.category img,
.course-item img {
    transition: 2s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** 9. Team ***/
.team-item img {
    transition: 2s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** 10. Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: 2s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: 2s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Optima", sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ***Articles ***/

.article_title {
    font-size: 24px;
    line-height: 30px;
    color: #222222;
    background: #fff;
    font-weight: 700;
    padding-top: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .article_title:hover {
    color: #a0ab67;
  }
  
  .article_post img {
    max-width: 100%;
  }
  
  .article_post .event_category {
    padding-bottom: 20px;
  }
  
  .article_category li {
    padding-bottom: 8px;
  }
  
  .article_category li i {
    font-weight: 700;
    color: #222222;
  }
  
  .article_info {
    margin-bottom: -44px;
  }
  
  .article_info .article_post {
    margin-bottom: 44px;
  }
  
  .ministries_info .article_post p {
    padding-right: 50px;
    padding-top: 10px;
  }
  
  /*========== event_two ==========*/
  .article_two {
    margin-bottom: -50px;
  }
  
  .article_two .event_post {
    margin-bottom: 50px;
  }
  
  /*============ event_details  ==========*/
  .article_details_area .event_category {
    padding: 0px;
  }
  
  .event_details {
    padding-top: 16px;
  }
  
  .event_details p {
    margin-top: 24px;
    margin-bottom: 0px;
  }

.event_title {
    font-size: 24px;
    line-height: 30px;
    color: #222222;
    background: #fff;
    font-weight: 700;
    padding-top: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .event_title:hover {
    color: #a0ab67;
  }
  
  .event_post img {
    max-width: 100%;
  }
  
  .event_post .event_category {
    padding-bottom: 20px;
  }
  
  .event_category li {
    padding-bottom: 8px;
  }
  
  .event_category li i {
    font-weight: 700;
    color: #222222;
  }
  
  .ministries_info {
    margin-bottom: -44px;
  }
  
  .ministries_info .event_post {
    margin-bottom: 44px;
  }
  
  .ministries_info .event_post p {
    padding-right: 50px;
    padding-top: 10px;
  }
  
  .single-recent-blog-post {
    margin-bottom: 30px;
  }
  
  .single-recent-blog-post .thumb {
    overflow: hidden;
  }
  
  .single-recent-blog-post .thumb img {
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
  }
  
  .single-recent-blog-post .details {
    padding-top: 30px;
  }
  
  .single-recent-blog-post .details .sec_h4 {
    line-height: 24px;
    padding: 10px 0px 13px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .single-recent-blog-post .details .sec_h4:hover {
    color: #a0ab67;
  }
  
  .single-recent-blog-post .date {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
  
  .single-recent-blog-post:hover img {
    -webkit-transform: scale(1.23) rotate(10deg);
    -ms-transform: scale(1.23) rotate(10deg);
    transform: scale(1.23) rotate(10deg);
  }
  
  .tags .tag_btn {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    border: 1px solid #eeeeee;
    display: inline-block;
    padding: 1px 18px;
    text-align: center;
    color: #222222;
  }
  
  .tags .tag_btn:before {
    background: #a0ab67;
  }
  
  .tags .tag_btn + .tag_btn {
    margin-left: 2px;
  }
  
  /*========= blog_category ===========*/
  .blog_categorie_area {
    background: #d8d8d8;
    padding-top: 80px;
  }
  
  .categories_post {
    position: relative;
    text-align: center;
    cursor: pointer;
  }
  
  .categories_post img {
    max-width: 100%;
  }
  
  .categories_post .categories_details {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(34, 34, 34, 0.8);
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .categories_post .categories_details h5 {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
  }
  
  .categories_post .categories_details p {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0px;
  }
  
  .categories_post .categories_details .border_line {
    margin: 10px 0px;
    background: #fff;
  }
  
  .categories_post:hover .categories_details {
    background: rgba(0, 200, 230, 0.85);
  }
  
  /*============ blog_left_sidebar css ==============*/
  .blog_area {
    background: #f9f9ff;
    padding-top: 20px;
  }
  
  .blog_item {
    margin-bottom: 40px;
  }
  
  .blog_info {
    padding-top: 30px;
  }
  
  .blog_info .post_tag {
    padding-bottom: 20px;
  }
  
  .blog_info .post_tag a {
    font: 300 14px/21px "Lato", sans-serif;
    color: #222222;
  }
  
  .blog_info .post_tag a:hover {
    color: #a0ab67;
  }
  
  .blog_info .blog_meta li a {
    font: 300 14px/20px "Lato", sans-serif;
    color: #777777;
    vertical-align: middle;
    padding-bottom: 12px;
    display: inline-block;
  }
  
  .blog_info .blog_meta li a i {
    color: #222222;
    font-size: 16px;
    font-weight: 700;
    padding-left: 15px;
    line-height: 20px;
    vertical-align: middle;
  }
  
  .blog_info .blog_meta li a:hover {
    color: #a0ab67;
  }
  
  .blog_post img {
    max-width: 100%;
  }
  
  .blog_post .view_btn:hover {
    background: #a0ab67;
    color: #fff;
  }
  
  .blog_details {
    padding-top: 20px;
  }
  
  .blog_details h2 {
    font-size: 24px;
    line-height: 36px;
    color: #222222;
    font-weight: 700;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .blog_details h2:hover {
    color: #a0ab67;
  }
  
  .blog_details p {
    margin-bottom: 26px;
  }
  
  .view_btn {
    font-size: 14px;
    line-height: 36px;
    display: inline-block;
    color: #222222;
    font-weight: 500;
    padding: 0px 30px;
    background: #fff;
  }
  
  .blog_right_sidebar {
    border: 1px solid #eeeeee;
    padding: 30px;
  }
  
  .blog_right_sidebar .widget_title {
    font-size: 18px;
    line-height: 25px;
    background: #a0ab67;
    text-align: center;
    color: #fff;
    padding: 8px 0px;
    margin-bottom: 30px;
  }
  
  .blog_right_sidebar .search_widget .input-group .form-control {
    font-size: 14px;
    line-height: 29px;
    border: 0px;
    width: 100%;
    font-weight: 300;
    color: #fff;
    padding-left: 20px;
    border-radius: 45px;
    z-index: 0;
    background: #a0ab67;
  }
  
  .blog_right_sidebar .search_widget .input-group .form-control.placeholder {
    color: #fff;
  }
  
  .blog_right_sidebar .search_widget .input-group .form-control:-moz-placeholder {
    color: #fff;
  }
  
  .blog_right_sidebar .search_widget .input-group .form-control::-moz-placeholder {
    color: #fff;
  }
  
  .blog_right_sidebar .search_widget .input-group .form-control::-webkit-input-placeholder {
    color: #fff;
  }
  
  .blog_right_sidebar .search_widget .input-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .blog_right_sidebar .search_widget .input-group .btn-default {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    color: #fff;
    padding: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .blog_right_sidebar .author_widget {
    text-align: center;
  }
  
  .blog_right_sidebar .author_widget h4 {
    font-size: 18px;
    line-height: 20px;
    color: #222222;
    margin-bottom: 0px;
  }
  
  .blog_right_sidebar .author_widget p {
    margin-bottom: 0px;
  }
  
  .blog_right_sidebar .author_widget .social_icon {
    padding: 7px 0px 15px;
  }
  
  .blog_right_sidebar .author_widget .social_icon a {
    font-size: 14px;
    color: #222222;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  .blog_right_sidebar .author_widget .social_icon a + a {
    margin-left: 20px;
  }
  
  .blog_right_sidebar .author_widget .social_icon a:hover {
    color: #a0ab67;
  }
  
  .blog_right_sidebar .popular_post_widget .post_item .media-body {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    align-self: center;
    padding-left: 20px;
  }
  
  .blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
    font-size: 14px;
    line-height: 20px;
    color: #222222;
    margin-bottom: 4px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .blog_right_sidebar .popular_post_widget .post_item .media-body h3:hover {
    color: #a0ab67;
  }
  
  .blog_right_sidebar .popular_post_widget .post_item .media-body p {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 0px;
  }
  
  .blog_right_sidebar .popular_post_widget .post_item + .post_item {
    margin-top: 20px;
  }
  
  .blog_right_sidebar .post_category_widget .cat-list li {
    border-bottom: 2px dotted #eee;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding-bottom: 12px;
  }
  
  .blog_right_sidebar .post_category_widget .cat-list li a {
    font-size: 14px;
    line-height: 20px;
    color: #777;
  }
  
  .blog_right_sidebar .post_category_widget .cat-list li a p {
    margin-bottom: 0px;
  }
  
  .blog_right_sidebar .post_category_widget .cat-list li + li {
    padding-top: 15px;
  }
  
  .blog_right_sidebar .post_category_widget .cat-list li:hover {
    border-color: #a0ab67;
  }
  
  .blog_right_sidebar .post_category_widget .cat-list li:hover a {
    color: #a0ab67;
  }
  
  .blog_right_sidebar .newsletter_widget {
    text-align: center;
  }
  
  .blog_right_sidebar .newsletter_widget .form-group {
    margin-bottom: 8px;
  }
  
  .blog_right_sidebar .newsletter_widget .input-group-prepend {
    margin-right: -1px;
  }
  
  .blog_right_sidebar .newsletter_widget .input-group-text {
    background: #fff;
    border-radius: 0px;
    vertical-align: top;
    font-size: 12px;
    line-height: 36px;
    padding: 0px 0px 0px 15px;
    border: 1px solid #eeeeee;
    border-right: 0px;
  }
  
  .blog_right_sidebar .newsletter_widget .form-control {
    font-size: 12px;
    line-height: 24px;
    color: #cccccc;
    border: 1px solid #eeeeee;
    border-left: 0px;
  }
  
  .blog_right_sidebar .newsletter_widget .form-control.placeholder {
    color: #cccccc;
  }
  
  .blog_right_sidebar .newsletter_widget .form-control:-moz-placeholder {
    color: #cccccc;
  }
  
  .blog_right_sidebar .newsletter_widget .form-control::-moz-placeholder {
    color: #cccccc;
  }
  
  .blog_right_sidebar .newsletter_widget .form-control::-webkit-input-placeholder {
    color: #cccccc;
  }
  
  .blog_right_sidebar .newsletter_widget .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .blog_right_sidebar .newsletter_widget .bbtns {
    background: #a0ab67;
    color: #fff;
    font-size: 12px;
    line-height: 38px;
    display: inline-block;
    font-weight: 500;
    padding: 0px 24px 0px 24px;
    border-radius: 0;
  }
  
  .blog_right_sidebar .newsletter_widget .text-bottom {
    font-size: 12px;
  }
  
  .blog_right_sidebar .tag_cloud_widget ul li {
    display: inline-block;
  }
  
  .blog_right_sidebar .tag_cloud_widget ul li a {
    display: inline-block;
    border: 1px solid #eee;
    background: #fff;
    padding: 0px 13px;
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #222222;
    font-size: 12px;
  }
  
  .blog_right_sidebar .tag_cloud_widget ul li a:hover {
    background: #a0ab67;
    color: #fff;
  }
  
  .blog_right_sidebar .br {
    width: 100%;
    height: 1px;
    background: #eeeeee;
    margin: 30px 0px;
  }
  
  .blog-pagination {
    padding-top: 25px;
    padding-bottom: 95px;
  }
  
  .blog-pagination .page-link {
    border-radius: 0;
  }
  
  .blog-pagination .page-item {
    border: none;
  }
  
  .page-link {
    background: transparent;
    font-weight: 400;
  }
  
  .blog-pagination .page-item.active .page-link {
    background-color: #a0ab67;
    border-color: transparent;
    color: #fff;
  }
  
  .blog-pagination .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #8a8a8a;
    border: none;
  }
  
  .blog-pagination .page-link .lnr {
    font-weight: 700;
  }
  
  .blog-pagination .page-item:last-child .page-link,
  .blog-pagination .page-item:first-child .page-link {
    border-radius: 0;
  }
  
  .blog-pagination .page-link:hover {
    color: #fff;
    text-decoration: none;
    background-color: #a0ab67;
    border-color: #eee;
  }
  
  /*============ Start Blog Single Styles  =============*/
  .single-post-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .single-post-area .social-links {
    padding-top: 10px;
  }
  
  .single-post-area .social-links li {
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .single-post-area .social-links li a {
    color: #cccccc;
    padding: 7px;
    font-size: 14px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  .single-post-area .social-links li a:hover {
    color: #222222;
  }
  
  .single-post-area .blog_details {
    padding-top: 26px;
  }
  
  .single-post-area .blog_details p {
    margin-bottom: 10px;
  }
  
  .single-post-area .quotes {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 24px 35px 24px 30px;
    background-color: white;
    -webkit-box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
    box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
    font-size: 14px;
    line-height: 24px;
    color: #777;
    font-style: italic;
  }
  
  .single-post-area .arrow {
    position: absolute;
  }
  
  .single-post-area .arrow .lnr {
    font-size: 20px;
    font-weight: 700;
  }
  
  .single-post-area .thumb .overlay-bg {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .single-post-area .navigation-area {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 60px;
  }
  
  .single-post-area .navigation-area p {
    margin-bottom: 0px;
  }
  
  .single-post-area .navigation-area h4 {
    font-size: 18px;
    line-height: 25px;
    color: #222222;
    font-weight: 700;
  }
  
  .single-post-area .navigation-area .nav-left {
    text-align: left;
  }
  
  .single-post-area .navigation-area .nav-left .thumb {
    margin-right: 20px;
    background: #000;
  }
  
  .single-post-area .navigation-area .nav-left .thumb img {
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
  }
  
  .single-post-area .navigation-area .nav-left .lnr {
    margin-left: 20px;
    opacity: 0;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
  }
  
  .single-post-area .navigation-area .nav-left:hover .lnr {
    opacity: 1;
  }
  
  .single-post-area .navigation-area .nav-left:hover .thumb img {
    opacity: .5;
  }
  
  @media (max-width: 767px) {
    .single-post-area .navigation-area .nav-left {
      margin-bottom: 30px;
    }
  }
  
  .single-post-area .navigation-area .nav-right {
    text-align: right;
  }
  
  .single-post-area .navigation-area .nav-right .thumb {
    margin-left: 20px;
    background: #000;
  }
  
  .single-post-area .navigation-area .nav-right .thumb img {
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
  }
  
  .single-post-area .navigation-area .nav-right .lnr {
    margin-right: 20px;
    opacity: 0;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
  }
  
  .single-post-area .navigation-area .nav-right:hover .lnr {
    opacity: 1;
  }
  
  .single-post-area .navigation-area .nav-right:hover .thumb img {
    opacity: .5;
  }
  
  @media (max-width: 991px) {
    .single-post-area .sidebar-widgets {
      padding-bottom: 0px;
    }
  }

  /* FLIP CARD IMAGE */
  .flip-card {
    background-color: transparent;
    width: 100%;
    height: auto;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: black;
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
}

.flip-card img {
    width: 100%;
    height: auto;
}

.container-xxl {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    display: inline-block;
    padding: 5px 15px;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}