/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: "Cairo";
    src: url('../../fonts/cairo/Cairo-Regular.ttf');
}

@font-face {
    font-family: "Changa";
    src: url('../../fonts/changa/Changa-Regular.ttf');
}

:root {
    --theme-color: #196164;
    --theme-color2: #5bc198;
    --title-color: #19352D;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --blue-color: #5156be;
    --body-font: 'Cairo';
    --icon-font: "Font Awesome 5 Free";
}

body {
    font-family: var(--body-font), sans-serif;
    font-size: 16px;
}

a {
    color: var(--theme-color);
    transition: all ease 0.4s;
}

a:hover {
    color: var(--title-color);
}

img {
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    max-width: 100%;
}

.background-1 {
    background-image: url(../../images/background/events-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-2 {
    background-size: cover;
    background: url(../../images/background/choose_bg.jpg) no-repeat center center;
}

.background-3 {
    background: url(../../images/background/counter_bg.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.background-4 {
    background-color: var(--theme-color);
}

.textTopic {
    color: var(--theme-color);
}

.parallax {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* Columns With No Gutters
-------------------------------------------------------*/
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    width: 100%;
    height: 100%;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-wrapper .mobile-logo {
    padding: 0 30px 0 0;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    background-color: #F6F6F7;
    border-bottom: 1px solid var(--theme-color);
}

.mobile-menu-wrapper .menu-toggle {
    border: 0;
    border-right: 1px solid var(--theme-color);
    left: -16.5px;
    top: 25px;
    padding: 20px 30px 20px 30px;
    line-height: 36px;
    font-size: 18px;
    z-index: 1;
    color: var(--theme-color);
    background-color: transparent;
    border-radius: 0;
}

.mobile-menu-wrapper .menu-toggle:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.mobile-menu-wrapper .mobile-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    height: 100%;
    position: relative;
    right: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
}

.mobile-menu-wrapper.body-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper.body-visible .mobile-menu-area {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 20px;
    text-align: right;
}

.mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

.mobile-menu ul li a {
    display: block;
    position: relative;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding: 12px 0 12px 0;
}

.mobile-menu ul li.active-class > a {
    color: var(--theme-color);
}

.mobile-menu ul li.active-class > a:before {
    transform: rotate(90deg);
}

.mobile-menu ul li ul li {
    padding-right: 20px;
}

.mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul .submenu-item-has-children > a .mean-expand-class {
    position: absolute;
    left: 0;
    top: 50%;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    height: 100%;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: end;
    background-color: transparent;
    color: var(--title-color);
    box-shadow: none;
    border-radius: 0;
}

.mobile-menu ul .submenu-item-has-children > a .mean-expand-class:before {
    content: "\f104";
    font-family: var(--icon-font);
    font-weight: 700;
}

.mobile-menu ul .submenu-item-has-children.active-class > a .mean-expand-class:before {
    content: "\f107";
}

.mobile-menu > ul {
    padding: 0 30px;
}

.mobile-menu > ul > li:last-child {
    border-bottom: none;
}

@media (max-width: 400px) {
    .mobile-menu-wrapper .mobile-menu-area {
        width: 100%;
        max-width: 270px;
    }

    .mobile-menu > ul {
        padding: 0 20px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.nav-header {
    position: relative;
    z-index: 41;
}

.sticky-wrapper {
    transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
    animation: stickyAni 0.4s ease-in-out;
}

@keyframes stickyAni {
    0% {
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

.sticky-wrapper.sticky {
    background-color: var(--theme-color);
}

.sticky-wrapper.sticky {
    background: url(../../images/background/counter_bg.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.sticky .main-menu > ul > li > a {
    color: var(--white-color);
}

.sticky .main-menu > ul > li > a:hover {
    color: var(--white-color);
}

.sticky .main-menu ul li.menu-item-has-children > a:after {
    color: var(--white-color);
}

.sticky .main-menu ul li.menu-item-has-children > .sub-menu > .menu-item-has-children a:after {
    color: var(--theme-color);
}

.sticky .social-links a {
    background-color: var(--white-color);
    color: var(--theme-color);
}

.sticky .social-links a:hover {
    color: var(--white-color);
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 16px;
}

.main-menu > ul > li {
    margin: 0 10px;
}

.main-menu > ul > li > a {
    padding: 25px 0;
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children > a:after {
    content: "\f107";
    position: relative;
    font-family: var(--icon-font), sans-serif;
    margin-right: 5px;
    font-weight: 600;
    top: 0;
    font-size: 16px;
    display: inline-block;
    transition: 0.4s;
    transform: rotate(0deg);
    color: var(--theme-color);
}

.main-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 190px;
    width: max-content;
    opacity: 0;
    z-index: -1;
    border: 0;
    box-shadow: 0 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.4s ease 0s;
    padding: 18px 15px 18px 15px;
    right: 0;
}

.main-menu ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul.sub-menu a {
    line-height: 30px;
}

.main-menu ul.sub-menu li {
    display: block;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
    content: "\f104";
    float: left;
}

.main-menu ul.sub-menu li a {
    padding-right: 20px;
}

.main-menu ul.sub-menu li a:before {
    content: "\f104";
    position: absolute;
    top: 8px;
    right: 10px;
    font-family: var(--icon-font), sans-serif;
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: var(--theme-color);
    font-weight: 700;
    opacity: 0;
    transition: 0.4s;
}

.main-menu ul.sub-menu li ul.sub-menu {
    right: 100%;
    left: auto;
    top: 0;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
    right: 100%;
    left: auto;
}

/****header-top*****/
.main-menu ul li.menu-item-has-children:hover > a:after {
    transform: rotate(180deg);
}

.main-menu ul.sub-menu a span {
    font-size: 12px;
    margin-right: 4px;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 2px 5px;
    border-radius: 4px;
    position: relative;
    top: -1px;
}

.main-menu ul.sub-menu li.menu-item-has-children:hover > a:after {
    opacity: 0;
    margin-left: 20px;
}

.main-menu ul.sub-menu li a:hover {
    padding-right: 15px;
}

.main-menu ul.sub-menu li a:hover:before {
    opacity: 1;
    right: 0;
}

.social-links {
    position: relative;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    line-height: normal;
}

.social-links a {
    display: inline-block;
    color: #7A7A7A;
    margin: 0;
    width: 33px;
    height: 33px;
    line-height: 35px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    background-color: #EBF3EE;
    transition: all 0.4s ease-in-out;
}

.social-links a:last-child {
    margin-left: 0;
}

.social-links a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.header-logo {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Header 1 ---------------------------------- */
.header-layout1 .header-wrapper {
    display: flex;
    gap: 40px;
}

@media (max-width: 1399px) {
    .header-layout1 .header-wrapper {
        gap: 15px;
    }
}

/* Medium devices */
@media (max-width: 991px) {
    .header-layout1 .sticky-wrapper {
        padding: 0 20px 0;
    }

    .header-layout1 .sticky-wrapper.sticky {
        top: 0;
    }

    .header-layout1 .social-links {
        padding-right: 20px;
        padding-left: 20px;
    }

    .header-layout1 .social-links:after {
        left: 0;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .header-layout1 .sticky-wrapper {
        padding: 0;
    }
}

/* Menu toggle bars */
.icon-btn {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    border-radius: 6px;
    border: none;
    transition: 0.4s ease-in-out;
}

.icon-btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

/*--------------------------------------------------------------
# Header1
--------------------------------------------------------------*/
section.hero_area.style_three {
    height: 700px;
    background: url(../../images/header/hero_3_bg.jpg) no-repeat center center;
    position: relative;
    z-index: 1;
}

section.hero_area.style_two .hero_content {
    margin-top: 40px;
}

.hero_area.style_three .hero_content h4 {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    color: #0c6e6d;
    margin-bottom: 18px;
}

.hero_area.style_three .hero_content h1 {
    font-size: 56px;
    line-height: 70px;
    font-weight: 600;
    color: #063232;
    position: relative;
}

.hero_area.style_three .hero_content p {
    width: 85%;
    margin: 40px 0 33px;
    color: #6b7a7a;
}

.hero_area.style_three .hero-thumb {
    position: relative;
    z-index: 1;
    top: 18px;
}

.hero_thumb_shape {
    position: absolute;
    top: 14%;
    right: -10%;
    z-index: -1;
}

.powerful_box {
    background: #ffff;
    display: inline-block;
    padding: 20px 45px 20px 20px;
    position: absolute;
    bottom: 43%;
    right: -8%;
    border-radius: 5px;
}

.hero_power_check {
    height: 55px;
    width: 55px;
    line-height: 57px;
    background: #ff9307;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 25px;
    float: left;
    margin-right: 20px;
}

.hero_powerful_content {
    overflow: hidden;
}

.hero_powerful_content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 6px;
}

.hero_powerful_content p {
    margin: 3px 0 0;
    font-size: 14px;
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
    section.hero_area.style_three .hero_content {
        display: none;
    }
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb-area {
    /*background: url(../../images/breadcumb2.png) no-repeat center center;*/
    background: url(../../images/breadcrumb_bg.png) no-repeat center center;
    /*background: url(../../images/chatgpt/header.jpg) no-repeat center center;*/
    background-size: cover;
    padding: 160px 0;
}

.breadcrumb-title h4 {
    padding-bottom: 20px;
    font-size: 48px;
    color: var(--white-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.breadcrumb-content ul li {
    color: var(--white-color);
}

.breadcrumb-content ul li a {
    font-size: 16px;
    color: var(--white-color);
}

.breadcrumb-content ul li a i {
    margin-left: 5px;
}

.breadcrumb-content ul li.rotates i {
    transform: rotate(81deg);
}

/*--------------------------------------------------------------
# single-blog
--------------------------------------------------------------*/
section.blog_area.inner_page {
    padding: 70px 0;
}

section.blog_area.inner_page .single-blog-box {
    margin-bottom: 30px;
}

.single-blog-thumb {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.single-blog-thumb:before {
    background: rgba(12, 110, 109);
    position: absolute;
    height: 0;
    width: 100%;
    left: 0;
    top: 0;
    -moz-transition: all .6s ease-out 0s;
    -webkit-transition: all .6s ease-out 0s;
    -ms-transition: all .6s ease-out 0s;
    -o-transition: all .6s ease-out 0s;
    transition: all .6s ease-out 0s;
    content: "";
    z-index: 2;
    opacity: .4;
    border-radius: 10px;
}

.single-blog-thumb:after {
    position: absolute;
    content: "";
    background: rgba(12, 110, 109);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: 3;
    -moz-transition: all .6s ease-out 0s;
    -webkit-transition: all .6s ease-out 0s;
    -ms-transition: all .6s ease-out 0s;
    -o-transition: all .6s ease-out 0s;
    transition: all .6s ease-out 0s;
    border-radius: 10px;
}

.single-blog-box:hover .single-blog-thumb:before {
    height: 100%;
    opacity: .1
}

.single-blog-box:hover .single-blog-thumb:after {
    height: 0;
    opacity: .2
}

.single-blog-thumb img {
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.category-badges {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.category-badge {
    background: var(--theme-color);
    color: var(--white-color);
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.blog-content {
    background: #F7F9F8;
    border-radius: 0 0 5px 5px;
}

.meta-blog {
    margin-bottom: 20px;
}

.meta-blog span {
    background-color: #0c6e6d;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 500;
    text-align: center;
    border-radius: 30px 0 0 30px;
    padding: 3px 18px;
    position: relative;
    margin-top: 30px;
}

.blog-title h3 a {
    font-size: 18px;
    line-height: 26px;
    color: #063232;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 14px;
    height: 80px;
    overflow: hidden;
    padding: 0 15px;
}

.blog_btn a {
    transition: .5s;
    display: inline-block;
    letter-spacing: -6px;
    font-size: 14px;
    line-height: 32px;
    text-transform: uppercase;
    color: #F7F9F8;
    font-weight: 500;
}

.blog_btn a i {
    margin-right: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0a4b4b;
}

/* all hover */
.single-blog-box:hover .blog_btn a {
    letter-spacing: 0;
    color: #0a4b4b;
}

/*--------------------------------------------------------------
# Details Articles
--------------------------------------------------------------*/
#details .search-widget,
#details .recent-posts,
#details .tags-widget {
    background: var(--white-color);
    padding: 20px 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}

#details .search-widget .search-wrap {
    position: relative;
}

#details .search-widget .search-wrap [type=search] {
    color: var(--theme-color);
    padding: 12px 16px;
}

#details .search-widget .search-wrap input:focus {
    border: 2px solid var(--theme-color);
    background: none;
    box-shadow: none;
}

#details .search-widget .search-wrap button {
    color: var(--white-color);
    background-color: var(--theme-color);
    padding: 11px 15px;
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 10;
}

#details .widget-title .title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #032e42;
    position: relative;
    z-index: 1;
    padding-bottom: 12px;
    margin: 0;
}

#details .widget-title .title:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
    z-index: 1;
    bottom: 0;
    right: 0;
}

#details .recent-posts .recent-post-widget {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

#details .recent-posts .recent-post-widget .post-img {
    width: 120px;
    float: right;
    padding-left: 15px;
}

#details .recent-posts .recent-post-widget .post-desc .title-post {
    height: 50px;
    overflow: hidden;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 3px;
}

#details .recent-posts .recent-post-widget .post-desc .title-post a {
    color: var(--black-color);
}

#details .recent-posts .recent-post-widget .post-desc .title-post a:hover {
    color: var(--theme-color);
}

#details .recent-posts .recent-post-widget .post-desc .date-post {
    display: block;
    font-size: 12px;
    color: #555;
}

#details .recent-posts .recent-post-widget .post-desc .date-post i {
    margin-left: 5px;
}

#details .recent-posts .recent-post-widget .post-desc .date-post i:before {
    top: 1px;
    font-size: 12px;
    color: var(--theme-color);
    position: relative;
}

/************************ comments form **************************/
#details .comments-form h3 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 20px;
    padding-top: 20px;
}

#details .comments-form textarea {
    width: 100%;
    height: 160px;
    padding: 22px 30px;
    background: #F2F4F9;
    margin-bottom: 25px;
    position: relative;
}

#details .comments-form textarea:focus,
#details .comments-form input:focus {
    border: 2px solid var(--theme-color);
    background: none;
    box-shadow: none;
}

#details .comments-form input {
    width: 100%;
    height: 60px;
    padding: 10px 30px;
    background: #F2F4F9;
    margin-bottom: 25px;
}

#details .comments-form button {
    padding: 10px 15px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}

#details .comments-form button:hover {
    opacity: .8;
}

/************************ tags **************************/
#details .tags-widget .tags li {
    margin: 10px;
}

#details .tags-widget .tags li a {
    padding: 5px;
    background: #F2F4F9;
    font-size: 14px;
    color: #5c5c68;
    border-radius: 5px
}

#details .tags-widget .tags li a:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

/************************ author-comment **************************/
#details .author-comment {
    margin: 10px 0;
}

#details .author-comment h4 {
    margin: 36px 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #0F1216
}

#details .author-comment ul li {
    margin: 0 0 35px;
    padding: 30px;
    border: 1px solid rgba(0, 48, 110, .1);
    border-radius: 5px
}

#details .author-comment ul li .image-comments {
    margin-top: 0
}

#details .author-comment ul li .image-comments img {
    width: 55px;
}

#details .author-comment ul li .dsc-comments .date {
    font-size: 14px;
    color: #7f7d86;
    font-weight: 400
}

#details .author-comment ul li .dsc-comments p {
    margin: 12px 0 15px;
    color: #55575c;
    font-size: 16px;
    line-height: 24px
}

#details .author-comment ul li .dsc-comments a {
    padding: 5px 0;
    font-size: 14px;
    color: var(--black-color);
    font-weight: 600;
}

#details .author-comment ul li .dsc-comments a:hover {
    color: var(--theme-color);
}

/********************* single-nav *************************/
#details .single-nav {
    margin-top: 80px;
    position: relative;
    border-top: 1px solid #E8ECF0;
    border-bottom: 1px solid #E8ECF0;
    padding: 20px 0 30px
}

#details .single-nav .back-prev,
#details .single-nav .back-next {
    position: relative;
    transition: all 500ms ease
}

#details .single-nav .back-prev {
    padding-right: 55px;
}

#details .single-nav .back-next {
    padding-left: 55px;
}

#details .single-nav .back-next i:before,
#details .single-nav .back-prev i:before {
    font-size: 22px;
    position: absolute;
    top: 5px;
    transition: all 500ms ease;
    border: 2px solid rgba(15, 18, 22, .08);
    padding: 5px;
    border-radius: 50%
}

#details .single-nav .back-next i:before {
    left: 0;
}

#details .single-nav .back-prev i:before {
    right: 0;
}

#details .single-nav .back-next a em,
#details .single-nav .back-prev a em {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #0F1216;
    font-size: 14px;
}

#details .single-nav .back-next {
    text-align: left;
}

#details .single-nav .back-next a:hover,
#details .single-nav .back-next a:hover em,
#details .single-nav .back-prev a:hover,
#details .single-nav .back-prev a:hover em {
    color: var(--theme-color);
}

#details .single-nav .back-prev:hover i:before {
    right: -5px
}

#details .single-nav .back-next:hover i:before {
    left: -5px
}

/*--------------------------------------------------------------
# Pictures
--------------------------------------------------------------*/
#pictures .thumb {
    position: relative;
}

#pictures .thumb img {
    width: 100%;
    height: 250px;
}

#pictures .thumb img:hover {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.1) scaleY(1.1);
}

#pictures .thumb .content {
    position: absolute;
    z-index: 10;
    left: 20px;
    right: 20px;
    bottom: 20px;
    transition-duration: 700ms;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(0) scaleY(0);
}


#pictures .thumb:hover .content {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

#pictures .thumb .content .view {
    background-color: var(--theme-color);
}


/*--------------------------------------------------------------
# Clients Section CSS Here
--------------------------------------------------------------*/
.react-clients {
    background: url(../../images/bg.jpg) no-repeat center top;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 120px;
}

.react__title__section {
    padding-bottom: 30px;
}

.react-clients .react__title__section h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0 0 10px;
    line-height: 54px;
}

.react-clients .client-slider {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 1100px;
    position: relative;
}

.react-clients .client-slider .single-client {
    position: relative;
    background: var(--white-color);
    padding: 50px 60px;
    border-radius: 10px;
    transition: all .5s ease 0s;
    overflow: hidden;
    border: 2px solid rgba(2, 3, 52, .05);
    display: flex;
    align-items: center;
}

.react-clients .client-slider .single-client .client-title {
    color: #0F1216;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    display: block;
}

.react-clients .client-slider .single-client .client-title em {
    color: #5B5F64;
    font-size: 16px;
    font-weight: 400;
    display: block;
    font-style: normal;
}

.react-clients .client-slider .single-client .client-content {
    position: relative;
    padding-left: 40px
}

.react-clients .client-slider .single-client .client-content p {
    font-size: 20px;
    color: #5B5F64;
    line-height: 32px;
}

.react-clients .client-slider .single-client .client-author {
    padding: 0;
    width: 230px;
    display: block;
    margin-left: 70px
}

.react-clients .client-slider .single-client .client-author img {
    border-radius: 6px;
}

/********** owl-carousel ************/
.react-clients .client-slider.owl-carousel .owl-controls {
    position: unset;
    transform: unset;
    width: auto;
}

.react-clients .client-slider.owl-carousel .owl-nav {
    position: absolute;
    display: block;
    top: 40%;
    left: unset;
    width: 100%;
    opacity: 1;
    transition: all 0.5s ease 0s;
}

.react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"] {
    position: absolute;
    right: 20px;
    display: inline-block;
    font-size: 0;
    width: 70px;
    height: 70px;
    line-height: 67px;
    color: var(--theme-color);
    background: var(--white-color);
    border-radius: 100%;
    transition: all 0.5s ease 0s;
    border: 4px solid #F2F4F9;
    box-shadow: -6px 20px 30px rgba(15, 18, 22, 0.06);
}

.react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"]:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    font-weight: 700;
    line-height: 60px;
}

.react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"].owl-next {
    left: auto;
    right: -35px;
}

.react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"].owl-prev {
    left: -35px;
    right: auto;
}

.react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"].owl-prev:before {
    content: "\f104";
}

.react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"]:hover {
    color: var(--white-color);
    background: var(--theme-color);
    border-color: var(--theme-color);
}

@media screen and (max-width: 991px) {
    .react-clients .client-slider .single-client {
        text-align: center;
        display: block;
    }

    .react-clients .client-slider .single-client .client-author {
        display: block;
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 600px) {
    .react-clients .client-slider .single-client {
        padding: 50px 20px 50px;
    }

    .react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"].owl-next {
        right: -10px;
    }

    .react-clients .client-slider.owl-carousel .owl-nav [class*="owl-"].owl-prev {
        left: -10px;
    }
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/

.section-title {
    position: relative;
    margin-bottom: 40px;
    margin-top: -5px;
}

@media only screen and (max-width: 1199px) {
    .section-title {
        margin-bottom: 30px;
    }
}

.section-title .title-sub {
    color: var(--theme-color);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.175em;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
    .section-title .title-sub {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .title-sub {
        font-size: 18px;
        margin-bottom: 11px;
    }
}

.section-title .title-main {
    font-weight: 700;
    font-size: 20px;
    position: relative;
    z-index: 2;
    line-height: 1.25em;
    color: #293b5f;
}

@media only screen and (max-width: 1199px) {
    .section-title .title-main {
        font-size: 36px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title .title-main {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .title-main {
        font-size: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .section-title .title-main {
        font-size: 24px;
    }
}

.btn-links-area {
    margin: 5px -8px 0;
}

.btn-links-area .btn-links {
    background-color: transparent;
    border: 0 solid;
    margin: 0 8px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    color: #B4C0D9;
    font-size: 32px;
    padding: 0;
    position: relative;
}

.btn-links-area .btn-links:hover {
    color: var(--theme-color);
}

@media only screen and (max-width: 767px) {
    .btn-links-area .btn-links {
        font-size: 26px;
    }
}

.testimonial-slide-area {
    height: 500px;
    overflow: hidden;
    margin-right: -30px;
    margin-left: -30px;
}

.testimonial-slide-area .testimonial-slick-wrapper {
    margin-top: -175px;
}

.testimonial-slide-area .testimonial-slick-wrapper .slick-active .testimonial-item {
    -webkit-transform: translateY(60%) translateZ(0px) scale(0.75);
    transform: translateY(60%) translateZ(0px) scale(0.75);
    opacity: 0.5;
}

.testimonial-slide-area .testimonial-slick-wrapper .slick-center .testimonial-item {
    -webkit-transform: translateZ(50px) scale(0.9);
    transform: translateZ(50px) scale(0.9);
    position: relative;
    z-index: 2;
    opacity: 1;
}

.testimonial-slide-area .testimonial-slick-wrapper .slick-center + .slick-active .testimonial-item {
    -webkit-transform: translateY(-60%) translateZ(0px) scale(0.75);
    transform: translateY(-60%) translateZ(0px) scale(0.75);
}

@media only screen and (max-width: 1199px) {
    .testimonial-slide-area {
        height: 440px;
    }

    .testimonial-slide-area .testimonial-slick-wrapper {
        margin-top: -155px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-slide-area {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-slide-area {
        height: 480px;
        margin-top: 30px;
    }

    .testimonial-slide-area .testimonial-slick-wrapper {
        margin-top: -177px;
    }
}

@media only screen and (max-width: 575px) {
    .testimonial-slide-area {
        height: 570px;
        margin-right: 0px;
        margin-left: 0px;
    }

    .testimonial-slide-area .testimonial-slick-wrapper {
        margin-top: 0px;
    }

    .testimonial-slide-area .testimonial-slick-wrapper .slick-active .testimonial-item,
    .testimonial-slide-area .testimonial-slick-wrapper .slick-center .testimonial-item,
    .testimonial-slide-area .testimonial-slick-wrapper .slick-center + .slick-active .testimonial-item {
        -webkit-transform: translateY(0%) translateZ(0px) scale(0.9) !important;
        transform: translateY(0%) translateZ(0px) scale(0.9) !important;
        opacity: 1 !important;
    }
}

.testimonial-item {
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 5px 8px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background-color: white;
    -webkit-transition: 1s;
    transition: 1s;
}

.testimonial-item .testimonial-item-inner {
    padding: 60px 60px 55px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-item .testimonial-item-inner {
        padding: 45px 35px 40px;
    }
}

@media only screen and (max-width: 575px) {
    .testimonial-item {
        -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
    }

    .testimonial-item .testimonial-item-inner {
        padding: 30px 15px 25px;
    }
}

.client-testimonial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.client-testimonial .client-thumb {
    width: 100px;
    height: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    -webkit-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
    margin-top: 5px;
}

.client-testimonial .client-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.client-testimonial .testimonial-details {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 100px);
    -webkit-flex: 0 0 -webkit-calc(100% - 100px);
    flex: 0 0 calc(100% - 100px);
    max-width: -webkit-calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-right: 60px;
}

.client-testimonial .testimonial-details .details {
    margin-bottom: 20px;
}

.client-testimonial .testimonial-details .client-area .client-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-testimonial .testimonial-details .client-area .client-designation {
    font-size: 12px;
    line-height: 1.5em;
}

@media only screen and (max-width: 1199px) {
    .client-testimonial .testimonial-details {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .client-testimonial {
        display: block;
    }

    .client-testimonial .client-thumb {
        width: 60px;
        height: 60px;
        max-width: 100%;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .client-testimonial .client-thumb img {
        width: 100%;
        height: 100%;
    }

    .client-testimonial .testimonial-details {
        padding-left: 0px;
        max-width: 100%;
    }

    .client-testimonial .testimonial-details p {
        line-height: 1.5em;
    }
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.section-header {
    margin-bottom: 40px;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .section-header3 .wrapper .sub-content {
    display: inline-block;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 4px;
    margin-bottom: 15px;
    background: var(--white-color);
    border-radius: 50px;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .section-header3 .wrapper .sub-content .sub-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    position: relative;
    display: unset;
    padding: 0 10px;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .section-header3 .wrapper .title {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black-color);
}

@media (max-width: 576px) {
    .rts-featured-product-section3 .container .rts-featured-product-section-inner .section-header3 .wrapper .title {
        font-size: 34px;
    }
}

@media (max-width: 450px) {
    .rts-featured-product-section3 .container .rts-featured-product-section-inner .section-header3 .wrapper .title {
        font-size: 26px;
    }
}

@media (max-width: 350px) {
    .rts-featured-product-section3 .container .rts-featured-product-section-inner .section-header3 .wrapper .title {
        font-size: 22px;
    }
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-1 {
    margin-right: 15px;
    margin-left: 15px;
    position: relative;
}

@media (max-width: 1200px) {
    .rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-1 {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-2 {
    margin: 0 25px;
}

@media (max-width: 1200px) {
    .rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-2 {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-3 {
    margin-right: 50px;
    margin-left: 0;
    position: relative;
}

@media (max-width: 1200px) {
    .rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-3 {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper.wrapper-3::before {
    content: "";
    position: absolute;
    background: #E8E8E8;
    width: 1px;
    height: 75%;
    right: -54px;
    top: 13%;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper:hover .image-part img {
    -webkit-transform: scale(110%);
    transform: scale(110%);
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .image-part {
    position: relative;
    height: 100%;
    overflow: hidden !important;
    border-radius: 10px 10px 0 0;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .image-part img {
    -webkit-transform: scale(100%);
    transform: scale(100%);
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content {
    padding: 40px 40px 40px 20px !important;
    padding-top: 30px !important;
    border: 1px solid #EBEBEB;
    border-top: 0 solid var(--black-color);
    border-radius: 0 0 7px 7px;
    position: relative;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .date-full {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    padding: 20px 15px 10px 15px;
    color: var(--black-color);
    background-color: var(--white-color);
    border-top: 2px solid var(--theme-color);
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    left: 6%;
    top: -16%;
    text-align: center;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .date-full .day {
    color: #031424;
    font-size: 30px;
    font-weight: bold;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .date-full .month {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .blog-meta a {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.9;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    height: 120px;
    overflow: hidden;
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .title a {
    color: var(--black-color);
}

.rts-featured-product-section3 .container .rts-featured-product-section-inner .full-wrapper .blog-content .title a:hover {
    color: var(--theme-color);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.home_four-section {
    position: relative;
    background: #f5f5f5;
}

.home_four-section .section-title {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    /*color: #eef2f8;*/
    color: #dedede;
    font-weight: 700
}

.home_four-section .sub-title {
    text-align: center;
    color: #252525;
    font-size: 43px;
    font-weight: 600;
    transform: translateY(-33px);
    margin-top: 70px;
    margin-bottom: 45px
}

@media (max-width: 1200px) {
    .home_four-section .section-title {
        font-size: 80px
    }

    .home_four-section .sub-title {
        font-size: 30px;
        transform: translateY(-56px) !important
    }
}

@media (max-width: 574px) {
    .home_four-section .section-title {
        font-size: 50px
    }

    .home_four-section .sub-title {
        font-size: 20px;
        transform: translateY(-33px) !important
    }
}

/***************** section ******************/
.blog-section .maximized-part .blog-picture {
    margin-bottom: 20px;
    overflow: hidden
}

.blog-section .maximized-part .blog-picture img {
    transition: transform 300ms;
}

.blog-section .maximized-part .blog-picture img:hover {
    transform: scale(110%)
}

.blog-section .maximized-part .blog-date {
    color: #777;
    font-size: 16px;
    margin-bottom: 7px
}

.blog-section .maximized-part .blog-title {
    margin-bottom: 15px;
    max-width: 550px
}

.blog-section .maximized-part .blog-title a {
    color: #252525;
    font-size: 18px;
    font-weight: 600;
}

.blog-section .maximized-part .blog-title a:hover {
    color: var(--theme-color);
}

.blog-section .maximized-part .read-more {
    color: #777;
    font-size: 16px
}

.blog-section .maximized-part .read-more i {
    font-size: 12px;
    margin-right: 5px
}

.blog-section .minimized-part .blog-item {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px
}

.blog-section .minimized-part .blog-item .blog-picture {
    max-width: 230px;
    margin-left: 39px;
    overflow: hidden
}

.blog-section .minimized-part .blog-item .blog-picture img {
    transition: transform 300ms
}

.blog-section .minimized-part .blog-item .blog-picture img:hover {
    transform: scale(110%)
}

.blog-section .minimized-part .blog-item .content .blog-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px
}

.blog-section .minimized-part .blog-item .content .blog-title {
    margin-bottom: 10px;
    max-width: 450px;
    max-height: 100px;
    overflow: hidden;
}

.blog-section .minimized-part .blog-item .content .blog-title a {
    color: #252525;
    font-size: 16px;
    font-weight: 600;
}

.blog-section .minimized-part .blog-item .content .blog-title a:hover {
    color: var(--theme-color);
}

.blog-section .minimized-part .blog-item .content .read-more {
    color: #777;
    font-size: 14px;
    margin-bottom: 0 !important
}

.blog-section .minimized-part .blog-item .content .read-more i {
    font-size: 10px;
    margin-right: 5px
}

@media (max-width: 1725px) {
    .blog-section .section-title {
        font-size: 100px
    }
}

@media (max-width: 1444px) {
    .blog-section .section-title {
        font-size: 80px
    }
}

@media (max-width: 1200px) {
    .blog-section .section-title {
        font-size: 70px
    }
}

@media (max-width: 992px) {
    .blog-section .section-title {
        font-size: 50px
    }
}

@media (max-width: 769px) {
    .blog-section .maximized-part {
        margin-bottom: 40px
    }

    .blog-section .maximized-part .blog-picture {
        margin-bottom: 20px
    }

    .blog-section .maximized-part .blog-title {
        margin-bottom: 20px
    }

    .blog-section .maximized-part .blog-title a {
        font-size: 16px;
        min-width: 320px
    }

    .blog-section .maximized-part .blog-date {
        margin-bottom: 20px
    }

    .blog-section .maximized-part .read-more {
        font-size: 16px
    }

    .blog-section .minimized-part .content .blog-picture {
        margin-bottom: 20px
    }

    .blog-section .minimized-part .content .blog-title a {
        font-size: 17px !important
    }

    .blog-section .minimized-part .content .blog-date {
        margin-bottom: 20px
    }

    .blog-section .minimized-part .content .read-more {
        font-size: 16px
    }
}

@media (max-width: 358px) {
    .blog-section .section-title {
        font-size: 30px
    }
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
.video {
    position: relative;
    background-color: #f5f4fe;
}

.video-icon {
    position: absolute;
    border-radius: 1rem;
    width: 60px;
    aspect-ratio: 1 / 1;
    top: 60px;
    right: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(380px, -25px) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.video-icon i {
    color: var(--white-color);
    transform: rotate(-45deg);
    font-size: 20px;
}

.video .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 8px;
}

.video .heading .title {
    margin-bottom: 0;
}

.jo-videos-slider {
    margin-bottom: 30px;
}

.jo-video-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    max-width: 30vw;
    min-width: 30vw;
}

@media screen and (max-width: 991px) {
    .jo-video-card {
        max-width: 350px;
    }
}

@media screen and (max-width: 479px) {
    .jo-video-card {
        max-width: 315px;
    }
}

.jo-video-card:hover::before {
    opacity: 1;
}

.jo-video-card:hover .bottom {
    transform: translateY(0);
}

.jo-video-card::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(25, 97, 100, 0.5), #196164);
    opacity: 0;
    transition: 0.4s ease;
}

.jo-video-card__img {
    width: 100%;
    object-fit: contain;
    background-color: #f5f5f5;
}

.jo-video-card__txt {
    position: absolute;
    inset: 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

@media screen and (max-width: 1399px) {
    .jo-video-card__txt {
        inset: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-video-card__txt {
        inset: 20px;
    }
}

@media screen and (max-width: 479px) {
    .jo-video-card__txt {
        inset: 15px;
    }
}

.jo-video-card__btn {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-top: 1px;
    color: var(--white-color);
}

.jo-video-card__btn:hover {
    background-color: var(--white-color);
    color: var(--theme-color);
}

.jo-video-card .bottom {
    transform: translateY(calc(100% - 27px));
    transition: 0.4s ease;
}

.jo-video-card .category {
    display: inline-block;
    background: var(--white-color);
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.jo-video-card__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: var(--white-color);
    margin-bottom: 5px;
    display: inline-block;
}

.jo-video-card__title:hover {
    color: var(--white-color);
}

.jo-video-card__infos {
    color: var(--white-color);
    font-weight: 300;
}

.jo-video-card__infos > *:not(:last-child) {
    border-left: 1px solid var(--white-color);
    padding-left: 10px;
    margin-left: 5px;
}

/*--------------------------------------------------------------
# Visit
--------------------------------------------------------------*/
#visit {
    padding-top: 100px;
    background-image: url(../../images/custom_gradient_image.jpg);
}

#visit .image {
    position: relative;
    z-index: 1;
}

#visit .image::before,
#visit .image::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -50px;
    left: 50%;
    transform: translateX(-42%);
    width: 594px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: scale 3s infinite linear;
}

#visit .image::after {
    width: 510px;
    height: 510px;
    top: -7px;
    transform: translateX(-40.8%);
}

@keyframes scale {
    0% {
        scale: 1;
        opacity: 1;
    }

    100% {
        scale: 1.1;
        opacity: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
    #visit .image::before,
    #visit .image::after {
        display: none;
    }
}

#visit .form-wrapper {
    border-radius: 20px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 70px rgba(255, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 30px;
}

#visit .form-wrapper .title {
    font-weight: 700;
    font-size: clamp(26px, 2.08vw, 40px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--theme-color);
    margin-bottom: 0.781vw;
    text-align: center;
}

#visit .input-group {
    margin-bottom: 1rem;
}

#visit .input-group input,
#visit .input-group select {
    border: 1px solid rgba(0, 0, 0, 0.15);
    height: 50px;
    width: 100%;
    font-size: clamp(13px, 0.833vw, 16px);
    color: var(--black-color);
    background-color: rgba(245, 245, 245, 0.5);
    padding: 10px 40px 10px 10px;
    border-radius: 5px;
}

#visit .input-group input:focus,
#visit .input-group select:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 5px var(--theme-color);
}

#visit .input-group .input-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    display: flex;
    align-items: center;
    color: var(--black-color);
    font-size: 1.2rem;
}

#visit .input-group .btn {
    background-color: var(--theme-color);
    color: var(--white-color);
}

/*--------------------------------------------------------------
# Section 3
--------------------------------------------------------------*/
#section3 {
    background-color: #FAF9F6;
    position: relative;
    z-index: 1;
}

#section3 .sub-title {
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    padding: 0 10px;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

#section3 .sub-title::before,
#section3 .sub-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 48px;
}

#section3 .sub-title::before {
    right: 100%;
    background: linear-gradient(270deg, var(--theme-color) 3px,
    rgba(255, 255, 255, 0) 3px,
    rgba(255, 255, 255, 0) 8px, var(--theme-color) 8px, var(--theme-color) 13px,
    rgba(255, 255, 255, 0) 13px,
    rgba(255, 255, 255, 0) 18px,
    rgba(255, 255, 255, 0) 18px, var(--theme-color) 0);
}

#section3 .sub-title::after {
    left: 100%;
    background: linear-gradient(90deg, var(--theme-color) 3px,
    rgba(255, 255, 255, 0) 3px,
    rgba(255, 255, 255, 0) 8px, var(--theme-color) 8px, var(--theme-color) 13px,
    rgba(255, 255, 255, 0) 13px,
    rgba(255, 255, 255, 0) 18px,
    rgba(255, 255, 255, 0) 18px, var(--theme-color) 0);
}

#section3 .title {
    font-weight: 600;
    font-size: 40px;
    color: var(--theme-color);
    text-transform: capitalize;
    line-height: 1.29;
}

#section3 .vector1 {
    z-index: -1;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
}

#section3 .vector2 {
    z-index: -1;
    right: 0;
    top: 105px;
    position: absolute;
    pointer-events: none;
}

#section3 .group .section3__txt {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    padding-bottom: 30px;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: -44px;
    margin-left: 25px;
    margin-right: 25px;
}

#section3 .group .section3__img img:hover {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.1) scaleY(1.1);
}

#section3 .group .section3__txt .title {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

#section3 .group .section3__txt::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: -33px;
    border-radius: 16px;
    background-color: var(--white-color);
    transform: translate(0, 0) rotate(0) skewX(0) skewY(4deg) scaleX(1) scaleY(1);
}

#section3 .group .section3__txt .socials {
    position: absolute;
    top: -43px;
    right: 20px;
}

#section3 .group .section3__txt .socials .share {
    position: absolute;
    bottom: calc(100% + 8px);
    z-index: -2;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    opacity: 0;
    transform: translate(0, 100%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
    transition-duration: 400ms;
}

#section3 .group:hover .section3__txt .socials .share {
    opacity: 1;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

#section3 .group .section3__txt .socials .share a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white-color);
}

#section3 .group .section3__txt .socials .share a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

#section3 .group .section3__txt .socials .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: var(--white-color);
}

/*--------------------------------------------------------------
# Section 4
--------------------------------------------------------------*/
#section4 .news {
    border-radius: 20px;
    overflow: hidden;
    background-color: #EEEEEE;
}

#section4 .news .image {
    position: relative;
    height: 286px;
}

#section4 .news .image .date,
#section4 .item .image .date {
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 10px;
    text-transform: uppercase;
    color: var(--black-color);
    background-color: #EEEEEE;
}

#section4 .news .title {
    height: 50px;
    overflow: hidden;
    line-height: 25px;
}

#section4 .item .title {
    overflow: hidden;
    height: 40px;
    line-height: 20px;
}

#section4 .news .title a,
#section4 .item .title a {
    color: var(--black-color);
}

#section4 .news .title a:hover,
#section4 .item .title a:hover {
    color: var(--blue-color);
}

#section4 .content {
    border-radius: 20px;
    padding: 5px 15px;
    background-color: #EEEEEE;
}

#section4 .item {
    column-gap: 5px;
    align-items: center;
    display: flex;
}

#section4 .item .image {
    border-radius: 10px;
    flex-shrink: 0;
}

#section4 .item .image img {
    width: 140px;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
#faq {
    padding-top: 120px;
    padding-bottom: 120px;
    z-index: 1;
    position: relative;
}

#faq .image-1 {
    z-index: -1;
    right: 0;
    bottom: 255px;
    position: absolute;
}

.sec-title {
    position: relative;
    margin-bottom: 45px;
}

.sec-title .sub-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--theme-color);
    text-transform: uppercase;
    margin: 0 0 10px;
    display: block;
}

.sec-title .title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-color);
    margin: 0;
}

#faq .faq-content .accordion .card {
    margin-bottom: 30px;
    border-radius: 5px;
}

#faq .faq-content .accordion .card:last-child {
    margin-bottom: 0;
}

#faq .faq-content .accordion .card .card-header {
    padding: 0;
    border: none;
}

#faq .faq-content .accordion .card .card-header .card-link {
    position: relative;
    display: block;
    width: 100%;
    /*height: 60px;*/
    line-height: 29px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px 15px 25px;
    border-radius: 0 10px;
    background-color: var(--theme-color);
    color: var(--white-color);
}

#faq .faq-content .accordion .card .card-header .card-link:after {
    position: absolute;
    font-family: var(--icon-font), sans-serif;
    content: "\f068";
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 26px;
    color: var(--white-color);
    right: 20px;
}

#faq .faq-content .accordion .card .card-header .card-link.collapsed {
    background-color: var(--white-color);
    color: var(--theme-color);
}

#faq .faq-content .accordion .card .card-header .card-link.collapsed:after {
    color: var(--theme-color);
    content: "\f067";
}

#faq .faq-content .accordion .card .card-body {
    background-color: var(--white-color);;
    color: #666666;
    font-size: 16px;
}

#faq .content {
    align-items: flex-end;
    display: flex;
    margin-bottom: 140px;
    position: relative;
}

#faq .image-2 {
    position: absolute;
    left: 50px;
    top: 30px;
}

#faq .image-3 {
    position: absolute;
    z-index: -1;
    top: 52%;
    right: 20px;
}

#faq .image-4 {
    position: absolute;
    z-index: -1;
    top: 100%;
    right: 30px;
    border-radius: 50%;
}

#faq .image-5 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    top: 60px;
    left: 110px;
}

#faq .image-6 {
    margin-right: -202px;
    margin-bottom: -140px;
}

/*--------------------------------------------------------------
# Steps Area
--------------------------------------------------------------*/
section.steps_area {
    background: #E0F1DF;
    border-radius: 20px 20px 0 0;
    padding: 105px 0 112px;
}

.section_title h4 {
    font-size: 16px;
    color: var(--theme-color);
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section_title h1 {
    font-size: 42px;
    line-height: 42px;
    color: var(--theme-color);
    font-weight: 600;
}

.steps-single-item {
    margin-bottom: 30px;
    padding: 40px 40px 31px;
    background: url(../../images/steps_bg.png) no-repeat;
    border-radius: 10px;
    background-size: cover;
    position: relative;
}

.steps-single-item:before {
    position: absolute;
    top: 15px;
    right: 40px;
    width: 30px;
    height: 1px;
    background-color: var(--theme-color);
    content: "";
}

h3.steps_number {
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 18px;
    color: var(--theme-color);
    font-weight: 400;
}

.steps_icon {
    width: 76px;
    height: 76px;
}

.steps-content h3 {
    font-size: 20px;
    color: var(--theme-color);
    font-weight: 500;
    margin: 25px 0 16px;
}

.steps_btn a {
    transition: .5s;
    display: inline-block;
    letter-spacing: -6px;
    font-size: 14px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 500;
}

.steps-single-item:hover .steps_btn a {
    color: var(--theme-color);
    letter-spacing: 0;
}

.steps_btn a i {
    margin-left: -8px;
    font-weight: 600;
    color: var(--theme-color);
    font-size: 16px;
    transform: rotate(45deg);
    display: inline-block;
}

.steps-single-item:hover .steps_btn a i {
    transform: rotate(0deg);
    margin-left: 8px;
    color: #0a4b4b;
}

/*--------------------------------------------------------------
# Section 6
--------------------------------------------------------------*/
.service_area.style_two {
    background: #F4F8F9;
    position: relative;
    z-index: 1;
    padding: 60px 0;
    top: 0;
}

.section_title.style_three {
    position: relative;
    z-index: 1;
}

.section_title.style_four {
    margin-bottom: 50px;
}

.section_title.style_four:before {
    left: 0;
    top: 50px;
    height: 15px;
    width: 11%;
    right: 0;
    margin: auto;
    text-align: center;
    position: absolute;
    content: "";
    z-index: -1;
    background: url(../../images/home-6/hero_border_converted.png) no-repeat;
}

.service_single_item.style_three {
    display: block;
    background: #ffff;
    text-align: center;
    padding: 20px;
    margin-bottom: 0;
    transition: .5s;
}

.service_single_item.style_three:before {
    display: block;
    top: inherit;
    width: 0;
    bottom: 0;
    height: 5px;
    border-radius: 2px;
    background-color: #ff9307;
    left: 50%;
    position: absolute;
    content: "";
    transition: .5s;
}

.service_single_item.style_three:hover:before {
    width: 100%;
    left: 0;
}

.service_single_item.style_three:before {
    display: block;
}

.service_single_item.style_three .service_thumb {
    position: relative;
    overflow: hidden;
    height: 210px;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .service_single_item.style_three .service_thumb {
        display: block;
    }
}

.service_single_item.style_three .service_thumb:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: 0.5s;
    right: 0;
    margin: auto;
    top: 0;
    opacity: 0;
    background-color: var(--theme-color);
}

.service_single_item.style_three:hover .service_thumb:before {
    opacity: 1;
}

.service_single_item.style_three .service_icon {
    position: absolute;
    top: 60%;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 0;
    transition: .5s;
}

.service_single_item.style_three:hover .service_icon {
    top: 50%;
    opacity: 1;
}

.service_single_item.style_three .service_content {
    background: #fff;
    padding: 17px 20px 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    position: relative;
}

.service_single_item.style_three .service_content:before {
    height: 100%;
    width: 100%;
    left: 83%;
    opacity: 0;
    background: url(../../images/home-6/service_dot2.png) no-repeat;
    top: 17%;
    position: absolute;
    content: "";
    z-index: -1;
    transition: .5s;
    border-radius: 0 0 20px 20px;
}

.service_single_item.style_three:hover .service_content:before {
    opacity: 1;
    display: block;
}

.service_single_item.style_three .service_content::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 4%;
    height: 30px;
    width: 85px;
    z-index: -1;
    transition: .5s;
    border-radius: 0;
    background: url(../../images/home-6/service_dot.png) no-repeat center center;
    opacity: 0;
}

.service_single_item.style_three:hover .service_content::after {
    opacity: 1;
}

.style_three.service_single_item .service_content h4 {
    color: #ffff;
    font-size: 14px;
    margin: 14px 0;
    background: #0c6e6d;
    display: inline-block;
    padding: 3px 20px;
    line-height: 28px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.style_three.service_single_item .service_content h4:before {
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    width: 0;
    background: #ff9307;
    top: 0;
    z-index: -1;
    border-radius: 3px;
    transition: .5s;
}

.style_three.service_single_item:hover .service_content h4:before {
    width: 100%;
}

.service_single_item.style_three .service_content h3 {
    color: #063232;
    font-size: 16px;
    height: 100px;
    overflow: hidden;
    margin: 0 0 10px;
    line-height: 32px;
    font-weight: 500;
}

.service_single_item.style_three .service_content p {
    font-size: 16px;
    line-height: 26px;
    color: #6b7a7a;
    font-weight: 400;
    transition: 0.5s;
}

.service_single_item.style_three .service_btn {
    margin-top: 17px;
}

.service_btn a {
    transition: .5s;
    display: inline-block;
    line-height: 32px;
    font-weight: 500;
}

.service_single_item.style_three .service_btn a {
    letter-spacing: 0px;
    color: #063232 !important;
    text-transform: capitalize;
    font-size: 15px;
}

.service_single_item.style_three:hover .service_btn a {
    color: #0c6e6d !important;
}

.service_single_item.style_three .service_btn a i {
    font-size: 15px;
    transform: rotate(0deg);
    margin-right: 5px;
    color: #0a4b4b;
    display: inline-block;
    font-weight: 600;
}

.service_single_item.style_three:hover .service_btn a i {
    color: #0c6e6d !important;
}

/* owl dots */
.service_list2 .owl-dots {
    position: absolute;
    bottom: -13%;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.service_list2 .owl-dot {
    display: inline-block;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #B5D3D1 !important;
}

.service_list2 .owl-dot.active {
    background: #0c6e6d !important;
    width: 12px;
    border-radius: 50%;
    height: 12px;
}

/*--------------------------------------------------------------
# Section 7
--------------------------------------------------------------*/
.team_area.style_two {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.single-team_item.style_two {
    position: relative;
    z-index: 1;
}

.single-team_item {
    transform: translateY(0px);
    transition: .5s;
    margin-bottom: 30px;
}

.team_box_shape {
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.single-team_item.style_two:hover .team_box_shape {
    opacity: 1;
    bottom: -9%;
}

.single-team_item.style_two:hover {
    transform: inherit;
}

.single-team_item.style_two .team_thumb {
    position: relative;
    z-index: 1;
}

.single-team_item.style_two .team_thumb:before {
    position: absolute;
    background-image: linear-gradient(0deg, #053131 0%, #074949 100%);
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: .6s;
}

.single-team_item.style_two:hover .team_thumb::before {
    opacity: 0.4;
}

.single-team_item.style_two .team_thumb img {
    width: 100%;
    /*height: 330px;*/
}

.team-share {
    position: absolute;
    right: 7%;
    top: 7%;
    z-index: 1;
}

.team-share-icon span i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    display: inline-block;
    font-size: 15px;
    transition: 0.5s;
    line-height: 42px;
}

.team-share-icon span i:hover {
    background: var(--white-color);
    color: var(--theme-color);
}

.team-social-icon {
    position: absolute;
    right: 8%;
    top: 25%;
    transition: .5s;
    z-index: 1;
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
    .team-social-icon {
        top: 20%;
    }
}

.team-social-icon ul li {
    display: block;
    margin-left: 5px;
    margin-bottom: 0;
}

.team-social-icon ul li a {
    display: inline-block;
    height: 36px;
    width: 35px;
    line-height: 36px;
    text-align: center;
    color: #0c6e6d;
    border-radius: 50%;
    transition: 0.5s;
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
    font-size: 15px;
    background: var(--white-color);
}

.team-social-icon.active ul li a {
    transform: translateY(0px);
    opacity: 1;
    overflow: hidden;
    visibility: visible;
}

.team-social-icon ul li:nth-child(1) a {
    transition-delay: 0s;
}

.team-social-icon ul li:nth-child(2) a {
    transition-delay: 0.2s;
}

.team-social-icon ul li:nth-child(3) a {
    transition-delay: 0.4s;
}

.team-social-icon ul li:nth-child(4) a {
    transition-delay: 0.6s;
}

.team-social-icon ul li a:hover {
    background: #0c6e6d;
    color: var(--white-color);
}

.single-team_item.style_two .team-content {
    padding: 10px;
    filter: drop-shadow(0px 5px 40px rgba(189, 202, 202, 0.35));
    background: var(--white-color);;
    margin: 0;
    height: 95px;
}

.team-content h3 a {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 500;
}

.team-content .meta {
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px dashed var(--theme-color);;
}

/* team all shape */
.shape_one {
    position: absolute;
    top: 4%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: -1;
}

/*--------------------------------------------------------------
# TopBar
--------------------------------------------------------------*/
.topbar_area.style_two {
    background: #063232;
    position: relative;
    z-index: 1;
}

.topbar_area.style_two:before {
    position: absolute;
    content: "";
    right: -24px;
    height: 100%;
    width: 53%;
    background: #0C6E6D;
    z-index: -1;
    transform: skew(-34deg);
}

.topbar_area.style_two:after {
    position: absolute;
    content: "";
    left: 0;
    right: 85px;
    margin: auto;
    background: #0C6E6D;
    width: 5px;
    height: 100%;
    top: 0;
    transform: skew(-34deg);
}

/*--------------------------------------------------------------
# PrayerTime
--------------------------------------------------------------*/
#prayer .card {
    border: 1px solid var(--theme-color);
}

.prayer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.prayer-card {
    width: 150px;
    height: 150px;
    background: var(--white-color);
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.prayer-card.active,
.prayer-card:hover {
    transform: translateY(-5px);
    border-color: #2c7c94;
}

.prayer-icon {
    font-size: 24px;
    color: #2c7c94;
    margin-bottom: 10px;
}

.prayer-name {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.prayer-time {
    font-size: 18px;
    font-weight: bold;
    color: #2c7c94;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#gallery .title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    margin-bottom: 40px;
}

#gallery .title-with-lines::before,
#gallery .title-with-lines::after {
    content: "";
    flex: 1;
    border-top: 2px solid var(--theme-color);
    margin: 0 20px;
}

.service {
    display: block;
    position: relative;
    overflow: hidden;
    height: 650px;
}

.service__img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.service__title {
    position: absolute;
    bottom: 10px;
    left: 30px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.service--dark-overlay:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.service:hover .service__img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

@media only screen and (max-width: 991px) {
    .service {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .service {
        height: 300px;
    }
}

/*--------------------------------------------------------------
# category
--------------------------------------------------------------*/
#contentCard img {
    height: 235px;
    overflow: hidden;
    object-fit: cover;
}

#contentCard .card-title {
    height: 60px;
    line-height: 20px;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #3c3f42
}

@media (min-width: 992px) {
    .footer {
        background: url(../../images/background/footer-bg.jpg) no-repeat #3c3f42;
        background-size: cover
    }
}

.foot-contact-block {
    background: #3c3f42;
    padding: 20px;
    border-radius: 5px;
    border-top: 5px solid var(--theme-color2);
    margin: -5px 0 0;
}

.foot-contact-block img {
    margin: 0 0 15px
}

.foot-contact-block p {
    color: #dededebd;
    font-weight: 300;
    font-size: 14px;
    margin: 0 0 15px;
    text-align: center;
}

.foot-contact-block li a {
    border: 2px solid rgba(255, 255, 255, .1);
    color: var(--white-color);
    display: block;
    width: 33px;
    height: 33px;
    line-height: 32px;
    transition: all .7s ease 0s;
    font-size: 16px;
    border-radius: 50%;
}

.foot-contact-block li a:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
}

.foot-link-box {
    margin: 25px 0;
    text-align: center;
}

@media (min-width: 768px) {
    .foot-link-box {
        margin: 90px 0
    }
}

.foot-link-box h4 {
    position: relative;
    color: var(--theme-color2);
    padding: 0 0 20px;
    margin: 0 0 18px
}

.foot-link-box h4:after {
    position: absolute;
    content: "";
    width: 35%;
    height: 3px;
    background: #3c3f42;
    right: 85px;
    bottom: 0
}

.foot-link-box ul li {
    line-height: 2
}

.foot-link-box ul li a {
    color: #dededebd;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.foot-link-box ul li a:hover {
    color: var(--theme-color2);
}

.copyright {
    border-top: 1px solid #565555;
    padding: 25px 0
}

.copyright p {
    color: #dededebd;
    font-size: 14px;
    margin: 0;
    display: inline-block
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(45px);
    transition: all 300ms linear;
}

.scroll-top:after {
    content: "\f062";
    font-family: var(--icon-font);
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--theme-color);
    box-shadow: none;
    border-radius: 50%;
}

.scroll-top svg {
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color);
}

.scroll-top svg path {
    fill: none;
}

.scroll-top .progress-circle path {
    stroke: var(--theme-color);
    stroke-width: 10px;
    box-sizing: border-box;
    transition: all 400ms linear;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
