/* General */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --black-olive: #404040;
    --dark-charcoal: #2E2E2E;
    --gray: #8A8A8A;
    --gray-two: #ADADAD;
    --gray-three: #E4E4E4;
    --ming: #848484;
    --picton_blue: #858585;
    /* --picton_blue: #3CAAE0; */
    /* --primary: #144356; */
    --primary: #4A4B4F; 
    --light-primary: #858585; 
    --silver: #848484;
    --white-flash: #EEF3F5;
    --white-ghost: #F9FDFF;
    --white: #ffffff;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-family: 'Abril Fatface', serif;
}

h1,
h2,
h3,
p {
    margin: 0;
}

a {
    text-decoration: none;
}

@media screen and (min-width:992px) {
    .ms-lg-45 {
        margin-left: 4.5rem;
    }
    
    .ms-lg-n45 {
        margin-left: -4.5rem;
    }
}

iframe {
    max-width: 100%;
}

/* Button */
.btn {
    border-radius: 0.5rem;
    border: none;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    outline: none;
    padding: 1rem 0;
    width: 12rem;
}

.btn-primary {
    background: var(--picton_blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--ming);
    color: var(--white);
}

/* Top Bar */
.topbar {
    background: var(--primary);
    display: none;
    padding: 1.2rem 0;
}

.topbar .contact_media {
    align-items: center;
    display: flex;
    gap: 1rem;
}

.topbar .contact_media .icon img {
    height: auto;
    max-width: 2rem;
}

.topbar .contact_media .content a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
}

.widget .topbar_social img{
    filter: grayscale() !important;
}
.widget .footer_contact_media img{
    filter: grayscale() !important;
}
img.arrow-color{
    filter: grayscale() !important;
}
.card-footer img{
    filter: grayscale() !important;
}

.topbar .topbar_social {
    align-items: center;
    background: var(--ming);
    border-radius: 50%;
    display: flex;
    height: 2.8rem;
    justify-content: center;
    width: 2.8rem;
}

.topbar .topbar_social img {
    height: auto;
    max-width: 1rem;
}

@media screen and (min-width:768px) {
    .topbar {
        display: block;
    }
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .navbar-brand .img-logo {
    height: auto;
    max-width: 15rem;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .navbar-nav .nav-item .nav-link,
.navbar .navbar-nav .nav-item .btn {
    text-transform: capitalize;
    font-size: 1.3rem;
    font-weight: 500;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--dark-charcoal);
    font-weight: 700;
}

@media screen and (min-width:992px) {
    .navbar .navbar-brand .img-logo {
        height: auto;
        max-width: 20rem;
    }

    .navbar .navbar-nav {
        gap: 1.5rem;
    }
}

@media screen and (min-width:1200px) {
    .navbar .navbar-brand .img-logo {
        height: auto;
        max-width: 27rem;
    }
}

/* Hero */
.hero {
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.88) 44.62%, #FFF 100%), url('../images/bg_hero.png') center no-repeat;
    background-size: cover;
}

.hero .hero_title {
    color: var(--primary);
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 115%;
    text-transform: uppercase;
}

.ms-slide-bgcont img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.hero .hero_title span {
    color: var(--picton_blue);
}

.hero .hero_text {
    color: var(--black-olive);
    font-size: 1.3rem;
    font-style: normal;
    line-height: 2.2rem;  
    margin: 1.2rem 0;  
    text-align: justify;
}

.hero .play_wrapper {
    border-radius: 50%;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    animation: pulseAnimate 4s linear infinite;
}

.hero .play_wrapper .box {
    background: var(--picton_blue);
	border-radius: 50%;
	cursor: pointer;
	height: 6.4rem;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 6.4rem;
	animation: pulseAnimateTwo 4s linear infinite;
}

.hero .play_wrapper .box img {
    height: auto;
    max-width: 2rem;
}

@keyframes pulseAnimate {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--picton_blue);
    }
    50% {
        box-shadow: 0 0 0 2rem rgba(20, 67, 86, 0.40);
    }
    100% {
        box-shadow: 0 0 0 2rem rgba(20, 67, 86, 0);
    }
}

@keyframes pulseAnimateTwo {
	0%, 100% {
        box-shadow: 0 0 0 0 rgba(20, 67, 86, 0.40);;
    }
    50% {
        box-shadow: 0 0 0 1rem rgba(20, 67, 86, 0.40);;
    }
    100% {
        box-shadow: 0 0 0 1rem rgba(20, 67, 86, 0);
    }
}

@media screen and (min-width:992px) {
    .hero .play_wrapper {
        position: absolute;
        top: 34%;
        left: 23%;
    }
}

@media screen and (min-width:1200px) {
    .hero .hero_title {
        font-size: 5.4rem;
    }
    
    .hero .btn {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width:2000px) {
    .hero .play_wrapper {
        position: absolute;
        top: 30%;
        left: 19%;
    }
}

/* About */
.about {
    padding: 3rem 0;
}

.about-my {
    margin-top: 3.4rem;
    margin-bottom: 3.4rem;
}

.about .about_img_box img {
    height: auto;
    max-width: 100%;
}

.about .about_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.about .about_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: 0;
    top: 0;
}

.about .about_title {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 1rem 0 1.5rem;
}

.about .about_text {
    color: var(--black-olive);
    text-align: justify;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin-bottom: 1rem;
}

.about .about_text:last-of-type {
    margin-bottom: 2rem;
}

@media screen and (min-width:992px) {
    .about .about_title {
        font-size: 3.4rem;
    }

    .about .about_subheading {
        font-size: 2rem;
    }
}

@media screen and (max-width:991px) and (min-width:768px) {
    .about .about_img_box img {
        height: auto;
        max-width: 30rem;
    }
}

@media screen and (min-width:1200px) {
    .about .about_img_box {
        height: 100%;
        min-height: 480px;
        width: 45rem;
        position: relative;
    }

    .about .about_img_box::before {
        position: absolute;
        content: "";
        top: -3rem;
        left: 1rem;
        right: 8rem;
        bottom: -2rem;
        border: 2.5rem solid var(--primary);
        border-radius: 0rem;
    }

    .about .about_img_box img {
        position: absolute;
        top: 3.5rem;
        left: 9rem;
        width: calc(100% - -6rem);
        height: calc(100% - 8rem);
        border-radius: 5rem;
        object-fit: cover;
    }
}

@media screen and (min-width:1440px) {
    .about .about_img_box {
        width: 55rem;
    }
}

/* How We work */
.how_we_work {
    padding: 5rem 0 8rem;
    background: radial-gradient(rgba(217, 217, 217, 0.3), rgba(217, 217, 217, 0.3), var(--white), var(--white));
}

.how_we_work .how_work_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}

.how_we_work .how_work_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: -1rem;
    top: 0;
}

.how_we_work .how_work_title {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 400;
    margin: 1rem 0 1.5rem;
    text-transform: uppercase;
}

.how_we_work .card {
    background: var(--white);
    border-radius: 4rem;
    border: 0.5px solid var(--ming);
    position: relative;
}

.how_we_work .card .number {
    -webkit-text-fill-color: rgba(60, 170, 224, 0.15);; /* Will override color (regardless of order) */
    -webkit-text-stroke-color: var(--ming);
    -webkit-text-stroke-width: 0.1rem;
    color: var(--ming);
    font-family: 'Abril Fatface', serif;
    font-size: 10rem;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    bottom: -2rem;
    right: 3rem;
    text-align: justify;
}

.how_we_work .card .card-header {
    background: none;
    border: none;
    text-align: center;
    padding: 3rem 0 0;
}

.how_we_work .card .card-header .img-icon {
    height: auto;
    max-width: 6rem;
}

.how_we_work .card .card-body {
    padding: 1rem 2rem;
}

.how_we_work .card .card-body .card-title {
    color: var(--ming);
    font-family: 'Roboto', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    margin: 0 0 1rem;
    text-align: center;
}

.how_we_work .card .card-body .card-text {
    color: var(--dark-charcoal);
    text-align: justify;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.how_we_work .card .card-body .card_list {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.how_we_work .card .card-body .card_list .card_item {
    align-items: center;
    color: var(--ming);
    display: flex;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.how_we_work .card_list .card_item img {
    height: auto;
    max-width: 1.6rem;
}

@media screen and (max-width:991px) and (min-width:768px) {
    .how_we_work .card .number {
        font-size: 5rem;
        bottom: 0;
        right: 1rem;
    }
}

@media screen and (min-width:992px) {
    .how_we_work .how_work_subheading {
        font-size: 2rem;
    }

    .how_we_work .how_work_title {
        font-size: 3.4rem;
    }
}

/* CTA */
.cta {
    background: var(--primary);
    color: var(--white);
}

.cta .cta_subheading {
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
}

.cta .cta_title {
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase; 
    margin: 1.5rem 0;
}

.cta .cta_text {
    text-align: justify;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 1.5rem 0;
}

.cta .btn {
    border: 0.2rem solid var(--white);
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: transparent;
    color: var(--white);
}

.cta .btn-primary:hover {
    background: var(--picton_blue);
    border-color: var(--picton_blue);
    color: var(--white);
}

@media screen and (min-width:768px) {
    .cta .btn {
        margin-bottom: 0;
    }
}

@media screen and (min-width:992px) {
    .cta .cta_subheading {
        font-size: 2rem;
    }

    .cta .cta_title {
        font-size: 3.4rem;
    }
}

/* Segments */
.segments {
    padding: 5rem 0 0;
    position: relative;
}
@media screen and (max-width:560px) {
    .segments {
        padding: 3rem 0 0;
        position: relative;
    }
    .segments .swiper {
        padding: 4rem 0 3rem;
    }
}

.segments .segment_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}

.segments .segment_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: -1rem;
    top: 0;
}

.segments .segment_title {
    color: var(--ming);
    font-size: 2.4rem;
    margin-top: 1rem;
    text-transform: uppercase;    
}

.segments .card {
    border-radius: 3.5rem;
    border: none;
    box-shadow: 0px 0.2rem 1rem 0.2rem rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.segments .card .card-body {
    padding: 2.4rem 3.2rem;
}

.segments .card .card-body .card-title {
    color: var(--ming);
    text-align: justify;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.segments .card .card-body a img {
    height: auto;
    max-width: 3.6rem;
}

.segments .swiper {
    padding: 6rem 0 3rem;
}

.segments .swiper-button-prev,
.segments .swiper-button-next {
    position: relative;
}

.segments .swiper-button-next:after,
.segments .swiper-button-prev:after {
    content: '';
}

.segments .swiper-button-prev .swipe-arrow,
.segments .swiper-button-next .swipe-arrow {
    height: auto;
    max-width: 6rem;
    color: var(--primary);
    filter: grayscale();
}
.segments .swiper-button-prev .swipe-arrow,
.segments .swiper-button-next .swipe-arrow img {
    filter: grayscale() !important;
}

.segments .space-arrow {
    gap: 7rem;
    margin-top: 4rem;
}

@media screen and (min-width:992px) {
    .segments .swiper {
        padding: 6rem 0;
    }

    .segments .segment_subheading {
        font-size: 2rem;
    }

    .segments .segment_subheading::before {
        height: 2.5rem;
    }

    .segments .segment_title {
        font-size: 3.4rem;
    }

    .segments .control_box {
        border: 0.2rem solid var(--picton_blue);
        border-right: none;
        border-radius: 6rem 0 0 6rem;
        width: 25rem;
        height: 35rem;
        position: absolute;
        top: 1rem;
        right: 0;
    }

    .lg-pos {
        position: absolute;
        top: 1rem;
        right: 5rem;
    }

    .segments .space-arrow {
        gap: 9rem;
        margin-top: 0;
    }
}

/* Articles */
.articles {
    /* background: url('../images/bg_articles.png') center no-repeat; */
    background: var(--primary);
    background-size: cover;
    padding: 3rem 0 3rem 1rem;
}

.articles .articles_subheading {
    color: var(--white);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}

.articles .articles_subheading::before {
    background: linear-gradient(to bottom, var(--white) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: -1rem;
    top: 0;
}
.articles.sprt-art-glry h2.articles_title{
    color: var(--primary) !important;
    /* color: #2F667C !important; */
    font-size: 2.4rem;
    margin-top: 1rem;
    text-transform: uppercase;    
}

.articles .articles_title {
    color: var(--white);
    font-size: 2.4rem;
    margin-top: 1rem;
    text-transform: uppercase;    
}


.articles .card {
    border-radius: 3.5rem;
    border: 0.2rem solid var(--picton_blue);
}

.articles .card .card-header {
    background: none;
    border: none;
    padding: 0 1.2rem;
}

.articles .card .card-header .img-featured {
    height: auto;
    max-width: 100%;
    border-radius: 3rem;
}


.row .col a img.img-featured{
    min-height: 300px !important;
}
@media screen and (max-width:560px) {
    .row .col a img.img-featured{
        min-height: auto !important;
    }
}

.articles .card .card-body {
    padding: 0 1.5rem;
}

.articles .card .card-body .article_meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.articles .card-body .article_meta .author {
    color: var(--picton_blue);
    font-size: 1.3rem;
    font-weight: 500;
}

.articles .card-body .article_meta .date {
    color: var(--silver);
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;    
}

.articles .card .card-body .card-title {
    color: var(--ming);
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.7rem;
    text-align: justify;
}

.articles .card .card-body .card-text {
    color: var(--black-olive);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
    text-align: justify;
}

.articles .card .card-footer {
    background: none;
    border: none;
    padding: 0 1.5rem 2rem;
}

.articles .card .card-footer .btn-article {
    align-items: center;
    color: var(--picton_blue);
    display: inline-flex;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 1rem;
    text-transform: capitalize;
}

.articles .card .card-footer .btn-article img {
    height: auto;
    max-width: 1.6rem;
}

.articles .swiper {
    padding-top: 9rem;
}
@media screen and (max-width:560px) {
    .articles .swiper {
        padding-top: 4rem;
    }
}

.articles .swiper .swiper-pagination {
    position: relative;
    margin-top: 4rem;
}

.articles .swiper .swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    border: 0.1rem solid var(--white);
    height: 1.2rem;
    opacity: 1;
    width: 1.2rem;
}

.articles .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white);
}

@media screen and (min-width:992px) {
    .articles .articles_subheading {
        font-size: 2rem;
    }

    .articles .articles_subheading::before {
        height: 2.5rem;
    }

    .articles .articles_title {
        font-size: 3.4rem;
    }

    .articles .card .card-header .img-featured {
        margin-top: -7rem;
    }
}

/* Upcoming Events */
.upcoming_events {
    background: var(--white-flash);
    padding-top: 3rem;
}

.upcoming_events .upcoming_events_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.upcoming_events .upcoming_events_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    left: 0;
    top: 0;
}

.upcoming_events .upcoming_events_title {
    color: var(--primary);
    font-size: 2.4rem;
    margin: 1rem 0;
    text-transform: uppercase;    
}

.upcoming_events .upcoming_events_text {
    color: var(--black-olive);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2.5rem;
    text-align: justify;
}

.upcoming_events .card {
    border-radius: 5rem;
    border: none;
    box-shadow: 0 0.4rem 0.7rem 0.1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.upcoming_events .card .event_date {
    align-items: center;
    background: var(--picton_blue);
    border-radius: 1rem;
    color: var(--white);
    display: flex;
    height: 5rem;
    justify-content: center;
    position: absolute;
    top: 2rem;
    left: 2rem;
    text-align: center;
    text-transform: uppercase;
    width: 5rem;
}

.upcoming_events .card .event_date .date {
    font-size: 1.3rem;
    font-weight: 400;
}

.upcoming_events .card .card-body {
    padding: 2.4rem 3.2rem;
}

.upcoming_events .card-body .card-text {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.upcoming_events .card-body .card-text a {
    color: var(--ming);
}

.upcoming_events .swiper {
    padding: 3rem 0;
}

.upcoming_events .swiper-btn-next:after,
.upcoming_events .swiper-btn-prev:after {
    content: '';
}

.upcoming_events .swiper-btn-prev .swipe-arrow,
.upcoming_events .swiper-btn-next .swipe-arrow {
    height: auto;
    max-width: 4rem;
}

.upcoming_events .swiperControls {
    display: none;
}

@media screen and (min-width:768px) {
    .upcoming_events {
        padding-top: 0;
    }
}

@media screen and (min-width:992px) {
    .upcoming_events {
        position: relative;
    }
    
    .upcoming_events .upcoming_events_subheading {
        font-size: 2rem;
    }

    .upcoming_events .upcoming_events_subheading::before {
        height: 2.5rem;
    }

    .upcoming_events .upcoming_events_title {
        font-size: 2.8rem;
    }
    
    .upcoming_events .swiper {
        padding: 4rem 0;
    }

    .upcoming_events .swiperControls {
        display: block;
        margin-top: 1rem;
    }

    .upcoming_events .swiperControls button {
        background: transparent;
        border: none;
        margin-right: 3rem;
        padding: 0;
    }
    
    .upcoming_events .swiperControls button:last-of-type {
        margin-right: 0;
    }
    
    .upcoming_events .swiperControls button img {
        height: auto;
        max-width: 4rem;
    }
}

/* Newsletter */
.newsletter .newsletter_box {
    border-radius: 2.5rem;
    background: var(--ming);
    padding: 1.5rem 0 4.5rem;
    margin: 5rem 0;
    position: relative;
    text-align: center;
}

.newsletter .newsletter_box .img-camera {
    height: auto;
    max-width: 6rem;
    position: absolute;
    top: -2rem;
    left: -0.5rem;
}

.newsletter .newsletter_box .newsletter_subheading {
    color: var(--white);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.newsletter .newsletter_box .newsletter_subheading::before {
    background: linear-gradient(to bottom, var(--white) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    left: 0;
    top: 0;
}

.newsletter .newsletter_box .newsletter_title {
    color: var(--white);
    font-size: 1.8rem;
    margin: 1rem 0 1.5rem;
    text-transform: uppercase;    
}

.newsletter .newsletter_box .input-group .gjs-cell {
    display: flex;
}

.newsletter .newsletter_box .input-group .gjs-row {
    margin: 7px 0 0;
}

.newsletter .newsletter_box .gjs-cell input[type="email"] {
    flex-grow: 1;
}

.newsletter .newsletter_box .gjs-cell input[type="email"]:focus-visible {
    border: none;
    outline: none;
}

.newsletter .newsletter_box .input-group {
    background: var(--white);
    border-radius: 0.7rem;
    padding: 0px 5px 1px 10px !important;
    display: block !important;
    /* padding: 0.7rem; */

}

.newsletter .newsletter_box .input-group .form-control {
    background: transparent;
    border-radius: 0;
    border: none;
    color: var(--gray);
    font-size: 1.3rem;
    font-weight: 500;
}

.newsletter .newsletter_box .input-group .form-control::placeholder {
    color: var(--gray);
}

.newsletter .newsletter_box .input-group .form-control:focus {
    box-shadow: none;
}

.newsletter .newsletter_box .input-group .btn,
.newsletter .newsletter_box .gjs-cell input[type="submit"] {
    width: auto;
    padding: 0.5rem;
    text-align: center;
}

.newsletter .newsletter_box .input-group .btn-subscribe,
.newsletter .newsletter_box .gjs-cell input[type="submit"] {
    background: var(--picton_blue);
    border-bottom-left-radius: 0.5rem !important;
    border-radius: 0.5rem;
    border-top-left-radius: 0.5rem !important;
    color: var(--white);
}

.newsletter .newsletter_box .input-group .btn-subscribe:hover,
.newsletter .newsletter_box .gjs-cell input[type="submit"]:hover {
    background: var(--ming);
    color: var(--white);
}

.newsletter .newsletter_box .gjs-cell input{
    width: 100%;
    border: none !important;
    text-align: left;
}

@media screen and (min-width:768px) {
    .newsletter .newsletter_box .img-camera {
        max-width: 8rem;
        position: absolute;
        top: -2.5rem;
        left: -2rem;
    }

    .newsletter .newsletter_box .input-group .form-control {
        padding: 0.8rem 2.3rem;
    }

    .newsletter .newsletter_box .input-group .btn,
    .newsletter .newsletter_box .gjs-cell input[type="submit"] {
        width: 12rem;
        padding: 1rem 0;
    }
}

@media screen and (min-width:992px) {
    .newsletter .newsletter_box {
        border-radius: 5rem;
        margin: 6rem 0 -8.5rem;
    }

    .newsletter .newsletter_box .newsletter_title {
        font-size: 3.4rem;
    }

    .newsletter .newsletter_box .newsletter_subheading {
        font-size: 2rem;
    }

    .newsletter .newsletter_box .newsletter_subheading::before {
        height: 2.5rem;
    }
}

/* Section Breadcrumb */
.section_breadcrumb {
    /* background: linear-gradient(rgba(48, 106, 130, 0.90), rgba(48, 106, 130, 0.90)), url('../images/bg_aboutus.png') center no-repeat; */
    background: linear-gradient(rgba(74, 75, 79, 0.90), rgba(74, 75, 79, 0.90)), url('../images/bg_aboutus.png') center no-repeat;
    background-size: cover;
    padding: 6rem 0;
    text-align: center;
}

.section_breadcrumb .breadcrumb_title {
    color: var(--white);
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 126.131%;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
}

.section_breadcrumb .breadcrumb_title span {
    color: var(--picton_blue);
}

.section_breadcrumb .breadcrumb .breadcrumb-item a,
.section_breadcrumb .breadcrumb .breadcrumb-item {
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.section_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

/* Inner About */
.inner_about {
    padding: 3rem 0;
}

.inner_about .about_img_box img,
.inner_about .about_img_box_alt img {
    height: auto;
    max-width: 100%;
}

.inner_about .about_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.inner_about .about_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: 0;
    top: 0;
}

.inner_about .about_title {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 1rem 0 1.5rem;
}

.inner_about .about_text {
    color: var(--black-olive);
    text-align: justify;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin-bottom: 1rem;
}

.inner_about .about_text:last-of-type {
    margin-bottom: 2rem;
}

@media screen and (min-width:992px) {
    .inner_about .about_title {
        font-size: 3rem;
    }

    .inner_about .about_subheading {
        font-size: 2rem;
    }
}

@media screen and (max-width:991px) and (min-width:768px) {
    .inner_about .about_img_box img {
        height: auto;
        max-width: 30rem;
    }
    
    .inner_about .about_img_box_alt img {
        height: auto;
        max-width: 30rem;
    }
}

@media screen and (min-width:1200px) {
    .inner_about .about_img_box {
        height: 100%;
        min-height: 550px;
        width: 45rem;
        position: relative;
    }


    
    .inner_about .about_img_box_alt {
        height: 100%;
        min-height: 480px;
        width: 45rem;
        position: relative;
    }

    .inner_about .about_img_box::before {
        position: absolute;
        content: "";
        top: -3rem;
        left: 1rem;
        right: 10rem;
        bottom: -2rem;
        border: 2.5rem solid var(--ming);
        border-radius: 0rem;
    }
    
    .inner_about .about_img_box_alt::before {
        position: absolute;
        content: "";
        top: -3rem;
        left: 15rem;
        right: -12rem;
        bottom: -2rem;
        border: 2.5rem solid var(--ming);
        border-radius: 0rem;
    }

    .inner_about .about_img_box img {
        position: absolute;
        top: 2.5rem;
        left: 6rem;
/*        width: calc(100% - -8rem);
        height: calc(100% - -3rem);*/
        border-radius: 4rem;
        max-width: unset;
    }

    .inner_about .about_img_box_alt img {
        position: absolute;
        top: 1.5rem;
        left: 0;
        width: calc(100% - -8rem);
        height: calc(100% - -3rem);
        border-radius: 1rem;
        max-width: unset;
    }
}

@media screen and (min-width:1440px) {
    .inner_about .about_img_box {
        width: 55rem;
    }
    
    .inner_about .about_img_box_alt {
        width: 55rem;
    }
}

/* Professional Approach */
.professional_approach {
    background: var(--white-flash);
    padding: 6rem 0;
    text-align: center;
}

.professional_approach .professional_approach_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
    text-transform: capitalize;
}

.professional_approach .professional_approach_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: 0;
    top: 0;
}

.professional_approach .professional_approach_title {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0.8rem 0 1.6rem;   
}

.professional_approach .professional_approach_text {
    color: var(--black-olive);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2.4rem;
}

@media screen and (min-width:992px) {
    .professional_approach .professional_approach_subheading {
        font-size: 2rem;
    }

    .professional_approach .professional_approach_title {
        font-size: 3rem;
    }
}

/* Contact Details */
.contact_details {
    margin: 7rem 0 3.5rem;
}

.contact_details .contact_box {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 3rem 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.contact_details .contact_box:hover {
    transform: translateY(-1rem);
}

.contact_details .contact_box .icon_box {
    align-items: center;
    background: var(--picton_blue);
    border-radius: 50%;
    display: flex;
    height: 7rem;
    justify-content: center;
    margin: 0 auto;
    width: 7rem;
}

.contact_details .contact_box .icon_box img {
    height: auto;
    max-width: 3.4rem;
}

.contact_details .contact_box .title {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 400;
    margin: 1.2rem 0;
    text-transform: capitalize;
}

.contact_details .contact_box .text,
.contact_details .contact_box .text a {
    color: var(--dark-charcoal);
    font-size: 1.4rem;
    font-weight: 500;
}

@media screen and (min-width:768px) {
    .contact_details .contact_box {
        padding: 4rem 0 2rem;
    }

    .contact_details .contact_box .icon_box {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Contact Form */
.contact_form {
    background: var(--white-flash);
}

.contact_form .contact_form_subheading {
    color: var(--picton_blue);
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
    text-transform: capitalize;
}

.contact_form .contact_form_subheading::before {
    background: linear-gradient(to bottom, var(--ming) 50%, var(--picton_blue) 50%);
    position: absolute;
    content: '';
    height: 2rem;
    width: 0.4rem;
    right: 0;
    left: 0;
    top: 0;
}

.contact_form .contact_form_title {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 400;
    margin-top: 1rem;
}

.contact_form .form-control {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--gray-three);
    color: var(--gray-two);
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1.5rem 2rem;
}

.contact_form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact_form .form-control::placeholder {
    color: var(--gray-two);
    text-transform: capitalize;
}

.contact_form textarea.form-control {
    resize: none;
}

.contact_form form .btn-submit {
    background: var(--picton_blue);
    border-radius: 0.5rem;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    outline: none;
    padding: 0.7rem 1.4rem;
    text-transform: capitalize;
    width: auto;
}

.contact_form form .btn-submit:hover {
    background: var(--ming);
}

@media screen and (min-width:768px) {
    .contact_form form .btn-submit {
        width: 12rem;
        padding: 1rem 0;
    }
}

@media screen and (min-width:992px) {
    .contact_form .contact_form_subheading {
        font-size: 2rem;
    }

    .contact_form .contact_form_title {
        font-size: 3rem;
    }   
}

/* Footer */
.footer {
    background: var(--white-ghost);
    padding: 5rem 0;
}

.footer .footer_text {
    color: var(--dark-charcoal);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%;
    margin: 2rem 0;
}

.footer .footer_head {
    color: var(--ming);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.footer .footer_list {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.footer .footer_list .footer_list_item,
.footer #menu-main-links .menu-item,
.footer #menu-other-info .menu-item {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.footer .footer_list .footer_list_item:last-of-type,
.footer #menu-main-links .menu-item:last-of-type,
.footer #menu-other-info .menu-item:last-of-type {
    margin-bottom: 0;
}

.footer .footer_list .footer_list_item img {
    height: auto;
    max-width: 0.8rem;
}

.footer .footer_list .footer_list_item a,
.footer #menu-main-links .menu-item a,
.footer #menu-other-info .menu-item a {
    color: var(--dark-charcoal);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
}

.footer #menu-main-links i.wpmi__icon,
.footer #menu-other-info i.wpmi__icon {
    color: var(--ming) !important;
    font-weight: 700;
    margin-right: 0;
}

.footer .footer_contact_media {
    align-items: start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer .footer_contact_media:last-of-type {
    margin-bottom: 0;
}

.footer .footer_contact_media img {
    height: auto;
    max-width: 1.6rem;
}

.footer .footer_contact_media .text {
    color: var(--dark-charcoal);
    font-size: 1.3rem;
    font-weight: 400;
}

.footer .b-sm-bottom {
    border-bottom: 0.1rem solid var(--ming);
    padding-bottom: 3rem;
}

.footer .footer_social {
    height: auto;
    max-width: 3rem;
}

@media screen and (min-width:768px) {
    .footer .b-sm-bottom {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media screen and (min-width:992px) {
    .footer {
        padding: 13.5rem 0 5rem;
    }

    .footer .b-lg-start {
        border-left: 0.1rem solid var(--ming);
        height: 100%;
    }
    
    .footer .b-lg-end {
        border-right: 0.1rem solid var(--ming);
        height: 100%;
    }
}

/* Footer Bottom */
.footer_bottom {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 0;
}

.footer_bottom .footer_text {
    font-size: 1.1rem;
    font-weight: 300;
}

.footer_bottom .footer_text a {
    color: var(--white);
}

/* menu-main-menu-container */
#menu-main-menu .menu-item a {
    color: var(--dark-charcoal);
    text-transform: capitalize;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0 0.5rem;
}

#menu-main-menu .menu-item.menu-item-142 a {
    background: var(--picton_blue);
    border-radius: 0.5rem;
    border: none;
    color: var(--white);
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    outline: none;
    padding: 1rem 0;
    text-align: center;
    text-transform: capitalize;
    width: 12rem;
}


/* Sports-inner-page start*/
.sports-page {
    background: var(--white-flash);
    padding: 4rem 0 4rem;
}

.sports-page .btn-primary {
    margin-top: 4rem;
    text-transform: uppercase;
}

.sports-page .grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.sports-page .grid-wrapper .grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sports-page .grid-wrapper .grid-item .img-grid {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
}

.sports-page .img-overlay {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#video-popup {
    background: rgba(0,0,0,0.6);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mfp-bg {
    background: none !important;
}
.mfp-content .mfp-close {
    color: #fff !important;
    margin: 5rem 2rem 0 0;
}
.sports-page .img-overlay .zoom-icon {
    border-radius: 10px;
    width: 50px;
    height: 50px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1;
}

.sports-page .img-overlay .zoom {
    height: auto !important;
    max-width: 32px;
    width: unset !important;
}

.sports-page .grid-wrapper .grid-item:hover::after {
    background: rgba(60, 170, 224, 0.57);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
}

.sports-page .grid-wrapper .grid-item:hover .img-overlay .zoom-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:768px) {
    .sports-page .grid--cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-page .grid-wrapper .wide {
       grid-column: span 2;
    }

    .sports-page .grid-wrapper .tall {
        grid-row: span 2;
    }

    .sports-page .grid-wrapper .wide {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media screen and (min-width:992px) {
    .sports-page .grid--cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Sports-inner-page end*/

/* contact form */
.contact_form .error{
    color: red !important;
}

/* contact form */

/* video popup css start */
#video-popup{
    text-align: center;
}
/* video popup css end */


/* article rss feeds */

.card .card-header img.fx-h-crd{
    height: 250px !important;
    width: 100%;
    object-fit: cover;
    }
    .fx-min-hght-crd{
    min-height: 350px !important;
    
    }
/* article rss feeds */

/* sport page */
section.articles.sprt-art-glry{
    /* margin-top: 60px !important; */
    /* background: #2F667C !important; */
    background: #f9f9f9 !important;
}
section.articles.sprt-art-glry h1.title{
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--primary) !important;
    /* background-color: #FFF !important;   */
}
/* sport page end */