/************** 

    Template Information: 


 *************/

/* Fonts Include */

@font-face {
    src: url("../fonts/The-Sans-Plain.otf");
    font-family: "main";
}

/* bold Fonts */

@font-face {
    src: url("../fonts/TheSans-Bold.otf");
    font-family: "bold";
}

@font-face {
    src: url("../fonts/STC-Regular.ttf");
    font-family: "stc";
}

@font-face {
    src: url("../fonts/ArbFONTS-Janna-LT-Regular.ttf");
    font-family: "janna";
}

/* 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: #5391E0;
    --secondary-color: #C54E4E;
    --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(--main-color);
}

.has-fixed-top .main-header {
    padding-top: 100px;
}

.btn-gcc {
    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 */

/* menu-overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: RGBA(3, 3, 3, 0.6);
    z-index: 999;
    display: none;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 0;
    height: 100%;
    background-color: #FFF;
    z-index: 999;
    /*visibility: hidden;*/
    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;
}

.side-menu.show {
    /* visibility: visible; */
    width: 400px;
    right: 0;
}

.side-header {
    padding: 30px 20px;
    background: url(../images/BG.svg) no-repeat center;
    background-size: cover;
    /*background-blend-mode: multiply;*/
    min-height: 200px;
    margin-bottom: 15px;
}

.side-header img {
    height: 110px;
    display: block;
    margin: 0 auto;
}

.side-header h1 {
    font-size: 22px !important;
}

.hero-text h2 {
    font-size: 20px !important;
}

.side-menu .btn {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.side-nav .nav-link {
    color: #323232;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.side-nav .nav-link:hover,
.side-nav .nav-link:focus {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

/* menu-overlay */

/* top-bar */
.top-bar {
    padding: 0px 0;
    background: #FFF;
}

.top-bar .nav .nav-link {
    color: #000000;
    font-size: 17px;
    font-family: 'stc', 'main', sans-serif;
    /*direction: ltr;*/
}

.top-bar .nav .nav-link span {
    display: inline-block;
    direction: ltr;
}

.top-bar .nav .nav-link i {
    color: var(--main-color);
    margin-left: 5px;
}

/* top-bar */

/* main header */
.main-header {
    background: url("../images/BG.svg") no-repeat right top;
    min-height: 78vh;
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.main-header .navbar {
    padding-top: 25px;
}

.main-header .navbar-brand {
    height: 50px;
    position: relative;
}

.main-header .navbar-brand img {
    height: 190px;
    margin-right: 90px;
}

.main-header .navbar-light .navbar-nav .nav-link {
    color: #000;
    font-size: 18px;
    padding: 6px 18px;
    transition: all 0.34s ease-in-out;
}

.main-header .navbar-light .navbar-nav .nav-link:hover,
.main-header .navbar-light .navbar-nav .nav-link:focus {
    color: var(--main-color) !important;
}

.main-header .search-link {
    transition: all 0.3s ease;
}

.main-header .search-link:hover {
    transform: rotate(360deg);
}

.navbar-nav .dropdown-menu {
    border-bottom-left-radius: 17px;
    box-shadow: 0 3px 6px RGBA(0, 0, 0, 0.16);
    overflow: hidden;
}

.dropdown-item {
    padding: 7px 15px;
    position: relative;
    color: #000000;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-item::before {
    content: "\f053";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-left: 8px;
    vertical-align: middle;
    color: var(--main-color);
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #F8FBFF;
    color: var(--main-color);
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle i {
    font-size: 15px;
}

/* main header */

/* main-content */
.main-content {
    position: relative;
}

.hero {
    padding-top: 150px;
}

.hero-text h1 {
    color: var(--main-color);
    font-size: 38px;
    margin-bottom: 5px;
    font-family: 'janna', 'main', sans-serif;
    font-weight: 600;
}

.hero-text h2 {
    font-size: 32px !important;
    font-family: 'stc', 'janna', 'main', sans-serif;
    color: var(--main-color);
    margin-bottom: 25px;
}

.hero-text .nav {
    margin-bottom: 20px;
}

.hero-text .nav .nav-link {
    color: #656565;
    padding: 5px 10px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.hero-text .nav .nav-link:hover {
    color: var(--main-color);
}

.hero-text p {
    font-size: 20px;
    color: #717171;
    line-height: 34px;
}

.hero-text div .btn {
    color: var(--main-color);
    font-size: 14px;
}

.hero-text div .btn:hover,
.hero-text div .btn:focus {
    text-decoration: none !important;
}

.hero-text figure {
    margin-left: 15px;
    margin-bottom: 0;
}

.hero-text figure svg {
    height: 55px;
}

.hero-text .media {
    margin-top: 30px;
}

.hero-text .media h4 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
}

.hero-text .nav .nav-link.fb:hover,
.hero-text .nav .nav-link.fb:focus,
.fixed-icons a.fb:hover {
    color: #2E89FF;
}

.hero-text .nav .nav-link.tw:hover,
.hero-text .nav .nav-link.tw:focus,
.fixed-icons a.tw:hover {
    color: #2B8EB9;
}

.hero-text .nav .nav-link.ig:hover,
.hero-text .nav .nav-link.ig:focus {
    color: #B92F79;
}

.hero-text .nav .nav-link.yt:hover,
.hero-text .nav .nav-link.yt:focus,
.fixed-icons a.yt:hover {
    color: #FF0000;
}

.hero-text .nav .nav-link.rss:hover,
.hero-text .nav .nav-link.rss:focus {
    color: #721c24;
}

.hero-text .nav .nav-link.wh:hover {
    color: #00df38 !important;
}
/* main-content */

/* two-hero-images */
.two-hero-images figure:not(.sm-img) {
    /*width: 475px;*/
    /*height: 575px;*/
    width: 560px;
    height: 520px;
    overflow: hidden;
    border-radius: 100px 24px 24px 24px;
    /*margin-bottom: 75px;*/
    margin-bottom: 100px;
}

.two-hero-images figure.sm-img {
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 0;
    /*left: 147px;*/
    left: 395px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 10px RGBA(83, 145, 224, 0.15);
    animation: fade-shadow 2.3s linear infinite;
}

/* two-hero-images */

/*  services  */
.services {
    padding: 50px 0;
}

/*  services  */

/*  service-item  */
.service-item {
    position: relative;
    margin-bottom: 30px;
    background-color: #F8FBFF;
    border-radius: 30px;
    transition: all .3s ease;
}

.service-item:hover {
    background-color: #EFF6FF;
}

.service-item figure {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.service-item figure .ico {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 3;
    opacity: 0;
    transition: all .3s ease;
}

.service-item figure .link-ico {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-item:hover figure .link-ico {
    opacity: 1;
    top: 50%;
}

.service-item figure .link-ico svg {
    height: 100px;
}

.service-item figure .ico svg {
    margin-right: 10px;
    height: 22px;
}

.service-item:hover figure .ico {
    opacity: 1;
    top: 15px;
}

.service-item figure::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: RGBA(0, 0, 0, 0.49);
    transition: var(--trans);
    z-index: 2;
    opacity: 0;
}

.service-item figure img {
    position: relative;
    z-index: 1;
}

.service-item:hover figure::before {
    opacity: 1;
}

.body-serve {
    padding: 20px 20px;
    text-align: center;
}

.body-serve .text-strip {
    height: 152px;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.body-serve h3 {
    color: #235287;
    font-size: 25px;
    margin-bottom: 20px;
    transition: var(--trans);
}

.body-serve p,
.body-serve span,
.body-serve strong {
    font-size: 18px;
    color: #000000;
    line-height: 32px;
}

.service-item:hover h3 {
    color: var(--secondary-color);
}

.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    background-color: #E4E4E4;
    border-radius: 25px;
    transition: all 0.4s ease-in-out;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    background-color: var(--main-color);
}

/*  service-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 */

/* sec-header */
.sec-header {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.sec-header h4 {
    color: var(--main-color);
    font-size: 45px;
    line-height: 37px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    transition: all 0.45s ease-in-out;
}

.sec-header h4:hover {
    color: var(--secondary-color) !important;
}

.sec-header h4::before,
.sec-header h4::after {
    content: url(../images/icons/circle.svg);
    display: inline-block;
}

.sec-header h4::before {
    margin-left: 20px;
}

.sec-header h4::after {
    margin-right: 20px;
}

.sec-header p {
    font-size: 20px;
    color: #AEAEAE;
    line-height: 37px;
}

/* sec-header */

/*  news  */
.news {
    position: relative;
    background-color: #F8FBFF;
    padding: 70px 0;
    margin-bottom: 50px;
}

.news-item .two-hero-images figure:not(.sm-img) {
    width: 465px;
    height: 495px;
}

.news .two-hero-images figure.sm-img {
    width: 280px;
    height: 280px;
}

.news-item .sec-header {
    margin-bottom: 90px !important;
}

.news-item .sec-header h4 {
    text-align: right !important;
    font-size: 45px !important;
}

.news-item h4 {
    color: #000000;
    font-size: 28px;
    font-family: 'main', 'bold', sans-serif;
    margin-bottom: 10px;
}

.news-item h3 {
    color: var(--main-color);
    font-size: 30px;
    margin-bottom: 25px;
    transition: all 0.34s ease-in-out;
}

.news-item h3:hover {
    color: var(--secondary-color);
}

.news-item p {
    color: black;
    font-size: 22px;
    line-height: 37px;
    margin-bottom: 40px;
}

.news-item a.btn {
    color: var(--main-color);
    font-size: 20px;
}

.news-item a.btn:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/*  news  */

/* personal-interview */
.personal-interview {
    padding: 40px 0;
}

.interview-item {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.intter-view-item-row {
    position: relative;
}

.intter-view-item-row::after {
    content: url(../images/icons/circle2.svg);
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.interview-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.intter-view-item-row:last-child:after {
    display: none;
}

.interview-item h3 {
    color: #0E3A72;
    font-size: 30px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.interview-item:hover h3 {
    color: var(--secondary-color);
}

.interview-item h5 {
    color: #646464;
    font-size: 18px;
}

.interview-item p {
    color: black;
    font-size: 20px;
    margin-top: 20px;
}

.inter-img {
    width: 100%;
    height: 365px;
    overflow: hidden;
    margin-bottom: 30px;
}

.personal-interview .intter-view-item-row:nth-child(even) .row [class*=col]:nth-child(1) .inter-img {
    border-radius: 220px 100px 220px 0 !important;
}

.personal-interview .intter-view-item-row:nth-child(even) .row [class*=col]:nth-child(2) .inter-img {
    border-radius: 100px 220px 0 220px;
}

.personal-interview .intter-view-item-row:nth-child(odd) .row [class*=col]:nth-child(1) .inter-img {
    border-radius: 0 220px 100px 220px !important;
}

.personal-interview .intter-view-item-row:nth-child(odd) .row [class*=col]:nth-child(2) .inter-img {
    border-radius: 220px 0 220px 100px !important;
}

/* personal-interview */

/* main-footer */
.main-footer {
    padding: 30px 0;
    background: #F9F9F9;
}

.wsla-brand img {
    height: 48px;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.wsla-brand:hover img {
    filter: none;
}

.copyright img {
    height: 100px;
    margin-right: 15px;
}

.main-footer nav .nav-link {
    color: var(--main-color);
    font-size: 15px;
    transition: all 0.34s ease;
}

.main-footer nav .nav-link:hover {
    color: var(--secondary-color);
}

/* main-footer */

/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.search-overlay .search-overlay-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.search-overlay .search-overlay-layer:nth-child(1) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.search-overlay .search-overlay-layer:nth-child(2) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s;
}

.search-overlay .search-overlay-layer:nth-child(3) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.9s ease-in-out 0.6s;
    transition: all 0.9s ease-in-out 0.6s;
}

.search-overlay .search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: all 0.9s ease-in-out 1.5s;
    transition: all 0.9s ease-in-out 1.5s;
    opacity: 0;
    visibility: hidden;
}

.search-overlay .search-overlay-close .search-overlay-close-line {
    width: 100%;
    height: 3px;
    float: left;
    margin-bottom: 5px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
    margin-top: -7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.search-overlay .search-overlay-close:hover .search-overlay-close-line {
    background: #ff1949;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-overlay .search-overlay-form {
    -webkit-transition: all 0.9s ease-in-out 1.4s;
    transition: all 0.9s ease-in-out 1.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    max-width: 500px;
    width: 500px;
}

.search-overlay .search-overlay-form form {
    position: relative;
}

.search-overlay .search-overlay-form form .input-search {
    display: block;
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 30px;
    padding-left: 50px;
    padding-right: 20px;
    color: #252525;
    font-size: 15px;
}

.search-overlay .search-overlay-form form button {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 45px;
    color: #ffffff;
    height: 45px;
    border-radius: 50%;
    background-color: #ff1949;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: none;
    font-size: 20px;
    line-height: 45px;
}

.search-overlay .search-overlay-form form button:hover {
    background-color: #252525;
    color: #ffffff;
}

.search-overlay.search-overlay-active.search-overlay {
    opacity: 1;
    visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
    opacity: 1;
    visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
    opacity: 1;
    visibility: visible;
}

/* KeyFrames */
@keyframes fade-shadow {
    0% {
        box-shadow: 0 0 0 10px RGBA(83, 145, 224, 0.12);
    }

    50% {
        box-shadow: 0 0 0 30px RGBA(83, 145, 224, 0.09);
    }

    75% {
        box-shadow: 0 0 0 30px RGBA(83, 145, 224, 0.02);
    }

    100% {
        box-shadow: 0 0 0 30px RGBA(83, 145, 224, 0.0);
    }
}

/* KeyFrames */

.navbar-light .navbar-toggler {
    border: none;
}

.inner-header {
    min-height: auto;
}

.inner-content {
    min-height: 70vh;
}

/* page-title */
.page-title {
    position: relative;
    padding: 50px 0 25px 0;
    text-align: center;
}

.page-title h1 {
    color: var(--main-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.page-title .breadcrumb {
    justify-content: center;
}

.page-title .breadcrumb li,
.page-title .breadcrumb a,
.breadcrumb-item+.breadcrumb-item::before {
    color: #cdcdcd;
    font-size: 14px;
}

.stripped-text p,
.stripped-text span,
.stripped-text strong,
.stripped-text b,
.stripped-text pre,
.stripped-text ol li,
.stripped-text ul li,
.stripped-text h1,
.stripped-text h2,
.stripped-text h3,
.stripped-text h4,
.stripped-text h5,
.stripped-text h6,
.stripped-text pre,
.stripped-text a,
.stripped-text {
    color: #5f6264;
    font-size: 20px !important;
    font-family: amad-font, main, sans-serif !important;
    line-height: 1.7;
    text-align: justify
}

.stripped-text p {
    margin-bottom: 20px;
}

.page {
    padding: 50px 0;
}

.custom-control-label:before {
    border: 2px solid #e9e8e8
}

.custom-control-label:after,
.custom-control-label:before {
    width: 20px;
    height: 20px;
    left: -30px
}

.custom-control {
    padding-left: 30px !important;
    cursor: pointer !important
}

.custom-control-input[type=radio]:checked~.custom-control-label:before {
    border-color: var(--main-color)
}

.custom-control-input:checked~.custom-control-label:before {
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.custom-control-label {
    line-height: 1.8
}

.gcc-form .form-control {
    height: 48px;
    color: #636363;
    font-size: 15px;
    border-radius: 25px;
    background-color: #f9f9f9;
}

.gcc-form .form-group>label {
    margin-right: 10px;
    font-size: 15px;
}

.gcc-form textarea {
    height: auto !important;
}

.contact-list li {
    list-style: none
}

.contact-list li a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-size: 16px;
    -webkit-transition: var(--trans);
    -moz-transition: var(--trans);
    -ms-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans)
}

.contact-list li a i {
    margin-left: 8px
}

.contact-list li a:hover,
.contact-list li a:focus {
    color: var(--red-color)
}

.contact-list li span {
    display: inline-block;
    direction: ltr;
}

/* page-title */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-container {
    padding: 10px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: inline-flex;
    position: relative;
    overflow: hidden;
}

.pagination-hover-overlay {
    background-color: #00c1dd;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.5s;
    left: 60px;
    opacity: 0;
}

.pagination .icon-pagination {
    color: rgba(51, 61, 69, 0.5);
    font-size: 11px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    background-color: #fff;
}

.pagination-prev {
    margin-right: 15px;
    margin-left: 10px;
}

.pagination-prev .icon-pagination-prev {
    transform: rotate(0deg);
}

.pagination-next {
    margin-left: 15px;
    margin-right: 10px;
}

.pagination-next .icon-pagination-next {
    transform: rotate(180deg);
}

.pagination-page-number {
    border-radius: 5px;
    color: #333d45;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.5s;
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 18px;
}

.pagination-page-number:hover {
    color: #fff;
}

.pagination-page-number.active {
    color: #fff;
}

/* search-filter */
.search-filter {
    position: relative;
    padding: 15px;
    background: #f7f7f7;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    margin-bottom: 25px;
    box-shadow: 1px 1px 10px #ccc
}

.search-filter .form-control:focus {
    box-shadow: none !important;
    border-color: var(--main-color);
}

.search-filter .btn {
    border: 1px solid transparent;
    color: #FFF;
    background: var(--main-color);
}

.search-filter .btn:hover,
.search-filter .btn:focus {
    background: none;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.picker__select--month, .picker__select--year{
    height: 45px !important;
    font-size: 18px;
}
/* search-filter */

/* single-img */
.single-img {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
}

.single-img figcaption {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: RGBA(0,0,0,0.6);
    color: #FFF;
    font-size: 14px;
    padding: 6px 15px;
}
/* single-img */

/* single-title */
.single-title {
    margin-bottom: 25px;
}

.single-title h1 {
    color: var(--main-color);
    font-size: 32px;
    margin-bottom: 10px;
}

.single-title h2 {
    color: #000;
    font-size: 25px;
    margin-bottom: 10px;
}

.single-title h3 {
    color: #646464;
    font-size: 19px;
    margin-bottom: 10px;
}
/* single-title */

.timeDate {
    /*margin-top: 30px;*/
    margin-bottom: 30px;
}

.timeDate span {
    display: block;
    color: #707070;
    margin-bottom: 5px;
    font-size: 14px;
}

/* shar-links */
.shar-links span {
    color: #707070;
    font-size: 14px;
}

.shar-links a {
    padding: 5px 10px;
    color: #646464;
    font-size: 18px;
    transition: all 0.4s ease;
}

.shar-links a:hover {
    color: var(--main-color);
}
/* shar-links */

/* writer-list */
.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: var(--main-color);
}

.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 .writer-sm.write-item h2,
.single-div .writer-sm.write-item h2 {
    color: var(--secondary-color) !important;
}

.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,
.single-div h4 {
    color: var(--main-color);
    font-size: 25px;
    margin-bottom: 20px;
    transition: all 0.34s ease-in-out;
}

.write-item h2:hover,
.single-div h4:hover {
    color: var(--secondary-color);
}

.write-item p {
    color: #000;
    font-size: 20px;
    line-height: 1.4;
}

.write-item:hover figure {
    border-color: #FFF0F0;
}
/* writer-list */

/*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: 34px;
    color: #000000;
}

.media-news .text-strip {
    height: 144px;
    overflow: hidden;
}

blockquote {
    padding:20px 57px;
    margin-right:36px;
    border-right:3px solid var(--main-color);
    background:#fbfbfb;
    position:relative;
    box-shadow:7px 7px 17px -7px #dcdcdc;
    margin-top:27px;
    margin-bottom:27px
}
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:var(--main-color);
    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:var(--main-color);
    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*/

/*local-news*/
.local-news,
.three-news,
.kind-sec,
.ending-sec {
    margin-bottom: 40px;
}
/*local-news*/

.single-list,
.single-div,
.left-item {
    margin-bottom: 35px !important;
    position: relative;
}

.single-list ul {
    list-style: none;
    margin-right: 20px;
}

.single-list ul li a {
    display: block;
    color: #141011;
    font-size: 16px;
    margin: 10px 0;
    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;
}


.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: 20px;
    right: 0;
}

.list-group-item.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.single-div .interview-item h3 {
    font-size: 18px;
    line-height: 30px;
}

.single-div .interview-item {
    padding-bottom: 0;
    margin-bottom: 15px;
}

.single-div .interview-item::after {
    display: none!important;
}

.single-div .service-item figure {
    height: 300px;
}

.single-div .service-item figure .link-ico svg {
    height: 50px;
}

.single-div .body-serve {
    padding: 10px 15px;
}

.single-div .body-serve .text-strip {
    height: auto !important;
    max-height: 176px;
}

.single-div .body-serve h3 {
    font-size: 20px;
}

.single-div .body-serve p,
.single-div .body-serve span,
.single-div .body-serve strong {
    font-size: 15px;
}

.tags a {
    color: #1c1919;
    display: inline-block;
    padding: 8px 25px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: bold;
    background-color: #f4f4f4;
    border-radius: 25px;
}

.tags a:hover,
.tags a:focus {
    color: #fff;
    text-decoration: none;
    background-color: var(--secondary-color);
}


@media (min-width: 1600px) {
    .container {
        max-width: 1260px;
    }
}

@media (max-width: 991px) {
    .main-header .navbar-brand {
        flex-grow: 1;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .nav {
        justify-content: center;
    }

    .main-header .navbar-brand img {
        height: 173px;
    }

    .hero {
        padding-top: 145px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text h2 {
        font-size: 27px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-text .nav .nav-link {
        font-size: 19px;
    }

    .hero-text .nav {
        margin-bottom: 10px;
    }

    .hero-text .media-body {
        flex: unset !important;
        text-align: right;
    }

    .hero-text .media {
        justify-content: center;
        margin-bottom: 30px;
    }

    .two-hero-images figure:not(.sm-img) {
        height: 435px;
        margin-right: auto;
        margin-left: auto;
    }

    .two-hero-images figure.sm-img {
        width: 215px;
        height: 215px;
        bottom: 15px;
        left: 15px;
    }

    .wsla-brand {
        display: none;
    }

    .copyright img {
        height: 70px;
    }

    .main-footer nav .nav-link {
        font-size: 14px;
        padding: 5px 10px;
    }

    .main-header.inner-header .navbar-brand {
        text-align: right;
        margin-right: 0 !important;
    }

    .main-header.inner-header .navbar-brand img {
        margin-right: 0 !important;
        height: 160px;
    }

    .intter-view-item-row {
        margin-bottom: 30px;
    }

    .intter-view-item-row::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .main-footer hr {
        display: none;
    }

    .main-footer .flex-grow-1 {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .main-footer .row {
        justify-content: center;
    }

    .main-footer nav ul {
        justify-content: center;
    }

    .page-title {
        padding-top: 120px;
    }

    .single-title h3 {
        font-size: 17px;
    }

    .single-title h1 {
        font-size: 26px;
    }

    .single-title h2 {
        font-size: 20px;
    }

    .single-img {
        height: auto !important;
    }

    .timeDate span {
        font-size: 12px;
    }

    .shar-links a {
        padding: 5px 8px;
        font-size: 15px;
    }

    .personal-interview .intter-view-item-row:nth-child(even) .row [class*=col]:nth-child(1) .inter-img {
        border-radius: 50px !important;
    }
    
    .personal-interview .intter-view-item-row:nth-child(even) .row [class*=col]:nth-child(2) .inter-img {
        display: none;
    }
    
    .personal-interview .intter-view-item-row:nth-child(odd) .row [class*=col]:nth-child(1) .inter-img {
        border-radius: 50px !important;
    }
    
    .personal-interview .intter-view-item-row:nth-child(odd) .row [class*=col]:nth-child(2) .inter-img {
        display: none;
    }

    .intter-view-item-row {
        margin-bottom: 30px;
    }

    .intter-view-item-row::after {
        display: none !important;
    }

    .interview-item p {
        display: none;
    }
    
    .interview-item {
        text-align: center;
        margin-bottom: 20px !important;
    }

    .hero-text p,
    .hero-text div .btn {
        display: none;
    }

    .hero-text figure {
        display: none;
    }
}

@media (max-width: 576px) {
    .main-header .navbar-brand img {
        height: 110px !important;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-text .nav .nav-link {
        font-size: 16px;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 25px;
    }

    .hero-text figure svg {
        width: 38px;
        height: 38px;
    }

    .hero-text .media h4 {
        font-size: 17px;
    }

    .two-hero-images figure:not(.sm-img) {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .two-hero-images figure.sm-img {
        display: none !important;
    }

    .search-overlay .search-overlay-form {
        width: 95%;
    }

    .side-menu.show {
        width: 85% !important;
    }

    .sec-header h4 {
        font-size: 30px;
    }

    .sec-header h4::before,
    .sec-header h4::after {
        transform: scale(0.8);
    }

    .sec-header p {
        font-size: 15px;
        line-height: 26px;
    }

    .sec-header {
        margin-bottom: 25px;
    }

    .service-item figure {
        height: 275px;
    }

    .service-item figure .link-ico svg {
        height: 60px;
    }

    .body-serve {
        padding: 10px 15px;
    }

    .body-serve h3 {
        font-size: 20px;
    }

    .body-serve p,
    .body-serve span,
    .body-serve strong {
        font-size: 14px;
        line-height: 27px;
    }

    .owl-theme .owl-dots .owl-dot span {
        height: 15px;
        width: 15px;
    }

    .news-item .two-hero-images figure:not(.sm-img) {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .news-item h4 {
        font-size: 22px;
    }

    .news-item h3 {
        font-size: 24px;
    }

    .news-item p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .news {
        padding: 30px 0;
    }

    .interview-item h3 {
        font-size: 21px;
    }

    .interview-item h5 {
        font-size: 15px;
    }

    .interview-item p {
        font-size: 17px;
    }

    .interview-item {
        position: relative;
        padding-bottom: 28px;
        margin-bottom: 15px;
    }

    .inter-img {
        height: auto;
    }

    .page-title {
        padding-top: 65px;
        padding-bottom: 15px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .page-title .breadcrumb li,
    .page-title .breadcrumb a,
    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 12px;
    }

    .page {
        padding: 25px 0;
    }

    .stripped-text p,
    .stripped-text span,
    .stripped-text strong,
    .stripped-text b,
    .stripped-text pre,
    .stripped-text ol li,
    .stripped-text ul li,
    .stripped-text h1,
    .stripped-text h2,
    .stripped-text h3,
    .stripped-text h4,
    .stripped-text h5,
    .stripped-text h6,
    .stripped-text pre,
    .stripped-text a,
    .stripped-text {
        font-size: 15px !important;
    }

    .gcc-form .form-group>label {
        font-size: 14px;
    }

    .gcc-form .form-control {
        font-size: 16px;
    }

    .input-group>.input-group-prepend>.input-group-text {
        font-size: 14px;
    }

    .custom-control-label {
        font-size: 14px;
    }

    .gcc-form .btn {
        width: 100%;
    }

    .single-title {
        text-align: center;
    }

    .single-title h3 {
        font-size: 15px;
    }

    .single-title h1 {
        font-size: 24px;
    }

    .single-title h2 {
        font-size: 18px;
    }

    .single-page .col-auto {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .timeDate {
        text-align: center;
        margin-bottom: 15px;
    }

    .shar-links {
        justify-content: center;
    }

    .writer-sm.write-item h2 {
        font-size: 16px;
    }

    .writer-list li {
        vertical-align: middle;
    }

    .writer-list li h6 {
        font-size: 14px;
        margin-bottom: 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: 15px;
    }

    blockquote {
        font-size: 14px;
        padding: 17px 18px;
    }

    blockquote::before,
    blockquote::after {
        font-size: 22px;
    }

    .single-list ul li a {
        font-size: 14px;
    }

    .single-list ul li a img {
        font-size: 18px;
    }

    .write-item h2, .single-div h4 {
        font-size: 20px;
    }

    .list-group-item {
        font-size: 14px;
        padding: 8px 8px;
    }

    .single-div .interview-item h3 {
        font-size: 15px;
    }
}

@media (max-width: 486px) {
    .top-bar .nav .nav-link {
        padding: 3px 7px;
        font-size: 14px;
    }
}
