body{
    font-family: 'Montserrat',sans-serif;
    overflow-x:hidden;
}

/*==================================================
TOP HEADER
==================================================*/

.top-header{
    background:#fff;
    height:42px;
    line-height:42px;
    padding:0;
    color:#12344A;
    font-size:13px;
    font-weight:400;
    border-bottom:1px solid rgb(16 15 15 / 8%);
}

.top-header .container,
.top-header .row{
    height:42px;
}

.top-left{
    display:flex;
    align-items:center;
    height:42px;
}

.top-left a{
    display:flex;
    align-items:center;
    color:#12344A;
    text-decoration:none;
    padding:0 18px;
    height:42px;
    transition:.3s;
    border-right:1px solid rgb(16 15 15 / 8%);
}

.top-left a:first-child{
    border-left:1px solid rgb(16 15 15 / 8%);
}

.top-left a:hover{
    background:#12344A;
    color:#fff;
}

.top-left i{
    margin-right:8px;
    font-size:13px;
}

.social-icons{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    height:42px;
}

.social-icons a{
    width:28px;
    height:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#12344A;
    border-radius:50%;
    transition:.3s;
    text-decoration: none;
}

.social-icons a:hover{
    background:#12344A;
    color:#fff;
}


/*==================================================
HEADER
==================================================*/

.main-header{
    position:relative;
    width:100%;
    background:#fff;
    z-index:999;
    transition:.35s;
}

.main-header.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}


/*==================================================
NAVBAR
==================================================*/

.navbar{
    padding:0;
    min-height:88px;
}

.navbar-brand{
    padding:0;
    margin:0;
}

.navbar-brand img{
    height:72px;
    width:auto;
}


/*==================================================
MENU
==================================================*/

.navbar-collapse{
    justify-content:flex-end;
}

.navbar-nav{
    align-items:center;
}

.nav-item{
    position:relative;
}

.nav-link{
    color:#2d3640;
    font-size:13px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.6px;
    padding:33px 18px !important;
    margin:0;
    transition:.3s;
}

.nav-link:hover{
    background:#12344A;
    color:#fff;
}

.nav-item.active .nav-link{
    background:#12344A;
    color:#fff;
}


/*==================================================
DROPDOWN
==================================================*/

.dropdown-menu{
    padding:0;
    margin:0;
    border:none;
    border-radius:0;
    min-width:260px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    display:none;
}

.nav-item:hover>.dropdown-menu{
    display:block;
}

.dropdown-item{
    padding:14px 22px;
    font-size:13px;
    color:#555;
    text-transform:uppercase;
    border-bottom:1px solid #ededed;
    transition:.3s;
}

.dropdown-item:last-child{
    border-bottom:none;
}

.dropdown-item:hover{
    background:#12344A;
    color:#fff;
}


/*==================================================
MOBILE BUTTON
==================================================*/

.menu-btn{
    border:none;
    background:none;
    font-size:24px;
    color:#12344A;
    display:none;
}

@media(max-width:991px){

    .menu-btn{
        display:block;
    }

    .navbar-collapse{
        display:none;
    }

    .navbar{
        min-height:75px;
    }

    .navbar-brand img{
        height:52px;
    }

    .top-header{
        display:none;
    }

}


/*==================================================
LARGE CONTAINER
==================================================*/

@media(min-width:1400px){

    .container{
        max-width:1240px;
    }

}

/*==========================
MENU BUTTON
==========================*/

.menu-btn{

    border:none;

    background:none;

    font-size:28px;

}

/*==========================
OVERLAY
==========================*/

.menu-overlay{

    position:fixed;

    width:100%;

    height:100%;

    left:0;

    top:0;

    background:rgba(0,0,0,.5);

    display:none;

    z-index:998;

}

/*==========================
MOBILE MENU
==========================*/

.mobile-menu{

    position:fixed;

    width:320px;

    max-width:100%;

    height:100vh;

    background:#fff;

    top:0;

    left:-320px;

    z-index:9999;

    transition:.4s;

    overflow-y:auto;

    padding:25px;

}

.mobile-menu.active{

    left:0;

}

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.mobile-header img{

    height:50px;

}

.close-menu{

    border:none;

    background:none;

    font-size:28px;

}

.mobile-menu ul{

    list-style:none;

    padding:0;

}

.mobile-menu li{

    border-bottom:1px solid #eee;

}

.mobile-menu li a{

    display:block;

    padding:15px 0;

    text-decoration:none;

    color:#333;

    font-weight:500;

}

.mobile-contact{

    margin-top:40px;

}

.mobile-contact a{

    display:block;

    color:#12344A;

    margin-bottom:15px;

    text-decoration:none;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.navbar-collapse{

display:none!important;

}

.main-header{

top:0;

}

.top-header{

display:none;

}

}

/*==================================
Hero Section
===================================*/
/*==================================
Hero Section
===================================*/

.hero-section{
    position:relative;
}

.hero-slider .hero-item{

    position:relative;

    height:450px;

    min-height:450px;

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

/* Dark Overlay */

.hero-overlay{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    z-index:1;

}

/* Hero Content */

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:100%;

    z-index:2;

    text-align:center;

}

/* Heading */

.hero-content h1{

    color:#fff;

    font-size:42px;

    font-weight:500;

    line-height:1.15;

    letter-spacing:1px;

    text-transform:uppercase;

    font-family:'Cormorant Garamond', serif;

    margin:0;

    text-shadow:0 5px 15px rgba(0,0,0,.45);

}

/* Image Zoom */

.hero-slider .owl-item.active .hero-item{

    animation:heroZoom 8s linear forwards;

}

@keyframes heroZoom{

    from{

        background-size:100%;

    }

    to{

        background-size:110%;

    }

}

/* Owl Navigation */

.hero-slider .owl-nav{

    position:absolute;

    top:50%;

    width:100%;

    transform:translateY(-50%);

}

.hero-slider .owl-prev,
.hero-slider .owl-next{

    width:55px;

    height:55px;

    border-radius:50%!important;

    background:rgba(255,255,255,.15)!important;

    color:#fff!important;

    font-size:22px!important;

    transition:.4s;

}

.hero-slider .owl-prev{

    position:absolute;

    left:30px;

}

.hero-slider .owl-next{

    position:absolute;

    right:30px;

}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover{

    background:#12344A!important;

}

/* Dots */

.hero-slider .owl-dots{

    position:absolute;

    bottom:30px;

    width:100%;

}

.hero-slider .owl-dot span{

    width:12px;

    height:12px;

    background:#fff!important;

}

.hero-slider .owl-dot.active span{

    width:35px;

    border-radius:30px;

    background:#c89b5b!important;

}

/* Responsive */

@media(max-width:991px){

.hero-content h1{

font-size:42px;

}

.hero-slider .owl-nav{

display:none;

}

}

@media(max-width:767px){

.hero-slider .hero-item{

height:auto;
min-height: 256px;

}

.hero-content h1{

font-size:30px;

line-height:1.3;

padding:0 20px;

}

}

/*==================================
ABOUT INTRO
===================================*/

.about-intro{

    padding:50px 0;

    background:#fff;

}

.intro-title h2{

    font-size:36px;

    line-height:1.05;

    font-family:'Cormorant Garamond',serif;

    font-weight:600;

    color:#0d2d44;

    text-transform:uppercase;

    margin:0;

}

.intro-title span{

    color:#b51d22;

}

.intro-content{

    padding:0 5px;

}

.intro-content p{

    text-align: justify;

}

.intro-logo small{

    display:block;

    font-size:13px;

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.intro-logo img{

    max-width:220px;

}

/*============================
Responsive
=============================*/

@media(max-width:991px){

.about-intro{

padding:80px 0;

}

.intro-title{

text-align:center;

margin-bottom:40px;

}

.intro-title h2{

font-size:42px;

}

.intro-content{

padding:0;

text-align:center;

margin-bottom:40px;

}

.intro-logo{

text-align:center!important;

}

}

@media(max-width:767px){

.about-intro{

padding:60px 0;

}

.intro-title h2{

font-size:34px;

}

.intro-content p{

font-size:16px;

line-height:1.8;

}

.intro-logo img{

max-width:170px;

}

}
/*==================================
FEATURE BOXES
===================================*/

.feature-boxes{
    padding:50px 0;
    background:#fff;
}

.feature-card{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:8px;

    text-decoration:none;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.feature-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

/* Bottom Overlay */

.feature-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:30px;

    background:linear-gradient(to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.20),
            transparent);

    display:flex;

    justify-content:center;

    align-items:flex-end;

    height:100%;

}

/* Title */

.feature-overlay h3{

    color:#fff;

    font-size:28px;

    font-family:'Cormorant Garamond', serif;

    text-transform:uppercase;

    letter-spacing:2px;

    margin:0;

    transition:.4s;

}

/* Gold Line */

.feature-overlay h3::after{

    content:'';

    display:block;

    width:60px;

    height:2px;

    background:#C89B5B;

    margin:12px auto 0;

    transition:.4s;

}

/* Hover */

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.feature-card:hover img{

    transform:scale(1.12);

}

.feature-card:hover .feature-overlay{

    background:linear-gradient(to top,
            rgba(18,52,74,.92),
            rgba(18,52,74,.35),
            transparent);

}

.feature-card:hover h3{

    letter-spacing:4px;

}

/* Responsive */

@media(max-width:991px){

.feature-card img{

height:280px;

}

}

@media(max-width:767px){

.feature-boxes{

padding:60px 0;

}

.feature-card img{

height:240px;

}

.feature-overlay h3{

font-size:22px;

}

}

/*====================================
        SERVICES
=====================================*/

.services-section{
    padding:100px 0;
    background:#f8f9fb;
}

.services-heading span{

    color:#b32025;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:18px;

    font-weight:600;

}

.services-heading h2{

    font-size:54px;

    margin:8px 0 25px;

    font-family:'Cormorant Garamond', serif;

    color:#12344A;

    text-transform:uppercase;

    font-weight:700;

}

.services-heading p{

    color:#666;

    line-height:1.9;

}

/*==========================*/

.service-box{

    background:#fff;

    padding:35px;

    border-radius:8px;

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.service-box::before{

    content:'';

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:#12344A;

    transition:.4s;

}

.service-box:hover::before{

    height:100%;

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#12344A;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

    transition:.4s;

}

.service-box:hover .service-icon{

    background:#b32025;

    transform:rotate(360deg);

}

.service-box h4{

    font-size:24px;

    font-family:'Cormorant Garamond', serif;

    margin-bottom:18px;

    color:#12344A;

}

.service-box p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.service-box a{

    text-decoration:none;

    color:#12344A;

    font-weight:600;

    transition:.3s;

}

.service-box a i{

    margin-left:8px;

    transition:.3s;

}

.service-box:hover a{

    color:#b32025;

}

.service-box:hover a i{

    margin-left:15px;

}

/*==================================
RECENT PUBLICATIONS
==================================*/

.recent-publications{
    padding:90px 0;
    background:#fff;
}

/* Heading */

.section-title h2{

    font-size:36px;

    line-height:1.05;

    font-family:'Cormorant Garamond',serif;

    text-transform:uppercase;

    font-weight:600;

    margin:0;

    color:#0f2940;

}

.section-title span{

    color:#b41f24;

}

/* Card */

.publication-item{

    transition:.35s;

}

/* Image */

.publication-image{

    overflow:hidden;

    margin-bottom:20px;

}

.publication-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.publication-item:hover img{

    transform:scale(1.08);

}

/* Content */

.publication-content{

    padding-right:20px;

}

/* Tag */

.publication-tag{

    display:inline-block;

    background:#dddddd;

    color:#fff;

    font-size:11px;

    font-weight:600;

    padding:5px 12px;

    margin-bottom:18px;

    letter-spacing:1px;

}

/* Title */

.publication-content h3{

    margin-bottom:18px;

    line-height:1.35;

}

.publication-content h3 a{

    color:#b32025;

    font-size:24px;

    font-family:'Cormorant Garamond',serif;

    text-decoration:none;

    transition:.3s;

}

/* Description */

.publication-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:30px;

}

/* Read More */

.read-more{

    color:#0f2940;

    text-decoration:none;

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:1px;

    font-weight:600;

}

.read-more i{

    margin-left:12px;

    color:#b32025;

    transition:.3s;

}

.publication-item:hover .read-more i{

    margin-left:20px;

}

.publication-item:hover h3 a{

    color:#0f2940;

}

/*====================================
GLOBAL NETWORK
=====================================*/

.global-network-section{

    background:#f5f5f5;

    padding:100px 0;

}

.global-content{

    margin-bottom:60px;

}

.global-content h2{

    font-family:'Cormorant Garamond', serif;

    font-size:24px;

    line-height:1.25;

    color:#102b42;

    font-weight:600;

    text-align:center;

    max-width:950px;

    margin:auto;

}

/*=========================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

/*=========================*/

.info-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.info-item i{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#fff;

    color:#b32025;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    flex-shrink:0;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.info-item h5{

    margin-bottom:8px;

    font-size:20px;

    color:#102b42;

    font-family:'Cormorant Garamond', serif;

}

.info-item p{

    margin:0;

    color:#555;

    line-height:1.8;

}

.info-item span{

    color:#555;

    font-size:17px;

}

/*=========================*/

.global-network-section .row:last-child{

    align-items:flex-start;

}

/*=========================*/

@media(max-width:991px){

.global-network-section{

padding:80px 0;

}

.global-content h2{

font-size:34px;

}

.contact-info{

margin-bottom:35px;

}

}

@media(max-width:767px){

.global-network-section{

padding:60px 0;

}

.global-content h2{

font-size:18px;

line-height:1.2;

}

.info-item{

align-items:flex-start;

}

}

/*==================================
        FOOTER
===================================*/

.footer{

    background:#1f2328;

    color:#bdbdbd;

    padding:80px 0 25px;

}

.footer-logo{

    max-width:120px;

    margin-bottom:30px;

}

.footer-about{

    color:#d5d5d5;

    line-height:1.9;

    margin-bottom:25px;

}

.footer-readmore{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.footer-readmore:hover{

    color:#c89b5b;

}

.footer a{
    color:#fff;
    text-decoration: none;
    font-size: 16px;
}
.footer .text-mute{
    color: #7e7a7a;
    margin-top: 10px;
    font-size: 12px;

}

/* Widget */

.footer-widget{

    margin-bottom:40px;

}

.footer-widget h4{

    color:#fff;

    margin-bottom:30px;

    font-size:26px;

    font-family:'Cormorant Garamond', serif;

}

/* Contact */

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:18px;

}

.footer-contact i{

    color:#c89b5b;

    width:20px;

    margin-top:5px;

}

.footer-contact a,

.footer-contact span{

    color:#bdbdbd;

    text-decoration:none;

    line-height:1.8;

}

.footer-contact a:hover{

    color:#fff;

}

/* Social */

.footer-social{

    margin-top:25px;

}

.footer-social a{

    width:40px;

    height:40px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:#c89b5b;

    border-color:#c89b5b;

    color:#fff;

}

/* Links */

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.3s;

    position:relative;

    padding-left:18px;

}

.footer-links a::before{

    content:"›";

    position:absolute;

    left:0;

    color:#c89b5b;

}

.footer-links a:hover{

    color:#fff;

    padding-left:25px;

}

/* Bottom */

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0 25px;

}

.footer-bottom p{

    margin:0;

    color:#9d9d9d;

}

.footer-bottom a{

    color:#9d9d9d;

    text-decoration:none;

    margin:0 8px;

}

.footer-bottom a:hover{

    color:#fff;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.footer{

padding:70px 0 20px;

}

.footer-widget{

text-align:center;

}

.footer-contact li{

}

.footer-social{

text-align:center;

}

}

@media(max-width:767px){

.footer{

padding:60px 0 20px;

}

.footer-logo{

max-width:180px;

}

.footer-widget h4{

font-size:22px;

}

.footer-bottom{

text-align:center;

}

.footer-bottom .text-lg-end{

margin-top:15px;

}

}


/*==================================================
ABOUT EDITORIAL SECTION
==================================================*/

.about-editorial-section{
    position: relative;
    padding: 90px 0;
    background: #fff;
}

.about-editorial-section .row{
    row-gap: 50px;
}

/*========================================
EDITOR BLOCK
========================================*/

.editor-block{
    margin-bottom: 55px;
}

.editor-block:last-child{
    margin-bottom: 0;
}

/*========================================
SMALL TITLE
========================================*/

.editor-small-title{

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#1448a2;

    margin-bottom:18px;

}

/*========================================
MAIN TITLE
========================================*/

.editor-title{

    font-family:'Cormorant Garamond',serif;

    font-size:26px;

    line-height:1.25;

    font-weight:700;

    color:#12344A;

    margin-bottom:28px;

    text-transform:uppercase;

}

/*========================================
PARAGRAPH
========================================*/

.editor-block p{

    font-size:16px;

    line-height:1.9;

    color:#666;

    margin-bottom:18px;

}

/*========================================
LIST
========================================*/

.editor-list{

    margin:25px 0 0;

    padding-left:18px;

}

.editor-list li{

    margin-bottom:14px;

    color:#555;

    line-height:1.8;

}

.editor-list li:last-child{

    margin-bottom:0;

}

/*========================================
IMAGE
========================================*/

.editor-image{

    position:relative;

    overflow:hidden;

    border-radius:8px;

}

.editor-image img{

    width:100%;

    display:block;

    border-radius:8px;

    transition:.6s;

}

.editor-image:hover img{

    transform:scale(1.05);

}

/*========================================
COLUMN SPACING
========================================*/

.about-editorial-section .col-lg-6:first-child{

    padding-right:35px;

}

.about-editorial-section .col-lg-6:last-child{

    padding-left:35px;

}

/*========================================
LINK
========================================*/

.editor-block a{

    color:#00A8C6;

    text-decoration:none;

    transition:.3s;

}

.editor-block a:hover{

    color:#12344A;

}

/*========================================
SECTION DIVIDER
========================================*/

.editor-divider{

    width:70px;

    height:3px;

    background:#00A8C6;

    margin:25px 0;

}

/*========================================
IMAGE SHADOW
========================================*/

.editor-image{

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*========================================
ANIMATION
========================================*/

.editor-block{

    transition:.35s;

}

.editor-block:hover{

    transform:translateY(-3px);

}

/*========================================
RESPONSIVE
========================================*/

@media(max-width:1199px){

.editor-title{

font-size:34px;

}

}

@media(max-width:991px){

.about-editorial-section{

padding:70px 0;

}

.about-editorial-section .col-lg-6:first-child{

padding-right:15px;

}

.about-editorial-section .col-lg-6:last-child{

padding-left:15px;

margin-top:25px;

}

.editor-title{

font-size:30px;

}

.editor-block{

margin-bottom:45px;

}

}

@media(max-width:767px){

.about-editorial-section{

padding:50px 0;

}

.editor-small-title{

font-size:13px;

letter-spacing:2px;

}

.editor-title{

font-size:26px;

line-height:1.35;

}

.editor-block p{

font-size:15px;

line-height:1.8;

}

.editor-list li{

font-size:15px;

}

.editor-image{

margin-bottom:35px;

}

}

@media(max-width:575px){

.editor-title{

font-size:24px;

}

.editor-block{

margin-bottom:35px;

}

.editor-list{

padding-left:16px;

}

}

/*=========================================
CONTACT SECTION
=========================================*/

.contact-section{

    padding:60px 0;

    background:#fff;

}

.contact-title{

    font-size:24px;

    color:#12344A;

    margin-bottom:24px;

    text-transform:uppercase;

}

.contact-box{

    margin-bottom:5px;

}

.contact-box h5{

    font-size:18px;

    color:#12344A;

    margin-bottom:18px;

    text-transform:uppercase;

}

.media-title{

    font-size:32px;

    color:#00A8C6;

    font-family:'Cormorant Garamond', serif;

    margin-bottom:20px;

}

.contact-box p{

    color:#666;

    font-size:18px;    
    line-height: 1.5;
    text-align: justify;

}

.contact-box i{

    width:18px;

    color:#12344A;

}

/*===================================
FORM
===================================*/

.contact-form{

    padding-left:40px;

}

.contact-form .form-group{

    margin-bottom:28px;

}

.contact-form label{

    display:block;

    margin-bottom:10px;

    color:#12344A;

    font-size:17px;

}

.contact-form label span{

    color:red;

}

.contact-form .form-control{

    border:1px solid #d8d8d8;

    border-radius:0;

    height:52px;

    box-shadow:none;

    font-size:16px;

}

.contact-form textarea.form-control{

    height:180px;

    resize:none;

}

.contact-form .form-control:focus{

    border-color:#12344A;

    box-shadow:none;

}

/*===================================
BUTTON
===================================*/

.btn-contact{

    background:#9d9d9d;

    color:#fff;

    border:none;

    letter-spacing:4px;

    padding:14px 55px;

    transition:.3s;

}

.btn-contact:hover{

    background:#12344A;

}

/*===================================
RESPONSIVE
===================================*/

@media(max-width:991px){

.contact-form{

padding-left:0;

margin-top:60px;

}

.contact-title{

font-size:32px;

}

}

@media(max-width:767px){

.contact-section{

padding:60px 0;

}

.contact-title{

font-size:24px;

}

.contact-box h5{

font-size:24px;

}

.media-title{

font-size:24px;

}

.contact-box{

margin-bottom:20px;

}

}

/*=====================================
PAGINATION
=====================================*/

.custom-pagination{

    margin-top:60px;

}

.custom-pagination .pagination{

    gap:10px;

}

.custom-pagination .page-link{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #d9d9d9;

    color:#12344A;

    font-size:16px;

    font-weight:600;

    border-radius:6px;

    background:#fff;

    transition:.35s;

    box-shadow:none;

}

.custom-pagination .page-link:hover{

    background:#12344A;

    color:#fff;

    border-color:#12344A;

}

.custom-pagination .page-item.active .page-link{

    background:#12344A;

    border-color:#12344A;

    color:#fff;

}

.custom-pagination .page-item.disabled .page-link{

    color:#bbb;

    background:#f5f5f5;

    border-color:#e4e4e4;

}

.custom-pagination .page-link:focus{

    box-shadow:none;

}

@media(max-width:576px){

.custom-pagination .page-link{

width:40px;

height:40px;

font-size:14px;

}

}

.service-sidebar{

    position:sticky;

    top:120px;

}

.sidebar-widget{

    background:#f7f7f7;

    padding:25px;

    margin-bottom:35px;

}

.sidebar-widget h4{

    color:#00A0D2;

    font-size:26px;

    font-family:'Playfair Display',serif;

    margin-bottom:20px;

    text-transform:uppercase;

}

.sidebar-menu{

    list-style:none;

    padding:0;

    margin:0;

}

.sidebar-menu li{

    border-bottom:1px solid #ddd;

}

.sidebar-menu li:last-child{

    border:none;

}

.sidebar-menu li a{

    display:block;

    color:#555;

    text-decoration:none;

    padding:12px 0;

    font-size:15px;

    transition:.3s;

}

.sidebar-menu li a i{

    font-size:11px;

    margin-right:8px;

}

.sidebar-menu li:hover a{

    color:#0B4EA2;

    padding-left:8px;

}

.sidebar-menu li.active a{

    color:#0B4EA2;

    font-weight:600;

}

/* ======================================
   SIDEBAR PUBLICATIONS
====================================== */

.service-publication-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #ececec;
}

.service-publication-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.service-publication-item img{
    width:80px;
    height:80px;
    object-fit:cover;
    flex-shrink:0;
    border-radius:6px;
}

.service-publication-content{
    flex:1;
}

.service-publication-content small{
    display:block;
    font-size:12px;
    color:#888;
    margin-bottom:6px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.service-publication-content h6{
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    color:#222;
    margin:0;
    transition:.3s;
}

.service-publication-item:hover h6{
    color:#1b4f9c;
    cursor:pointer;
}


.careers-page{
    padding:80px 0;
}

.career-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:35px;
    height:100%;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.career-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.career-card h4{
    color:#1448a2;
    margin-bottom:18px;
    font-weight:600;
}

.career-card p{
    margin-bottom:0;
    line-height:1.8;
}

.career-cta{
    margin-top:40px;
    background:#1448a2;
    color:#fff;
    padding:70px 40px;
    border-radius:12px;
    text-align:center;
}

.career-cta h2{
    color:#fff;
    margin-bottom:20px;
}

.career-cta p{
    color:#f5f5f5;
    max-width:700px;
    margin:0 auto 20px;
}

.founder-img{
    border-radius:15px;
}

.founder-signature{
    margin-top:35px;
    padding-top:25px;
    border-top:2px solid #e9ecef;
}

.founder-signature h4{
    color:#0f4c6b;
    font-weight:700;
    margin-bottom:5px;
}

.founder-signature span{
    display:block;
    color:#b08d57;
    font-weight:600;
    margin-bottom:10px;
}

.section-light{
    background:#f8fafc;
    padding:90px 0;
}

.value-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:10px;
    height:100%;
    transition:.3s;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.value-box:hover{
    transform:translateY(-8px);
}

.value-box i{
    font-size:42px;
    color:#0f4c6b;
    margin-bottom:20px;
}

.value-box h4{
    margin-bottom:15px;
}

.cta-section{
    padding:80px 0;
    background:#0f4c6b;
    color:#fff;
}

.cta-section h2,
.cta-section p{
    color:#fff;
}

.office-card{

background:#fff;

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.office-card:hover{

transform:translateY(-10px);

}

.office-card img{

height:auto;

width:100%;

object-fit:cover;

}

.office-content{

padding:30px;

}

.office-content h3{

color:#0f4c6b;

margin-bottom:20px;

}

.office-content ul{

list-style:none;

padding:0;

margin:20px 0;

}

.office-content li{

margin-bottom:12px;

}

.office-content i{

color:#0f4c6b;

width:22px;

}

.coming-tag{

display:inline-block;

background:#0f4c6b;

color:#fff;

padding:6px 15px;

border-radius:30px;

font-size:13px;

margin-bottom:20px;

}

.office-card.coming-soon img{

filter:grayscale(.2);

opacity:.85;

}


.inner-banner{
    background:#f8f9fb;
    padding:70px 0;
}

.inner-banner h1{
    font-size:52px;
    font-weight:700;
    color:#163b5c;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.breadcrumb-list{
    display:flex;
    gap:10px;
    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb-list li{
    color:#777;
}

.breadcrumb-list li a{
    color:#163b5c;
    text-decoration:none;
}


.international-section{
    padding:80px 0 40px;
}

.international-section h2,
.international-section h3{

    color:#163b5c;

    font-size:40px;

    margin-bottom:30px;

    font-weight:700;

}

.international-section p{

    line-height:1.9;

    color:#555;

    font-size:17px;

    margin-bottom:22px;

}

/*=====================================
World Affiliation
======================================*/

.world-affiliation-section{

    padding:50px 0 50px;

}

.world-map-wrapper{

    position:relative;

    min-height:550px;

}

.world-map-img{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:100%;

    opacity:.12;

    pointer-events:none;

    z-index:1;

}

.country-row{

    position:relative;

    z-index:2;

    padding:30px 0;

}

.country-list{

    margin:0;

    padding-left:20px;

}

.country-list li{

    font-size:15px;

    color:#666;

    line-height:34px;

    font-weight:400;

}

.country-list li::marker{

    color:#8d8d8d;

}

.country-list li:hover{

    color:#163b5c;

}

@media(max-width:991px){

.world-map-img{

display:none;

}

.world-map-wrapper{

min-height:auto;

}

.country-list{

margin-bottom:35px;

}

}


/*==========================================
International Info
==========================================*/

.international-info-section{

    padding:20px 0 80px;

}

.international-info{

    padding-left:20px;

}

.international-info .info-title{

    font-size:17px;

    color:#555;

    margin-bottom:20px;

    line-height:30px;

}

.info-links{

    margin:0;

    padding-left:20px;

}

.info-links li{

    margin-bottom:12px;

}

.info-links li::marker{

    color:#999;

}

.info-links a{

    color:#4a77a5;

    font-size:17px;

    text-decoration:none;

    transition:.3s;

}

.info-links a:hover{

    color:#163b5c;

    text-decoration:underline;

}

.testimonial-item{
    padding:20px 0;
    border-bottom:1px solid #e9e9e9;
}

.testimonial-text{
    font-size:17px;
    line-height:32px;
    color:#555;
    margin-bottom:20px;
}

.testimonial-item h5{
    color:#163b5c;
    font-size:20px;
    margin-bottom:5px;
    font-weight:600;
}

.testimonial-item span{
    display:block;
    color:#777;
    margin-bottom:20px;
}

.client-logo img{
    max-height:55px;
    width:auto;
}