﻿/* vazir font */
@import url('../fonts/primary-vazir.css');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    direction: rtl;
}

body {
    font-family: vazir;
    background-color: white;
}

:root {
    --primary: #6f9a8d;
    --button-color: #1f6650;
    --color-font: #8a0505;
    --color-border: #dc3545;
    --bg-title-image: linear-gradient(-90deg, #fff5f5,#e1deff);
}

a {
    text-decoration: none;
    color: var(--bs-body-color);
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.bg-custom-section {
    background-color: #f7f2f2c9;
}

.def-btn {
    border: none;
    outline: none;
    background-color: transparent;
    text-wrap: nowrap;
    color: whitesmoke;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

    .def-btn:hover {
        color: var(--color-font);
    }

.swiper {
    width: 100%;
}

.swiper-button-prev, .swiper-button-next {
    color: whitesmoke;
    background-color: var(--button-color);
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 10px;
}

    .swiper-button-prev::after, .swiper-button-next::after {
        font-size: 15px;
    }

/* --------- */
.desktop-header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.desktop-header-bg {
    background: linear-gradient(180deg,#0a0853 45%,#1603d0 5%,#1205a0 50%);
    box-shadow: 0px 3px 10px #3a3e3ae8;
}

.dh-top {
    display: flex;
    justify-content: space-between;
    color: white;
    padding-right: .5rem;
}

    .dh-top a {
        color: white;
    }

.dh-logo {
    width: 200px;
    padding: .5rem 0;
}

    .dh-logo img {
        width: 100%;
        height: 100%;
    }

.dh-img {
    width: 120px;
    height: 90px;
}

    .dh-img img {
        width: 100%;
        height: 100%;
    }

a.hover-default:hover {
    color: var(--bs-body-color);
}

.nav-logo {
    width: 185px !important;
    height: 75px !important;
    /*background-color: #e5e5e5 !important;*/
    position: relative;
}

    .nav-logo img {
        margin-top: 0;
        width: 135px;
        height: auto;
        margin-bottom: 0;
        filter: drop-shadow(0px 0px 1px #d3d0d0ba);
    }

.border-logo {
    width: 8px;
    height: 75px;
    background-color: #e5e5e5;
    margin-left: auto;
    margin-right: 8px;
}

.dh-bottom {
    background: var(--menu-gradiant);
}

.dh-links a {
    margin-left: 15px;
}

    .dh-links a:hover {
        color: white;
    }

form.search-form input {
    color: #0d0751;
    border-radius: 5px;
    height: 35px;
    padding: 0 .25rem;
    outline: none;
}

form.search-form .search-btn {
    height: 35px;
    width: 35px;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    background-color: #1f6650;
}

    form.search-form .search-btn i.fa {
        vertical-align: middle;
    }


.main-menu .nav-link {
    color: white !important;
}

.note-box .nav-link {
    color: white;
}

.dh-date {
    font-size: .875rem;
    position: absolute;
    left: 0;
    top: .5rem;
}

.main-menu .dropdown-item .nav-link,
.main-menu .dropdown-item .nav-link:hover {
    color: black !important;
}
.main-menu .dropdown-item .nav-link:active {
    color: white !important;
}

.mobile-header {
    display: none;
    background: linear-gradient(180deg,#0a0853 55%,#1603d0 5%,#1205a0 60%);
}

    .mobile-header .navbar .nav-item:hover {
        background: var(--bg-title-image);
    }

.mh-menu {
    background-color: whitesmoke;
    padding: 3px 7px;
    border-radius: 5px;
    color: var(--primary);
    font-weight: bold;
}

    .mh-menu svg {
        width: 22px;
        height: 22px;
    }

.mh-logo {
    width: 100px;
    height: 100px;
}

    .mh-logo img {
        width: 100%;
        height: 100%;
    }

.mh-actions {
    background: var(--bg-title-image);
    margin-bottom: 10px;
}

.mh-title {
    font-size: 1.2rem;
    color: whitesmoke;
    transform: translateY(3px);
}

.mh-input {
    border: 2px solid var(--primary);
    border-radius: 5px;
    outline: none;
    padding: 5px 10px;
    font-size: 14px;
    color: var(--primary);
    background-color: whitesmoke;
}

.mh-links {
    display: flex;
    flex-direction: column;
}

    .mh-links a {
        width: 100%;
        padding: 10px;
        color: rgb(65, 65, 65);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s ease-in-out;
    }


@media (max-width: 992px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
}

/* hero */

.carousel-item {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 420px;
}

.carousel-caption-custom {
    position: absolute;
    background: var(--bg-title-image);
    bottom: 30px;
    right: 0;
    left: 0;
    padding: 10px 16px;
    opacity: 0.9;
}

    .carousel-caption-custom .titel {
        justify-content: center;
        align-items: center;
        font-size: 14px;
        color: var(--color-font);
    }

    .carousel-caption-custom span {
        color: black;
        font-size: 13px;
    }

.slide-border {
    width: 3px;
    height: 100%;
    background-color: var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 8px;
    top: 0;
}


.carousel-item img {
    width: 100%;
    height: 100%;
}

.carousel-control-prev {
    color: var(--button-color);
    background: whitesmoke;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 20px;
    border-radius: 50%;
    padding: 8px;
    opacity: 1;
    z-index: 100;
}

    .carousel-control-prev:hover {
        color: var(--button-color);
        background: whitesmoke;
        opacity: 1;
    }

.carousel-control-next {
    color: var(--button-color);
    background: whitesmoke;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 50%;
    padding: 8px;
    opacity: 1;
    z-index: 100;
}

    .carousel-control-next:hover {
        color: var(--button-color);
        background: whitesmoke;
        opacity: 1;
    }

.hero-item {
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px -5px rgba(111,154,141,1);
    -webkit-box-shadow: 0px 0px 15px -5px rgba(111,154,141,1);
    -moz-box-shadow: 0px 0px 15px -5px rgba(111,154,141,1);
}

    .hero-item a {
        text-decoration: none;
        color: rgb(77, 77, 77);
        font-size: 14px;
        font-weight: bold;
        margin-top: 5px;
    }


        .hero-item a:hover {
            color: rgb(77, 77, 77);
        }

.hero-item-img {
    border-radius: 15px;
    overflow: hidden;
    width: 130px;
    height: 95px;
    flex-shrink: 0;
}

    .hero-item-img img {
        width: 100%;
        height: 100%;
    }

.news-item {
    height: fit-content;
}

.news-header {
    display: flex;
}

    .news-header h6 {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--primary);
    }

.news-card {
    display: flex;
    align-items: start;
    gap: 10px;
}

@media (max-width: 992px) {
    .news-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.news-img {
    width: 200px;
    height: 130px;
    border-radius: .375rem;
    overflow: hidden;
    flex-shrink: 0;
}

    .news-img img {
        width: 100%;
        height: 100%;
    }

.news-content {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

    .news-content a {
        width: fit-content;
        text-decoration: none;
        color: black;
        transition: all 0.2s ease-in-out;
    }

        .news-content a h2 {
            font-size: 15px;
        }

        .news-content a:hover {
            transform: translateX(-3px);
        }

    .news-content p {
        margin-top: 7px;
        font-size: 13px;
        color: rgb(126, 126, 126);
    }

.news-item2-content {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 10px;
}

.news-card2 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    background-color: white;
    border-radius: 15px;
}

.news-img2 {
    width: 70px;
    height: 65px;
    border-radius: .5rem;
    overflow: hidden;
    flex-shrink: 0;
}

    .news-img2 img {
        width: 100%;
        height: 100%;
    }

.news-content2 {
    height: fit-content;
}

    .news-content2 a {
        width: fit-content;
        font-size: 14px;
        text-decoration: none;
        color: black;
        transition: all 0.2s ease-in-out;
        display: inline-block;
    }

        .news-content2 a:hover {
            color: var(--color-font);
        }

    .news-content2 p {
        margin-top: 7px;
        font-size: 12px;
        color: rgb(126, 126, 126);
        display: inline-block;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: .5rem;
    }

.news-item3-content {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 10px;
    height: max-content;
}

.new-item3-img {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .new-item3-img {
        width: 100%;
        height: 200px;
    }
}

.new-item3-img img {
    width: 100%;
    height: 100%;
}

.news-item3 h2 {
    color: whitesmoke;
    font-size: 1.3rem;
    font-weight: bold;
}

.note-box {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary);
    height: 100%;
}

.note-box-header {
    display: flex;
    align-items: center;
}

.text {
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.text-left {
    background-color: #e4fff7;
    color: var(--primary);
}

.note-box-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 0;
    border-radius: 10px;
    overflow-y: scroll;
    height: 400px;
}

.note-box-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 15px 7px;
    border-bottom: 2px dashed rgb(196, 196, 196);
}

.note-box-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

    .note-box-img img {
        width: 100%;
        height: 100%;
    }

.note-box-item a {
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

    .note-box-item a:hover {
        color: var(--color-font);
    }

.news-image-box {
    border-radius: .5rem;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

    .news-image-box img {
        width: 100%;
        height: 100%;
    }

@media (max-width: 768px) {
    .news-image-box {
        height: 300px;
    }
}

.news-image2-box {
    border-radius: .5rem;
    overflow: hidden;
    width: 100%;
    height: 195px;
    object-fit: cover;
}

    .news-image2-box img {
        width: 100%;
        height: 100%;
    }

a.play-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    z-index: 9;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background-color: var(--button-color);
    border-radius: 50%;
    opacity: 0.7;
}

.news-image2-box a.play-btn svg {
    margin: 0 auto;
    opacity: 0.7;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news-image2-box a.play-btn:hover,
.news-image2-box a.play-btn:hover svg {
    opacity: 1;
}

.news-image-content {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    padding: 10px 16px 16px 10px;
    background: var(--bg-title-image);
}

    .news-image-content a {
        text-wrap: wrap;
        color: var(--color-font);
        text-decoration: none;
        font-size: 14px;
    }

.bg-media {
    background-color: var(--button-color);
    padding: 20px;
}

.media-title {
    font-size: 1rem;
    color: whitesmoke;
}

    .media-title span {
        background-color: whitesmoke;
        color: var(--button-color);
        padding: 0px 15px;
        border-radius: 20px;
        margin-left: 10px;
    }


.media-box {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    /*height: 130px;*/
    object-fit: cover;
}

    .media-box img {
        width: 100%;
        height: 100%;
    }

.ads-content {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

    .ads-content h3 {
        font-size: 1.2rem;
        color: whitesmoke;
    }

footer {
    background: linear-gradient(180deg,#0a0853 75%,#1603d0 5%,#1205a0 80%);
    /*background: #1a1a1a;*/
    box-shadow: 0px -3px 10px #3a3e3ae8;
}

.footer-bor {
    border: 2px solid var(--color-border);
    opacity: .7;
}

.f-background {
    background-image: url('../Images/Shargheno-08.svg');
    background-position: left -70px;
    background-repeat: no-repeat;
    background-size: 260px;
}

.f-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-logo {
    width: 300px;
}

    .f-logo img {
        width: 100%;
        height: 100%;
    }

ul.f-socialmedia {
    margin-bottom: 0;
    padding-right: 0;
}

    ul.f-socialmedia li {
        display: inline-block;
        margin-left: 5px;
        margin-bottom: 8px
    }

        ul.f-socialmedia li:last-child {
            margin-left: 0
        }

        ul.f-socialmedia li a {
            width: 40px;
            height: 35px;
            font-size: 1.125rem;
            line-height: 40px;
            text-align: center;
            color: #fff;
            display: block;
            -webkit-transition: all .5s ease-out;
            -moz-transition: all .5s ease-out;
            -ms-transition: all .5s ease-out;
            -o-transition: all .5s ease-out;
            transition: all .5s ease-out
        }

.f-copyright p {
    font-size: 14px;
    color: black;
}

.note-box .nav-pills .nav-link.active {
    background-color: rgb(228, 255, 247);
    color: var(--primary);
}

.logo-vista {
    content: url('/Content/Images/Logo-VistaRaya.Net-gray.png' );
    max-width: 200px;
}

    .logo-vista:hover {
        content: url('/Content/Images/Logo-VistaRaya.Net.png');
        max-width: 200px;
    }

li.pm-Internal {
    position: relative;
    bottom: 18px;
    left: 0;
    width: 30px;
}

    li.pm-Internal a {
        background-position: center center;
        background-repeat: no-repeat;
    }

.eita {
    background-image: url('../Images/eita-hover.png');
}

.sorosh {
    background-image: url('../Images/sorosh-hover.png');
}

.bale {
    background-image: url('../Images/bale-hover.png');
}


/*select2 start*/
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #111111 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.select2-container--open.select2-container--below .select2-selection--single {
    border: 1px solid #dcdcdc;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #111111 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.select2-container--open.select2-container--above .select2-selection--single {
    border: 1px solid #dcdcdc;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--classic .select2-selection--single {
    background-color: #FFFFFF;
    background-image: none;
    border-radius: .375rem;
    border: 1px solid #ced4da !important;
    -moz-box-shadow: 0px -2px 0px var(--bg-primary-color);
    -webkit-box-shadow: 0px -2px 0px var(--bg-primary-color);
    box-shadow: 0px -2px 0px var(--bg-primary-color);
}

    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        line-height: 40px;
        font-weight: 400 !important;
    }

    .select2-container--classic .select2-selection--single .select2-selection__arrow {
        top: 7px;
        background-color: transparent;
        background-image: none;
        border-style: none;
        left: 5px;
    }

.select2-container--classic .select2-dropdown {
    border: 1px solid #dcdcdc !important;
    border-radius: 0;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: var(--button-color);
    color: #ffffff;
    font-weight: 600;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #dcdcdc;
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #dcdcdc;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    background-image: none;
    background-color: #FFFFFF;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    background-image: none;
    background-color: #FFFFFF;
    border-top: 1px solid #dcdcdc;
}

.select2-container--classic .select2-dropdown {
    width: 160px !important;
    z-index: 8;
    border-radius: 0 0 .375rem .375rem;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    -moz-border-radius: .375rem;
    -webkit-border-radius: .375rem;
    border-radius: .375rem;
    text-align: right;
    padding: .5rem 1rem;
}

.select2-container--classic .select2-results > .select2-results__options {
    scrollbar-color: var(--button-color) #e0e0e0;
    scrollbar-width: thin;
    direction: rtl;
}
/*select2 end*/

.custome-card {
    box-shadow: 0px 0px 15px -5px rgba(111,154,141,1);
    -webkit-box-shadow: 0px 0px 15px -5px rgba(111,154,141,1);
    -moz-box-shadow: 0px 0px 15px -5px rgba(111,154,141,1);
    border: none;
}

.last-news-scrollable {
    max-height: 470px !important;
    overflow: auto;
}

.list-news ul {
    padding-right: 0;
    margin-right: 2.14285714em;
    list-style-type: none;
}

    .list-news ul li {
        position: relative;
    }

        .list-news ul li i {
            position: absolute;
            right: -2.14285714em;
            width: 2.14285714em;
            top: 0.14285714em;
            text-align: center;
            font-size: 15px;
        }

.post-date ul {
    line-height: 1.5;
}

    .post-date ul li {
        display: inline-block;
        line-height: 1.5;
        margin-bottom: 8px;
        font-size: 12px;
        margin-left: 15px;
        vertical-align: top;
    }

        .post-date ul li:last-child {
            margin-left: 0;
        }

.list-news h6 a:hover {
    color: var(--color-font);
}

.list-news h6 {
    font-size: 14px;
}

h5.news-headline {
    font-size: 15px;
}

.news-detail .post-date ul li {
    font-size: 14px;
}

.news-detail .news-subtitle {
    font-size: 15px;
    background: var(--bg-title-image);
}

h2.title-semibold-dark {
    font-weight: 600;
    font-size: 20px;
}

ul.news-social {
    padding-top: 14px;
}

    ul.news-social li {
        display: inline-block;
        margin-left: 5px;
    }

        ul.news-social li a {
            height: 35px;
            width: 35px;
            line-height: 32px;
            display: block;
            text-align: center;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
            color: #787878;
        }

            ul.news-social li a:hover {
                background-color: #1f6650;
                color: #FFFFFF;
            }

.show-news li.pm-Internal {
    bottom: 18px;
}

.eita {
    background-image: url('../Images/eita-hover.png');
}

    .eita:hover, .show-news .eita:hover {
        background-image: url('../Images/eita-hover.png');
    }

.show-news .eita {
    background-image: url('../Images/eita-gray.png');
}

.sorosh {
    background-image: url('../Images/sorosh-hover.png');
}

    .sorosh:hover, .show-news .sorosh:hover {
        background-image: url('../Images/sorosh-hover.png');
    }

.show-news .sorosh {
    background-image: url('../Images/sorosh-gray.png');
}

.bale {
    background-image: url('../Images/bale-hover.png');
}

    .bale:hover, .show-news .bale:hover {
        background-image: url('../Images/bale-hover.png');
    }

.show-news .bale {
    background-image: url('../Images/bale-gray.png');
}

ul.news-social {
    padding-top: 14px;
}

ul.blog-tags {
    margin-bottom: 30px;
    margin-top: 30px;
}

    ul.blog-tags li {
        font-size: 13px;
    }

        ul.blog-tags li a {
            border: 1px solid #dcdcdc;
            display: block;
            padding: 3px 10px;
            color: #444444;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

            ul.blog-tags li a:hover {
                color: #FFFFFF;
                background-color: var(--button-color);
                border: 1px solid var(--button-color);
            }

        ul.blog-tags li:first-child {
            border: 1px solid var(--button-color);
            padding: 3px 15px;
            background-color: var(--button-color);
            color: #FFFFFF;
            font-size: 14px;
        }

ul.item-inline li {
    margin-left: 3px;
    float: right;
    display: inline-block;
    margin-bottom: 3px;
}

.logo-area {
    width: 200px;
    height: 100px;
}

.news-item-content {
    width: auto;
    position: relative;
    max-height: 330px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #283715 #99b082;
}

.card-title-custom {
    width: 100%;
    background: radial-gradient(circle, #fff5f5,#3020e3b5);
    background-size: 200% 200%;
    background-position: 0% 50%;
    transition: background-position 1s ease;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    position: relative;
}

.title-border {
    width: 3px;
    height: 100%;
    background: var(--color-border);
    position: absolute;
    right: 7px;
    top: 0;
}

.card.card-custom,
.custom-shadow {
    box-shadow: 0 0 6px 0px rgba(25, 21, 55, 0.5);
}

.card-custom:hover .card-title-custom {
    background-position: 100% 50%;
}

.card-title-custom h5 {
    margin-bottom: .25rem;
    margin-top: .25rem;
}

.card-custom {
    border-color: rgba(25, 21, 55, 0.5);
}

.card-hover {
    overflow: hidden;
    border-radius: var(--bs-border-radius) !important;
}

    .card-hover img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .card-hover:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.footer-logo img {
    width: 180px;
    height: auto;
    position: absolute;
    top: 16px;
    right: .75rem;
}

.nav-footer ul {
    list-style: none;
    padding-right: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

    .nav-footer ul li {
        display: flex;
        align-items: center;
    }

        .nav-footer ul li::after {
            content: '';
            background-color: #e6e6e6;
            display: block;
            width: 1px;
            height: 9.98px;
            margin-inline: 12px;
        }

        .nav-footer ul li:last-child:after {
            content: none;
        }

        .nav-footer ul li a {
            color: white;
        }

.loginbtn {
    color: white;
}

    .loginbtn:hover {
        color: var(--color-font);
    }

#offcanvasRight .nav-link {
    color: black;
}

gallery-layout-2 {
    margin-bottom: 4px;
    position: relative;
}

.gallery-layout-2 .mask-content-xs {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.gallery-layout-2:hover .mask-content-xs {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.gallery-layout-2:hover .topic-box-sm:after {
    background-color: var(--active-font-color);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.img-overlay-70 {
    position: relative;
}

    .img-overlay-70:before {
        opacity: 0.7;
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(var(--menu-font-color)), to(transparent));
        background-image: -webkit-linear-gradient(transparent, var(--menu-font-color));
        background-image: -moz-linear-gradient(transparent, var(--menu-font-color)), -moz-linear-gradient(transparent, var(--menu-font-color));
        background-image: -o-linear-gradient(transparent, var(--menu-font-color)), -o-linear-gradient(transparent, var(--menu-font-color));
        background-image: linear-gradient(transparent, var(--menu-font-color)), linear-gradient(transparent, var(--menu-font-color));
        content: "";
        height: 70%;
        bottom: 0;
        right: 0;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 1;
    }

.img-popup-icon-layout2 {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    -webkit-transform: translateY(-40%);
    -moz-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    top: 40%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    right: 0;
    left: 0;
    z-index: 8;
    margin: 0 auto;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f6650;
    font-size: 24px;
    -webkit-box-shadow: 0px 1px 10px 5px rgba(225, 225, 225, 0.5);
    -moz-box-shadow: 0px 1px 10px 5px rgba(225, 225, 225, 0.5);
    box-shadow: 0px 1px 10px 5px rgba(225, 225, 225, 0.5);
    -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.25, 1.5);
    -moz-transition: all 0.7s cubic-bezier(0, 0, 0.25, 1.5);
    -ms-transition: all 0.7s cubic-bezier(0, 0, 0.25, 1.5);
    -o-transition: all 0.7s cubic-bezier(0, 0, 0.25, 1.5);
    transition: all 0.7s cubic-bezier(0, 0, 0.25, 1.5);
}

    .img-popup-icon-layout2:hover {
        background-color: rgba(229, 57, 53, 0.9);
        color: #FFFFFF;
        -webkit-box-shadow: 0px 1px 10px 5px rgba(229, 57, 53, 0.5);
        -moz-box-shadow: 0px 1px 10px 5px rgba(229, 57, 53, 0.5);
        box-shadow: 0px 1px 10px 5px rgba(229, 57, 53, 0.5);
    }

.popup-icon-hover:hover .img-popup-icon-layout2 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.img-popup-icon-layout2:hover {
    background-color: rgba(229, 57, 53, 0.9);
    color: #FFFFFF;
    -webkit-box-shadow: 0px 1px 10px 5px rgba(229, 57, 53, 0.5);
    -moz-box-shadow: 0px 1px 10px 5px rgba(229, 57, 53, 0.5);
    box-shadow: 0px 1px 10px 5px rgba(229, 57, 53, 0.5);
}

.gallery-layout-2 .mask-content-xs {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.mask-content-xs {
    position: absolute;
    z-index: 7;
    bottom: 0;
    right: 20px;
    padding-left: 20px;
}

h2.title-medium-light {
    font-weight: 500;
    color: #FFFFFF;
}

    h2.title-medium-light a {
        color: #FFFFFF;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        h2.title-medium-light a:hover {
            color: var(--color-font);
        }

@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
        margin-bottom: 10px;
    }

    .footer-logo img {
        width: 130px;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        height: 350px;
        margin-bottom: 10px;
    }
}
