/**************

    Template Information:


 *************/

/* Fonts Include */

@font-face {
    src: url("../fonts/DINNextLTArabic-Regular-4.ttf");
    font-family: "main";
}

/* bold Fonts */

@font-face {
    src: url("../fonts/DINNextLTArabic-Medium-4.ttf");
    font-family: "bold";
}

@font-face {
    src: url("../fonts/STC-Bold.ttf");
    font-family: "stc";
}

/* Fonts Include */

/* Start General */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "main", sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #e9459a;
    --secondary-color: #00B7FF;
    --font-family: "main", sans-serif;
    --trans: all 0.4s ease-in-out;
}

body {
    overflow-x: hidden;
    background: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "bold", "main", sans-serif;
}

a:hover, a:focus, a:active, button:hover, button:focus, button:active, div, section, span, p, div:hover, section:hover, span:hover, p:hover {
    text-decoration: none;
    outline: none;
}

select, input[type="checkbox"], input[type="radio"], select:focus, input[type="checkbox"]:focus, input[type="radio"]:focus {
    cursor: pointer;
}

.form-control:focus,
.btn:focus {
    box-shadow: none !important;
    border-color: var(--secondary-color);
}

.has-fixed-top .main-header {
    padding-top: 100px;
}

.btn- {
    padding: 8px 30px !important;
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #FFF !important;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.default-img {
    background-image: url(../images/default.png);
    background-color: #F8FAFB;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Start General */

/* main header */

/* top-bar */
.top-bar {
    background-color: #323232;
    padding: 5px 0;
    border-bottom: 2px solid #196A9E;
}

.top-bar .nav .nav-link {
    color: #FFF;
    font-size: 15px;
    padding: 6px 10px;
    position: relative;
    transition: var(--trans);
}

.top-bar .nav .nav-link:hover {
    color: #70B3F6;
}

.top-bar .lang-nav .nav-link {
    border-left: 1px solid #636363;
}

/* top-bar */

.main-header .navbar {
    margin-bottom: 20px;
}

.main-header .navbar.fixed-top {
    background: #FBFBFB;
    box-shadow: 0 0px 16px RGBA(3, 3, 3, 0.2);
}

.main-header .navbar-light .navbar-nav .nav-item {
    margin-right: 10px;
}

.main-header .navbar-light .navbar-nav .nav-link {
    color: #646464;
    font-size: 17px;
    padding: 6px 12px;
    transition: var(--trans);
    border-bottom: 2px solid transparent;
    font-family: 'bold', 'main', sans-serif;
}

.main-header .navbar-light .navbar-nav .nav-link:hover,
.main-header .navbar-light .navbar-nav .nav-link:focus,
.main-header .navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link{
    border-bottom-color: #F6830C;
    color: #F6830C;
    /*font-weight: bold;*/
}

.btn-open-search {
    color: #F6830C !important;
    border-bottom-color: transparent !important;
}

.btn-open-search:hover {
    color: #FFB161 !important;
    border-bottom-color: transparent !important;
}

.dropdown-toggle::after {
    display: none !important;
}

.main-header .dropdown-item {
    color: #646464;
    font-size: 16px;
    transition: vaR(--trans);
    padding: 6px 12px;
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item:focus {
    background-color: #FEF6EF !important;
    color: #196A9E !important;
}

.main-header .dropdown-item i {
    color: #F6830C;
}

/* main header */


/* beaker-wrapper */
.beaker-wrapper {
    background-color: #EEF6FB;
}

.beaker-wrapper .title {
    color: #FFF;
    background-color: #196A9E;
    text-align: center;
    padding: 6px 20px;
    font-size: 22px;
    font-family: 'stc', 'main', sans-serif;
    width: 100px;
}

.acmeticker-wrap {
    height: 24px;
}

.my-news-ticker {
    position: relative;
    height: 24px;
    display: flex;
}

.my-news-ticker li {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.rightTI {
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 18s linear infinite;
}

.rightTI:hover {
    animation-play-state: paused;
}

@-webkit-keyframes marquee {
    0% {
        text-indent: 100%;
    }
    100% {
        text-indent: -100%;
    }
}

.rightCSS {
    background: #a35dc1;
    overflow: hidden;
}

.rightCSS div {
    position: relative;
    animation: CSSright linear 18s infinite;
}

@keyframes CSSright {
    0% {
        right: -100%
    }
    100% {
        right: 100%
    }
}

.rightCSS:hover div {
    animation-play-state: paused;
}

.beaker-wrapper .row {
    flex-wrap: nowrap;
}

.beaker-wrapper {
    display: table !important;
    width: 100% !important;
}

.beaker-wrapper .title,
.beaker-wrapper .braking-list {
    display: table-cell;
    vertical-align: middle;
}

.beaker-wrapper .title {
    height: auto;
    line-height: normal;
    display: table-cell;
    vertical-align: middle;
}

.news-breaker {
    margin-bottom: 25px;
    display: table;
    background-color: #FFF;
    width: 100%;
}

.tody-ticker {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding: 0 25px;
}

.news-breaker .action-btns {
    padding: 6px 10px;
    text-align: center;
    display: flex;
    width: 100px;
}

.news-breaker .action-btns button {
    color: #424242;
    border: 1px solid #424242;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: vaR(--trans);
    font-size: 12px;
    margin-right: 5px;
}

.tody-ticker p, .tody-ticker a {
    display: block;
    color: #1b1e21;
    font-size: 16px;
    margin-bottom: 0;
}

/* beaker-wrapper */

.breaking-news {
    margin-bottom: 25px;
}

.breaking-wrapper {
    /*display: table;*/
    align-items: center;
    background: #D21113;
    overflow: hidden;
    display: flex;
}

.breaking-title {
    color: #FFF;
    font-size: 25px;
    font-weight: 700;
    padding: 6px 15px;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    margin-top: -11px;
    text-shadow: 0 3px 6px RGB(0, 0, 0);
}
.breaking-text {
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 15px;
    display: table-cell;
    vertical-align: middle;
    /*width: 100%;*/
    overflow: hidden;
}

.breaking-text p {
    margin-bottom: 0;
    font-size: 24px;
    color: #fff;
    padding-left: 42px;
}

.breaking-text .owl-nav {
    position: absolute;
    top: 16px;
    left: 12px;
    display: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    font-size: 42px;
    line-height: 0;
    color: #E26465;
    margin-right: 5px;
}

/* breaking-wrapper  */

/* promo-text */
.promo-inner {
    position: relative;
    margin-bottom: 30px;
}

.promo-text {
    text-align: center;
    position: relative;
}

.promo-text h3 {
    color: #D21113;
    font-size: 45px;
    font-family: 'stc', 'bold', sans-serif;
    margin-bottom: 30px;
}

.promo-text p,
.promo-text span,
.promo-text pre,
.promo-text b,
.promo-text strong {
    color: #646464;
    font-size: 18px;
    line-height: 1.5;
}

.promo-inner .close {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
}

.promo-inner .close:hover,
.promo-inner .close:focus {
    opacity: 1 !important;
}

/* promo-text */

/* slider-item */
.main-slider {
    margin-bottom: 50px;
    position: relative;
}

.slider-item figure {
    width: 100%;
    height: calc(100vh - 220px);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-item figure figcaption {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
}

.slider-item figure figcaption h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    transition: var(--trans);
    text-shadow: 0 0 20px RGBA(0,0,0, 10.8);
}

.slider-item figure figcaption h1 {
    color: #FFF;
    font-size: 45px;
    transition: var(--trans);
    text-shadow: 0 0 20px RGBA(0,0,0, 10.8);
}

.slider-item:hover figure figcaption h1 {
    color: #EBBD08;
}

.play-btn svg {
    opacity: 0.7;
    /*transform: scale(0.6, 0.6);*/
    transition: all 0.4s ease;
    transform-origin: center;
}

/*.play-btn svg path {*/
/*    fill: #D16060;*/
/*}*/

.play-btn:hover svg,
.play-btn:focus svg {
    opacity: 1;
    transform: rotate(360deg);
}

.main-slider .owl-theme .owl-dots {
    position: absolute;
    right: 15px !important;
    left: auto !important;
    bottom: auto !important;
    top: 50%;
    width: auto !important;
    display: flex;
    flex-direction: column;
}

.owl-theme .owl-dots {
    margin-top: 40px !important;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #EBBD08;
    width: 16px;
    height: 16px;
    /*margin: 0 0 5px 0 !important;*/
    transition: var(--trans);
    opacity: 1 !important;
    margin: 4px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #AACEEB;
    width: 31px;
    border-radius: 25px;
}

.main-slider .owl-theme .owl-dots .owl-dot.active span {
    height: 31px !important;
    width: 16px !important;
}

/* slider-item */

/* sec-header */
.sec-header {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}

.sec-header h4,
.sec-header h4 span,
.sec-header h4 a {
    color: #4CA1DB;
    font-family: 'stc', 'bold', sans-serif;
    font-size: 40px;
}

.sec-header h4 span,
.sec-header h4 a {
    position: relative;
    z-index: 2;
    /*background-color: #FFF;*/
    transition: var(--trans);
}

.sec-header h4::after {
    content: '';
    display: inline-block;
    z-index: 1;
    width: 140px;
    height: 1px;
    background-color: #E9E9E9;
    margin-right: 15px;
    vertical-align: middle;
    transition: var(--trans);
}

.sec-header:hover h4 span,
.sec-header:hover h4 a {
    color: #34729C;
}

.sec-header:hover h4::after {
    background-color: #F6830C;
}

.sec-header p {
    color: #989898;
    margin-right: 25px;
    margin-bottom: 0;
}
/* sec-header */


/* service-item */
.service-item {
    position: relative;
}

.service-item figure {
    width: 70px;
    height: 70px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-item:hover figure {
    transform: rotate(360deg);
}

.service-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item h3 {
    color: black;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover h3 {
    color: #F6830C;
}

.body,
.body p,
.body span,
.body pre,
.body strong,
.body li {
    color: #575757;
    font-size: 14px;
    line-height: 1.8;
}

.service-item .body {
    height: 76px !important;
    overflow: hidden;
}

.services {
    margin-bottom: 45px;
}

/* service-item */


/* news-item */
.news {
    padding: 40px 0;
    background-color: #FCFCFC;
    margin-bottom: 30px;
}

.news-item {
    position: relative;
    margin-bottom: 30px;
}

.news-item figure {
    width: 100%;
    height: 245px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.news-item figure img {
    position: relative;
    z-index: 1;
}

.news-item figure::before {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: -200px;
    z-index: 2;
    background-color: rgba(0,0,0, 0.7);
    background-image: url("../images/icons/link.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    height: 100%;
    transition: left 0.4s linear, opacity 0.3s ease-in, border-radius 0.5s ease;

}
.news-item.vid figure::before {
    background-image: url("../images/icons/play.png");
}

.news-item:hover figure::before {
    opacity: 1;
    height: 100%;
    width: 100%;
    left: 0;
    transition: left 0.4s linear, opacity 0.3s ease-in, border-radius 0.5s ease;
    border-radius: 20px;
}

.news-item .new-text {
    padding: 0 20px;
}

.news-item h4,
.news-item h3 {
    color: #606060;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    transition: var(--trans);
}

.news-item:hover h4,
.news-item:hover h3 {
    color: #F6830C;
}

.news-item .body {
    height: 75px;
    overflow: hidden;
}

/* news-item */


/* e3lanat */
.e3lanat {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.ads-holder {
    width: 100%;
    height: 128px;
}

.ads-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auto-height {
    height: auto !important;
}

/* e3lanat */


/*client-slider*/
.client-slider {
    margin-top: 30px;
    margin-bottom: 30px;
}

.client .swiper-button-next,
.client .swiper-button-prev {
    color: #EFEFEF !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    pointer-events: auto !important;
}

/*client-slider*/

/* client-item */
.client-item {
    width: 100%;
    height: 105px;
    overflow: hidden;
    position: relative;
}

.client-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.35s ease;
    filter: grayscale(100%);
}

.client-item:hover img {
    filter: none;
}

/* client-item */

.client {
    margin-bottom: 150px;
}

.client .owl-carousel .owl-nav button.owl-next,
.client .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    color: #EFEFEF;
    font-size: 75px;
    transition: all 0.35s ease;
}

.client .owl-carousel .owl-nav button.owl-prev {
    right: -10px;
}

.client .owl-carousel .owl-nav button.owl-next {
    left: -10px;
}

.client .owl-carousel .owl-nav button.owl-next:hover,
.client .owl-carousel .owl-nav button.owl-prev:hover,
.client .owl-carousel .owl-nav button.owl-next:focus,
.client .owl-carousel .owl-nav button.owl-prev:focus {
    color: #E26465 !important;
}

/*gallery-item*/
.gallery-item {
    transition: var(--trans);
}

.gallery-item figure {
    width: 230px;
    height: 460px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    transition: var(--trans);
}

.gallery-item figure img {
    transition: var(--trans);
}

.gallery-item:hover figure {
    width: 100%;
}

.gallery-item:hover figure img {
    transform: scale(1.08, 1.08);
}

.gallery-item::before {
    content: '';
    display: block;
    width: calc(100% - 230px);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(38, 144, 177, 1);
    z-index: 1;
    transition: var(--trans);
}

.gallery-item:hover::before {
    width: 100%;
    background: rgba(38, 144, 177, 0.8);
}

.gallery-item .media-body {
    padding: 20px;
    align-self: center;
    text-align: center;
    transition: var(--trans);
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 230px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.gallery-item:hover .media-body {
    /*position: absolute;*/
    /*width: 100%;*/
    left: 50%;
    transform: translateX(-50%);
}

.gallery [class*=col]:nth-child(2) .gallery-item::before {
    background: rgba(50, 50, 50, 1);
}

.gallery [class*=col]:nth-child(2) .gallery-item:hover::before {
    background: rgba(50, 50, 50, 0.8);
}

.gallery [class*=col]:nth-child(3) .gallery-item::before {
    background: rgba(67, 203, 131, 1);
}

.gallery [class*=col]:nth-child(3) .gallery-item:hover::before {
    background: rgba(67, 203, 131, 0.8);
}

.gallery-item .media-body img {
    height: 70px;
    max-width: 100%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    filter:  brightness(0) invert(1);
}

.gallery-item:hover .media-body img {
    transform: rotate(360deg);
}

.gallery-item .media-body h3,
.gallery-item .media-body h4 {
    color: #FFF;
    font-size: 30px;
    font-family: 'stc', 'bold', sans-serif;
    margin-bottom: 10px;
    line-height: 1.7;
    transition: var(--trans);
}

.gallery-item:hover .media-body h3,
.gallery-item:hover .media-body h4 {
    color: #BEE5FF;
}

.gallery-item .media-body p {
    color: #FFF;
    font-size: 17px;
    font-family: 'main', sans-serif;
    font-weight: 500;
}

/*gallery-item*/

/* gallery */
.gallery {
    margin-bottom: 50px;
}

/* gallery */

/* title-prog */
.title-prog h4 {
    font-size: 25px;
    font-family: 'stc', 'bold', sans-serif;
    line-height: 1.4;
    color: #D16060;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.title-prog h4::after {
    content: '';
    display: block;
    width: 90px;
    height: 3px;
    background-color: #D8D8D8;
    position: absolute;
    bottom: 0;
    right: 25px;
}

.title-prog h4::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background-color: #FF4F10;
    position: absolute;
    bottom: 0;
    right: 0;
}

.title-prog .body,
.title-prog .body p, .title-prog .body span, .title-prog .body pre, .title-prog .body strong, .title-prog .body li {
    font-size: 18px;
}

/* title-prog */

/* prog-item */
.prog-item figure {
    width: 100%;
    height: 385px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.prog-item figure img {
    filter: grayscale(100%);
    transition: all 0.3s linear !important;
}

.prog-item:hover figure img {
    filter: grayscale(0);
}

.prog-item figure::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.prog-item figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 15px;
    width: 100%;
    z-index: 2;
}

.prog-item figure figcaption h3 {
    color: #FFF;
    font-size: 30px;
    font-family: 'stc', 'bold', sans-serif;
    transition: all 0.34s ease-in-out;
}

.prog-item:hover figure figcaption h3 {
    color: #F6830C;
}

/* prog-item */

/* programms */
.programms {
    margin-bottom: 50px;
}

/* programms */

/* swiper-pagination2 */
.prog-slider .owl-dots {
    position: absolute;
    top: -60px;
    left: 15px;
    bottom: auto !important;
    margin-top: 0 !important;
}

.prog-slider .owl-item:nth-child(even) .prog-item figure figcaption {
    top: 0;
    bottom: auto !important;
}

.prog-slider .owl-item:nth-child(even) .prog-item figure::before {
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

/* swiper-pagination2 */


/* crew-item */
.crew {
    margin-bottom: 50px;
}

.crew-item {
    text-align: center;
}

.crew-item figure {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    box-shadow: none;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

.crew-item:hover figure {
    box-shadow: 0 0 0 10px #F8F8F8;
}

.crew-item h3 {
    color: #5D5D5D;
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.crew-item:hover h3 {
    color: #F6830C;
}

.crew-item h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #FF4F10;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}

.crew-item p {
    color: #939393;
    font-size: 15px;
    /*font-family: 'stc', 'bold', sans-serif;*/
}

.swiper-pagination3 {
    text-align: center;
    margin-top: 30px;
}

/* crew-item */

/* main-footer */
.main-footer {
    padding-top: 20px;
    background-color: #FBFBFB;
    background-image: url("../images/icon-bg.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
}

/* main-footer */

/* footer-item */
.footer-item ul li a.nav-link {
    color: #4B4B4B;
    font-size: 18px;
    display: flex;
    align-items: center;
    line-height: 1.5;
    padding: 2px 1rem;
}

.footer-item ul li a.nav-link i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
}

.footer-item h1,
.footer-item h2 {
    color: #4CA1DB;
    font-size: 35px;
    font-family: 'stc', 'bold', sans-serif;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-item ul.nav {
    justify-content: flex-start !important;
}

.footer-item ul.nav li a.nav-link {
    padding: 5px 7px;
    transition: all 0.3s ease;
}

.footer-item ul.nav li a.nav-link i {
    margin: 0 !important;
}

.footer-item ul.nav li a.nav-link:hover {
    color: #70B3F6;
}

.footer-item .body {
    margin-bottom: 25px;
}

.footer-item .navbar .nav-item {
    margin-left: 10px;
}

.footer-item .navbar .nav-item .nav-link {
    padding: 6px 10px;
    /*border-left: 1px solid #C8C8C8;*/
    color: #8A8A8A;
    font-size: 16px;
}

.footer-item .navbar .nav-item:last-child .nav-link {
    border: none;
}

.copyrights {
    border-top: 1px solid #e3e3e3;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.copyrights p {
    margin-bottom: 0;
    color: #8E8E8E;
    text-align: left;
}

.copyrights .navbar-brand img {
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.copyrights .navbar-brand img:hover {
    filter: none;
}

/*.footer-item .body, .footer-item.body p, .footer-item .body span, .footer-item .body pre, .footer-item .body strong, .footer-item .body li {
    font-size: 18px;
}*/
/* footer-item */

.v-ticker ul {
    height: 20px;
    overflow: hidden;
}

/* main-content */
.main-content {
    position: relative;
    min-height: 70vh;
    transition: all 0.2s ease-in-out;
}

.has-fixed-top .main-content {
    padding-top: 15px;
}
/* main-content */

/* page-header */
.page-header {
    position: relative;
    background: #FBFBFB;
    padding: 20px 0;
    margin-bottom: 30px;
}

.page-header h1,
.page-header h2 {
    font-size: 30px;
    font-family: 'stc', 'bold', sans-serif;
    margin-bottom: 0;
    color: #196A9E;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
    color: #959595;
    font-size: 14px;
}

/* page-header */

/*text-strip*/
.text-strip {
    margin-bottom: 25px;
    overflow: hidden;
}

.text-strip p,
.text-strip span,
.text-strip a,
.text-strip pre,
.text-strip div,
.text-strip td,
.text-strip th,
.text-strip li,
.text-strip em {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.media-news .text-strip {
    height: 144px;
    overflow: hidden;
}

blockquote {
    padding: 20px 57px;
    /*margin-right: 36px;*/
    border-right: 3px solid #D21113;
    background: #fbfbfb;
    position: relative;
    box-shadow: 7px 7px 17px -7px #dcdcdc;
    margin-top: 27px;
    margin-bottom: 27px;
    font-size: 20px;
    color: #196a9e;
}

blockquote::before {
    font-family: "font awesome 5 free";
    font-weight: 900;
    content: "\f10e";
    display: inline-block;
    position: absolute;
    top: -18px;
    right: 20px;
    font-size: 37px;
    color: #D21113;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(8deg);
    -webkit-font-smoothing: antialiased
}

blockquote::after {
    font-family: "font awesome 5 free";
    font-weight: 900;
    content: "\f10d";
    display: inline-block;
    position: absolute;
    bottom: -18px;
    left: 20px;
    font-size: 37px;
    color: #D21113;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(8deg);
    -webkit-font-smoothing: antialiased
}

blockquote * {
    font-weight: 700
}

.text-strip img {
    max-width: 100%;
    height: auto;
}

.text-strip iframe,
.text-strip video {
    width: 100% !important;
}

.text-strip table {
    width: 100%;
    margin-bottom: 15px;
}

.text-strip ul,
.text-strip ol {
    margin-right: 15px;
}

/*text-strip*/

/* page */
/*.page {*/
/*    padding: 50px 0;*/
/*}*/

.page {
    margin-top: 30px;
    margin-bottom: 30px;
}
/* page */

/* ------------------------------------
    05. Contact Section CSS
---------------------------------------*/
.contact-wrap {
    background: #ffffff;
    padding: 25px 40px 50px;
    border-radius: 10px 10px 10px 10px;
}

.contact-wrap .content-part {
    text-align: center;
}

.contact-wrap .content-part .title {
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.contact-wrap .content-part .desc {
    margin: 0;
}

.contact-wrap .from-control {
    padding: 12px 16px 12px 16px;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-color: #02010100;
    background-color: #F6F7F9;
    color: #454545;
    width: 100%;
    opacity: 4;
}

.contact-wrap ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */

    color: #454545;
    opacity: 1;
}

.contact-wrap ::-moz-placeholder {
    /* Firefox 19+ */

    color: #454545;
    opacity: 1;
}

.contact-wrap :-ms-input-placeholder {
    /* IE 10+ */

    color: #454545;
    opacity: 1;
}

.contact-wrap :-moz-placeholder {
    /* Firefox 18- */

    color: #454545;
    opacity: 1;
}

.contact-box {
    background-image: linear-gradient(250deg, #4e95ed 0%, #03228f 100%);
    padding: 30px 30px 50px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-box .address-box {
    display: flex;
}

.contact-box .address-box .address-icon {
    background-image: linear-gradient(275deg, #ffffff 0%, #fcfcff 100%);
    min-width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    margin-left: 23px;
    transition: all 0.3s ease;
}

.contact-box .address-box:hover .address-icon {
    transform: rotate(360deg);
}

.contact-box .address-box .address-icon i {
    font-size: 20px;
    line-height: 20px;
    color: #03228F;
}

.contact-box .address-box .address-text .label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.contact-box .address-box .address-text a {
    color: #ffffff;
}

.contact-box .address-box .address-text a:hover {
    color: #ccc;
}

.contact-box .address-box .address-text .desc {
    color: #ffffff;
}

.contact-box.onepage-box {
    background-image: linear-gradient(220deg, #f27c1e 0%, #dd4c23 79%);
}

.contact-box.onepage-box .address-box .address-icon {
    background: #FFF;
}

.contact-box.onepage-box .address-box .address-icon i {
    color: #f2541b;
}

.contact-widget .from-control {
    padding: 20px 20px 20px 20px;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    background-color: #F6F7F9;
    width: 100%;
    max-width: 100%;
}

.contact-widget textarea {
    height: 190px;
}

.contact-widget ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */

    color: #454545;
    opacity: 1;
}

.contact-widget ::-moz-placeholder {
    /* Firefox 19+ */

    color: #454545;
    opacity: 1;
}

.contact-widget :-ms-input-placeholder {
    /* IE 10+ */

    color: #454545;
    opacity: 1;
}

.contact-widget :-moz-placeholder {
    /* Firefox 18- */

    color: #454545;
    opacity: 1;
}

.contact-widget.onepage-style .from-control {
    background: #fff;
}

.map-canvas {
    overflow: hidden;
}

.map-canvas iframe {
    float: left;
    width: 100%;
    height: 620px;
    border: unset;
}

.contact-box-wrap {
    background-image: linear-gradient(270deg, #4e95ed 0%, #03228f 100%);
    border-radius: 10px;
    padding: 30px 60px 60px 60px;
}

.contact-box-wrap .from-control {
    padding: 16px 16px 16px 16px;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F1F5FB;
    width: 100%;
    max-width: 100%;
}

.contact-box-wrap textarea {
    height: 120px;
}

.contact-box-wrap ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */

    color: #454545;
    opacity: 1;
}

.contact-box-wrap ::-moz-placeholder {
    /* Firefox 19+ */

    color: #454545;
    opacity: 1;
}

.contact-box-wrap :-ms-input-placeholder {
    /* IE 10+ */

    color: #454545;
    opacity: 1;
}

.contact-box-wrap :-moz-placeholder {
    /* Firefox 18- */

    color: #454545;
    opacity: 1;
}

.negative-margin {
    margin-top: -315px;
}

.sec-title {
    margin-bottom: 25px;
}

.sec-title span {
    color: #FFF;
    font-size: 16px;
}

.sec-title .title {
    color: #FFF;
    font-size: 25px;
    font-family: 'stc', 'bold', sans-serif;
}

.mb-25 {
    margin-bottom: 25px;
}

.btn-submit {
    background-image: linear-gradient(250deg, #4e95ed 0%, #03228f 100%);
    color: #FFF;
    font-size: 18px;
    padding: 8px 35px;
    border: none !important;
    transition: all 0.3s ease;
}

.btn-submit:hover,
.btn-submit:focus {
    color: #FFF !important;
    background-image: linear-gradient(250deg, #4e95ed 20%, #03228f 90%);
}

.contact-box .social-top {
    margin-top: 30px;
}

.contact-box .social-top li .nav-link {
    color: #FFF;
    padding: 6px 10px;
    transition: all 0.34s ease;
}

.contact-box .social-top li .nav-link:hover {
    background-color: #FFF;
    border-radius: 5px;
    color: #0a0a0a;
}

/***************************
	Pagination
***************************/
.pagination {
    justify-content: center;
    margin-top: 30px;
}

.pagination ul {
    justify-content: center;
    text-align: center;
}

.pagination ul li {
    display: inline-block;
    margin-right: 5px;
}

.pagination ul li:first-child {
    margin-right: 0;
    padding-right: 0;
}

.pagination ul li:last-child {
    margin-left: 0;
    padding-left: 0;
}

.pagination ul li.active a {
    background-color: #000;
    color: #fff;
}

.pagination ul li.active a:hover {
    background-color: #000;
    color: #fff;
}

.pagination ul li a {
    color: #444;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    border-radius: 999px;
    background-color: #f5f5f5;
    padding: 0;
    text-align: center;
    border: 0;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: block;
}

.pagination ul li a:hover {
    background-color: #e1e1e1;
}

/* search-filter */
.search-filter {
    position: relative;
    padding: 15px;
    background: #f4f4f4;
    margin-bottom: 25px;
}

.search-filter .form-control:focus {
    box-shadow: none !important;
    border-color: #00B7FF;
}

.search-filter .btn {
    border: 1px solid transparent;
    color: #FFF;
    background: #00B7FF;
}

.search-filter .btn:hover,
.search-filter .btn:focus {
    background: none;
    color: #00B7FF;
    border: 1px solid #00B7FF;
}

.picker__select--month,
.picker__select--year {
    height: 45px !important;
    font-size: 18px;
}

.form-control.datepicker {
    padding: 6px 15px !important;
}

.datepicker-dropdown {
    min-width: 30px;
}

.datepicker table {
    width: 300px;
}

.datepicker td,
.datepicker th {
    height: 35px;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled],
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active[disabled] {
    background: #00B7FF;
}

/* search-filter */

/* write-item */
.writers-all {
    padding: 25px 0;
}

.write-item figure {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid transparent;
    margin-left: 15px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
}

.write-item figure::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(122, 186, 255, 0.7);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
}

.write-item:hover figure::before {
    -webkit-animation: circle .75s;
    animation: circle .65s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 110%;
        height: 110%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 110%;
        height: 110%;
        opacity: 0;
    }
}

.write-item h2 {
    color: #B94646;
    font-size: 25px;
    margin-bottom: 5px;
}

.write-item p {
    color: #000;
    font-size: 20px;
    line-height: 1.4;
}

.write-item:hover figure {
    border-color: #FFF0F0;
}


/*single-title*/
.top-single {
    margin-bottom: 25px;
}

.top-single hr {
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.top-single figure {
    width: 100%;
    height: 450px;
    position: relative;
}

.ico-full {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 80px;
    height: 80px;
    background-color: RGBA(3, 3, 3, 0.6);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    font-size: 28px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.top-single figure:hover .ico-full {
    top: 50%;
    opacity: 1;
}

.top-single figure figcaption {
    position: absolute;
    right: 0;
    width: 100%;
    padding: 6px 15px;
    color: #0a0505;
    bottom: 15px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
}

.share-icons {
    margin-top: 30px;
}

.share-icons ul {
    width: 46px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.writer-sm {
    /*margin-bottom: 15px;*/
    display: inline-flex;
}

.writer-sm figure {
    width: 40px !important;
    height: 40px !important;
    border: none;
}

.writer-sm.write-item h2 {
    font-size: 18px;
}

.single-list .writer span {
    font-size: 16px;
    font-weight: bold;
}

.single-list,
.single-div,
.left-item {
    margin-bottom: 25px;
    position: relative;
}

.single-div h2 {
    margin-bottom: 15px;
}

.single-list ul {
    list-style: none;
    margin-right: 20px;
}

.single-list ul li a {
    display: block;
    color: #141011;
    font-size: 16px;
    margin: 10px;
    transition: all 0.3s ease;
}

.single-list ul li a i {
    color: #e6e6e7;
}

.single-list ul li a:hover,
.single-list ul li a:focus {
    color: #B94646 !important;
}

.single-list ul li a img {
    height: 22px;
    margin-left: 8px;
}

.iframe-box {
    margin-bottom: 30px;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    padding-top: 30px;
}

.iframe-box iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe, #u_0_0 {
    width: 100% !important;
}

.type-vid {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #FFF;
    color: #ed1d24;
    font-size: 24px;
    font-weight: bold;
    z-index: 9;
    text-transform: capitalize;
    padding: 6px 15px;
}

.tags-all {
    justify-content: flex-start;
}

.tags-all h3 {
    font-size: 18px;
    margin-left: 10px;
}

.tags a {
    color: #1c1919;
    display: inline-block;
    padding: 3px 5px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: bold;
}

.tags a:hover,
.tags a:focus {
    color: #b78416;
    text-decoration: underline;
}

.images-slider.owl-carousel .owl-dots {
    position: static !important;
    text-align: center;
}

.image-item {
    width: 100%;
    height: 198px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    opacity: 0;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border: 3px solid #FFF;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.image-item:hover .img-overlay {
    opacity: 0.8;
}

.left-item .write-item {
    margin-bottom: 25px;
}

.fixed-icons {
    top: 105px;
    right: 0;
}

/* stripped-text */

/* fixed-icons */
.fixed-icons a {
    display: block;
    color: #b7b7b7;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: none;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: auto;
}

.fixed-icons a:hover,
.fixed-icons a:focus {
    background: #e3e3e3;
    color: #121416;
    border-radius: 50%;
}


/* fixed-icons */

.news-detials {
    padding-left: 20px;
}

.news-detials .text-strip {
    text-align: justify;
}

/*single-title*/
.single-title h2,
.single-title h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'main', 'bold', sans-serif;
    color: #2C2F31;
}

.single-title h2 {
    color: #054169;
}

.single-title h1 {
    font-size: 40px;
    font-family: 'stc', 'bold', sans-serif;
    margin-bottom: 20px;
    color: #F6830C;
    line-height: 115%;
}

.timeDate {
    margin-top: 30px;
}

.timeDate span {
    display: block;
    color: #707070;
    margin-bottom: 5px;
    font-size: 12px;
}

.writer-list li {
    display: inline-block;
}

.writer-list li:not(:last-child) {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
}

.writer-list li h6 {
    color: #196A9E;
    margin-bottom: 0;
}

.left-item .sec-header {
    margin-bottom: 15px;
}

.left-item .sec-header h4, .left-item .sec-header h4 span, .left-item .sec-header h4 a {
    font-size: 28px;
}

.left-item .news-item figure {
    height: 200px;
}

.left-item .news-item h4, .left-item .news-item h3 {
    margin-bottom: 5px;
    line-height: 1.5;
}

.left-item  .body, .left-item  .body p, .left-item .body span, .left-item .body pre, .left-item .body strong, .left-item .body li {
    line-height: 1.6;
}

/*single-title*/

/* search-page */
.search-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    /*min-height: 30%;*/
    z-index: 1031;
    background: RGBA(0, 0, 0, 0.9);
    padding: 50px 0;
    display: none;
}

.border-div {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: url("../images/header-footer-gradient-bg.png") no-repeat center / 100% 100%;
    height: 5px;

}

.search-page h4 {
    color: #FFF;
    font-size: 36px;
    margin-bottom: 35px;
    text-align: center;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form .form-control {
    height: 60px;
    background: #FFF;
    border-radius: 30px;
    padding-left: 100px !important;
}

.search-form button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    text-align: center;
    padding: 6px 10px !important;
    border-radius: 50%;
    box-shadow: 2px 3px 10px -6px RGBA(3, 3, 3, 0.3);
}

.btn-close {
    color: #4e5253;
    font-size: 25px;
}

.btn-close:hover,
.btn-close:focus {
    color: #FFF !important;
}

/* search-page */

/* Media query */
@media (min-width: 1366px) {
    .container {
        max-width: 1292px;
    }
}

@media ( max-width: 1200px ) {
    .navbar-brand img {
        height: 60px;
    }

    .main-header .navbar-light .navbar-nav .nav-link {
        font-size: 16px;
        padding: 6px 11px;
    }
}

@media ( min-width: 991px ) and ( max-width: 1200px ) {

    .gallery-item .media-body {
        width: 100%;
    }

    .gallery-item figure {
        width: 100%;
    }

    .gallery-item::before {
        width: 100%;
    }

}

@media ( max-width: 991px ) {
    .gallery-item figure {
        width: 390px;
    }

    .swiper-pagination2 {
        display: none;
    }

    .footer-item nav.navbar {
        justify-content: center;
    }

    .single-title,
    .timeDate {
        text-align: center;
    }

    .top-single figure {
        height: 340px;
    }

    .writer-list {
        text-align: center;
        margin-top: 10px !important;
    }

    .form-text {
        font-size: 14px !important;
    }

    .writer-sm.write-item h2 {
        font-size: 16px;
    }

    .writer-list li h6 {
        font-size: 14px;
    }

    .title-prog {
        margin-left: 85px;
    }
}

@media ( max-width: 786px ) {
    .promo-text h3 {
        font-size: 27px;
    }

    .promo-text {
        margin-bottom: 20px;
    }

    .promo-text img {
        height: 80px;
    }

    .promo-text p, .promo-text span, .promo-text pre, .promo-text b, .promo-text strong {
        font-size: 15px;
    }

    .slider-item figure figcaption h2 {
        font-size: 17px;
    }

    .slider-item figure figcaption h1 {
        font-size: 24px;
    }

    .play-btn {
        text-align: center !important;
        margin-top: 15px;
    }

    .swiper-pagination {
        display: none !important;
    }

    .sec-header h4, .sec-header h4 span, .sec-header h4 a {
        font-size: 34px;
    }

    .news-item .body {
        height: auto !important;
    }

    .client .swiper-button-next,
    .client .swiper-button-prev {
        display: none !important;
    }

    .gallery-item {
        /*margin-bottom: 25px;*/
    }

    .gallery-item .media {
        flex-direction: column;
    }

    .gallery-item figure {
        width: 100%;
        height: 280px;
    }

    .gallery-item .media-body h3, .gallery-item .media-body h4 {
        font-size: 22px;
    }

    .gallery-item .media-body img {
        height: 55px;
    }

    .title-prog h4 {
        font-size: 19px;
    }

    .title-prog .body, .title-prog .body p, .title-prog .body span, .title-prog .body pre, .title-prog .body strong, .title-prog .body li {
        font-size: 15px;
        line-height: 1.6;
    }

    .prog-item figure {
        height: 285px;
    }

    .footer-item h1, .footer-item h2 {
        font-size: 26px;
    }

    .footer-item ul li a.nav-link {
        font-size: 15px;
        padding-right: 0;
        padding-left: 0;
    }

    .footer-item nav.navbar ul.nav li.nav-item {
        flex: 0 0 33.33333%;
    }

    .footer-item h1,
    .footer-item h2,
    .footer-item .body {
        text-align: center;
    }

    .single-title h1 {
        font-size: 25px;
    }

    .single-title h2, .single-title h3 {
        font-size: 17px;
    }

    .timeDate {
        margin-top: 0;
    }

    .text-strip p, .text-strip span, .text-strip a, .text-strip pre, .text-strip div, .text-strip td, .text-strip th, .text-strip li, .text-strip em {
        font-size: 16px;
    }

    blockquote {
        font-size: 14px;
        padding: 17px 17px;
        margin-right: 0;
    }

    blockquote::before,
    blockquote::after {
        font-size: 23px;
    }

    .single-list ul li a {
        font-size: 14px;
    }

    .single-list ul li a img {
        height: 20px;
    }

    .sec-header {
        display: block !important;
    }

    .sec-header p {
        margin-right: 0;
    }

    .page {
        padding-top: 25px;
    }
}


@media ( max-width: 576px ) {
    .beaker-wrapper {
        position: relative;
    }

    .beaker-wrapper,
    .beaker-wrapper > * {
        display: block !important;
    }

    .beaker-wrapper .title {
        width: 100%;
        text-align: right;
    }

    .action-btns {
        position: absolute;
        top: 0;
        left: 0;
    }

    .action-btns button {
        color: #FFF !important;
        border-color: #FFF !important;
    }

    .tody-ticker {
        padding: 12px 15px !important;
    }

    .breaking-title {
        font-size: 22px;
    }

    .breaking-text p {
        padding-left: 15px;
        font-size: 19px;
    }

    .breaking-text .owl-nav {
        display: none !important;
    }

    .footer-item nav.navbar {
        padding-right: 0;
        padding-left: 0;
    }

    .footer-item nav.navbar ul.nav li.nav-item {
        flex: 0 0 50%;
    }

    .copyrights .navbar-brand {
        display: none;
    }

    .copyrights p {
        text-align: center;
    }

    .top-single figure {
        height: auto;
    }

    .ico-full {
        font-size: 18px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .fixed-icons {
        display: none !important;
    }

    .breaking-wrapper {
        display: block;
    }

    .breaking-title {
        display: block;
        text-align: center;
    }

    .breaking-title {
        margin-top: 0;
    }

    .breaking-text p {
        text-align: center;
        padding-left: 20px;
    }

    .breaking-text {
        display: block !important;
    }

    .main-slider .owl-theme .owl-dots {
        display: none !important;
    }

    .play-btn svg {
        height: 100px;
    }

    .gallery-item {
        overflow: hidden;
    }

    .gallery-item .media-body {
        position: relative;
    }

    .gallery-item::before {
        width: 100%;
    }

    .gallery-item::before {
        height: calc(100% - 280px);
        bottom: 0;
        top: auto;
    }

    .gallery-item:hover .media-body {
        transform: none !important;
        left: 0 !important;
    }

    .prog-slider .owl-dots,
    .owl-theme .owl-dots {
        display: none !important;
    }

    .promo-inner iframe {
        height: 200px !important;
    }

    .gallery-item .media-body {
        width: 100% !important;
    }
}

@media ( max-width: 420px ) {
    .top-bar .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .top-bar [class*=col] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .top-bar .nav .nav-link {
        font-size: 14px;
        padding: 5px 7px;
    }
}

@media ( max-width: 413px ) {
    .service-item {
        text-align: center;
    }

    .service-item figure {
        margin-right: auto;
        margin-left: auto;
    }
}
