@import "iranSans.css";
@import "skeleton.css";
@import "../fonts/fontAwesome/css/all.css";

:root {
    --primary-color: #09314B;
    --container-size: 1180px;
    --icons-font: "Font Awesome 6 Pro";
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 32px;
}

* {
    outline: none;
    font-family: IRANSansX;
    -moz-font-feature-settings: "ss02";
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 100%;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 87.5%;
    }
}

body {
    color: #2d2d2d;
    font-family: IRANSansX;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    top: 0;
    left: 0;
    animation: fadeIn .2s;
    z-index: 100;
    display: none;
}

body.lightbox::before {
    display: block;
}

.primary-btn {
    background: var(--primary-color);
    border-radius: .5rem;
    color: #fff;
    font-size: .875rem;
    transition: background .3s;
}

.primary-btn:hover {
    background: #051c2b;
}

.text-primary {
    color: var(--primary-color) !important;
}

.dir-ltr {
    direction: ltr !important;
}

.lightbox-close-handler {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 101;
}

.fadeIn {
    animation: fadeIn .2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

button,
input {
    background: none;
    border: none;
}

.fw-800 {
    font-weight: 800;
}

.fit-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.fit-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-container {
    width: 100%;
    margin: 0 auto;
    max-width: calc(var(--container-size) + 2rem);
    padding: 0 1rem;
}

.m-container-only-right {
    width: 100%;
    padding-right: calc(((100% - var(--container-size)) / 2) + 1rem);
}

.m-container-only-right .container-box {
    max-width: var(--container-size);
}

@media screen and (max-width: 1180px) {
    .m-container-only-right {
        padding: 0 1rem;
    }
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    cursor: default;
}

a {
    text-decoration: none;
    color: #2d2d2d;
}

a:hover {
    color: #3f3f3f;
}

.top-px {
    position: relative;
    top: 1px;
}

.header {
    background: var(--primary-color);
    background: linear-gradient(180deg, rgba(9, 49, 75, 1) 0%, rgba(16, 16, 16, 1) 100%);
    position: relative;
    z-index: 10;
}

.header.home-header {
    background: var(--primary-color);
}

.header .row-2 {
    padding: 1.5rem 0;
}

.header .today {
    background: rgba(255, 255, 255, .17);
    padding: .25rem .5rem;
    font-size: .75rem;
}

.header .bg-vc {
    background: url("../images/header-vc.png") no-repeat center;
    overflow: hidden;
    opacity: 50%;
}

@media screen and (max-width: 767px) {
    .header .bg-vc {
        opacity: .3;
    }
}

.header .iroi {
    font-size: 16px;
    width: 22.5em;
    height: 9.375em;
    background: url("../images/header-flow.png") no-repeat;
    background-size: cover;
    position: absolute;
    right: calc((100% - 22.5em) / 2);
    top: 0;
    text-align: center;
    z-index: 1;
}

@media screen and (max-width: 1000px) {
    .header .iroi {
        font-size: 10px;
    }

    .header .row-2 {
        padding: 4.5rem 0 1.5rem 0
    }
}

.header .iroi img {
    width: 28%;
    height: auto;
    margin-top: .25em;
}

.header .searchbar {
    color: #fff;
}

.header .searchbar button {
    color: #fff;
}

.header .searchbar input {
    color: #fff;
    font-size: .875rem;
    padding: .5rem;
    border-radius: .5rem;
    transition: background .3s;
}

.header .searchbar input:focus {
    background: rgba(255, 255, 255, .1);
}

.header .searchbar input::-webkit-input-placeholder {
    color: #a3a3a3;
}

.header .searchbar input:-moz-placeholder {
    color: #a3a3a3;
    opacity: 1;
}

.header .searchbar input::-moz-placeholder {
    color: #a3a3a3;
    opacity: 1;
}

.header .searchbar input:-ms-input-placeholder {
    color: #a3a3a3;
}

.header .searchbar input::-ms-input-placeholder {
    color: #a3a3a3;
}

.header .searchbar input::placeholder {
    color: #a3a3a3;
}

.lang-holder {
    position: relative;
}

.lang-holder .switch-box {
    background: rgba(255, 255, 255, .17);
    direction: ltr;
    display: flex;
    align-items: center;
    border-radius: 10rem;
    padding: .5rem;
    color: #fff;
    font-size: .75rem;
    cursor: pointer;
    transition: background .2s;
}

.lang-holder .switch-box:hover {
    background: rgba(255, 255, 255, .25);
}

.lang-holder .switch-box::after {
    content: "\f078";
    font-family: var(--icons-font);
    margin-right: .25rem;
    font-weight: 300;
    transition: transform .3s;
    display: block;
}

.lang-holder .switch-box.opened::after {
    transform: rotate(180deg);
}

.lang-holder .flag {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 100%;
}

.lang-holder .flag.iran {
    background: url("../images/iran-flag.png") center;
}

.lang-holder .flag.saudi_arabia {
    background: url("../images/saudi_arabia.png") center;
}

.lang-holder .flag.england {
    background: url("../images/england.png") center;
}

.lang-holder .switch-box span {
    font-weight: 500;
    padding: 0 .5rem;
}

.lang-holder ul {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    border-radius: 1rem;
    background: var(--primary-color);
    margin-top: 1rem;
    direction: ltr;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, .5);
    display: none;
    z-index: 1;
}

.lang-holder ul a {
    font-size: .75rem;
    font-weight: bold;
    padding: .5rem;
    display: block;
    display: flex;
    align-items: center;
    transition: background .3s;
    color: #fff;
}

.lang-holder ul a:hover {
    background: #114263;
}

.lang-holder ul .flag {
    margin-right: .5rem;
}

.header .navs-row {
    background: rgb(23, 23, 23, .3);
}

.header .navs-row.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    animation: 0.3s fadeHeader;
    background: var(--primary-color);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
}

.header .navs-row-schema {
    height: 3.4375rem;
}

@keyframes fadeHeader {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .header .navs-row-schema {
        height: 3.2142rem
    }
}

.header .navs-holder {
    white-space: nowrap;
}

.header .main-nav {
    font-size: .875rem;
}

.header .main-nav>li {
    display: inline-block;
}

.header .main-nav>li>.in {
    color: #fff;
    padding: 1rem .5rem;
    margin-left: .5rem;
    display: block;
    transition: color .3s;
    position: relative;
}

.header .main-nav>li>.in::before {
    display: block;
    width: 1.5rem;
    height: 3px;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    content: "";
    background: #fff;
    position: absolute;
    bottom: 0;
    right: calc((100% - 1.5rem) / 2);
    opacity: 0;
}

.header .main-nav>li:hover>.in {
    color: #ccc;
}

.header .main-nav>li:first-child>.in {
    padding-right: 0;
}

.header .main-nav>li.active .in {
    font-weight: bold;
    color: #fff;
}

.header .main-nav>li.active>.in::before {
    opacity: 1;
}

.header .main-nav>li.has-child {
    position: relative;
}

.header .main-nav>li.has-child>.in::after {
    font-family: var(--icons-font);
    content: "\f107";
    font-weight: 300;
    position: relative;
    top: .1rem;
    margin-right: .5rem;
    display: inline-block;
}

.header .sub-nav {
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    animation: fadeIn .2s;
}

.header .sub-nav .sub-nav {
    top: 0;
    right: 100%;
    padding-right: 1rem;
}

.header li:hover>.sub-nav {
    display: block;
}

.header .sub-nav .wrapper {
    background: #fff;
    border-radius: .5rem;
    width: 180px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.header .sub-nav li .in {
    color: #333;
    padding: .5rem;
    display: block;
    transition: background .3s;
}

.header .sub-nav li:first-child>.in {
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
}

.header .sub-nav li:last-child>.in {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}

.header .sub-nav li:hover>.in {
    background: #eee;
}

.header .sub-nav li.has-child {
    position: relative;
}

.header .sub-nav li.has-child>.in::after {
    font-family: var(--icons-font);
    content: "\f104";
    font-weight: 300;
    float: left;
}

.header .socials {
    direction: ltr;
    white-space: nowrap;
    overflow: hidden;
}

.header .socials a {
    transition: opacity .3s;
}

.header .socials a:hover {
    opacity: .8;
}

.header .socials li {
    display: inline-block;
    margin-right: .5rem;
}

.header .socials li:last-child {
    margin-right: 0;
}

.header .toggleNavs {
    color: #fff;
    font-size: 1.25rem;
    padding: 1rem 0 1rem 1rem;
}

.vertical-navs {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #fff;
    z-index: 101;
    font-size: .875rem;
    font-weight: 500;
    transition: right .3s;
}

.vertical-navs.open {
    right: 0;
}

.vertical-navs .close {
    font-size: .75rem;
    padding: .5rem;
    color: #979797;
}

.vertical-navs ul ul {
    margin-right: 1rem;
    border-right: 2px dashed #eee;
    display: none;
    padding-right: .5rem;
}

.vertical-navs .logo-box {
    background: var(--primary-color);
    display: block;
    text-align: center;
    padding: 1rem;
}

.vertical-navs li .in {
    padding: .75rem 1rem;
    display: block;
    transition: background .3s;
}

.vertical-navs li .in:hover {
    background: #eee;
}

.vertical-navs .toggle-sub-child {
    background: #fbfbfb;
    padding: 0 1rem;
}

.vertical-navs .toggle-sub-child i {
    transition: transform .3s;
}

.vertical-navs .toggle-sub-child.opened i {
    transform: rotate(180deg);
}

.home-above {
    padding-top: 1rem;
    position: relative;
}

.home-above::before {
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    content: "";
    z-index: -1;
    background: var(--primary-color);
    background: linear-gradient(180deg, rgba(9, 49, 75, 1) 0%, rgba(16, 16, 16, 1) 100%);
    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
}

.home-above .slider {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.slider-nav-btn {
    font-size: 16px;
    width: 3.1875em;
    height: 9.6875em;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: calc((100% - 9.6875em) / 2);
    z-index: 1;
    transition: opacity .3s;
}

.slider-nav-btn.swiper-button-disabled::before {
    opacity: .5;
}

.slider-nav-btn::before {
    font-family: var(--icons-font);
    color: #fff;
    position: relative;
    top: -.4em;
    font-size: 1.125em;
    transition: opacity .5s;
}

.slider-nav-btn.next {
    background-image: url("../images/slider-flow-left.png");
    left: -1.0625em;
}

.slider-nav-btn.next::before {
    content: "\f104";
    left: .25rem;
}

.slider-nav-btn.prev {
    background-image: url("../images/slider-flow-right.png");
    right: -1.0625em;
}

.slider-nav-btn.prev::before {
    content: "\f105";
    right: .25rem;
}

.slider-nav-btn.white-mode::before {
    color: #333;
}

.slider-nav-btn.white-mode.next {
    background-image: url("../images/white-slider-flow-left.png");
}

.slider-nav-btn.white-mode.prev {
    background-image: url("../images/white-slider-flow-right.png");
}

.home-above .slider .slide {
    position: relative;
}

.home-above .slider .slide img {
    width: 100%;
    height: auto;
    transition: transform .3s;
}

.home-above .slide:hover img {
    transform: scale(1.1);
}

.home-above .slider .slide .link-cover {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.home-above .slider .slide .content-box {
    background: rgb(52, 52, 52, .9);
    border-radius: .5rem;
    padding: 1rem;
    transition: background .3s;
}

.home-above .slider .slide .link-cover .t1 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-above .col-center {
    border-radius: 1rem;
    overflow: hidden;
}

.home-above .col-center .post {
    min-height: 33.333%;
    height: 33.333%;
    position: relative;
    overflow: hidden;
}

.home-above .col-center .post:last-child {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;
}

.home-above .col-center .post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.home-above .col-center .post:hover img {
    transform: scale(1.1);
}

.home-above .col-center .post .link-cover {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-above .col-center .post .content-box {
    padding: .75rem;
    background: rgb(52, 52, 52, .85);
    font-size: .875rem;
}

.home-above .col-center .post p {
    color: #fff;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-above .coverCol {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@media screen and (max-width: 991px) {
    .home-above .coverCol {
        position: relative;
    }
}

.home-above .col-end .cat {
    height: calc((100% - 2rem) / 3);
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #2d2d2d;
    position: relative;
}

.home-above .col-end .cat:first-child {
    height: calc(50% - 1rem);
}

@media screen and (max-width: 767px) {
    .home-above .col-end .cat {
        height: 200px !important;
    }
}

.home-above .col-end .cat:last-child {
    margin-bottom: 0;
}

.home-above .col-end .cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
    transition: opacity .3s;
}

.home-above .col-end .cat:hover img {
    opacity: .5;
}

.home-above .col-end .cat b {
    font-size: .875rem;
}

.home-above .col-end .cat span {
    font-size: .75rem;
    color: #bbb;
}

.title-with-tab .title-in {
    font-size: 1.25rem;
    font-weight: 800;
}

.title-with-tab .title-in span {
    font-weight: 500;
}

.title-with-tab .desc {
    font-size: .75rem;
    color: #A7A7A7;
    max-width: 30%;
    margin: 0;
    padding-left: 1rem;
}

@media screen and (max-width: 767px) {
    .title-with-tab .desc {
        max-width: 100%;
    }
}

.title-with-tab .tabs {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
    margin-top: -1.65rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (max-width: 767px) {
    .title-with-tab .tabs {
        margin-top: 0;
        justify-content: flex-start;
    }
}

.title-with-tab .tabs li {
    margin-left: .5rem;
    color: #747474;
    font-size: .875rem;
    padding: .5rem;
    cursor: pointer;
    border-radius: .5rem;
    transition: background .3s;
    position: relative;
}

.title-with-tab .tabs li::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 120%;
    background: var(--primary-color);
    background: linear-gradient(90deg, rgba(9, 49, 75, 0) 0%, var(--primary-color) 50%, rgba(16, 16, 16, 0) 100%);
    bottom: -1px;
    left: -10%;
    opacity: 0;
    transition: opacity .3s;
}

.title-with-tab .tabs li:hover {
    background: #eee;
}

.title-with-tab .tabs li:last-child {
    margin: 0;
}

.title-with-tab .tabs li.active {
    color: var(--primary-color);
    font-weight: bold;
    background: none;
}

.title-with-tab .tabs li.active::after {
    opacity: 1;
}

.multimedia-sec::before {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 535px;
    background: url("../images/continents.png") no-repeat;
    background-position: center;
    content: "";
    left: 0;
    top: -10rem;
    opacity: .03;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .multimedia-sec::before {
        opacity: 0.02;
    }
}

.card-c1 {
    position: relative;
}

.card-c1 .imgBox {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.card-c1 img {
    width: 100%;
    height: auto;
    transition: transform .3s;
}

.card-c1:hover img {
    transform: scale(1.1);
}

.card-c1 .t1 {
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-c1 .icon-box {
    width: 3rem;
    height: 3rem;
    display: block;
    background: rgba(0, 0, 0, .4);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    color: #fff;
    transition: background .3s;
}

.card-c1 .icon-box::before {
    font-family: var(--icons-font);
    font-weight: 800;
}

.card-c1.video-mode .icon-box::before {
    content: "\f04b";
}

.card-c1.podcast-mode .icon-box::before {
    content: "\f130";
}

.card-c1.photo-mode .icon-box::before {
    content: "\f03e";
}

.card-c1:hover .icon-box {
    background: rgba(0, 0, 0, .6);
}

.card-c1-skeleton .b-1 {
    height: 190px;
    border-radius: 1rem;
    overflow: hidden;
}

.card-c1-skeleton .b-2 {
    height: 1rem;
    border-radius: 10rem;
}

.sec-title {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.sec-title .title-in {
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 0;
}

.sec-title .title-in::before {
    width: 1.3rem;
    height: 4px;
    background: #CA1F1F;
    content: "";
    margin-left: .5rem;
    border-bottom-left-radius: 10rem;
}

.sec-title .title-in b {
    color: #CA1F1F;
}

.home-news-sec::before {
    width: 100%;
    height: 150%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 1) 54%, rgba(247, 247, 247, 0.25) 100%);
    z-index: -1;
    content: "";
}

.tiny-inline-news {
    position: relative;
    margin: 1.5rem 0;
}

.tiny-inline-news .inner-box {
    display: flex;
    align-items: flex-start;
    position: relative;
    color: #494949;
}

.tiny-inline-news .inner-box::before {
    content: "";
    min-width: 5px;
    width: 5px;
    height: 5px;
    border-radius: .1rem;
    background: var(--primary-color);
    margin: .5rem 0 0 .5rem;
}

.tiny-inline-news .inner-box::after {
    content: "\f355";
    font-family: var(--icons-font);
    border-radius: .1rem;
    color: #B4B4B4;
    align-self: flex-end;
    font-weight: 800;
    margin-right: 1rem;
    font-size: .75em;
    transition: color .3s;
}

.tiny-inline-news.mode-1 {
    border-bottom: 1px solid #D7D7D7;
    padding: 1rem 0;
    margin: 0;
}

.tiny-inline-news.mode-1:last-child {
    border: 0;
}

.tiny-inline-news.mode-1::after {
    content: "\f355";
    font-family: var(--icons-font);
    border-radius: .1rem;
    color: #B4B4B4;
    font-weight: 800;
    margin: .25rem 1rem 0 0;
    font-size: .75em;
    transition: color .3s;
    position: relative;
    display: block;
}

.tiny-inline-news.mode-1:hover::after {
    color: #CA1F1F;
}

.tiny-inline-news.mode-1 .inner-box::after {
    content: "";
    margin: 0;
}

.tiny-inline-news:hover .inner-box::after {
    color: #CA1F1F;
}

.tiny-inline-news .t1 {
    font-size: .875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.75em;
    font-weight: bold;
    margin: 0;
}

.tiny-inline-news.mode-1 .t1 {
    font-size: .75rem;
}

.tiny-inline-news:hover .t1 {
    color: #2D2D2D;
}

.tiny-inline-news .cover-bg {
    background: rgb(202, 31, 31);
    background: linear-gradient(90deg, rgba(202, 31, 31, 1) 0%, rgba(202, 31, 31, 0.57) 43%, rgba(247, 247, 247, 0) 100%);
    position: absolute;
    width: calc(100% + 1.5rem);
    height: calc(100% + 1.5rem);
    left: -.75rem;
    top: -.75rem;
    opacity: 0;
    transition: opacity .1s;
    border-radius: 1rem;
}

.tiny-inline-news.mode-1 .cover-bg {
    height: 100%;
    top: 0;
}

.tiny-inline-news .cover-bg::before {
    content: "";
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: .875rem;
}

.tiny-inline-news:hover .cover-bg {
    opacity: 1;
}

.lg-news-card {
    position: relative;
}

.lg-news-card .img-box {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: block;
}

.lg-news-card .img-box::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
    opacity: .25;
    content: "";
    transition: opacity .3s;
}

.lg-news-card:hover .img-box::after {
    opacity: .1;
}

.lg-news-card .img-box img {
    width: 100%;
    height: auto;
}

.lg-news-card .content-row {
    padding: 0 1rem;
    margin-top: -2rem;
    position: relative;
}

.lg-news-card .content-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.lg-news-card .t1 {
    font-size: .75rem;
    overflow: hidden;
    margin-bottom: .5rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lg-news-card .t2 {
    font-weight: 800;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .875rem;
}

.lg-news-card .cat {
    background: var(--primary-color);
    border-radius: 10rem;
    padding: .25rem .75rem;
    font-size: .75rem;
    color: #fff;
    z-index: 1;
    position: relative
}

.lg-news-card .icon-box {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background: #d9d9d9;
    transition: transform .3s;
}

.lg-news-card .icon-box::before {
    content: "\f053";
    font-family: var(--icons-font);
    font-size: .75rem;
}

.lg-news-card:hover .icon-box {
    transform: translateX(-.25rem);
}

.card-c2 {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.card-c2:last-child {
    margin-bottom: 0;
}

.card-c2 .img-box {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 1rem;
    border: 3px solid rgb(172, 172, 172, .37);
    overflow: hidden;
    transition: border-color .3s;
}

.card-c2 .img-box.no-border {
    border: 0;
    transition: opacity .3s;
}

.card-c2:hover .img-box {
    border-color: rgb(202, 31, 31, .75);
}

.card-c2:hover .img-box.no-border {
    opacity: .8;
}

.card-c2 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-c2 .t1 {
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.75em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-c2.small-f .t1 {
    font-size: .75rem;
}

.card-c2 .cat {
    background: #B41D92;
    font-size: .7rem;
    color: #fff;
    padding: 0 .4rem;
    border-radius: .25rem;
    position: relative;
    z-index: 1;
    transition: background .3s;
}

.card-c2 .cat:hover {
    background: #a01b81;
}

.card-c3 {
    height: 100%;
    position: relative;
}

.card-c3 img {
    width: 100%;
    height: auto;
}

.card-c3 .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    background: rgb(43, 43, 43);
    background: linear-gradient(0deg, rgba(43, 43, 43, 1) 0%, rgba(0, 0, 0, 0.13209033613445376) 100%);
}

.card-c3 .content-box::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color);
    opacity: 0;
    content: "";
    transition: opacity .3s;
}

.card-c3:hover .content-box::before {
    opacity: .2;
}

.card-c3 .content-box .t1 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    line-height: 1.5em;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    font-size: .875rem;
}

.card-c3 .line {
    width: 100%;
    height: 2px;
    background: url("../images/dashed-line.svg") no-repeat;
    background-position: center;
}

.top-news-sec .items-holder {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.top-news-sec .items-holder::after {
    position: absolute;
    height: 40px;
    width: calc(100% - 4rem);
    bottom: -30px;
    left: 2rem;
    background: #fff;
    content: "";
    border-top-right-radius: 10rem;
    border-top-left-radius: 10rem;
}

.card-c4 {
    position: relative;
}

.card-c4 .img-box {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.card-c4 .img-box img {
    width: 100%;
    height: auto;
}

.card-c4 .img-box::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(43, 43, 43);
    background: linear-gradient(0deg, rgba(43, 43, 43, 1) 0%, rgba(0, 0, 0, 0.13209033613445376) 100%);
    content: "";
    transition: opacity .3s;
}

.card-c4 .img-box::after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color);
    opacity: 0;
    content: "";
    transition: opacity .3s;
}

.card-c4:hover .img-box::before {
    opacity: 0;
}

.card-c4:hover .img-box::after {
    opacity: .2;
}

.card-c4 .content-row {
    padding: 0 1rem;
    margin-top: -2rem;
    position: relative;
}

.card-c4 .content-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    margin-bottom: 2rem;
}

.card-c4 .t1 {
    font-size: .875rem;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    text-align: center;
}

.other-media-sec .swiper-slide .card-c4 {
    transition: opacity .3s;
}

.footer {
    overflow: hidden;
}

.footer .wrapper {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background: rgb(16, 16, 16);
    background: linear-gradient(0deg, rgba(16, 16, 16, 1) 0%, rgba(11, 40, 58, 1) 54%, rgba(9, 49, 75, 1) 100%);
    padding-top: 5rem;
}

.footer .row-t {
    position: relative;
    top: 5rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer .row-t {
        top: 3rem;
    }
}

.footer .logo-holder {
    border-bottom: 2px dashed rgba(255, 255, 255, .2);
}

.footer .banner-box {
    overflow: hidden;
    position: relative;
}

.footer .banner-box::after {
    font-size: 16px;
    width: 9.6875em;
    height: 3.25em;
    background: url("../images/flow-down.png") no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    position: absolute;
    bottom: -1em;
    right: calc(((100% - 9.6875em) / 2) + .375em);
}

.footer .banner-box img {
    border-radius: 1rem;
    height: auto;
    width: 100%;
}

.footer .go-up {
    font-size: 16px;
    background: #fff;
    border: 2px solid #e1e2f9;
    width: 2.5em;
    height: 2.5em;
    border-radius: 100%;
    color: #464646;
    margin-top: -1.5em;
    position: relative;
    transition: background .3s;
    font-size: .875rem;
}

@media screen and (max-width: 767px) {

    .footer .banner-box::after,
    .footer .go-up {
        font-size: 10px;
    }
}

@media screen and (max-width: 560px) {

    .footer .banner-box::after,
    .footer .go-up {
        font-size: 8px;
    }
}

.footer .go-up:hover {
    background: #eee;
}

.footer .col-box {
    padding: 1rem 0;
    position: relative;
}

.footer .col-box::after {
    content: "";
    width: 2px;
    height: calc(100% - 2rem);
    left: 0;
    top: 1rem;
    background: rgba(255, 255, 255, .11);
    position: absolute;
}

@media screen and (max-width: 991px) {
    .footer .col-box::after {
        width: 100%;
        height: 2px;
        left: 0;
        top: auto;
        bottom: -.5rem;
    }
}

.footer .col-box.no-border::after {
    width: 0;
}

.footer .col-title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
    font-size: .875rem;
}

.footer .nav {
    display: block;
    color: #fff;
    opacity: .65;
    transition: opacity .3s;
    display: flex;
    align-items: flex-start;
    font-size: .75rem;
    padding: .25rem 0;
    flex-wrap: nowrap;
}

.footer .nav::before {
    content: "\f0d9";
    font-family: var(--icons-font);
    font-weight: 800;
    margin-left: .5rem;
    font-size: .875em;
    position: relative;
    top: .1rem;
}

.footer .nav:hover {
    opacity: 1;
}

.footer .contact-details {
    font-size: .75rem;
}

.footer .contact-details li {
    margin-bottom: 1rem;
}

.footer .contact-details i {
    color: #fff;
    margin-left: .5rem;
    font-size: .75rem;
}

.footer .contact-details .t1,
.footer .contact-details .t2 {
    color: #fff;
    opacity: .65;
    transition: opacity .3s;
}

.footer .contact-details .t1:hover {
    opacity: 1;
}

.copyright-row {
    background: var(--primary-color);
    padding: 1rem 0;
}

.copyright-row p {
    text-align: center;
    color: #fff;
    margin: 0 0 .25rem 0;
    font-size: .875rem;
}

.copyright-row i {
    color: #C90325;
}

.footer .dev-by {
    font-size: .75rem;
    color: #ccc;
}

.footer .cover-box {
    position: relative;
}

.footer .cover-box::before {
    position: absolute;
    right: -1rem;
    width: calc(100% + 1rem);
    height: 100%;
    background: var(--primary-color);
    content: "";
    border-top-right-radius: 2rem;
}

.footer .left-cover {
    background: var(--primary-color);
    flex-grow: 1;
}

.page-title .t1 {
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 0 .5rem 0;
    color: var(--primary-color);
}

.page-title.lg .t1 {
    font-weight: 900;
    font-size: 1.5rem;
}

.page-title .t1 span {
    font-weight: normal;
}

.page-title .t2 {
    font-size: .75rem;
    color: #a7a7a7;
}

.has-top-vc::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/header-vc.png") no-repeat;
    background-position: top center;
    top: 0;
    opacity: .05;
}

.main-news-sec .col-end-block {
    height: calc((100% - 1rem) / 2);
}

.main-news-sec .cover-col {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    .main-news-sec .cover-col {
        position: relative;
    }

    .main-news-sec .col-end-block {
        height: auto;
    }
}

.card-c5 {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    font-size: 1.25rem;
}

.card-c5.small-f {
    font-size: .875rem;
}

.card-c5.set-mh {
    max-height: 400px;
}

.card-c5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

@media screen and (max-width: 767px) {
    .card-c5 img.h-auto-sm {
        height: auto;
    }
}

.card-c5 .content-box {
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: #fff;
}

.card-c5 .content-box .txt {
    display: flex;
    align-items: flex-start;
}

.card-c5 .content-box .txt .in {
    line-height: 1.75em;
    font-size: 1em;
    font-weight: bold;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-c5.small-f .content-box .txt .in {
    line-height: 1.5em;
}

.card-c5 .content-box .txt::before {
    content: "\f15c";
    font-family: var(--icons-font);
    font-size: .875em;
    font-weight: 300;
    margin-left: .5em;
    position: relative;
    top: .4em;
}

.card-c5.small-f .content-box .txt::before {
    top: .2em;
}

.card-c5 .content-box::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background: rgb(16, 16, 16);
    background: linear-gradient(0deg, rgba(16, 16, 16, 1) 0%, rgba(9, 49, 75, 0.3) 50%, rgba(9, 49, 75, 0.2) 100%);
}

.card-c5:hover img {
    transform: scale(1.05);
}

.news-card {
    position: relative;
}

.news-card img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .19);
    transition: box-shadow .3s;
}

.news-card:hover img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.news-card .t1 {
    display: flex;
    align-items: center;
}

.news-card .t1::before {
    content: "\f15c";
    font-family: var(--icons-font);
    font-size: .875rem;
    font-weight: 500;
    margin-left: .5rem;
    position: relative;
    top: 1px;
}

.news-card .t1 .in {
    flex-grow: 1;
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    transition: color .3s;
}

.news-card:hover .t1 .in {
    color: #124364;
}

.news-card .t2 {
    font-size: .75rem;
    color: #979797;
    line-height: 1.75em;
    height: 3.5em;
    overflow: hidden;
    display: block;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .nav-btn {
    background: #B4B4B4;
    border-radius: 5rem;
    width: 2em;
    height: 2.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 .5rem;
    transition: background .3s;
}

.pagination .nav-btn:hover {
    background: #aaaaaa;
}

.pagination ul {
    display: flex;
    align-items: center;
}

.pagination ul li {
    margin: 0 .25rem;
}

.pagination .in {
    height: 2rem;
    background: #fbfbfb;
    min-width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .5rem;
    color: #8B8B8B;
    transition: background .3s;
    border-radius: .5rem;
    font-size: .875rem;
}

.pagination .in:hover {
    background: #e2e2e2;
}

.pagination li.active .in {
    background: var(--primary-color);
    color: #fff;
}

.news-content .tiny-title {
    font-size: .75rem;
    color: var(--primary-color);
    margin-bottom: .5rem;
}

.news-content .news-title {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.75em;
    margin: 0;
}

.news-content .top-details {
    padding-top: 1rem;
    border-top: 1px solid #ECECEC;
    font-size: .875rem;
}

.news-content .short-link {
    color: var(--primary-color);
}

.news-content .detail-items>span {
    margin-left: 1rem;
    color: var(--primary-color);
}

.news-content .detail-items>span:last-child {
    margin: 0;
}

.news-body img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 1rem;
}

.news-body .purple-box {
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    font-size: .875rem;
    color: #fff;
    background: var(--primary-color);
}

.news-body p {
    text-align: justify;
    color: #747474;
    font-size: .875rem;
    line-height: 2em;
}

.news-btm {
    background: #464646;
    border-radius: 1rem;
    padding: 1rem;
    color: #FFF6F6;
    font-size: .875rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 2em;
}

.news-btm>span {
    margin-left: 2rem;
}

.news-btm a {
    color: #FFF6F6;
}

.news-btm .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news-btm .tags a {
    color: #fff;
    transition: color .3s;
    margin-left: 1rem;
    font-size: .75rem;
}

.news-btm .tags a::before {
    content: "#";
}

.news-btm .tags a:hover {
    color: #eee;
}

.news-page::before {
    top: 20rem;
    opacity: .02;
}

.card-c6 {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 1.5rem;
}

.card-c6:last-child {
    margin: 0;
}

.card-c6 img {
    max-width: 280px;
    height: auto;
    border-radius: 1rem;
}

@media screen and (max-width: 767px) {
    .card-c6 img {
        max-width: 200px;
    }
}

@media screen and (max-width: 575px) {
    .card-c6 {
        flex-direction: column;
    }

    .card-c6 img {
        margin: 0 auto 1rem auto;
        max-width: 250px;
    }
}

.card-c6 .t1 {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.75em;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-c6 .t2 {
    font-size: .75rem;
    color: #979797;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2rem;
    line-height: 1.75em;
}

.card-c6 .go-link {
    border-radius: 10rem;
    background: #eee;
    color: #464646;
    padding: .5rem 1rem;
    font-size: .875rem;
    transition: background .3s;
    font-weight: 500;
}

.card-c6 .go-link::after {
    font-family: var(--icons-font);
    content: "\f104";
    font-weight: 300;
    position: relative;
    top: 1px;
}

.card-c6:hover .go-link {
    background: #e4e4e4;
}

.bg-vector {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.bg-vector::before,
.bg-vector::after {
    position: absolute;
    content: "";
}

.bg-vector::before {
    background: url("../images/header-vc.png") no-repeat center;
    width: 100%;
    height: 252px;
    opacity: .05;
}

.bg-vector::after {
    width: 100%;
    height: 100%;
    min-height: 535px;
    background: url("../images/continents.png") no-repeat;
    background-position: top center;
    content: "";
    left: 0;
    top: 25rem;
    opacity: .03;
}

.card-c7 {
    position: relative;
}

.card-c7 .cover-box {
    padding: 1rem;
}

.card-c7 .cover-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0%, rgba(54, 54, 54, 0.8) 50%, rgba(27, 27, 27, 0.1) 100%);
    transition: opacity .3s;
}

.card-c7 .cover-box:hover::before {
    opacity: .8;
}

.card-c7 img {
    width: 100%;
    height: auto;
}

.card-c7 .icn-box {
    color: #fff;
    font-style: normal;
    font-family: var(--icons-font);
    font-weight: 800;
}

.card-c7.video .icn-box::before {
    content: "\f04b";
    font-size: 3rem;
}

.card-c7.picture .icn-box::before {
    content: "\f030";
    font-size: 2rem;
}

.card-c7 .t1 {
    font-size: 1.125rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.75em;
}

.lg-media-slider {
    border-radius: 1rem;
    overflow: hidden;
}

.card-c8 {
    position: relative;
    opacity: .3;
    transition: opacity .1s;
}

.card-c8 img {
    width: 100%;
    height: auto;
}

.card-c8 .inner-box {
    border-radius: 1rem;
    overflow: hidden;
}

.card-c8 .content-box {
    padding: 1rem;
}

.card-c8 .content-box::before {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    content: "";
    background: rgb(27, 27, 27);
    background: linear-gradient(0deg, rgba(27, 27, 27, .8) 0%, rgba(107, 107, 107, 0.1) 100%);
    transition: opacity .3s;
}

.card-c8 .icn-box {
    color: #fff;
    font-style: normal;
    font-family: var(--icons-font);
    font-weight: 900;
}

.card-c8.video .icn-box::before {
    content: "\f04b";
    font-size: 2rem;
}

.card-c8.picture .icn-box::before {
    content: "\f030";
    font-size: 1.5rem;
}

.card-c8 .t1 {
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.75em;
}

.card-c8 .backward {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .5;
    transition: transform .3s;
}

.swiper-slide.swiper-slide-fully-visible .card-c8 {
    opacity: 1;
}

.swiper-slide.swiper-slide-fully-visible .card-c8 .backward {
    transform: translateY(-1rem);
}

.card-c8 .backward img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(.9);
    border-radius: 1rem;
}

.card-c8:hover .backward {
    transform: translateY(0) !important;
}

.card-c8:hover .content-box::before {
    opacity: .75;
}

.card-c8 .link-box {
    height: calc(100% + 1rem);
    top: -1rem;
}

.full-media-slider .swiper-slide {
    padding-top: 1rem;
}

.card-c9 {
    position: relative;
}

.card-c9 .img-box {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.card-c9 img {
    width: 100%;
    height: auto;
    transition: transform .3s;
}

.card-c9.video img {
    filter: grayscale(100%);
}

.card-c9 .cover-box {
    color: #fff;
    font-size: 1.75rem;
}

.card-c9 .cover-box::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(107, 107, 107, .1) 0%, #1b1b1b 100%);
    transition: opacity .3s;
}

.card-c9 .icn-box {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    border: 3px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, .3);
}

.card-c9 .icn-box::before {
    font-family: var(--icons-font);
    content: "\f04b";
    font-size: 1.5rem;
    color: #fff;
    font-weight: 900;
}

.card-c9 .t1 {
    font-weight: 800;
    font-size: 1.125rem;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .3s;
}

.card-c9 .t1::before {
    font-family: var(--icons-font);
    margin-left: .5rem;
    font-weight: 900;
    font-size: .875em;
}

.card-c9.video .t1::before {
    content: "\e132";
}

.card-c9.picture .t1::before {
    content: "\f030";
}

.card-c9 .desc {
    font-size: .75rem;
    color: #979797;
    line-height: 2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-c9.photo .cover-box {
    display: none;
}

.card-c9:hover .t1 {
    color: #555;
}

.card-c9.video:hover .cover-box::before {
    opacity: .75;
}

.card-c9.video:hover img {
    filter: grayscale(0);
}

.card-c9.picture .cover-box {
    display: none;
}

.card-c9.picture .t1 {
    font-size: 1rem;
}

.card-c9.picture:hover img {
    transform: scale(1.05);
}

.easy-way {
    border-radius: 1rem;
    padding: 1rem;
    background: rgb(3, 14, 78);
    background: linear-gradient(90deg, rgba(3, 14, 78, 1) 0%, rgba(37, 76, 177, 1) 100%);
    color: #fff;
    font-size: .875rem;
}

.easy-way p {
    margin: 0;
    line-height: 1.75em;
}

.sec-title-c1 .row-1 {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.sec-title-c1 .row-1 .t1 {
    font-size: 1.125rem;
    font-weight: 900;
    padding-left: 1rem;
    margin: 0;
}

.sec-title-c1 .row-1::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #EDEDED;
}

.sec-title-c1 .t2 {
    font-size: .875rem;
    color: #ccc;
}

.field-c1 {
    background: #F3F3F3;
    font-size: .875rem;
    padding: 1rem;
    border-radius: .5rem;
    border: 2px solid transparent;
    transition: border .3s, background .3s;
    width: 100%;
}

.field-c1:focus {
    background: #fff;
    border-color: #204297;
}

textarea.field-c1 {
    min-height: 10rem;
    resize: none;
}

.contact-box {
    border-radius: 1rem;
    background: url("../images/contact-bg.png") rgba(0, 0, 0, .8);
    background-position: center;
    position: relative;
    color: #fff;
    font-size: .875rem;
    padding: 1rem;
}

.contact-box a {
    color: #fff;
    padding: .5rem;
}

.contact-box b {
    font-weight: 500;
}

.service-error {
    border-radius: .5rem;
    padding: 1rem;
    font-size: .875rem;
    background: #ef4444;
    color: #fff;
}

.card-c10 {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.card-c10 img {
    width: 100%;
    height: auto;
    transition: transform .3s;
}

.card-c10 .link-box {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    font-size: .875rem;
    text-align: center;
}

.card-c10 .link-box::before {
    content: "";
    background: rgb(27, 27, 27);
    background: linear-gradient(0deg, rgba(27, 27, 27, .8) 0%, rgba(107, 107, 107, 0.1) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity .3s;
}

.card-c10:hover .link-box::before {
    opacity: .75;
}

.card-c10:hover img {
    transform: scale(1.1);
}

.card-c10 .icn {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.card-c10 .count {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: rgba(0, 0, 0, .5);
    padding: 1px .25rem;
    border-radius: .25rem;
    font-size: .75rem;
}

.card-c10 .count::before {
    font-family: var(--icons-font);
    content: "\f065";
    font-weight: 300;
    margin-right: .25rem;
}

.card-c10 p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-c11 {
    position: relative;
    letter-spacing: -0.05rem;
}

.card-c11 .img-box {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: block;
}

.card-c11 .img-box img {
    width: 100%;
    height: auto;
}

.card-c11 .img-box::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(43, 43, 43);
    background: linear-gradient(0deg, rgba(43, 43, 43, 1) 0%, rgba(0, 0, 0, 0.13209033613445376) 100%);
    content: "";
    transition: opacity .3s;
}

.card-c11 .img-box::after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color);
    opacity: 0;
    content: "";
    transition: opacity .3s;
}

.card-c11:hover .img-box::before {
    opacity: 0;
}

.card-c11:hover .img-box::after {
    opacity: .2;
}

.card-c11 .content-row {
    padding: 0 1rem;
    margin-top: -2rem;
    position: relative;
}

.card-c11 .content-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    margin-bottom: 2rem;
}

.card-c11 .t1 {
    font-size: .875rem;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
}

.card-c11 .sb-1 {
    font-size: .875rem;
    margin-bottom: .5rem;
    text-overflow: ellipsis;
    display: inline-block;
}

.nav-holder-c74 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    position: relative;
    top: -1.25rem;
    z-index: 2;
}

.nav-holder-c74 button {
    width: 1.75rem;
    height: 1.75rem;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    font-size: .875rem;
    color: #555;
}

.nav-holder-c74 button.swiper-button-disabled {
    opacity: .5;
}

/* new wpage from here */
.page-1 .above-box {
    gap: 1rem;
}

.page-1 .above-box>div {
    flex: 1;
}

.page-1 .above-box .box {
    box-shadow: 0px 6px 60px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 1.25rem;
    border-radius: 1rem;
    letter-spacing: -0.05em;
}

.page-1 .above-box .user-img {
    width: 90px;
    height: 90px;
    border-radius: 1rem;
    object-fit: cover;
}

.page-1 .above-box .name {
    flex-grow: 1;
    min-width: 0;
    text-align: right;
}

@media screen and (max-width: 575px) {
    .page-1 .above-box .name {
        text-align: center;
    }
}

.page-1 .above-box .name b {
    font-weight: 800;
    margin-bottom: .25rem;
}

.page-1 .above-box .name span {
    font-size: .875rem;
    color: #4B2309;
}

.page-1 .above-box .social a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    direction: ltr;
    text-align: left;
    margin-bottom: .5rem;
    color: #4B2309;
    text-align: center;
}

@media screen and (max-width: 575px) {
    .page-1 .above-box .social a {
        justify-content: center;
    }
}

.page-1 .above-box .social a:hover {
    color: #5e3b24;
}

.page-1 .above-box .text-box {
    color: #686868;
}

.page-1 .above-box .text-box .inner {
    max-height: calc(1.75rem * 3);
    font-size: .875rem;
    line-height: 1.75rem;
    overflow: hidden;
}

.page-1 .above-box .text-box p {
    margin: 0;
}

.page-1 .above-box .text-box button {
    color: #4B2309;
    font-weight: 800;
    text-align: center;
    width: 100%;
    display: none;
}

.page-1 .above-box .text-box .hightlight-holder {
    position: relative;
}

.page-1 .above-box .text-box .hightlight-holder::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    display: none;
}

.page-1 .above-box .text-box.action-mode button {
    display: block;
}

.page-1 .above-box .text-box.action-mode .hightlight-holder {
    padding-bottom: 1rem;
}

.page-1 .above-box .text-box.action-mode.expanded .inner {
    max-height: none;
}

.page-1 .above-box .text-box.action-mode .hightlight-holder::after {
    display: block;
}

.page-1 .above-box .text-box.action-mode.expanded .hightlight-holder::after {
    display: none;
}

.page-1 .above-box img,
.page-1 .above-box video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.page-1 .local-title {
    letter-spacing: -0.05em;
}

.page-1 .local-title .in {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: .5rem;
    display: block;
}

.page-1 .local-title p {
    font-size: .875rem;
    color: #A7A7A7;
    text-align: center;
}

.page-1 .blocks-sec .block-card {
    background: var(--primary-color);
    color: #fff;
    font-size: .875rem;
    letter-spacing: -0.05em;
    padding: 1.5rem 1rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.page-1 .blocks-sec .block-card.red-mode {
    background: #4B2309;
}

.page-1 .blocks-sec .block-card span {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .page-1 .blocks-sec .block-card span {
        white-space: wrap;
        overflow: visible;
    }
}

.page-1 .blocks-sec .block-card::before {
    min-width: .25rem;
    width: .25rem;
    height: .25rem;
    background: #fff;
    content: "";
    border-radius: 1rem;
}

.page-1 .report-card {
    color: #969696;
    text-align: center;
}

.page-1 .report-card>b {
    display: block;
    text-align: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #272727;
    margin-bottom: .25rem;
}

.page-1 .report-card {
    font-size: .875rem;
}

.page-1 .report-card.has-border {
    border-right: 2px dashed rgba(0, 0, 0, .1);
    border-left: 2px dashed rgba(0, 0, 0, .1);
}

@media screen and (max-width: 991px) {
    .page-1 .report-card.has-border {
        border: 0;
        padding: .5rem 0;
        margin: 1rem 0;
        background: #fbfbfb;
    }
}

.page-1 .business-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F5F5F5;
    gap: .5rem;
    padding: 2rem 0;
    border-radius: 1rem;
}

.page-1 .business-card svg {
    margin-bottom: .5rem;
}

.page-1 .business-card b {
    font-weight: 900;
    font-size: .875rem;
}

.page-1 .business-card span {
    color: #4B2309;
    font-size: .875rem;
}

.page-1 .file-card-holder {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media screen and (max-width: 992px) {
    .page-1 .file-card-holder {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.page-1 .file-card {
    display: flex;
    align-items: center;
    box-shadow: 0px 6px 80px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.05rem;
    gap: 1rem;
    padding: 1rem;
}

.page-1 .file-card:last-child {
    margin: 0;
}

.page-1 .file-card::before {
    content: "\e1d8";
    font-family: var(--icons-font);
    color: #747474;
    font-weight: 400;
}

.page-1 .file-card .in {
    font-size: .875rem;
    color: #272727;
    margin: 0;
    font-weight: bold;
    flex-grow: 1;
    line-height: 1.5rem;
}

.page-1 .file-card .download-btn {
    background: #4B2309;
    color: #fff;
    font-size: .875rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}

.page-1 .file-card .download-btn:hover {
    background: #442008;
}

@media screen and (max-width: 575px) {
    .page-1 .file-card {
        flex-direction: column;
    }
}

.page-1 .gallery-item {
    border-radius: 1rem;
    border: 1px solid #fff;
    overflow: hidden;
    position: relative;
    width: 300px;
}

.page-1 .gallery-item img {
    width: 100%;
    height: auto;
}

.page-1 .gallery-item .light-bg {
    background: linear-gradient(180deg, rgba(46, 46, 46, 0) 0%, #1B1B1B 106.19%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.page-1 .gallery-item .light-bg i {
    font-size: 1.25rem;
}

.page-1 .page-1-gallery .swiper-slide {
    width: auto !important;
}

.page-1 .spec-bg {
    position: relative;
    padding-bottom: 5rem;
}

.page-1 .spec-bg::before {
    content: "";
    background: url("../images/view.png") #051642 no-repeat;
    background-position: center center;
    background-size: 100% auto;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 150px);
}

.page-1 .contact-card {
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: #fff;
    padding: 1.5rem .5rem;
    font-size: .875rem;
    transition: box-shadow .2s;
}

.page-1 .contact-card:hover {
    box-shadow: 0 0 0 3px #6fe997
}

.lg-module {
    direction: ltr;
}

.page-2 h1 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 900;
    display: block;
    text-align: center;
    padding: 3rem 0;
}

.page-2 .cols-holder {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.page-2 .cols-holder .title-col {
    width: 280px;
    min-width: 280px;
}

.page-2 .cols-holder .map-col {
    flex-grow: 1;
    position: relative;

}

.page-2 .cols-holder .map-col path {
    transition: fill .3s;
}

.page-2 .cols-holder .map-col #Group_2 path:hover,
.page-2 .cols-holder .map-col #Group_2 path.active {
    fill: var(--primary-color);
    cursor: pointer;
    -webkit-filter: drop-shadow(3px 0px 2px rgba(0, 0, 0, 0.7));
    filter: drop-shadow(3px 0px 2px rgba(0, 0, 0, 0.7));
}

@media screen and (max-width: 992px) {
    .page-2 .cols-holder {
        flex-direction: column;
    }

    .page-2 .cols-holder .map-col {
        width: 100%;
        order: -1;
        margin-bottom: 1rem;
        position: relative;
        top: 0;
    }

    .page-2 .cols-holder .title-col {
        width: 100%;
    }
}

.page-2 .cols-holder .col-title {
    background: var(--primary-color);
    padding: 1rem;
    font-size: .875rem;
    letter-spacing: -0.05em;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: .75rem;
    margin-bottom: 1rem;
}

.page-2 .cols-holder .col-title.red-mode {
    background: #4B2309;
}

.page-2 .map-col svg {
    max-width: 100%;
    height: auto;
}

.page-2 .blocks {
    font-size: .875rem;
    font-weight: bold;
    letter-spacing: -0.05em;
    gap: .5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    counter-reset: section;
}

.page-2 .blocks a {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    color: #555353;
    padding: .5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    flex-grow: 1;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-2 .blocks a::before {
    counter-increment: section;
    content: counter(section) ". ";
    color: #8d8d8d;
    font-weight: normal;
}

.page-2 .blocks a.full-width {
    grid-column: 1 / -1;
}

.page-2 .blocks a::after {
    position: absolute;
    content: attr(data-province);
    position: absolute;
    top: 100%;
    z-index: 1;
    background: #2d2d2d;
    color: #fff;
    white-space: nowrap;
    font-weight: normal;
    font-size: .75rem;
    border-radius: .25rem;
    padding: 1px 5px;
    left: 50%;
    margin-top: .5rem;
    display: none;
    animation: provinceAnim .25s forwards;
}

.page-2 .blocks a:hover::after {
    display: block;
}

@keyframes provinceAnim {
    0% {
        opacity: 0;
        transform: translate(-50%, 1rem);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.page-2 .blocks a:hover,
.page-2 .blocks a.active {
    color: #254CB1;
    background: rgba(37, 76, 177, .13);
    border: 1px solid rgba(37, 76, 177, .1);
}

.page-2 .map-tooltip {
    display: none;
    position: absolute;
    left: 0;
    top: -30px;
    font-size: .75rem;
    background: #fff;
    border-radius: 5px;
    padding: 2px 5px;
    color: #000;
}

.page-2 .map-tooltip.show {
    display: block;
}

.page-2 .detail-box {
    background: rgba(37, 76, 177, .13);
    border-radius: 1rem;
    padding: 1rem;
    display: none;
    font-size: .875rem;
    animation: fadeIn .2s;
}

.page-2 .detail-box.active {
    display: block;
}

.page-2 .detail-box b {
    font-weight: 800;
    display: block;
}

.page-2 .detail-box>div {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, .1);
}

.page-2 .detail-box>div:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.page-2 .help-box {
    font-size: .875rem;
    margin-top: 1rem;
}

.page-2 .help-box span {
    color: #99cab7;
}