@font-face {
    src: url(../fonts/alfont_com_AlFont_com_Effra_Rg.ttf);
    font-family: alfont;
}
@font-face {
    src: url(../fonts/alfont_com_Dalton-Maag-Effra-Bold\ 2.ttf);
    font-family: alfontB;
}
@font-face {
    src: url(../fonts/Galano\ Grotesque\ DEMO\ Bold.otf);
    font-family: Galano;
}

html {
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-family: alfontB;
}
ul {list-style: none;padding: 0;margin: 0;}
a {text-decoration: none !important;}
p {margin-bottom: 0;}
hr {margin: 0;}

@media (min-width: 1200px) {
    .container {
        width: 1024px;
    }
}

.paddingL {
    padding-left: 70px;
}

.paddingR {
    padding-right: 70px;
}

.donation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    z-index: 5;
    padding: 5rem;
    background-color: #ffffff;
    box-shadow: 0 0 4px 2px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    animation: showme 1s forwards;
    animation-delay: 2s;
}
.donation.closed {
    opacity: 0 !important;
    visibility: hidden !important;
}
@keyframes showme {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
.donation i {
    cursor: pointer;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
}
.donation .logo img {
    width: 100%;
    height: 50px;
}
.donation .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}
.donation .box img {
    width: 100px;
}
.donation .box span {
    border: 2px solid #fc2d2d;
    padding: .5rem 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    color: #fc2d2d;
    margin-right: 2.5rem;
    transition: all ease-in-out .3s;
}
.donation .box:hover span {
    background-color: #fc2d2d;
    color: #ffffff;
}
@media (max-width: 767px) {
    .donation {
        width: 90%;
    }
}
@media (max-width: 450px) {
    .donation {
        padding: 50px 10px;
    }
}


/* -- Header -- */

header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: all .5s ease-in-out;
}
header.second {
    padding: 15px 0;
}
.width30 {
    width: 30%;
}
.width50 {
    width: 50%;
}
.width20 {
    width: 20%;
}
.width75 {
    width: 75%;
}
.marginAuto {
    margin-left: auto;
}
header.main {
    box-shadow: none;
    background: transparent;
}
header .logo {
    margin: auto;
    width: 90%;
}
header.second .logo {
    margin: auto;
    width: 180px;
}
header .main-menu {
    padding-top: 11px;
    display: flex;
    justify-content: space-around;
}
header.second .main-menu {
    justify-content: flex-end;
}
header.second .main-menu li {
    font-size: 24px;
    margin-right: 90px;
    font-weight: 700;
}
header.second .main-menu li.search-btn {
    margin-right: 50px;
}
header .main-menu li.dropdown li {
    margin-left: 0;
    display: list-item;
}
header .main-menu li.dropdown li a {
    color: #000;
}
header .main-menu li.mobile-links {
    display: none;
}
header .main-menu li a {
    color: #000;
    transition: all .5s ease-in-out;
}
header.main .main-menu li a {
    color: #fff;
}
header.main .main-menu li a:hover,
header .main-menu li a:hover {
    color: #fc2d2d;
}
header .soical-link {
    padding-top: 13px;
    float: right; /* RTL */
}
header .soical-link li {
    display: inline-block;
    margin-right: 10px; /* RLT */
}
header .soical-link li a {
    color: #000;
    transition: all .5s ease-in-out;
}
header.main .soical-link li a {
    color: #fff;
}
header.main .soical-link li.lang a,
header .soical-link li.lang a {
    display: block;
    background: #fff;
    color: #000;
    font-size: 9px;
    padding: 2px;
    position: relative;
    top: -3px;
}
header.main .soical-link li a:hover,
header.main .soical-link li.lang a:hover,
header .soical-link li a:hover,
header .soical-link li.lang a:hover {
    color: #fc2d2d;
    cursor: pointer;
}
.overlay-all {
    display: none;
}
@media (max-width:1200px) and (min-width: 992px) {
    header {
        padding: 20px 0;
    }
    header .main-menu li {
        margin-right: 2px;
        font-size: 12px;
    }
    header .main-menu,
    header .soical-link {
        padding-top: 5px;
    }
}
@media (max-width: 991px) {
    header .main-menu {
        flex-direction: column;
        position: fixed;
        z-index: 9999;
        left: -200px;
        top: 0;
        bottom: 0;
        overflow-y: scroll;
        background: #4f5966;
        width: 200px;
        box-shadow: 0 0 5px rgba(0,0,0,0.5);
        transition: all .5s ease-in-out;
    }
    header .main-menu.open {
        left: 0;
    }
    header .main-menu li {
        display: block;
        padding: 10px 20px;
    }
    header .main-menu li.mobile-links {
        display: block;
        padding: 0;
    }
    header .main-menu li a {
        display: block;
        color: #fff;
    }
    header .soical-link {
        padding: 0;
        float: none;
        text-align: center;
        display: none;
    }
    header .mobile-links .soical-link {
        display: block;
    }
    header .soical-link li {
        display: inline-block;
        padding: 10px 8px;
        margin: 0;
    }
    header .soical-link li.lang,
    header .soical-link li.search-btn {
        display: block;
        padding: 10px 20px;
        text-align: left;
    }
    header.main .soical-link li.lang a,
    header .soical-link li.lang a {
        background: transparent;
        color: #fff;
    }
    .overlay-all {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        background: rgba(0,0,0,0.3);
        cursor: pointer;
    }
    .overlay-all span {
        font-size: 40px;
        color: #fff;
        position: absolute;
        top: 5px;
        right: 25px;
    }
    header .col-xs-12 {
        position: static;
    }
    header .menu-btn {
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 99;
        cursor: pointer;
    }
    header .menu-btn span {
        display: block;
        width: 30px;
        height: 2px;
        margin-bottom: 6px;
        background: #000;
        transition: all .5s ease-in-out;
    }
    header .menu-btn:hover span {
        background: #fc2d2d;
    }
    header .menu-btn span:nth-child(2) {
        width: 20px;
        margin-left: 10px;
    }
    header.second .logo {
        margin: 0;
    }
}
@media (max-width: 767px) {
    header .logo {
    margin: 0;
    width: 50%;
    }
    .width30 {
        width: 100%;
    }
    header.main {
        background: #fff;
        box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }
}
@media (max-width: 500px) {
    header .logo {
        width: 200px;
    }
}
/* -- ./Header -- */

/* -- Main News -- */

.main-block {
    position: relative;
    height: 100vh;
    width: 100%;
}

.main-block .img-box {
    position: absolute;
    z-index: 10;
    right: 0;
    height: 100vh;
    width: 70%;
}
.main-block .img-box img,
.main-block .img-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.main-block .img-box i {
    position: absolute;
    z-index: 5;
    bottom: 30vh;
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    font-size: 50px;
    color: #fc2d2d;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    padding: 15px;
    transition: all .5s ease-in-out;
}
.main-block .img-box:hover i {
    color: #fff;
    background: #fc2d2d;
    border-color: #fc2d2d;
}
.main-block .info {
    position: absolute;
    width: 40%;
    z-index: 11;
    left: 5%;
    bottom: 16%;
}
.main-block .info h3 {
    font-size: 45px;
    line-height: 1.4;
    text-transform: uppercase;
    max-height: 335px;
    overflow: hidden;
    color: #000;
    transition: all .5s ease-in-out;
}
.main-block .info h3 span {
    background-color: rgba(255, 255, 255, 0.188);
}
.main-block .info:hover h3 {
    color: #fc2d2d;
}
.flickity-page-dots {
    bottom: 10px;
    right: 50px; /*rtl*/
    width: unset;
}
.flickity-page-dots .dot {
    border: 2px solid #fff;
    background: unset;
    width: 15px;
    height: 15px;
    opacity: unset;
}
.flickity-page-dots .dot.is-selected {
    background-color: #fc2d2d;
    border: none;
}
@media (max-width:1200px) and (min-width: 992px) {
    /* .main-block .img-box {
        width: calc(100% - (970px * 0.166667) - ((100% - 970px) / 2) - 5px);
    }
    .main-block .info {
        left: calc(((100% - 970px) / 2) + 20px);
    } */
}
@media (max-width: 991px) and (min-width: 768px) {
    /* .main-block .info {
        left: calc(((100% - 750px) / 2) + 20px);
        width: 50%;
        bottom: 30px;
    } */
    .main-block .info h3 {
        font-size: 40px;
    }
    .main-block .info a {
        margin-top: 20px;
    }
    .main-block .img-box i {
        bottom: 25px;
        right: 25px;
        left: auto;
    }
}
@media (max-width: 767px) {
    .flickity-page-dots {
        width: 100%;
        left: 0;
    }
    .main-block {
        margin-top: 70px;
        height: 500px;
    }
    .main-block .img-box {
        position: relative;
        height: 500px;
        width: 100%;
    }
    .main-block .img-box i {
        width: 40px;
        height: 40px;
        bottom: calc(50% - 20px);
        left: calc(50% - 20px);
        font-size: 35px;
        padding: 2px;
    }
    .main-block .info {
        width: 100%;
        padding: 15px;
        bottom: 6%;
        left: 0;
    }
    .main-block .info h3 {
        margin-top: 0;
        font-size: 25px;
        max-height: 275px;
    }
    .main-block .info a {
        margin-top: 20px;
    }
    .main-block .info a {
        padding: 10px 30px;
    }
}
@media (max-width: 450px)  {
    .flickity-page-dots .dot {
        width: 12px;
        height: 12px;
    }
    .main-block{
        height: 300px;
    }
    .main-block .img-box {
        height: 300px;
    }
    .main-block .info h3 {
        font-size: 22px;
        line-height: 1.45;
        max-height: 160px;
    }
}
/* -- ./Main News -- */

/* -- Icons Section -- */
.icons-section {
    margin: 50px 0;
}
.icons-section .icon h3 {
    color: #000;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
}
.icons-section .icon a:hover h3 {
    color: #fc2d2d;
}
.icons-section .icon1 img {
    margin-left: 55px;
}
.icons-section .icon2 {
    text-align: center;
}
.icons-section .icon2 img {
    margin-left: 20px;
}
.icons-section .icon3 {
    text-align: right;
}
.icons-section .icon3 img {
    margin-right: 55px;
}
@media (max-width: 670px) {
    .icons-section .icon h3 {
        text-align: center;
    }
}
@media (max-width: 450px) {
    .col-xs-4 {
        width: 100%;
    }
    .icon{
        text-align: center;
        margin-bottom: 20px;
    }
    .icons-section .icon3 {
        text-align: center;
    }
    .icons-section .icon2 h3 {
        margin-left: 0;
    }
    .icons-section .icon1 img {
        margin-left: 0;
    }
    .icons-section .icon3 img {
        margin-right: 0;
    }
}
/* -- ./Icons Section -- */


/* -- Press -- */
.press-box {
    padding: 60px 0;
    background: #f0eff1;
    position: relative;
}
.press-box .press-slider {
    padding-left: calc(100% - 85%);
    padding-right: calc(100% - 85%);
}
.press-box .press-slider .my-slider {
    width: 33%;
    height: 440px;
    margin: 0 5px;
}
.press-box .press-item {
    width: 90%;
    height: 100%;
}
/* smaller, dark, rounded square */
.press-box .flickity-prev-next-button {
    border-radius: 0;
    background: #fc2d2d;
    opacity: 1 !important;
    transition: all .5s ease-in-out;
}
.flickity-prev-next-button:disabled {
    background: #4f5966;
}
  /* position outside */
.press-box .flickity-prev-next-button.previous {
    left: -0;
}
.press-box .flickity-prev-next-button.next {
    right: -0;
}
.press-box .flickity-prev-next-button .arrow {
    fill: #fff;
    position: absolute;
    left: 22%;
    top: 21%;
    width: 50%;
    height: 50%;
}
.press-box .press-block {
    background-color: #fff;
    padding: 30px 25px;
}
.press-box .title h2 {
    margin: 140px 0;
    font-size: 43px;
    font-weight: bold;
    text-transform: uppercase;
}
.press-box .title h2 a {
    color: #000;
    transition: all .3s ease-in-out;
}
.press-box .title h2 a:hover {
    color: #fc2d2d;
}
.press-box .press-block img,
.press-box .press-block iframe {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}
.press-box .press-block h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    max-height: 80px;
    overflow: hidden;
}
.press-box .press-block p {
    font-size: 16px;
    height: 90px;
    overflow: hidden;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
.press-box .press-block a {
    color: #000;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.press-box .press-block a:hover {
    color: #fc2d2d;
}
@media (max-width: 991px) and (min-width: 768px) {
    .press-box .press-slider .my-slider {
        width: 50%;
    }
    .press-box .press-item {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .press-box .press-slider .my-slider {
        width: 50%;
    }
    .press-box .press-item {
        width: 100%;
    }
    .press-box .title h2 {
        font-size: 35px;
        margin: 170px 0;
    }
}
@media (max-width: 545px) {
    .press-box .press-slider .my-slider {
        width: 100%;
    }
    .press-box .press-item {
        width: 100%;
    }
    .press-box .title h2 {
        width: -moz-fit-content;
        width: fit-content;
        margin: 140px auto;
        text-align: center;
    }
}
/* -- ./Press -- */

/* -- News -- */

.news-box {
    padding: 50px 0;
}
.news-box .title {
    margin-bottom: 35px;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}
.news-box .title a {
    color: #000;
    transition: all .5s ease-in-out;
}
.news-box .title a:hover {
    color: #fc2d2d;
}
.news-box .container {
    position: relative;
}
.news-box .nav-tabs {
    position: absolute;
    right: 0;
    top: 20px;
    border: 0;
}
.news-box .nav-tabs li {
    margin-left: 10px;
}
.news-box .nav-tabs li a {
    font-weight: bold;
    border: 0 !important;
    background: #fff !important;
    border-radius: 50px;
    padding: 10px 20px;
    color: #4d5862 !important;
    transition: all 0.5s ease-in-out;
}
.news-box .nav-tabs li a:hover {
    color: #fc2d2d !important;
}
.news-box .nav-tabs li.active a {
    background: #fc2d2d !important;
    color: #fff !important;
}
.news-box .tab-pane .inner-tab {
    display: flex;
    flex-wrap: wrap;
}
.news-box .tab-pane .news-block:nth-child(1),
.news-box .tab-pane .news-block:nth-child(4) {
    flex: 0 0 33.33%;
}
.news-box .tab-pane .news-block:nth-child(2),
.news-box .tab-pane .news-block:nth-child(3) {
    flex: 0 0 66.66%;
}
.news-box .tab-pane .news-block:nth-child(2) {
    padding-left: 25px;
}
.news-box .tab-pane .news-block:nth-child(3) {
    padding-right: 25px;
}
.news-box .news-block {
    margin-bottom: 25px;
}
.news-box .news-block .inner-box {
    position: relative;
    overflow: hidden;
}
.news-box .news-block img,
.news-box .news-block iframe {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 350px;
}
.news-box .news-block .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.15;
}
.news-box .news-block .arrow {
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 30px;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.news-box .news-block .arrow:hover {
    border-color: #fc2d2d;
    color: #fc2d2d;
}
.news-box .news-block .info {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    left: 30px;
}
.news-box .news-block .info h3 a {
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    display: inline-block;
    width: 75%;
    line-height: 1.3;
    max-height: 46px;
    font-weight: bold;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.news-box .news-block .info h3 a:hover {
    color: #fc2d2d;
}
.news-box .news-block .info span {
    font-size: 13px;
    color: #e1e1e1;
}
.news-box .news-block .news-txt {
    position: absolute;
    z-index: 5;
    background: rgba(0,0,0,0.65);
    top: 0;
    left: -100%;
    width: 100%;
    bottom: 0;
    border-bottom: 4px solid #fc2d2d;
    transition: all .5s ease-in-out;
}
.news-box .news-block .news-txt:hover,
.news-box .news-block .arrow:hover ~ .news-txt {
    left: 0;
}
.news-box .news-block .news-txt p {
    color: #fff;
    padding: 0 25px;
    margin-top: 25px;
    max-height: 65px;
    overflow: hidden;
}
.news-box .news-block .news-txt a {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #fc2d2d;
    padding: 10px 15px;
    border-radius: 50px;
    border: 2px solid #fc2d2d;
    color: #fff;
    transition: all .5s ease-in-out;
}
.news-box .news-block .news-txt a:hover {
    background: transparent;
    color: #fc2d2d;
}
@media (max-width: 991px) and (min-width: 767px) {
    .news-box .news-block img, 
    .news-box .news-block iframe {
        height: 275px;
    }
}
@media (max-width: 767px) {
    .news-box .nav-tabs {
        position: static;
        margin-bottom: 30px;
    }
    .news-box .title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .news-box .tab-pane .inner-tab {
        display: block;
    }
    .news-box .tab-pane .news-block {
        padding: 0 !important;
    }
    .news-box .news-block img, 
    .news-box .news-block iframe {
        height: 250px;
    }
    .news-box .news-block .info {
        bottom: 20px;
        left: 20px;
    }
    .news-box {
        padding: 25px 0;
    }
}

/* -- ./News -- */

/* -- Articles -- */
h2.articles-title {
    margin-bottom: 35px;
    font-size: 60px;
    text-transform: uppercase;
}
h2.articles-title a {
    color: #000;
    transition: all .5s ease-in-out;
}
h2.articles-title a:hover {
    color: #fc2d2d;
}
.articles .sub-article {
    margin-bottom: 40px;
}
.articles .sub-article img,
.articles .sub-article iframe {
    width: 115px;
    height: 100px;
    object-position: center;
    object-fit: cover;
} 
.articles .sub-article img {
    width: 140px;
    height: 120px;
    filter: saturate(0);
    transition: all .5s ease-in-out;
}
.articles .sub-article img:hover {
    filter: saturate(1);
}
.articles .sub-article h3 {
    max-height: 111px;
    overflow: hidden;
    width: 75%;
    margin-top: 10px;
    margin-bottom: 20px;
}
.articles .sub-article h3 a {
    width: 75%;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.articles .sub-article h3 a:hover {
    color: #fc2d2d;
}
.articles .sub-article p.paragraph {
    width: 75%;
    height: 61px;
    color: #4f5966;
    overflow: hidden;
}
.articles .sub-article p.writer {
    color: #4f5966;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 13px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.articles .sub-article p.writer .job {
  color: #fc2d2d;
   font-size: 16px;
}
.articles .sub-article p.writer:hover {
    color: #fc2d2d;
}
.articles .sub-article p.twitter {
    margin-top: 15px;
    color: #4f5966;
    width: -moz-fit-content;
    width: fit-content;
    direction: ltr;
    font-size: 13px;
}
.articles .sub-article p.twitter a {
    color: #4f5966;
    transition: all .5s ease-in-out;
}
.articles .sub-article p.twitter i {
    color: #1a97f0;
    font-size: 20px;
    position: relative;
    top: 5px;
}
.articles .sub-article p.twitter:hover a {
    color: #1a97f0;
}
@media (max-width:767px) {
    .articles .sub-article p.paragraph {
        height: auto;
        max-height: 65px;
        width: 100%;
        text-align: center;
    }
    .articles .sub-article p.writer, .articles .sub-article p.twitter {
        width: unset;
        text-align: center;
    }
    .articles .sub-article img, 
    .articles .sub-article iframe {
        margin: 0 auto;
    }
    .articles .sub-article h3 {
        text-align: center;
        width: 100%;
    }
    .articles .sub-article {
        margin-bottom: 25px;
    }
    h2.articles-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
}

/* -- ./Articles -- */

/* -- Twitter & Facebook -- */
.socail-block {
    height: 350px;
    overflow-y: scroll;
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    padding: 10px;
}
.socail-block::-webkit-scrollbar {
    width: 4px;
}

.socail-block::-webkit-scrollbar-track {
    background: #fff; 
}

.socail-block::-webkit-scrollbar-thumb {
    background: #eee; 
}

.socail-block::-webkit-scrollbar-thumb:hover {
    background: #aaa; 
}
.socail-block .fb_iframe_widget, 
.socail-block .fb_iframe_widget iframe, 
.socail-block .fb_iframe_widget > span {
    max-width: 100% !important;
    width: 100% !important;
}
@media (max-width: 767px) {
    .socail-block {
        height: auto;
        max-height: 500px;
    }
}
/* -- ./Twitter & Facebook -- */

/* -- Info -- */
.info-box {
    padding: 50px 0;
}
.info-box .title, .video-box .title {
    margin-bottom: 50px;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}
.info-box .title a, .video-box .title a {
    color: #000;
    transition: all .5s ease-in-out;
}
.info-box .title a:hover, .video-box .title a:hover {
    color: #fc2d2d;
}
.info-box p {
    width: 50%;
    display: block;
    margin: 25px auto;
    font-weight: bold;
    text-align: center;
}
.info-box img {
    width: 100%;
    margin-top: -25px;
}
.statistics-box {
    display: flex;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.statistics-box li {
    flex: 1;
    color: #6c503b;
}
.statistics-box li .number {
    font-size: 50px;
    font-weight: bold;
}
.statistics-box li h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
@media (max-width: 991px) and (min-width: 600px) {
    .statistics-box {
        flex-wrap: wrap;
    }
    .statistics-box li {
        flex: 0 0 50%;
        margin: 10px 0;
    }
}
@media (max-width: 767px) {
    .info-box {
        padding: 25px 0;
    }
    .info-box .title, .video-box .title {
        font-size: 35px;
    }
    .info-box p {
        width: 100%;
        padding: 0 15px;
    }
}
@media (max-width: 400px) {
    .statistics-box {
        display: block;
    }
    .statistics-box li {
        margin: 20px 0;
    }
    .info-box img {
        margin-top: 0;
    }
    .statistics-box li .number {
        font-size: 40px;
    }
    .statistics-box li h3 {
        font-size: 14px;
    }
}
/* -- ./Info -- */

/* -- Features -- */
.features-box {
    padding-bottom: 50px;
}
.features-box p {
    font-weight: bold;
    padding-top: 80px;
}
.features-box li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #4f5966;
    position: relative;
    padding-left: 30px;
}
.features-box li.heading {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
    padding-left: 0;
}
.features-box li.heading span {
    font-size: 18px;
}
.features-box li span {
    float: right;
}
.features-box li .color {
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.features-box li:nth-child(5) .color {
    background: #fc2d2d;
}
.features-box li:nth-child(4) .color {
    background: #adb3c2;
}
.features-box li:nth-child(3) .color {
    background: #e0e6ed;
}
.features-box li:nth-child(2) .color {
    background: #edf2f5;
}
.features-box .chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid;
    border-color: #f00 #000 #ddd #000;
    transform: rotate(45deg);
}
@media (max-width: 1200px) and (min-width: 768px) {
    .features-box p {
        padding-top: 20px;
    }
}
@media (max-width: 767px) {
    .features-box p {
        padding-top: 20px;
        margin-bottom: 10px;
    }
}
/* -- ./Features -- */

/* -- Video -- */
.video-box {
    padding-bottom: 50px;
}
.video-slider {
    height: 750px;
    overflow: hidden;
}
.video-slider .flickity-viewport {
    height: 750px !important;
}
.video-slider .item {
    width: 70%;
    height: 100%;
}
.video-slider .item a {
    position: relative;
    display: block;
    height: 90%;
    margin-top: 3%;
    width: 100%;
    z-index: 5;
    transition: all .5s ease-in-out;
}
.video-slider .item.is-selected a {
    margin-top: 0;
    height: 100%;
    z-index: 6;
}
.video-slider .item img,
.video-slider .item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video-slider .item i {
    position: absolute;
    z-index: 5;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    font-size: 50px;
    color: #fc2d2d;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    padding: 15px;
    transition: all .5s ease-in-out;
}
.video-slider .item a:hover i {
    background: #fc2d2d;
    border: 1px solid #fc2d2d;
    color: #fff;
}
.video-slider .item .info {
    position: absolute;
    bottom: 90px;
    width: 50%;
    left: 25%;
    text-align: center;
}
.video-slider .item .info p {
    color: #fff;
    height: 45px;
    overflow: hidden;
    margin-bottom: 25px;
}
.video-slider .item .info span {
    display: inline-block;
    padding: 10px 75px;
    font-size: 20px;
    border-radius: 50px;
    border: 1px solid #fff;
    color: #fff;
    transition: all .5s ease-in-out;
}
.video-slider .item .info span:hover {
    background: #fc2d2d;
    border-color: #fc2d2d;
}
.video-slider .flickity-prev-next-button.previous {
    left: 0;
}
.video-slider .flickity-prev-next-button.next {
    right: 0;
}
.video-slider .flickity-prev-next-button {
    border-radius: 0;
    background: #4f5966;
    opacity: 1 !important;
    transition: all .5s ease-in-out;
}
.video-slider .flickity-prev-next-button:hover {
    background: #fc2d2d;
}
.video-slider .flickity-prev-next-button .arrow {
    fill: #fff;
    position: absolute;
    left: 22%;
    top: 21%;
    width: 50%;
    height: 50%;
}
@media (max-width: 1200px) and (min-width: 992px) {
    .video-slider {
        height: 600px;
    }
    .video-slider .flickity-viewport {
        height: 600px !important;
    }
    .video-slider .item .info {
        bottom: 40px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .video-slider {
        height: 500px;
    }
    .video-slider .flickity-viewport {
        height: 500px !important;
    }
    .video-slider .item .info {
        bottom: 20px;
        width: 80%;
        left: 10%;
    }
}
@media (max-width: 767px) {
    .video-slider {
        height: 400px;
    }
    .video-slider .flickity-viewport {
        height: 400px !important;
    }
    .video-slider .item {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
    .video-slider .item i {
        width: 40px;
        height: 40px;
        left: calc(50% - 20px);
        top: calc(50% - 50px);
        font-size: 30px;
        padding: 5px;
    }
    .video-slider .item .info {
        bottom: 20px;
        width: 90%;
        left: 5%;
    }
    .video-slider .item .info p {
        margin-bottom: 10px;
    }
    .video-box {
        padding-bottom: 25px;
    }
}
/* -- ./Video -- */

/* -- Down News -- */
.down-news .title {
    margin-bottom: 50px;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}
.down-news .title a {
    color: #000;
    transition: all .5s ease-in-out;
}
.down-news .title a:hover {
    color: #fc2d2d;
}
.down-news .main-news {
    margin-bottom: 40px;
}
.down-news .main-news h2 {
    margin-top: 0;
    margin-bottom: 40px;
    padding-right: 50px;
    min-height: 130px;
}
.down-news .main-news h2 a {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    display: inline-block;
    transition: all .5s ease-in-out;
}
.down-news .main-news h2 a:hover {
    color: #fc2d2d;
}
.down-news .main-news p {
    line-height: 1.35;
    max-height: 181px;
    overflow: hidden;
    font-size: 17px;
    /* font-weight: bold; */
    padding-right: 50px;
    color: #595a66;
}
.down-news .main-news img,
.down-news .main-news iframe {
    width: 100%;
    height: 350px;
    object-position: center;
    object-fit: cover;
}
.down-news .sub-news {
    margin-top: 25px;
    margin-bottom: 50px;
}
.down-news .sub-news a h2 {
    transition: all .5s ease-in-out;
}
.down-news .sub-news a:hover h2 {
    color: #fc2d2d;
}
.down-news .sub-news.sub1 {
    padding-right: 50px;
}
.down-news .sub-news.sub2 {
    padding: 0 25px;
}
.down-news .sub-news.sub3 {
    padding-left: 50px;
}
.down-news .sub-news h3 {
}
.down-news .sub-news h3 a {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    display: inline-block;
    line-height: 1.3;
    transition: all .5s ease-in-out;
}
.down-news .sub-news h3 a:hover {
    color: #fc2d2d;
}
.down-news .sub-news img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.down-news .sub-news h2 {
    max-height: 46px;
    overflow: hidden;
    color: #4f5966;
    margin: 10px 0 20px;
    font-weight: bold;
    font-size: 22px;
}
.down-news .sub-news .article-writer {
    margin-bottom: 5px;
}
.down-news .sub-news .article-writer a {
    color: #4f5966;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.down-news .sub-news .article-writer a:hover {
    color: #fc2d2d;
}
.down-news .sub-news p {
    padding-top: 5px;
    line-height: 1.2;
    font-size: 17px;
    max-height: 86px;
    overflow: hidden;
    color: #808080;
}
@media (max-width: 991px) {
    .down-news .sub-news.sub1 {
        padding: 0;
    }
    .down-news .sub-news.sub2 {
        padding: 0;
    }
    .down-news .sub-news.sub3 {
        padding: 0;
    }
    .down-news .sub-news p {
        width: 90%;
    }
}
@media (max-width: 767px) {
    .down-news .main-news img,
    .down-news .main-news iframe {
        height: 300px;
        margin-top: 20px;
        padding: 0;
    }
    .down-news .title {
        font-size: 35px;
        margin-bottom: 0;
    }
    .down-news .main-news h2 {
        margin-bottom: 10px;
    }
    .down-news .main-news h2 a {
        margin-top: 20px;
        font-size: 26px;
    }
    .down-news .sub-news img {
        height: 300px;
        object-position: center;
        object-fit: cover;
    }
    .down-news .sub-news p {
        width: 98%;
    }
}
/* -- ./Down News -- */

/* -- Members -- */
.members {
    margin: 150px auto 80px;
}
.members .sub-member {
    text-align: center;
    margin-bottom: 80px;
}
.members .sub-member img {
    margin: 0 auto 10px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
}
.members .sub-member h3 {
    margin-top: 0;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    transition: all .5s ease-in-out;
}
.members .sub-member h3:hover {
    color: #fc2d2d;
}
.members .sub-member p {
    margin-bottom: 5px;
    color: #000;
}
.members .sub-member span i {
    color: #1a97f0;
    margin-right: 2px;
    font-size: 18px;
    position: relative;
    top: 5px;
}
.members .sub-member span {
    color: #888;
    font-size: 12px;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.members .sub-member span:hover {
    color: #1a97f0;
}
@media (max-width:767px) {
    .members {
        padding: 25px 15px;
    }
}
/* -- ./Members -- */

/* -- News Letter -- */
.newsletter {
    padding: 25px 0 ;
    margin-bottom: 25px;
    background: #4f5966;
}
.newsletter .title {
    margin: 0;
    margin-top: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}
.newsletter form {
    float: right;
}
.newsletter form input {
    padding: 10px 20px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border: 0;
    background: #000;
    outline: none;
    color: #fff;
    margin-right: -5px;
}
.newsletter form button {
    border: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    color: #4f5966;
    transition: all .5s ease-in-out;
}
.newsletter form button:hover {
    background: #fc2d2d;
    color: #fff;
}
@media (max-width: 767px) {
    .newsletter .title {
        margin-bottom: 20px;
        text-align: center;
    }
    .newsletter form {
        width: 100%;
        display: block;
    }
    .newsletter input {
        width: 250px;
        display: block;
        margin: 0 auto 10px !important;
        border-radius: 10px !important;
    }
    .newsletter form button {
        display: block;
        border-radius: 10px !important;
        margin: 0 auto 10px !important;
    }
}
/* -- ./News Letter -- */

/* -- Footer -- */
footer {
    padding: 50px 0 20px;
    background: #231f20;
    margin-top: 50px;
    position: relative;
}
footer.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
footer .arrow-up {
    position: absolute;
    bottom: 60px;
    right: 10%;
    cursor: pointer;
}
footer .arrow-up i {
    font-size: 25px;
    color: #fff;
    background: #4f5966;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
footer .arrow-up i:hover {
    color: #fc2d2d;
}
footer .first-footer {
    margin-bottom: 70px;
}
footer .footer-menu li {
}
footer .footer-menu li.dropup li {
    display: block;
}
footer .footer-menu li a,
footer .soical-link li a {
    color: #fff;
    font-size: 16px;
    transition: all .5s ease-in-out;
}
footer .footer-menu li.dropup li a {
    color: #000;
}
footer .soical-link li a {
    font-size: 22px;
}
footer .footer-menu li a:hover,
footer .soical-link li a:hover {
    color: #fc2d2d;
}
footer .soical-link li  {
    display: inline-block;
    margin-right: 5px;
}
footer .footer-menu,
footer .soical-link {
    display: flex;
    margin-top: 10px;
    gap: 8px;
}
footer .footer-menu {
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
        float: left;
    text-align: left;
    display: block;
        margin-left: 40px;
}
footer .footer-menu.footer-menu-one {
    justify-content: space-between;
}
footer .footer-menu.footer-menu-two li:nth-child(2) {

}
footer .footer-menu.footer-menu-two li:nth-child(3) {

}
footer .footer-menu.footer-menu-two li:nth-child(4) {
 
}
footer .footer-menu.footer-menu-two li:nth-child(5) {

}
footer .footer-menu.footer-menu-two li:nth-child(6) {
   
}
footer .footer-menu.footer-menu-three li:nth-child(2) {
   
}
footer .footer-menu.footer-menu-three li:nth-child(3) {
  
}
footer .soical-link {
    
}
footer .soical-link li {
    margin-bottom: 10px;
}
footer .logo {
    width: 150px;
}
footer .second-footer p {
    color: #4d5862;
    font-weight: bold;
    margin-top: 5px;
}
footer .second-footer p.follow {
    font-size: 18px;
    margin-top: 33px;
    margin-left: 5px;
    color: #fff;
}
@media (max-width: 767px) {
.news-details .img-box h1 {
    
    padding: 0px;
    font-size:auto;
}

}
@media (max-width: 767px) {
    footer .logo {
        margin: 0 auto 15px;
    }
    footer .second-footer p {
        text-align: center;
    }
    footer .soical-link {
        float: none;
        justify-content: center;
    }
    footer .footer-menu li {
        margin-bottom: 20px;
   text-align: left;
    }
    footer .footer-menu,
    footer .soical-link {
        text-align: center;
    }
    footer .soical-link li {
        margin-right: 10px;
        margin-left: 10px;
    }
    footer .soical-link li a {
        font-size: 22px;
    }
    footer .footer-menu.footer-menu-two {
        justify-content: space-between;
    }
    footer .footer-menu.footer-menu-three {
        justify-content: space-between;
    }
    footer .footer-menu.footer-menu-two li:nth-child(2) {
        margin-left: 0;
    }
    footer .footer-menu.footer-menu-two li:nth-child(3) {
        margin-left: 0;
    }
    footer .footer-menu.footer-menu-two li:nth-child(4) {
        margin-left: 0;
    }
    footer .footer-menu.footer-menu-two li:nth-child(5) {
        margin-left: 0;
    }
    footer .footer-menu.footer-menu-two li:nth-child(6) {
        margin-left: 0;
    }
    footer .footer-menu.footer-menu-three li:nth-child(2) {
        margin-left: 0;
    }
    footer .footer-menu.footer-menu-three li:nth-child(3) {
        margin-left: 0;
    }
}
/* -- ./Footer -- */


/* -- News Page -- */
.inner-page {
    padding: 73px 0 50px;
}
.inner-page .inner-pagination-arrow {
    text-align: center;
    padding-right: 10px;
    font-size: 45px;
    font-weight: bold;
    margin-top: 10px;
}
.inner-page .inner-pagination-arrow a {
    width: 50px;
    height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fc2d2d;
    border-radius: 50%;
    background-color: #fc2d2d;
    color: #fff;
    transition: all .5s ease-in-out;
}
.inner-page .inner-pagination-arrow i {
    font-size: 80px;
}
.inner-page .inner-pagination-arrow a:hover {
    background-color: #fff;
    color: #fc2d2d;
}
.inner-page .inner-title {
    text-align: center;
    padding-left: 10px;
    font-size: 45px;
    font-weight: bold;
    margin: 50px 0;
    text-transform: uppercase;
}
.inner-page .under-inner-title {
    text-align: center;
    padding-left: 10px;
    font-size: 35px;
    margin: 100px 0 50px;
}
.inner-page .inner-title a {
    color: #4f5966;
    transition: all .5s ease-in-out;
}
.inner-page .inner-title a:hover {
    color: #fc2d2d;
}
.inner-page .main-content {
    border: 1px solid #e1e1e1;
    border-top: 0;
    padding: 5px 100px;
    margin-bottom: 45px;
}
.inner-page.news-page .row {
    margin-bottom: 50px;
} 
.inner-page .news-img img {
    width: 100%;
    height: 200px;
}
.inner-page .news-img .date {
    display: flex;
    justify-content: space-between;
    color: #4d5862;
    font-size: 14px;
    margin-top: 5px;
}
.inner-page.news-page .news-details {
    padding-right: 100px;
   
    overflow: hidden;
    margin-left: 5px;
    padding-top: 15px;
    border-top: 2px solid #e8e8e8;
}
.inner-page.news-page .news-details h1 {
    margin-bottom: 25px;
    margin-top: 0;
    color: #000;
    font-weight: bold;
    font-size: 30px;
    transition: all .5s ease-in-out;
    max-height: 80px;
    line-height: 1.5;
    overflow: hidden;
}
.inner-page.news-page .news-details a:hover h1 {
    color: #fc2d2d;
}
.inner-page.news-page .news-details p {
    color: #4d5862;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.65;
}
.inner-page .press-block {
    margin-bottom: 25px;
    padding: 0 10px;
}
.inner-page .press-block .inner-box {
    padding: 40px 25px;
    padding-bottom: 50px;
    position: relative;
    background: #f7f7f7;
}
.inner-page .press-block .inner-box .date {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2px 5px;
    color: #fff;
    background: #fc2d2d;
    font-size: 13px;
}
.inner-page .press-block .inner-box .date i {
    font-size: 18px;
    position: relative;
    top: 3px;
}
.inner-page .press-block .inner-box .date:after {
    position: absolute;
    right: -26px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 0 0 26px;
    border-color: transparent transparent transparent #fc2d2d;
    content: '';
}
.inner-page .press-block .inner-box .type {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 5px;
    color: #fff;
    background: #4f5966;
    font-size: 13px;
}
.inner-page .press-block .inner-box .type i {
    font-size: 18px;
    position: relative;
    top: 3px;
}
.inner-page .press-block .inner-box .type:after {
    position: absolute;
    left: -26px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 26px 26px 0;
    border-color: transparent #4f5966 transparent transparent;
    content: '';
}
.inner-page .press-block img,
.inner-page .press-block iframe {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}
.inner-page .press-block h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}
.inner-page .press-block p {
    height: 65px;
    overflow: hidden;
    margin-bottom: 10px;
}
.inner-page .press-block a {
    color: #477aa8;
    font-size: 13px;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.inner-page .press-block a:hover {
    color: #fc2d2d;
}
.page-navigation {
    clear: both;
    display: block;
    padding: 25px 0 0;
    text-align: center;
}

.page-navigation a,
.page-navigation span {
    border: 1px solid #4f5966;
    padding: 5px;
    margin-bottom: 15px;
    display: inline-block;
    color: #4f5966;
    min-width: 30px;
    line-height: 1.5;
}

.page-navigation span:hover {
    cursor: not-allowed;
}

.page-navigation span,
.page-navigation a:hover {
    color: #fff;
    background: #4f5966;
}
@media (max-width: 991px) and (min-width: 768px) {
    .inner-page .main-content {
        padding: 5px 50px;
    }
    .inner-page .news-img img {
        height: 150px;
    }
    .inner-page.news-page .news-details {
        padding-right: 0;
        max-height: 150px;
    }
    .inner-page.news-page .news-details h1 {
        font-size: 25px;
        margin-bottom: 4px;
    }
}
@media (max-width: 767px) {
    .inner-page .main-content {
        padding: 5px 50px;
    }
    .inner-page .news-img img {
        height: 150px;
    }
    .inner-page.news-page .news-details {
        padding-right: 0;
        max-height: 150px;
    }
    .inner-page.news-page .news-details h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }
}
@media (max-width: 535px) {
    .inner-page.news-page .col-xs-3 {
        width: 100%;
    }
    .inner-page.news-page .col-xs-9 {
        width: 100%;
    }
    .inner-page .news-img img {
        height: 250px;
    }
}
@media (max-width: 450px) {
    .inner-page .press-block img,
    .inner-page .press-block iframe {
        height: 220px;
    }
    .inner-page {
        padding: 50px 0 25px;
    }
    .inner-page .inner-title {
        font-size: 35px;
    }
}

/* -- ./News Page -- */

/* -- Articles Page -- */
.articles .sub-article li {
    color: #aaa;
    margin-top: 5px;
    font-size: 14px;
}
.articles .sub-article li i {
    font-size: 18px;
    position: relative;
    top: 3px;
}
/* -- ./Articels Page -- */

/* -- Videos Page -- */
.inner-page .news-img a {
    position: relative;
}
.inner-page .news-img i.bx-play, .inner-page .video-details .img-box i.bx-play {
    position: absolute;
    z-index: 5;
    width: 50px;
    height: 50px;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    font-size: 35px;
    color: #fc2d2d;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    padding: 7px;
    transition: all .5s ease-in-out;
}
.inner-page .news-img:hover i.bx-play, .inner-page .video-details .img-box:hover i.bx-play {
    background: #fc2d2d;
    color: #fff;
    border-color: #fc2d2d;
}
/* -- ./Videos Page -- */


.our-team .sub-our-team {
    margin-bottom: 100px;
}
.our-team .sub-our-team img,
.our-team .sub-our-team iframe {
    width: 115px;
    height: 100px;
    object-position: center;
    object-fit: cover;
} 
.our-team .sub-our-team img {
    width: 140px;
    height: 120px;
    filter: saturate(0);
    transition: all .5s ease-in-out;
}
.our-team .sub-our-team img:hover {
    filter: saturate(1);
}
.our-team .sub-our-team h3 {
    margin-top: 10px;
    margin-bottom: 20px;
}
.our-team .sub-our-team h3 a {
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.our-team .sub-our-team h3 a:hover {
    color: #fc2d2d;
}
.our-team .sub-our-team p.paragraph {
    height: 65px;
    font-size: 16px;
    color: #4f5966;
    overflow: hidden;
}
.our-team .sub-our-team p.writer {
    color: #4f5966;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 13px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.our-team .sub-our-team p.writer:hover {
    color: #fc2d2d;
}
.our-team .sub-our-team p.twitter {
    margin-top: 15px;
    color: #4f5966;
    width: -moz-fit-content;
    width: fit-content;
    direction: ltr;
    font-size: 13px;
}
.our-team .sub-our-team p.twitter a {
    color: #4f5966;
    transition: all .5s ease-in-out;
}
.our-team .sub-our-team p.twitter i {
    color: #1a97f0;
    font-size: 20px;
    position: relative;
    top: 5px;
}
.our-team .sub-our-team p.twitter:hover a {
    color: #1a97f0;
}
@media (max-width:767px) {
    .our-team .sub-our-team p.paragraph {
        height: auto;
        max-height: 65px;
        width: 100%;
        text-align: center;
    }
    .our-team .sub-our-team p.writer, .our-team .sub-our-team p.twitter {
        width: unset;
        text-align: center;
    }
    .our-team .sub-our-team img, 
    .our-team .sub-our-team iframe {
        margin: 0 auto;
    }
    .our-team .sub-our-team h3 {
        text-align: center;
    }
    .our-team .sub-our-team {
        margin-bottom: 25px;
    }
}

/* -- News Details -- */

.news-details .img-box {
    position: relative;
    height: 90vh;
}
.news-details.infograph-details .img-box {
    height: 100%;
}
.news-details .img-box img,
.news-details .img-box iframe {
    object-fit: cover; 
    width: 100%;
    height: 100%;
    position: relative;
}

.news-details .img-box h1 {
    font-size: 45px;
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 12px;
    display: inline;
    width: 35%;
    left: 8%;
}
.news-details .img-box .elementor-heading-title {
    padding: 0 5px;
    display: inline;
    color: #fff;
    background-color: #0e0e0e9c;
    line-height: 1.4;
}
.relative-news .news-txt h2{
    padding: 15px 0;
    font-size: 25px;
    color: #4f5966;
    border-bottom: 2px solid #4d5862;
    margin-bottom: 40px;
}
.relative-news .news-txt p {
    font-size: 20px;
    font-family: alfont;
    color: #4f596a;
}
.relative-news .news-txt .middle-text {
    border-top: 2px solid #4d5862;
    border-bottom: 2px solid #4d5862;
    margin: 20px 0 30px;
}
.relative-news .news-txt .middle-text .middle-social {
    margin-top: 5px;
    font-size: 25px;
}
.relative-news .news-txt .middle-text .middle-social a {
    color: #000;
    transition: all ease-in-out .5s;
}
.relative-news .news-txt .middle-text .middle-social a:hover {
    color: #fc2d2d;
}
.relative-news .news-txt h5 {
    line-height: 1.5;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 0 165px 25px;
    margin-top: 0;
}
.relative-news .news-txt span {
    display: inline;
    color: #fff;
    background-color: #fc2d2d;
}
.relative-news .news-txt h3 {
    font-size: 36px;
    font-weight: bold;
}
.relative-news .news-txt h4 {
    font-size: 25px;
    background: #feece5;
    line-height: 35px;
    padding: 25px;
    text-align: center;
}
.relative-news .news-txt img,
.relative-news .news-txt iframe {
    width: 100%;
    height: 450px;
    margin: 10px 0;
}
.relative-news .img-details {
    margin: 5px 0;
    border-bottom: 1px solid #4f5966;
    font-size: 14px;
    color: #4f5966;
}
.relative-news .info-content {
    color: #4f5966;
    display: flex;
    justify-content: space-between;
}
.relative-news .info {
    padding-top: 40px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.relative-news .info .img-share {
    display: flex;
}
.relative-news .info .info-img {
    width: 90px;
    height: 90px;
}
.our-team-detalis .relative-news .info .info-img {
    width: 200px;
    height: 200px;
}
.relative-news .info .info-img img {
    width: 100%;
    height: 100%;
}
.relative-news .info .info-share {
    align-self: flex-end;
    margin-left: 10px;
}
.relative-news .info .info-share p {
    font-size: 18px;
}
.relative-news .info .info-size button {
    background: none;
    border: none;
    font-size: 18px;
}
.our-team-detalis .relative-news .info .info-share p.name {
    font-size: 25px;
}
.our-team-detalis .relative-news p.twitter {
    color: #4f5966;
    width: -moz-fit-content;
    width: fit-content;
    direction: ltr;
    font-size: 13px;
}
.our-team-detalis .relative-news p.twitter a {
    color: #4f5966;
    transition: all .5s ease-in-out;
}
.our-team-detalis .relative-news p.twitter i {
    color: #1a97f0;
    font-size: 20px;
    position: relative;
    top: 5px;
}
.our-team-detalis .relative-news p.twitter:hover a {
    color: #1a97f0;
}
.relative-news .info .info-share .soical-link {
    display: flex;
}
.relative-news .info i {
    font-size: 25px;
    margin-right: 10px;
    color: #000;
}
.relative-news .info .info-size {
    display: flex;
    align-self: flex-end;
}
.relative-news .info .info-size span {
    font-size: 18px;
    margin-left: 5px;
}
.most-read-news .title {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.most-read-news .title a {
    color: #4f5966;
    transition: all .5s ease-in-out;
}
.most-read-news .title a:hover {
    color: #fc2d2d;
}

.most-read-news {
    padding-top: 200px;
}

.most-read-news li {
    padding-left: 40px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}
.most-read-news li .number {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ccc;
}
.most-read-news li p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    min-height: 40px;
}
.most-read-news li p a {
    color: #000;
    transition: all .5s ease-in-out;
}
.most-read-news li p a:hover {
    color: #fc2d2d;
}
.most-read-news li .date {
    color: #aaa;
    font-size: 13px;
}
.most-read-news li .date i {
    font-size: 19px;
    position: relative;
    top: 3px;
}
.related-news .title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #000;
    transition: all .5s ease-in-out;
}
.news-details .socail {
    position: relative;
    transition: all .5s ease-in-out;
}
.news-details .socail li {
    margin: 20px 10px;
}   
.news-details .socail li a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: #4f5966;
    border-radius: 50%;
    color: #fff;
    transition: all .5s ease-in-out;
}
.news-details .socail li a:hover  {
    background: #fc2d2d;
}
.news-details .tags {
    margin: 10px 0;
}
.news-details .tags a {
    display: inline-block;
    padding: 5px 15px;
    font-size: 20px;
    background: #fc2d2d;
    border: 1px solid #fc2d2d;
    color: #fff;
    margin-bottom: 5px;
    margin-left: 5px;border-top-left-radius: 50px;
    margin-left: 5px;border-top-right-radius: 50px;
    margin-left: 5px;border-bottom-left-radius: 50px;
    margin-left: 5px;border-bottom-right-radius: 50px;
    transition: all .5s ease-in-out;
}
.news-details .tags a:hover {
    background: #fff;
    color: #fc2d2d;
}
@media (max-width: 991px) and (min-width: 768px) {
    .news-details .img-box h1 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .news-details .img-box .elementor-heading-title {
        font-size: 30px;
        width: 100%;
        line-height: 30px;
    }
    .news-details .img-box h1 {
        bottom: 0;
        width: calc(100% - 20px);
        left: 10px;
        font-size: 35px;
    }
    .news-details .img-box img, .news-details .img-box iframe {
        object-fit: fill;
    }
    .relative-news .news-txt {
        padding-right: 0;
        border: 0;
    }
    .most-read-news {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed #aaa;
    }
    .news-details .socail {
        padding-top: 0 !important;
        top: 0 !important;
    }
    .news-details .socail li {
        display: inline-block;
    }
    .relative-news .news-txt h3 {
        font-size: 28px;
    }
    .relative-news .info .info-img {
        width: 70px;
        height: 70px;
    }
    .relative-news .news-txt h5 {
        padding: 25px;
    }
}
@media (max-width: 475px) {
    .relative-news .info {
        flex-direction: column;
        align-items: flex-start;
    }
    .relative-news .info .info-size {
        align-self: flex-start;
        margin-top: 20px;
    }
    .relative-news .news-txt span {
        overflow-wrap: break-word;
    }
    .news-details .img-box {
        height: 400px;
    }
    .relative-news .news-txt img,
    .relative-news .news-txt iframe {
    height: 200px;
    }
}
/* -- ./News Details -- */

/* -- About page -- */
.about-txt {
    margin: 20px 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    padding: 25px;
    border: 1px solid #e1e1e1;
}
.about-txt p {
    margin: 10px 0;
    font-size: 16px;
}
/* -- About Page -- */

/* -- Contact us -- */

#dle-content {
	padding: 20px 0;
}

#dle-content img {
    max-width: 100%;
    width: auto;
}

#dle-content h3{
	display: none;
}

#dle-content input,
#dle-content textarea,
#dle-content select {
	outline: none;
	margin-bottom: 20px;
	width: 100%;
	padding: 10px;
	border: 1px solid #e1e1e1;
}

#dle-content textarea {
    height: 200px;
    resize: none;
}

#dle-content select :focus,
#dle-content input:focus,
#dle-content textarea:focus {
    border-color: #4f5966;
}

#dle-content .c-capcha{
	text-align: center;
}

#dle-content .c-capcha input{
	width: 100px;
    display: block;
    margin: 5px auto 25px;
}

#dle-content button.btn{
	display: block;
	margin: 5px auto;
	outline: none;
	border: 1px solid #4f5966;
	color: #fff;
    background: #4f5966;
    transition: all 0.5s ease-in-out;
}

#dle-content button.btn:hover{
	background: #fff;
	color: #4f5966;
}

.phone-email a{
	color: #4f5966;
}

@media (max-width:767px) {

    #dle-content{
        padding: 15px;
    }
    .phone-email ul {
        margin-bottom: 15px;
        padding-bottom: 15px;
        text-align: center;
        border-bottom: 1px solid #e1e1e1;
    }
}

/* -- ./Contact us -- */

/* -- Search -- */
.search-box {
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    opacity: 0;
    transition: all .5s ease-in-out;
}
.search-box.open {
    opacity: 1;
    transform: scale(1);
}
.search-box .search {
    width: 90%;
    position: relative;
}
.search-box .search input {
    display: block;
    width: 100%;
    background: #4f5966;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    outline: none;
    border-bottom: 2px solid #fff;
}
.search-box .search button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 2px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    background: #4f5966;
    border: 2px solid transparent;
    cursor: pointer;
    color: #fff;
}
.search-box .close-btn {
    position: absolute;
    right: 15px;
    top: 5px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
/* -- ./Search -- */

/* -- Chart -- */
.chart-box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.chart-box canvas {
    width: 260px !important;
    height: 260px !important;
    margin-top: -20px;
}
.chart-box img {
    width: 210px;
    height: 210px;
    position: absolute;
    border-radius: 50%;
    top: 16px;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .features-box p {
        margin-bottom: 20px;
    }
    .chart-box canvas {
        margin-top: -7px;
    }
    .chart-box img {
        width: 220px;
        height: 220px;
        top: 20px;
    }
    .features-box li.heading {
        margin-top: 25px;
    }
}
@media (max-width: 991px) {
    .chart-box canvas {
        margin-top: -8px;
    }
    .chart-box img {
        top: 19px;
    }
}
@media (max-width: 767px) {
    .chart-box canvas {
        margin-top: -10px;
    }
    .chart-box img {
        top: 17px;
    }
}
@media (max-width: 585px) {
    .chart-box canvas {
        margin-top: -15px;
    }
    .chart-box img {
        top: 12px;
    }
}
@media (max-width: 475px) {

    .chart-box img {
        top: 15px;
    }
}
@media (max-width: 375px) {
    .chart-box canvas {
        margin-top: -20px;
    }
    .chart-box img {
        width: 210px;
        height: 210px;
        top: 18px;
    }
}
/* -- ./Chart -- */
.update{
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background: yellow;
    bottom: 0;
    z-index: 999;
    width: 100%;
    font-size: 18px;
    padding: 4px;
}
.quote{
    background-color: #898989;
    margin: 5px;
    display: block;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;

    
}
.quote p{

   color: #fff !important;
}

	.userinfo{
    
        margin: 0 auto;
    width: 100%;
    right: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}
.userinfo h1{
    font-size: 22px;
    text-align: center;
    
    
}
.userinfo h2{
   font-size: 22px;
    text-align: center; 
    
    
}
.userinfo img{
    
        display: block;
    margin-left: auto;
    margin-right: auto;
    
}

/* -- Gallery -- */
.gallery-block {
    display: block;
    margin: 0 10px 25px;
    width: calc(100% - 20px);
    border: 1px solid #e1e1e1;
    padding-bottom: 25px;
    text-align: center;
}
.gallery-block img {
    width: 100%;
    height: 325px;
    object-fit: cover;
}
.gallery-block h3 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
    color: #444;
    border: 1px solid #e1e1e1;
    background: #fff;
    text-align: center;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.gallery-block h3 span {
    display: block;
    max-height: 42px;
    overflow: hidden;
}
.gallery-block p {
    margin-top: 25px;
    padding: 0 15px;
    max-height: 60px;
    overflow: hidden;
    color: #444;
}
.modal-gallery {
    color: #fff;
    text-align: center;
}
.modal-backdrop.in {
    opacity: .8 !important;
}
.modal-gallery .close-button {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: -50px;
    margin-left: -50px;
    color: #444;
    background: #fff;
    opacity: .75;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.modal-gallery .close-button b {
    position: absolute;
    bottom: 5px;
    right: 24px;
    font-size: 30px;
}
.modal-gallery .close-button:hover {
    opacity: 1;
}
.modal-gallery img {
    display: block;
    margin: 0 auto 20px;
}
@media (max-width: 767px) and (min-width: 375px) {
    .gallery-block img {
        height: 400px;
    }
}
/* -- ./Gallery -- */

/* -- Team -- */
.team-block {
    padding-bottom: 25px;
    margin-bottom: 50px;
    border-bottom: 1px solid #000;
}
.team-block .articles {
    margin: 0 !important;
}
.team-block .articles .sub-article img {
    margin: 0 !important;
}
.team-block:last-child {
    border: none;
}
.team-block .team-title {
    margin-bottom: 20px;
    color: #000;
}
.team-block .writer {
    margin-top: 2px;
    width: 140px !important;
}
.team-block .writer i {
    float: left;
    color: #1a97f0;
}
.team-block .writer a {
    color: #4f5966;
}
.team-block .writer a:hover {
    color: #1a97f0;
}
.team-block .paragraph {
    margin-top: 15px;
    width: 85% !important;
}
.modal-gallery.team-modal .modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100% - 60px);
}
.modal-gallery .team-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 !important;
}
.modal-gallery .team-box .writer {
    text-align: left;
    width: 200px;
}
.modal-gallery .team-box .writer .job {
  display: block;
  color: #fff;
  margin-top: 10px;
}
.modal-gallery .team-box .writer a {
    background: #1a97f0;
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
}
.modal-gallery .team-box .writer i {
    float: right;
    font-size: 18px;
}
.modal-gallery .team-box .paragraph {
    text-align: left;
    width: 70%;
    margin-top: 15px;
}
@media (max-width: 500px) {   
    .modal-gallery .team-box {
        padding-right: 15px;
        padding-left: 15px;
    } 
    .modal-gallery .team-box .paragraph {
        width: 95%;
    }
}
/* -- ./Team -- */


/* -- Enviroment -- */
.enviro-box {
    padding: 50px 0 70px;
    margin-bottom: 40px;
    background-image: url('../images/envi_bg.png');
    background-size: contain;
}
.enviro-box .title {
    margin-bottom: 50px;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}
.enviro-box .title a {
    color: #000;
    transition: all .5s ease-in-out;
}
.enviro-box .title a:hover {
    color: #fc2d2d;
}
.enviro-box .imgs-box {
    position: relative;
    height: 600px;
}
.enviro-box .imgs-box .sub-enviro {
    overflow: hidden;
    position: relative;
}
.enviro-box .imgs-box .sub-enviro .txt-content {
    position: absolute;
    z-index: 5;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    bottom: -200px;
    color: #fff;
    text-align: center;
    padding: 15px;
    transition: all .5s ease-in-out;
}
.enviro-box .imgs-box .sub-enviro .txt-content p {
    max-height: 60px;
    overflow: hidden;
}
.enviro-box .imgs-box .sub-enviro iframe, 
.enviro-box .imgs-box .sub-enviro img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
}
.enviro-box .imgs-box .sub-enviro:hover img {
    transform: scale(1.1);
}
.enviro-box .imgs-box .sub-enviro:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 400px;
    z-index: 2;
}
.enviro-box .imgs-box .sub-enviro:nth-child(2) {
    position: absolute;
    top: 50px;
    right: 0;
    width: 35%;
    height: 500px;
    z-index: 3;
}
.enviro-box .imgs-box .sub-enviro:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 30%;
    width: 35%;
    height: 250px;
    z-index: 4;
}
.enviro-box .imgs-box .sub-enviro:hover .txt-content {
    bottom: 0;
}
.enviro-box .imgs-box .sub-enviro:hover {
    z-index: 10;
}
@media (max-width: 767px) {
    .enviro-box {
        padding: 25px 0 40px;
    }
    .enviro-box .title {
        font-size: 35px;
        margin-bottom: 25px;
    }
    .enviro-box .imgs-box {
        height: auto;
    }
    .enviro-box .imgs-box .sub-enviro {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 15px;
    }
    .enviro-box .imgs-box .sub-enviro .txt-content,
    .enviro-box .imgs-box .sub-enviro {
        position: static !important;
    }
    .enviro-box .imgs-box .sub-enviro img {
        width: 100px;
        height: 80px;
        display: inline-block;
        transform: none !important;
    }
    .enviro-box .imgs-box .sub-enviro .txt-content {
        padding: 0 0 0 15px;
        display: inline-block;
        width: calc(100% - 105px);
        background: transparent;
        color: #444;
        text-align: left;
    }
    .enviro-box .imgs-box .sub-enviro .txt-content p {
        position: relative;
        top: 25px;
    }
}
/* -- ./Enviroment -- */

/* -- Contact -- */
.contact-page .block story a {
    color: #fc2d2d;
}
/* -- ./Contact -- */

/* -- Studies -- */
.new-block3 {
  margin-bottom: 30px;
  max-height: 180px;
  overflow: hidden;
}
.new-block3 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.new-block3 h3 {
  margin-top: 0;
  margin-bottom: 10px;
  max-height: 62px;
  overflow: hidden;
  line-height: 1.1;
  font-size: 30px;
  font-weight: bold;
  padding: 0 10px;
}
.new-block3 h3 a {
  color: #000;
  transition: all .3s ease-in-out;
}
.new-block3 h3 a:hover {
  color: #fc2d2d;
}
.new-block3 p {
  color: #4d5862;
  font-size: 15px;
  padding: 0 10px;
}
@media (max-width: 767px) {
    .new-block3 img {
        height: 250px;
        margin-bottom: 15px;
    }
  .news-block3 {
    max-height: none;
  }
  .news-block3 p {
    max-height: 102px;
    overflow: hidden;
  }
}
/* -- .Studies -- */

/* -- Counters -- */
.counters {
  padding: 25px 0;
}
.counters ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.counters ul li {
  flex: 0 0 20%;
  color: #78543a;
  transition: all .3s ease-in-out;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
}
.counters ul li:hover {
  color: #fc2d2d;
}
.counters ul li h3 {
  font-size: 35px;
  margin: 10px 0 0;
}
.counters ul li p {
  font-size: 20px;
  margin-top: 5px;
}
.counters ul li img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}
@media(max-width: 767px) {
  .counters ul li {
    flex: 0 0 33.33%
  }
}
@media (max-width: 400px) {
  .counters ul li {
    flex: 0 0 50%
  }
}
/* -- ./Counters -- */
/* -- Projects -- */
.projects {
  padding: 25px 0;
}
.projects .title {
  margin-bottom: 50px;
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}
.projects .flickity-page-dots {
  display: none;
}
.projects .flickity-viewport {
  height: 250px !important;
}
.projects .item {
  width: 33.33%;
  padding: 10px;
  height: 100%;
}
.projects .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.projects .flickity-prev-next-button {
  border-radius: 0;
  background: #4f5966;
  opacity: 1 !important;
  transition: all .5s ease-in-out;
}
.projects .flickity-prev-next-button:hover {
  background: #fc2d2d;
}
.projects .flickity-prev-next-button .arrow {
  fill: #fff;
  position: absolute;
  left: 22%;
  top: 21%;
  width: 50%;
  height: 50%;
}
@media(max-width: 767px) {
  .projects .item {
    width: 50%;
  }
  .projects .title {
      font-size: 35px;
      margin-bottom: 25px;
  }
}
@media(max-width: 400px) {
  .projects .item {
    width: 100%;
  }
}
/* -- ./Projects -- */
