/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'); */
@import url(../fonts/lato/Lato-font.css);
@import url(../fonts/Oswald/Oswald-font.css);
/* ==========================================================================
   GLOBAL STYLE CONFIGURATION (Variables, Fonts, Global resets)
   ========================================================================== */
   :root {
    --LatoFont: "Lato", sans-serif;
    --headingFont: "Oswald", sans-serif;

    --white:#fff;
    --black:#000;
    --textColor: #424242;
    --headingTextColor: #545454;
    --primaryColor: #070C09;
    --secondaryColor: #004CA3;
    --skyBlue: #2A8AF9;
    --borderColor: #e8e8e8;

    --btnColor2: #0075f8;
    --btnColor: #0043f8;
    --btnText: clamp(14px, 1.2vw, 18px);

    /* heading font size */
    --h1: clamp(30px, 5vw, 60px);
    --h2: clamp(28px, 3vw, 48px);
    --h3: clamp(26px, 3vw, 40px);
    --h4: clamp(24px, 2.5vw, 30px);
    --h5: clamp(22px, 2vw, 24px);
    --h6: clamp(20px, 1.5vw, 20px);


   --transition: all 0.5s linear;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content .kg-width-wide {
    max-width: 1200px;
    width: calc(100% + 200px);
    margin-left: -100px;
}

.post-content .kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}


body {
    font-family: var(--LatoFont);
    background-color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--headingFont);
}

h1{
    font-size: var(--h1);
}
h2{
    font-size: var(--h2);
}
h3{
    font-size: var(--h3);
}
h4{
    font-size: var(--h4);
    color: var(--headingTextColor);
}
h5{
    font-size: var(--h5);
    color: var(--headingTextColor);
}
h6{
    font-size: var(--h6);
    color: var(--headingTextColor);
}
p{
    color: var(--textColor);
}

ul li, ol li{
    color: var(--textColor);
}
img{
    max-width: 100%;
    height: auto;
}
/* Reusable Global Typography Helpers */

/* Custom Buttons */
.customBtn{
    font-weight: 600;
    color: var(--white);
    border-radius: 8px;
    padding: 18px 28px;
    line-height: 100%;
    text-decoration: none;
    display: inline-block;
    font-size: var(--btnText);
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid var(--borderColor);
}
.btn-blue-gradient {
    border: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.363);
    background: linear-gradient(180deg,var(--btnColor2) 0%, var(--btnColor) 100%);
    &:hover{
        color: var(--white);
        transition: var(--transition);
        background: linear-gradient(180deg,var(--btnColor)  100%, var(--btnColor2) 0%);
    }
}

.btn-blue-outline{
    border: 1px solid var(--secondaryColor);
    background-color: transparent;
    &:hover{
        color: var(--white);
        transition: var(--transition);
        background: linear-gradient(180deg,var(--btnColor)  100%, var(--btnColor2) 0%);
    }
}
.btn-white-outline{
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
    &:hover{
        transition: var(--transition);
        border-color: var(--secondaryColor);
        background: linear-gradient(180deg,var(--btnColor)  100%, var(--btnColor2) 0%);
    }
}
.skyBlue-text{
    color: var(--skyBlue);
}
.text-blue{
    color: var(--btnColor);
}

.py-120{
    padding-block: 120px;
}

.pt-120{
    padding-top: 120px;
}
.pb-120{
    padding-bottom: 120px;
}

.py-80{
    padding-block: 80px;
}
.pt-80{
    padding-top: 80px;
}
.pb-80{
    padding-bottom: 80px;
}

.pb-150{
    padding-bottom: 150px;
}

.my-80{
    margin-block: 80px;
}
.mt-80{
    margin-top: 80px;
}
.mb-80{
    margin-bottom: 80px;
}
/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Navbar Configuration */
header{
    z-index: 99999;
    margin-block: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem 0;
    border-block: 1px solid #292929;
}

header.scrolled {
    margin-top: 0;
    background-color: var(--primaryColor);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--headingFont);
    font-size: clamp(24px, 2vw, 38px);
    span{
        font-weight: lighter;
    }
}
.navbar-brand span {
    color: var(--color-gold);
}
.navbar-nav{
    gap: 25px;
}
.nav-link {
    font-size: 16px;
    padding: 5px;
    line-height: normal;
    color: #C0C0C0!important;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
}

.navbar-toggler{
    order: 2;
    border: 0;
    padding: 0;
    filter: invert(1) brightness(5);
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section Banner */
.heroSection{
    text-align: center;
    z-index: 10;
    padding-block: 160px 120px;
    background-image: url("../images/hero-bg.png");
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}  

.heroSection::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    bottom: -1px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    background-image: url("../images/gray-pattern-sec-vector-1.svg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.bannerContent{
    color: var(--white);
    max-width: 712px;
    margin-inline: auto;
    margin-top: -350px;   
    position: relative;
}
.bannerContent h4{
    color: var(--white);
}
.bannerContent h5.subheading{
    color: var(--white);
    text-align: start;
    font-weight: 300;
}

.hero_image_box::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    opacity: 0.5;
    border-radius: 50%;
    filter: blur(200px);
    transform: translate(-50%, -50%);
    background-color: var(--skyBlue);
}
.hero_image_box img{
    position: relative;
}

/* what I Do Section css */
.whatIDoSection{
    background-image: url("../images/gray-pattern-bg.png");
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    z-index: 100;
}
.whatIDoSection::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../images/white-sec-vector-1.svg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
/* .secHeading{
    text-align: center;
} */
.secSubHeading {
    font-style: italic;
    h4{
        font-weight: 300;
        margin-bottom: 0;
        font-size: var(--h6);
        color: var(--secondaryColor);
    }
}

.shadowCard{
    padding: 30px;
    height: 100%;
    border-radius: 14px;
    transition: var(--transition);
    box-shadow: 0 0 5px #8a8a8a2d;
    h4{
        font-size: var(--h5);
    }
    img{
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    &:hover{
        box-shadow: 0 0 20px #4d4d4d2d;
        background-color: var(--white);
    }
}

/* Highlights css */
/* .highlightSection{

} */
.listStyleOne_wrapper{
    margin-block: 50px;
}
.listStyle{
    padding-left: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid var(--borderColor);
}

.listStyle::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 7px solid #D7E1EC;
    background-color: var(--secondaryColor);
}
.listStyle:last-child{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* newsletter Section  */
.newsletterSec{
    background-image: url("../images/blue-pattern-bg.png");
    background-size: 100% 100%;
    /* padding-block: 80px; */
    position: relative;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.newsletterSec::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.newsletterSec::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.newsletterSec .secHeading {
    max-width: 570px;
    margin-inline: auto;
}

.Outer_card{
    height: 100%;
    position: relative;
}
.Outer_card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;

    background-image: url('../images/icon/corner-vector.svg');
    background-position: top right;
    background-size: 40px;
    background-repeat: no-repeat;

}                       

.custom-card {
    position: relative; 
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    overflow: hidden;
    background-color: #02358d7a;
    border: 1px solid var(--borderColor);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, calc(100% - 59px) 0, 100% 59px, 100% 100%, 0 100%);
}

.custom-card::before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    background-color: var(--white);
    z-index: 10;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}


.card-content-container{
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
}

.custom-card :is(h5 a,p){
    color: var(--white);
    margin-bottom: 0;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}
.custom-card h5 a:hover{
    color: var(--primaryColor);
}

.custom-badge {
    opacity: 0.85;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 20px;
    padding: 5px 15px;
    color: var(--white);
    display: inline-block;
    border: 1px solid #4a65a8;
    background-color: #012c9aa4;
}

.card-img-container {
    height: 210px;
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: var(--transition);
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.custom-card:hover .card-img-container{
    transform: scale(1.05);
}


.newsletters_form_container{
    padding: 25px 30px;
    border-radius: 14px;
    background-color: var(--white);
    clip-path: polygon(0 0, calc(100% - 59px) 0, 100% 59px, 100% 100%, 0 100%);

    form{
        margin-top: 30px;
    }
    .input_container{
        gap: 20px;
        display: flex;
        width: 100%;
        .custom_Email_Field{
            width: 75%;
            padding-left: 45px;
            background-size: 25px;
            background-image: url('../images/icon/email-icon.svg');
            background-position: 10px center;
            background-repeat: no-repeat;
        }
    }
}

#subscribeForm [data-members-success],
#subscribeForm [data-members-error] {
    display: none;
}

#subscribeForm.success [data-members-success] {
    display: block;
}

#subscribeForm.error [data-members-error] {
    display: block;
}

/* optional: show a loading state on the button */
#subscribeForm.loading .customBtn {
    opacity: 0.6;
    pointer-events: none;
}



.outer_form_container{
    position: relative;
    margin-top: 60px;
    width: 80%;
    margin-inline: auto;
}
.outer_form_container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url(../images/icon/corner-vector-outline.svg);
    background-position: top right;
    background-size: 40px;
    background-repeat: no-repeat;
}

/* Latest Article css */
.latestArticleRow{
    gap-row: 40px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #0074f800, #0075F8, #0074f800) border-box;
}
.latestArticleRow:last-child{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    background: transparent;
}
.idxNum{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    display: inline-block;
    font-size: var(--h3);
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--headingFont);
    background: linear-gradient(180deg, var(--btnColor2) 0%, var(--btnColor) 100%);
}

.latestArticleRow h4 a{
    text-decoration: none;
    color: var(--headingTextColor);
    transition: var(--transition);
    &:hover{
        color: var(--btnColor2);
    }
}

.articleContent ul {
    padding-left: 0;
    li{
        position: relative;
        list-style: none;
        padding-left: 25px;
    }
    li::before{
        content: '';
        top: 50%;
        left: 0;
        width: 10px;
        height: 10px;
        position: absolute;
        border-radius: 2px;
        transform: translateY(-50%);
        background-color: var(--btnColor);
    }
}

.gradientBorder{
    border-bottom: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #0074f800, #0075F8, #0074f800) border-box;
}


/* selected Role Section  */

.roleSection{
    /* padding-block:80px; */
    background-image: url(../images/gray-pattern-bg.png);
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    /* margin-top: -50px; */
    position: relative;
}
.roleSection:before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.roleSection:after{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.roleCard{
    height: 100%;
    border-radius: 16px;
    padding: 30px 45px;
    background-size: 100%;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center bottom;

    box-shadow: 0 0 5px #8a8a8a2d;
}
.roleCardContent{
    margin-bottom: 350px;
}
.roleCardContent.mb-120{
    margin-bottom: 120px;
}
.iconBox{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 25px;
    align-content: center;
    background-color: var(--white);
    box-shadow: 0 5px 10px #a1a1a166;
}


/* contact section css */
.contact_container{
    padding: 30px;
    position: relative;
    border-radius: 14px;
    width: 80%;
    margin-inline: auto;
    background-image: url(../images/contact-sec-bg.png);
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.contact_container::before{
    content: '';
    position: absolute;
    width: 55px;
    height: 55px;
    top: -3px;
    right: -3px;
    background-image: url(../images/contact-form-corner.svg);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
}
.customField,.customTextArea{
    width: 100%;
    color: var(--white);
    padding: 12px 15px;
    border-radius: 5px;
    background-color: #ffffff30;
    border: 1px solid var(--borderColor);
    option{
        color: var(--black);
    }
    &:focus-visible{
        outline: 0;

    }
}

.select-control{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image: url("../images/icon/arrow-down.svg"); /* Your custom arrow */
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

::placeholder{
    color: var(--white);
}

.submitBtn{
    color: var(--btnColor);
    background-color: var(--white);
    &:hover{
        color: var(--white);
        background-color: var(--btnColor);
    }
}

.rotete-180{
    transform: rotate(180deg);
}
.secDivider{
    margin-bottom: -40px;
    position: relative;
    z-index: 20;
    max-width: 960px;

}
/* footer css */
footer{
    text-align: center;
    padding-block: 120px 60px;
    background-image: url(../images/footer-bg.png);
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}
footer:before{
    content: '';
    position: absolute;
    width: 50%;
    height: 40px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg);
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0 100%);
    background-color: var(--white);
}
.top_footer{
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
}

.footer_logo{
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--headingFont);
    font-size: clamp(40px, 4vw, 90px);
    display: inline-block;
    /* margin-bottom: 20px; */
    span{
        font-weight: 300;
    }
}

.footer_menu{
    display: flex;
    padding-left: 0;
    margin-block: 30px;
    align-items: center;
    justify-content: center;
    li{
        list-style: none;
        position: relative;
        a{
            color: var(--white);
            text-decoration: none;
            margin-right: 40px;
            padding-right: 40px;
            border-right: 1px solid var(--borderColor);
            &:hover{
                color: var(--btnColor2);
            }
        }

    }
    li:last-child a{
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
    }
}

.gradientGrayBorder {
    border-bottom: 1px solid transparent;
    background: linear-gradient(#ffffff0f, #ffffff00) padding-box, linear-gradient(90deg, #d8d8d800, #ffffff57, #d8d8d800) border-box;
}


.footer_content{
    color: var(--white);
    max-width: 650px;
    margin-inline: auto;
}

.social_media_container{
    display: inline-flex;
    padding: 15px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #0A1A30;
    border: 1px solid #434343;
    span{
        font-size: 16px;
        color: var(--white);
    }
    a{
        padding-right: 15px;
        border-right: 1px solid #434343;
        &:hover img{
            transition: var(--transition);
            transform: scale(1.2);
        }
    }
    a:last-child{
        padding-right: 0;
        border-right: 0;
    }
}

.copyRightSection{
    font-size: 18px;
    text-align: center;
    padding-block: 20px;
    background: linear-gradient(90deg,#070C09 0%, #001f46 50%, #070C09 100%);
    p{
        margin-bottom: 0;
        color: #97A8C7;
    }
}

hr{
    border-color: var(--borderColor);
}
.shadowCard hr{
    border-color: var(--headingTextColor);
}
/* #About Page  */
/* innner banner section  */
.inrbnrSection{
    padding-top: 200px;
    overflow: hidden;
}
.inrbnrContent{
    margin-top: -200px;
    position: relative;
    color: var(--white);
    max-width: 800px;
    margin-inline: auto;
    h5.subheading{
        color: var(--white);
        font-weight: 300;
    }
}

.grayPatternbg{
    background-image: url(../images/gray-pattern-bg.png);
    background-size:cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.expertiseSection{
    position: relative;
    background-color: var(--white);
}
.expertiseSection::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg);
    background-image: url(../images/gray-pattern-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.card-icon{
    width: 60px;
    height: 60px;
    text-align: center;
    align-content: center;
    margin-bottom: 20px;
}

.auther_cta_box{
    padding: 30px;
    border-radius: 5px;
    color: var(--white);
    background-color: #ffffff3d;
    border: 1px solid var(--borderColor);
    h5{
        font-size: var(--h6);
        color: var(--white);
        text-transform: capitalize;
        font-family: var(--LatoFont);
    }
    p{
        margin-bottom: 20px;
    }
}

.email_box{
    gap: 20px;
    width: 100%;
    display: flex;
    padding: 16px;
    color: var(--white);
    align-items: center;
    border-radius: 10px;
    justify-content: space-between;
    border: 1px solid var(--borderColor);
    background: linear-gradient(180deg,#090d125d 0%,  #1e367765 100%);
    &:focus-visible{
        outline: none;
    }
}

/* #copyEmail{
    cursor: pointer;
} */

.img_box{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h3);
    color: var(--white);
    font-family: var(--headingFont);
    background: linear-gradient(180deg, var(--btnColor2) 0%, var(--btnColor) 100%);
    img{
        width: 50px;
    }
}

.content_box{
    width: calc(100% - 60px);
}

/* Research css start */
.page-research footer:before{
    background-color: #eeeeee;
}
.Ul_flex{
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-left: 20px;
    gap: 10px;
    li{
        width: 48%;
    }
}

.lightBlueBg{
    position: relative;
    background-color: #E4EEFF;
}

.lightBlueBg::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/lightBlue-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.lightBlueBg::after{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.cta_container{
    padding: 40px;
    /* width: 60%; */
    max-width: 650px;
    margin-inline: auto;
    border-radius: 10px;
    background-color: var(--white);
}

.btns_group{
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    .btn-blue-outline{
        color: var(--textColor);
        &:hover{
            color: var(--white);
        }
    }
}

.trustCard{
    gap: 10px;
    display: flex;
    align-items: start;
    flex-direction: column;
}
.ctaSection{
    position: relative;
}
.ctaSection::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}


/* Customized Bootstrap Pills/Tabs Navigation */
.custom-tabs{
    gap: 20px;
    flex-wrap: wrap;
    margin-block: 60px;
    
}
.custom-tabs .nav-item {
    flex: 1;
}

.custom-tabs .nav-btn {
    padding: 18px;
    color: var(--btnColor);
    background-color: #d1e3ff;
    transition: all 0.2s ease-in-out;
}

.custom-tabs .nav-btn:hover {
    background-color: #c0d8ff;
    color: #084ab2;
}

.custom-tabs .nav-btn.active {
    border: 0;
    color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.363);
    background: linear-gradient(180deg, var(--btnColor2) 0%, var(--btnColor) 100%);
}


/* Journal info right column styles */
.publication-item h4.journal-title {
    font-size: var(--h5);
    color: var(--btnColor);
    text-transform: capitalize;
    font-family: var(--LatoFont);
}


/* media page css start  */
/* .graySecDivider{
    position: relative;
} */

.graySecDivider:after{
    /* content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg); */
    background-image: url(../images/gray-pattern-sec-vector-1.svg);
    /* background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat; */
}
.card-border-icon{
    width: 75px;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #02358d7a;
    border: 1px solid var(--borderColor);
}
.owl-stage-outer{
    padding: 2px;
}
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

/* .owl-carousel .item,
.owl-carousel .Outer_card {
    display: flex;
    width: 100%;
}

.custom-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
} */

.pressCard{
    padding: 30px;
    position: relative;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #ADD4FF;
    box-shadow: 0 10px 15px 0 #00000020;
    .secHeading{
        position: relative;
        margin-bottom: 200px;
    }
}
.pressCard::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(360deg,#ffffff00 0%, #ffffff 100%);
}


.containerHeading{
    text-align: center;
    font-size: var(--h4);
    text-transform: capitalize;
    font-family: var(--LatoFont);
    margin-top: 80px;
}

.media_logos_wrapper{
    margin-top: 60px;
}

.audio-player{
    gap:20px;
    display:flex;
    align-items:center;
    justify-content: flex-end;
}

.duration{
    min-width:70px;
    font-weight:600;
    font-size:var(--h5);
    color:var(--textColor);
}
.waveform{
    width:calc(100% - 180px);
}
/* .roleSection .customBorder{
    border: 1px solid #c3c3c3;
}
.roleSection hr {
    border-color: #2C2C2C;
} */

.customBorder{
    border: 1px solid #c3c3c3;
    hr {
        border-color: #2C2C2C;
    }
}


.play-btn{
    width:70px;
    height:70px;
    border:none;
    border-radius:50%;
    color:var(--white);
    font-size:var(--h4);
    cursor:pointer;
    transition:.3s;
    background: linear-gradient(180deg, var(--btnColor2) 0%, var(--btnColor) 100%);
}

.play-btn:hover{
    background: linear-gradient(180deg, var(--btnColor) 0%, var(--btnColor2) 100%);
}

.lightBlueCard{
    border: 1px solid #d1e5fe;
    background-color: #e5ebf2;
}

.lightBlueCard h6{
    font-size: var(--h6);
    text-transform: inherit;
    font-family: var(--LatoFont);
}

.profileContent{
    width: 30%;
    padding: 25px;
    margin-top: -150px;
    margin-inline: auto;
}

/* Community Section css start */

.publicSectionRow h4{
    color: var(--btnColor);
}
.publicSectionRow h6{
    color: #00268B;
    font-weight: 800;
    text-transform: capitalize;
    font-family: var(--LatoFont);
}

.comm_lightBlueBg::before{
    top: -1px;
    transform: translateX(-50%) rotateX(180deg);
    background-image: url(../images/gray-pattern-sec-vector-1.svg);
}


/* newsletter section css start */
.subscribeSec::before{
    content: none;
}
.subscribe_container {
    position: relative;
    width: 80%;
    margin-inline: auto;
}
.subscribeInrPart {
    padding: 30px;
    border-radius: 14px;
    background-image: url(../images/subscribe-bg.jpg);
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}

.subscribe_container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url(../images/icon/Subscribe-form-corner.svg);
    background-position: top right;
    background-size: 40px;
    background-repeat: no-repeat;
}

.page-newsletter footer:before,
.page-contact footer:before{
    background-color: transparent;
    background-image: url(../images/blue-sec-vector-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* contact us section css start */
.reachMeSec::before{
    content: none;
}
.reachMeSec::after{
    background-image: url(../images/gray-pattern-sec-vector-1.svg);
}


.inner_container{
    margin-top: 100px;
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
}
.inner_container::before{
    content: '';
    position: absolute;
    width: 80%;
    height: 60%;
    top: 0;
    left: 50%;
    opacity: 0.5;
    border-radius: 50%;
    filter: blur(200px);
    transform: translateX(-50%);
    background-color: var(--skyBlue);
}
.postBnrContent{
    text-align: left;
    position: relative;
    color: var(--white);
    /* margin-top: -100px; */
    margin-bottom: 40px;
}

.postThumbnail{
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.text-muted-light{
    opacity: 0.6;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: '>';
}
.breadcrumb-wrapper .breadcrumb-item a{
    color: var(--white);
    text-decoration: none;
}
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-wrapper .breadcrumb-item
{
    opacity: 0.6;
    color: var(--white);
    text-decoration: none;
}
.secBtmWhite{
    position: relative;
}
.secBtmWhite::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 50px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/white-sec-vector-1.svg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.cardStyleTwo {
    border: 1px solid transparent;
    background: linear-gradient(#dae9ff, #9bb8e2) padding-box, linear-gradient(180deg, #0d6efd, #0a58ca) border-box;
}
.outerCardStyleTwo::after{
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background-image: url(../images/icon/card-corner-icon.svg);
    background-position: top right;
    background-size: 65px;
    background-repeat: no-repeat;
}
.cardStyleTwo :is(h5 a,p){
    color: var(--black);
}
.cardStyleTwo :hover h5 a{
    color: var(--secondaryColor);
}