/*

*
*
* -------------------------------------------------------------------
*
============================================
*   [Table of contents]
* ==========================================
    Theme Reset Css
    01. Preloader
    02. Header Top
    03. Top Navbar
    04. Navbar
    05. Header Slider
    06. Contact info
    07. Portfolio
    08. Our Features
    09. Service
    10. Fun fact
    11. Gallery
    12. Team
    13. Testimonial
    14. Package
    15. Subscribe
    16. Recent Blog
    17. Footer and Action bar
    18. Footer copyright

    Breadcrumb Area
    About Page
    Services Page
    Gallery Page
    Portfolio Page
    Blog Pages
    Contact Page
    Coming Soon
    404 Page

/* ========================================== */

/*----- Fonts + Include CSS
=======================================*/

@import url('https://fonts.googleapis.com/css?family=Exo:300,400,500,600,700,800,900|Roboto:300,400,500,700,900');
@import url('icofont.css');
@import url('fontawesome-all.min.css');
@import url('meanmenu.min.css');
@import url('owl.carousel.min.css');
@import url('owl.theme.default.min.css');
@import url('animate.css');
@import url('magnific-popup.css');
@import url('bootstrap.min.css');
@import url('jquery.classycountdown.min.css');

@import url('typography/typograhpy.css');
@import url('colors/default.css');
@import url('widget.css');


/*------ Theme Reset Css
=======================================*/

body {
    background: #fff;
    color: #385573;
}

* {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

/* Helper class*/

.section-padding {
    padding: 50px 0;
}

.section-padding-top {
    padding: 120px 0 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    padding-bottom: 14px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-header h2:after {
    content: '';
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
}

.section-header h2:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #121d61;
    position: absolute;
    bottom: -3px;
    left: 50%;
    margin-left: -4px;
    z-index: 2;
}

.boxed-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
    color: #fff;
    border-radius: 0 0 6px 0;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.boxed-btn:before {
    border-radius: 0 0 6px 0;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #fff;
}

.boxed-btn:hover:before {
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
    -webkit-box-shadow: 0px 4px 18px 0px rgba(7, 7, 6, 0.3);
    box-shadow: 0px 4px 18px 0px rgba(7, 7, 6, 0.3);
}

.owl-item {
    float: left;
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-nav {
    display: none;
}


/*------ 01. Preloader
=======================================*/

.preloader {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 99999999999999999;
}

.preloader div {
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #ccc;
    top: 45%;
    border-radius: 50%;
}

.preloader div:nth-child(1) {
    background-color: #FF5460;
    -webkit-animation: move 2s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
    animation: move 2s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

.preloader div:nth-child(2) {
    background-color: #FF9D84;
    -webkit-animation: move 2s 150ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
    animation: move 2s 150ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

.preloader div:nth-child(3) {
    background-color: #F0E797;
    -webkit-animation: move 2s 300ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
    animation: move 2s 300ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

.preloader div:nth-child(4) {
    background-color: #75B08A;
    -webkit-animation: move 2s 450ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
    animation: move 2s 450ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

@-webkit-keyframes move {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

@keyframes move {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/*------ 02. Header Top
=======================================*/

#header-top {
    background: #121d61;
    color: #fff;
}

#header-top ul li {
    display: inline-block;
    margin-right: 30px;
    padding: 10px 0;
}

#header-top .header-social {
    margin-right: 30px;
}

#header-top .header-social li {
    margin-right: 0;
    padding-left: 10px;
}

#header-top .header-social li a {
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    display: block;
}

#header-top .header-social li a:hover {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

#header-top .header-social li a i {
    color: #fff;
}


.book-now {
    padding: 10px 10px;
    display: inline-block;
    color: #fff;
}


/*------ 03. Top Navbar
=======================================*/
#top-navbar {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

#top-navbar ul,
#top-navbar ul li {
    display: inline-block;
}

#top-navbar ul {
    margin: 20px 0;
}

#top-navbar .cart-search ul {
    margin: 30px 0;
}

.main-logo {
    margin: 0px 0;
}

.cart-search li {
    margin-left: 10px;
}

.header-info li {
    margin-right: 30px;
    position: relative;
    padding-left: 60px;
}

.header-info i {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header-info li i:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cart-icon {
    position: relative;
}

.cart-icon .cart-count {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 0;
    right: 0;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}

/* Search*/

.search__area {
    background: #fff none repeat scroll 0 0;
    -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    z-index: 2147483647;
}

.search__area .search__inner {
    position: relative;
}

.search__area .search__inner form {
    margin: 4em 0;
    padding: 0 40px 0 0;
    position: relative;
    text-align: center;
}

.search__area .search__inner form input {
    background: #f8f8f8;
    width: 100%;
    height: 60px;
    padding: 15px;
    border: none;
}

.search__area .search__inner form button {
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    height: 60px;
    position: absolute;
    right: 40px;
    top: 0;
    width: 60px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: #f8f8f8;
    color: #385573;
}

.search__area .search__inner form button:hover {
    color: #fff;
}

.search__area .search__inner .search__close__btn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: #385573;
    cursor: pointer;
}

.search__close__btn .search__close__btn_icon i {
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.search__box__show__hide .search__area {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}

/* Cart */

@media (min-width: 991px) {
    .modal-dialog {
        max-width: 70%;
        margin: 170px auto;
    }
}

@media (max-width: 991px) {
    .modal-dialog {
        max-width: 90%;
        margin: 170px auto;
    }
}

#top-navbar div#myModal {
    z-index: 999999;
}

.modal-body {
    padding: 0 15px;
}

.modal-header button {
    cursor: pointer;
}

.single-product {
    border-top: 1px solid #ebebeb;
}

.cartHeaderLabels div {
    padding: 10px;
    border-right: 1px solid #ebebeb;
}

.single-product>div {
    padding: 10px;
    border-right: 1px solid #ebebeb;
}

.single-product .productImage a {
    display: inline-block;
    vertical-align: middle;
}

.single-product input {
    padding: 6px 10px;
    border: 1px solid #eee;
    width: 100%;
}

.cartSubtotal {
    margin: 0px 0px 0px 10px;
    padding: 5px 0px;
}

.cartRemove {
    display: block;
}

.modal-footer {
    display: block
}

.cart-btn {
    padding: 6px 20px;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid transparent;
    margin-top: 10px;
}

.cart-btn:hover {
    background: #fff;
    border: 1px solid;
}

/*------ 04. Navbar
=======================================*/

.navbar-area {
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.mobile-menu-area {
    z-index: 9999;
}

.mean-container .mean-bar {
    z-index: 9999;
}

.mean-container .mean-nav ul li a.mean-expand {
    height: 24px;
}

.is-sticky .navbar-area {
    background: #fff;
}

nav.navbar-pc ul li {
    display: inline-block;
}

.navbar-pc li a {
    display: block;
    padding: 10px 15px;
    text-align: center;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.navbar-pc li a:hover,
.navbar-pc li.active>a {
    color: #fff;
}

.navbar-pc li.b-dropdown {
    position: relative;
}

.navbar-pc li ul {
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: 99;
    background: #d90a24;
    width: 300px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.08);
}

.navbar-pc li:hover ul {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.navbar-pc li ul li {
    display: block;
    position: relative;
}

.navbar-pc li ul li a {
    text-align: left;
}

.navbar-pc li ul li ul.b-sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #d90a24;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.navbar-pc li ul>li:hover ul {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.navbar-pc li.b-dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    margin-left: 5px;
}

.navbar-pc li.b-sub-dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 5px;
    float: right;
}

div#sticky-wrapper.is-sticky .sticky-nav {
    background: #fff !important;
    background-image: none;
    -webkit-box-shadow: 0px 0 1px rgba(0, 0, 0, .2);
    box-shadow: 0px 0 1px rgba(0, 0, 0, .2);
}

.is-sticky .sticky-nav {
    -webkit-animation: fadeInDown 1s both;
    animation: fadeInDown 1s both;
}

nav.mean-nav ul {
    overflow-y: scroll;
    height: 340px;
}

nav.mean-nav ul ul {
    height: auto;
}

/*------ 05. Header Slider
=======================================*/

header {
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.header-single-slider {
    padding: 0;
    cursor: crosshair;
}

.header-single-slider h1 {
    margin-bottom: 30px;
}

.header-single-slider p {
    margin-bottom: 50px;
}

.header-single-slider .text-center p {
    margin: 0 auto 50px;
}

.header-single-slider .text-center img {
    margin-top: 50px;
}

.header-single-slider .text-right p {
    margin-left: auto;
}

.header-single-slider .boxed-btn {
    -webkit-box-shadow: 0px 4px 18px 0px rgba(7, 7, 6, 0.3);
    box-shadow: 0px 4px 18px 0px rgba(7, 7, 6, 0.3);
    margin-right: 20px;
}

.watch-video i {
    width: 42px;
    height: 42px;
    background: #385573;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.watch-video:hover i {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(56, 85, 115, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(56, 85, 115, 0.5);
}

.header-slider .owl-dots {
    width: 200px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}

.header-slider .owl-dots div {
    width: 30px;
    height: 6px;
    display: inline-block;
    margin: 0 5px;
    background: #385573;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}



/*------ 06. Contact info
=======================================*/

section#contact-info {
    margin-top: -70px;
}

.contact-info li {
    width: 33%;
    float: left;
    margin-right: 5px;
    color: #fff;
    padding: 40px 0 40px 30px;
    position: relative;
}

.contact-info li:last-child {
    margin-right: 0;
}

.contact-info li:hover {
    cursor: pointer;
}

.contact-info li i {
    float: left;
    font-size: 44px;
    margin-right: 10px;
}

.contact-info li h5 {
    font-size: 16px;
    font-weight: 400;
}

.contact-info .inner-content:after,
.contact-info .inner-content:before,
.contact-info li:before,
.contact-info li:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 0 solid #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.contact-info li:hover .inner-content:after,
.contact-info li:hover .inner-content:before,
.contact-info li:hover:before,
.contact-info li:hover:after {
    width: 50%;
    height: 50%;

}

.contact-info li:after {
    top: 10px;
    left: 10px;
    border-left-width: 1px;
    border-top-width: 1px;
}

.contact-info li:before {
    bottom: 10px;
    left: 10px;
    border-left-width: 1px;
    border-bottom-width: 1px;
}

.contact-info .inner-content:after {
    top: 10px;
    right: 10px;
    border-right-width: 1px;
    border-top-width: 1px;
}

.contact-info .inner-content:before {
    bottom: 10px;
    right: 10px;
    border-right-width: 1px;
    border-bottom-width: 1px;
}

/*------ 07. Portfolio
=======================================*/

section#our-portfolio.section-padding {
    padding-bottom: 100px;
}

.portfolio-tab {
    margin-bottom: 35px;
}

.portfolio-tab-sorting {
    text-align: center;
}

.portfolio-tab-sorting li {
    display: inline-block;
}

.portfolio-tab-sorting li a {
    display: block;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(18, 29, 97, 0.5);
    box-shadow: 0px 0px 16px 0px rgba(18, 29, 97, 0.5);
    padding: 10px 20px;
    background: #385573;
    color: #fff;
    margin: 0 5px;
    border-radius: 0 0 6px 0;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

/* Effect */

.portfolio figure {
    -webkit-perspective: 500px;
    perspective: 500px;
    margin-bottom: 20px;
    overflow: hidden;
}

.portfolio figure img {
    z-index: 1;
    cursor: pointer;
}

.portfolio figcaption {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    transform: rotate3d(1, 0, 0, 90deg);
    width: 100%;
    height: 100%;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: rgba(217, 10, 36, 0.7);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.portfolio figcaption h4 {
    margin-bottom: 10px;
}

.portfolio figcaption p {
    margin-bottom: 15px;
}

.in-top figcaption {
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: in-top 300ms ease 0ms 1 forwards;
    animation: in-top 300ms ease 0ms 1 forwards;
}

.in-right figcaption {
    -webkit-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-animation: in-right 300ms ease 0ms 1 forwards;
    animation: in-right 300ms ease 0ms 1 forwards;
}

.in-bottom figcaption {
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: in-bottom 300ms ease 0ms 1 forwards;
    animation: in-bottom 300ms ease 0ms 1 forwards;
}

.in-left figcaption {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: in-left 300ms ease 0ms 1 forwards;
    animation: in-left 300ms ease 0ms 1 forwards;
}

.out-top figcaption {
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: out-top 300ms ease 0ms 1 forwards;
    animation: out-top 300ms ease 0ms 1 forwards;
}

.out-right figcaption {
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: out-right 300ms ease 0ms 1 forwards;
    animation: out-right 300ms ease 0ms 1 forwards;
}

.out-bottom figcaption {
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: out-bottom 300ms ease 0ms 1 forwards;
    animation: out-bottom 300ms ease 0ms 1 forwards;
}

.out-left figcaption {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: out-left 300ms ease 0ms 1 forwards;
    animation: out-left 300ms ease 0ms 1 forwards;
}

@-webkit-keyframes in-top {
    from {
        -webkit-transform: rotate3d(-1, 0, 0, 100deg);
        transform: rotate3d(-1, 0, 0, 100deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-top {
    from {
        -webkit-transform: rotate3d(-1, 0, 0, 100deg);
        transform: rotate3d(-1, 0, 0, 100deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-bottom {
    from {
        -webkit-transform: rotate3d(1, 0, 0, 90deg);
        transform: rotate3d(1, 0, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-bottom {
    from {
        -webkit-transform: rotate3d(1, 0, 0, 90deg);
        transform: rotate3d(1, 0, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes out-top {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(-1, 0, 0, 125deg);
        transform: rotate3d(-1, 0, 0, 125deg);
    }
}

@keyframes out-top {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(-1, 0, 0, 125deg);
        transform: rotate3d(-1, 0, 0, 125deg);
    }
}

@-webkit-keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, -1, 0, 120deg);
        transform: rotate3d(0, -1, 0, 120deg);
    }
}

@keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, -1, 0, 120deg);
        transform: rotate3d(0, -1, 0, 120deg);
    }
}

@-webkit-keyframes out-bottom {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(1, 0, 0, 125deg);
        transform: rotate3d(1, 0, 0, 125deg);
    }
}

@keyframes out-bottom {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(1, 0, 0, 125deg);
        transform: rotate3d(1, 0, 0, 125deg);
    }
}

@-webkit-keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, 1, 0, 120deg);
        transform: rotate3d(0, 1, 0, 120deg);
    }
}

@keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, 1, 0, 120deg);
        transform: rotate3d(0, 1, 0, 120deg);
    }
}


/*------ 08. Our Features
=======================================*/

.features-box {
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.features-box:hover {
    -webkit-box-shadow: 0px 4px 16px 0px rgba(18, 29, 97, 0.8);
    box-shadow: 0px 4px 16px 0px rgba(18, 29, 97, 0.8);
}

.features-box figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.features-box figcaption:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #385573;
    z-index: -1;
    opacity: .4;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.features-box:hover figcaption:after {
    opacity: .9;
}

.features-box figcaption i {
    margin-bottom: 20px;
    display: block;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.features-box:hover figcaption i {
    position: relative;
    -webkit-animation: moveFromTop 250ms ease;
    -moz-animation: moveFromTop 250ms ease;
    -ms-animation: moveFromTop 250ms ease;
}

.features-box figcaption h4 {
    margin-bottom: 6px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.features-box:hover figcaption h4 {
    position: relative;
    -webkit-animation: moveFromTop 200ms ease;
    -moz-animation: moveFromTop 200ms ease;
    -ms-animation: moveFromTop 200ms ease;
}

.features-box figcaption p {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.features-box:hover figcaption p {
    position: relative;
    -webkit-animation: moveFromBottom 250ms ease-in-out;
    -moz-animation: moveFromBottom 250ms ease-in-out;
    -ms-animation: moveFromBottom 250ms ease-in-out;
}

@-webkit-keyframes moveFromTop {
    from {
        top: -600px;
    }

    to {
        top: auto;
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        bottom: -400px;
    }

    to {
        top: auto;
    }
}

/*------ 09. Service
=======================================*/

.service-box {
    position: relative;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    padding: 40px 15px 40px 100px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.service-box:hover {
    background: #385573;
    color: #fff;
}

.service-box img {
    position: absolute;
    top: 50px;
    left: 30px;
}

.service-box h4 {
    margin-bottom: 10px;
}

.service-box p {
    margin-bottom: 14px;
}

.service-box:hover p {
    opacity: .8;
}

.blur .service-box {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.7;
}

.blur .service-box img,
.blur .service-box h4 {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
    opacity: 0.3;
}

.blur .service-box p {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
    opacity: .3;
}

.blur .service-box a {
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.9);
    opacity: 0.3;
}

/*------ 10. Fun fact
=======================================*/

#fun-fact {
    background: url(../img/bg/fun-fact-bg.jpg) no-repeat center / cover;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#fun-fact:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: -1;
    background: #385573;
}

#fun-fact h3 span {
    margin-right: 10px;
}

#fun-fact .single-box {
    position: relative;
}

#fun-fact .single-box:after {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    width: 4px;
    height: 120px;
}

#fun-fact .single-box:last-child:after {
    display: none;
}

/*------ 11. Gallery
=======================================*/

#our-gallery {
    overflow: hidden;
}

#our-gallery .gallery-items a {
    float: left;
    width: 20%;
    position: relative;
    color: #000000;
    overflow: hidden;
}

#our-gallery .single-item img {
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    width: 100%;
}

#our-gallery .single-item:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

#our-gallery .single-item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121e61;
    opacity: 0;
    z-index: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}

#our-gallery .single-item:hover:after {
    opacity: .8;
}

#our-gallery .gallery-items a:after,
#our-gallery .gallery-items a:before {
    position: absolute;
    width: 1px;
    height: 70px;
    content: "";
    top: 50%;
    left: 50%;
    z-index: 2;
    background: #fff;
    margin-top: -35px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

#our-gallery .gallery-items a:after {
    width: 70px;
    height: 1px;
    margin-top: 0;
    margin-left: -35px;
}

#our-gallery .gallery-items a:hover:after,
#our-gallery .gallery-items a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}



/*------ 12. Team
=======================================*/

.team-member {
    position: relative;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.team-member:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(7, 7, 6, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(7, 7, 6, 0.2);
}

.team-member .team-footer {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.team-member:hover .team-footer {
    visibility: hidden;
}

.team-member .team-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.team-member .team-footer:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 125px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.team-member:hover .team-footer:before,
.team-member:hover .team-footer:after {
    width: 0;
}

.team-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    border-radius: 10px;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.team-member:hover .team-content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    top: -10px;
    left: 10px;
}

.team-content:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    opacity: .9;
}

.team-content p.title {
    margin-bottom: 30px;
}

.team-content ul {
    bottom: 0;
    left: 0;
    width: 100%;
    position: absolute;
    padding: 15px 0;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(7, 7, 6, 0.2);
    box-shadow: 0px 3px 7px 0px rgba(7, 7, 6, 0.2);
    border-radius: 10px;
}

.team-content ul li {
    display: inline-block;
}

.team-content ul li a {
    display: block;
    margin: 0 -15px;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: 0;
}

.team-member:hover .team-content ul li a {
    margin: 0 5px;
    opacity: 1;
}


/*------ 13. Testimonial
=======================================*/

#testimonial .section-header {
    margin-bottom: 75px;
}

.testimonial-carousel .owl-stage-outer {
    overflow: hidden;
}

.single-testimonial {
    position: relative;
    border: 1px solid #eaeaea;
    padding: 20px 10px 20px 170px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin: 5px 0;
}

.single-testimonial:hover {
    color: #fff;
    -webkit-box-shadow: 0 0 15px rgb(184, 181, 181);
    box-shadow: 0 0 15px rgb(184, 181, 181);
}

.single-testimonial:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-bottom: 40px solid;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-testimonial:hover:after {
    border-bottom: 40px solid #385573;
}

.single-testimonial img {
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    position: absolute;
    top: 0;
    left: 0;
}

.single-testimonial:hover img {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

.single-testimonial p.title {
    margin-bottom: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-testimonial:hover p.title {
    color: #fff;
}

.single-testimonial p {
    margin-bottom: 12px;
}

.single-testimonial ul li {
    display: inline-block;
}

.single-testimonial ul li i {
    color: #fdb742;
}

.testimonial-carousel .owl-dots {
    width: 200px;
    margin: 40px auto 0;
    text-align: center;
}

.testimonial-carousel .owl-dots div {
    width: 30px;
    height: 6px;
    display: inline-block;
    margin: 0 5px;
    background: #385573;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}


/*------ 14. Package
=======================================*/

.single-package {
    border-radius: 10px 50px 10px 10px;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-package:hover {
    -webkit-box-shadow: 0 0 30px #ccc;
    box-shadow: 0 0 30px #ccc;
}

.package-head {
    padding: 30px 30px 50px;
    position: relative;
    background: #385573;
    color: #fff;
    border-radius: 10px 50px 0 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.package-head:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 40% 40% 0 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.heavy-package .package-head:after,
.single-package:hover .package-head:after {
    height: 0;
}

.pricing {
    display: inline-block;
    margin-bottom: 30px;
}

.package-head h3 {
    float: right;
    margin-top: 14px;
    position: relative;
}

.package-head h3:after {
    content: '';
    position: absolute;
    top: 18px;
    right: -50px;
    width: 45px;
    height: 2px;
    background: #fff;
}

.pricing-content {
    padding: 30px 50px;
}

.pricing-content ul li {
    margin-bottom: 20px;
}

.pricing-content ul li img {
    margin-right: 20px;
}

.order-btn {
    width: 100%;
    padding: 15px 0px;
    background: #385573;
    color: #fff;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    border-radius: 0 0 10px 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.order-btn:hover {
    color: #fff;
}

.order-btn i {
    margin-left: 5px;
}

.order-btn:before {
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    border-radius: 0 0 10px 10px;
}

.heavy-package .order-btn:before {
    background: #385573;
}

.single-package:hover .order-btn:before {
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

.heavy-package .package-head,
.single-package:hover .package-head {
    color: #fff
}

/*------ 15. Subscribe
=======================================*/

#subscribe {
    padding: 50px 0;
    background: #385573;
    color: #fff;
}

.subscribe-text {
    position: relative;
    padding-left: 20px;
}

.subscribe-text:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    height: 76px;
    width: 6px;
}

.subscribe-text p {
    opacity: .8;
}

#subscribe-form input {
    width: 100%;
    border: none;
    height: 60px;
    border-radius: 30px;
    padding: 0 30px;
}

#subscribe-form {
    position: relative;
}

#subscribe-form a {
    position: absolute;
    right: 10px;
    top: 8px;
    padding: 6px 25px;
    height: 44px;
    border-radius: 22px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(28, 165, 77, 0.3);
    box-shadow: 0px 0px 6px 0px rgba(28, 165, 77, 0.3);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

#subscribe-form a:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(28, 165, 77, 0.8);
    box-shadow: 0px 0px 20px 0px rgba(28, 165, 77, 0.8);
}


/*------ 16. Recent Blog
=======================================*/

.recent-blog-post {
    display: inline-block;
    width: 100%;
    border: 1px solid #eaeaea;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.recent-blog-post:hover {
    -webkit-box-shadow: 0px 0px 14px 0px rgba(97, 99, 99, 0.3);
    box-shadow: 0px 0px 14px 0px rgba(97, 99, 99, 0.3);
}

.recent-blog-post .post-thumb {
    width: 48%;
    float: left;
    position: relative;
}

.recent-blog-post .post-thumb:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.recent-blog-post:hover .post-thumb:after {
    opacity: .8;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.post-thumb .post-author {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    padding: 0 15px;
    z-index: 2;
    opacity: 0;
}

.blog-post:hover .post-thumb .post-author,
.recent-blog-post:hover .post-thumb .post-author {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.recent-blog-post .post-content {
    padding: 24px 20px;
    float: left;
    width: 52%;
}

.recent-blog-post .meta-info .posted-by {
    margin-bottom: 5px;
}

.recent-blog-post .meta-info li span.post-date {
    float: right;
}

.recent-blog-post .meta-info li.tags a {
    margin-right: 10px;
}

.recent-blog-post .post-content h5.post-title {
    margin: 10px 0 5px;
}

.recent-blog-post .post-content p {
    margin-bottom: 20px;
}

.recent-blog-post .post-content .boxed-btn {
    padding: 6px 15px;
}

.recent-blog-post .post-content .boxed-btn i {
    margin-left: 5px;
}

/*------ 17. Footer and Action bar
=======================================*/

#footer-widgets {
    background: url(../img/bg/footer-bg.jpg) no-repeat center / cover;
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 80px;
    /* margin-top: 150px; */
}

#footer-widgets.contact-page-footer {
    margin-top: 0;
}

#footer-widgets:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #04175c;
    opacity: .96;
    z-index: -1;
}

.action-bar {
    padding: 50px 0;
    color: #fff;
}

#action-bar {
    position: absolute;
    top: -70px;
    width: 100%;
}

.action-bar .boxed-btn {
    padding: 10px 25px;
}

.action-bar .boxed-btn.white-bg {
    background: #fff;
    margin-right: 20px;
}

.action-bar .boxed-btn.white-bg:hover {
    color: #fff;
}

.action-bar .boxed-btn.contact-btn {
    -webkit-box-shadow: 0px 4px 18px 0px rgba(7, 7, 6, 0.3);
    box-shadow: 0px 4px 18px 0px rgba(7, 7, 6, 0.3);
    margin-left: 20px;
    background: #ff0;
    color: #ff0000;
}

/*------ 18. Footer copyright
=======================================*/

.copyright-hr {
    width: 100%;
    height: 1px;
    background: #fff;
    margin-bottom: -0px;
}

.copyright {
    padding: 30px 0;
}

.copyright li {
    display: inline-block;
    margin-right: 10px;
}

.scrollup.boxed-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 0 0 6px 0;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 0;
    display: none;
    color: #fff;
    z-index: 888;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .5);
}

.scrollup.boxed-btn i {
    margin: 0;
}

.payment-method img {
    width: auto;
    height: 20px;
}

/*------ Breadcrumb Area
=======================================*/

#breadcrumb-area {
    background-repeat: repeat;
    background-position: left top;
    padding: 100px 0;
    background-color: #f8f8f8;
    z-index: 2;
}

#breadcrumb-area h2 {
    margin-bottom: 10px;
    color: #fff;
}

#breadcrumb-area li,
#breadcrumb-area li a {
    font-size: 16px;
    display: inline-block;
    color: #fff;
}

#breadcrumb-area li.active {
    color: #ff0;
}

#breadcrumb-area li:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f104";
    margin: 0 10px;
}

#breadcrumb-area li.active:after {
    display: none;
}


/*------ About Page
=======================================*/

#our-identity h3 {
    margin-bottom: 30px;
}

#our-identity p {
    margin-bottom: 41px;
}

#our-identity .boxed-btn {
    border-radius: 0 0 6px 0;
}

.achieve-box {
    padding: 25px;
    background: #385573;
    color: #fff;
    position: relative;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.achieve-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50%;
    height: 6px;
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.achieve-box:hover:after {
    width: 60%;
}

.achieve-box i {
    float: left;
    margin-right: 15px;
}

.achieve-box h4 {
    margin-top: 5px;
    margin-bottom: 15px;
}

/* Sponsonr */

.single-sponsor {
    width: 100%;
    float: left;
    border: 0px solid rgba(0, 0, 0, .1);
    height: 120px;
    text-align: center;
    position: relative;
    cursor: crosshair;
    -webkit-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

.inner-sponsor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.single-sponsor img {
    -webkit-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    max-width: 180px
}

.single-sponsor:hover img {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

#our-sponsors .single-sponsor:nth-child(1),
#our-sponsors .single-sponsor:nth-child(2),
#our-sponsors .single-sponsor:nth-child(3),
#our-sponsors .single-sponsor:nth-child(4) {
    border-bottom-width: 1px;
}

#our-sponsors .single-sponsor:nth-child(2) {
    border-left-width: 1px;
    border-right-width: 1px;
}

#our-sponsors .single-sponsor:nth-child(3) {
    border-right-width: 1px;
}

#our-sponsors .single-sponsor:nth-child(6) {
    border-left-width: 1px;
    border-right-width: 1px;
}

#our-sponsors .single-sponsor:nth-child(7) {
    border-right-width: 1px;
}


/*------ Services Page
=======================================*/

.servicep-box {
    border: 1px solid #eaeaea;
    padding: 24px 0 0;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.servicep-box:hover {
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.28);
}

.servicep-box:after {
    content: '';
    position: absolute;
    top: -136px;
    left: 27px;
    width: 100%;
    height: 284px;
    border-radius: 0px 0px 50px 0px;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    transform: rotate(70deg);
}

.servicep-box img {
    margin-bottom: 15px;
}

.servicep-box h4 {
    margin-bottom: 80px;
    color: #385573;
}

.servicep-box p {
    padding: 0 15px;
    margin-bottom: 30px;
}

.servicep-box .boxed-btn {
    background: #49b771;
    display: block;
}

.servicep-box:hover .boxed-btn {
    color: #fff;
}

.servicep-box:hover .boxed-btn:before {
    left: 0;
    right: 0;
    -webkit-transition: 0.5s all ease;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    opacity: 1;
    z-index: -1;
}

/*------ Gallery Page
=======================================*/

#gallery .gallery-items .gallery-load a {
    position: relative;
    margin-bottom: 30px;
    display: block;
    overflow: hidden;
}

#gallery .gallery-items .gallery-load a img {
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

#gallery .gallery-items .gallery-load a:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.gallery-load {
    display: none;
}

#gallery .gallery-items .gallery-load .single-item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

#gallery .gallery-items .gallery-load .single-item:hover:after {
    opacity: .8;
}

#gallery .gallery-items .gallery-load a:after,
#gallery .gallery-items .gallery-load a:before {
    position: absolute;
    width: 1px;
    height: 70px;
    content: "";
    top: 50%;
    left: 50%;
    z-index: 2;
    background: #fff;
    margin-top: -35px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

#gallery .gallery-items .gallery-load a:after {
    width: 70px;
    height: 1px;
    margin-top: 0;
    margin-left: -35px;
}

#gallery .gallery-items .gallery-load a:hover:after,
#gallery .gallery-items .gallery-load a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#gallery .load-btn:focus {
    color: #04175c;
}

/*------ Portfolio Page
=======================================*/

.portfolio-page figure img {
    width: 100%;
}

.portfolio-page nav.portfolio-pagination {
    margin-top: 30px;
}

.portfolio-box {
    background: #f9f9ff;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.17);
    margin-bottom: 50px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: right;
}

.portfolio-box:hover {
    -webkit-box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2);
}

.portfolio-box .content {
    padding: 15px 20px 20px;
    text-align: left;
}

.portfolio-box .content h4 {
    margin-bottom: 5px;
}

.portfolio-box .content p {
    margin-bottom: 10px;
}

.pagination {
    border: 1px solid;
    width: 170px;
    margin: 0 auto;
    border-radius: 20px;
}

ul.pagination li a {
    background: transparent;
    border: none;
    position: relative;
}

ul.pagination li:nth-child(3) a:after,
ul.pagination li:last-child a:after {
    display: none;
}

ul.pagination li a:after {
    position: absolute;
    content: '';
    top: 4px;
    right: 0;
    width: 1px;
    height: 26px;
    opacity: .2;
}

ul.pagination li a:hover {
    background: transparent;
}

.page-item.active .page-link {
    background: transparent;
}

ul.pagination li.next a {
    border-radius: 20px;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

.page-item:first-child .page-link {
    padding-left: 20px;
}

.page-item:last-child .page-link {
    border-radius: 20px;
}

.portfolio-img {
    text-align: right;
}

/*------ Blog Pages
=======================================*/

.blog-post {
    display: inline-block;
    width: 100%;
    border: 1px solid #eaeaea;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    margin-bottom: 60px;
}

.blog-post:hover {
    -webkit-box-shadow: 0px 0px 14px 0px rgba(97, 99, 99, 0.3);
    box-shadow: 0px 0px 14px 0px rgba(97, 99, 99, 0.3);
}

.blog-post .post-thumb {
    width: 46%;
    float: left;
    position: relative;
}

.blog-post .post-thumb:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-post:hover .post-thumb:after {
    opacity: .8;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


.blog-post .post-content {
    padding: 24px 20px 20px;
    float: left;
    width: 54%;
}

.blog-post .post-content h4 {
    margin-bottom: 10px;
}

.blog-post .post-content p {
    margin-bottom: 20px;
}

.blog-post .post-content .read-more {
    display: block;
    margin-bottom: 20px;
}

.blog-post .meta-info li {
    display: inline-block;
    font-size: 10px;
    margin-right: 10px;
}

.blog-post .meta-info li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-post .meta-info li a i {
    margin-right: 5px;
}

.full-width .blog-post .post-thumb {
    width: 38%;
}

.full-width .blog-post .post-content {
    width: 62%;
}

.full-width .blog-post .post-content h4 {
    margin-bottom: 30px;
}

.full-width .blog-post .post-content p {
    margin-bottom: 30px;
}

.full-width .blog-post .post-content .read-more {
    margin-bottom: 50px;
}

.full-post .blog-post {
    border: none;
}

.full-post .blog-post:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.full-post .post-content,
.full-post .post-thumb {
    width: 100%;
}

.full-post .post-thumb {
    margin-bottom: 50px;
}

.full-post .blog-post .post-content {
    padding: 0;
    margin-bottom: 50px;
}

.full-post .blog-post .post-content .post-title {
    margin-bottom: 20px;
}

.full-post .post-thumb:after {
    display: none;
}

.post-comments-area {
    margin-top: 30px;
}

.comment-author a {
    color: #2c3145;
    margin-bottom: 5px;
    display: block;
}

.post-comments-area .comment-time-left {
    margin-bottom: 7px;
}

.post-comments-area .media-left {
    padding-right: 25px;
}

.post-comments-area .media-body {
    position: relative;
}

a.comment-date {
    position: absolute;
    right: 0;
    top: 0;
    color: #c2c2c2;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a.comment-date:hover {
    color: #385573;
}

.media ul li {
    display: inline-block;
    color: #5e6271;
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.media ul li:after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: 12px;
    background: #c2c2c2;
}

.media ul li:last-child:after {
    display: none;
}

.media ul li i {
    margin-right: 5px;
}

.post-comments-area .media {
    margin: 0;
    padding: 25px 0 0;
}

.post-comments-area .media .media-body {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
}

.post-comments-area p {
    margin-bottom: 12px;
}

.media-replay .media {
    padding-left: 30px;
}

.post-new-comment {
    padding-top: 40px;
}

.media-body ul li {
    color: #5e6271;
}

.form-group input {
    height: 46px;
}

.form-group div {
    margin-bottom: 10px;
}

.post-new-comment .form-control {
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.post-new-comment textarea.form-control {
    height: 142px;
}

.post-new-comment input,
.post-new-comment textarea {
    margin-bottom: 20px;
}

.post-new-comment .boxed-btn {
    border: none;
    cursor: pointer;
}

/*------ Contact Page
=======================================*/

.input-wrapper {
    position: relative;
}

.input-wrapper label {
    position: absolute;
    left: 15px;
    top: 10px;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: 0 2px;
    z-index: 2;
    pointer-events: none;
    color: #999999
}

.input-wrapper input:focus+label,
.input-wrapper textarea:focus+label {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    background: #fff;
}

.contact-form input,
.contact-form textarea {
    height: 42px;
    border: 1px solid #e2dede;
    color: #385573;
    width: 100%;
    padding: 15px 15px;
    margin-bottom: 24px;
    position: relative;
}

.contact-form textarea {
    height: 140px;
}

.contact-form .boxed-btn {
    border: none;
    cursor: pointer;
}

.contact-info .info-box {
    border: 1px solid #efefef;
    padding: 20px 30px;
    color: #385573;
    margin-bottom: 14px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.contact-info .info-box:last-child {
    margin-bottom: 0;
}

.contact-info .info-box:hover {
    -webkit-box-shadow: 0px 0px 18px 0px rgba(97, 99, 99, 0.25);
    box-shadow: 0px 0px 18px 0px rgba(97, 99, 99, 0.25);
}

.contact-info .info-box i {
    margin-right: 30px;
    float: left;
    margin-top: 3px;
}

#contact-us {
    background: url('../img/bg/contactus-bg.jpg') no-repeat center / cover;
    position: relative;
    z-index: 2;
    color: #fff
}

#contact-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .75;
    z-index: -1;
}

#contact-us .section-header h2::after,
#contact-us .section-header h2::before {
    background: #fff;
}

#contact-us .section-header h2 {
    color: #fff;
}

.contact-us-box {
    text-align: center;
}

.contact-us-box i {
    margin-bottom: 16px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.contact-us-box h4 {
    margin-bottom: 10px;
}

.contact-us-box:hover i {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    -ms-filter: "FlipH";
}

#map-section {
    /*height: 500px;*/
    position: relative;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
}



/*------ Coming Soon
=======================================*/


.comingsoon-body {
    background: url(../img/comingsoonbg.jpg) no-repeat center / cover;
    color: #fff;
    position: relative;
    z-index: 2;
}

.comingsoon-body:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151515;
    z-index: -1;
    opacity: .9;
}

.coming-soon-wrapper {
    overflow: hidden;
}

.coming-soon-wrapper .logo {
    margin: 50px 0 0;
}

.coming-soon-wrapper h1 {
    text-align: center;
    margin-top: 80px;
}

.coming-soon-wrapper h2 {
    text-align: center;
    margin-top: 20px;
}

.count-area {
    margin: 80px 0 80px;
}

.commingsoon-subscribe {
    position: relative;
}

.commingsoon-subscribe input {
    background: transparent;
    border: 1px solid #ccc;
    height: 42px;
    padding: 15px;
    width: 100%;
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.commingsoon-subscribe input:focus {
    border-color: #fff
}

.commingsoon-subscribe input+label {
    padding: 0 5px;
    color: #ccc;
}

.commingsoon-subscribe input:focus+label {
    background: #151515;
    color: #fff;
    -webkit-transform: translateY(-22px);
    -ms-transform: translateY(-22px);
    transform: translateY(-22px);
}

.commingsoon-subscribe button {
    position: absolute;
    top: 0;
    right: 0;
    height: 42px;
    color: #ccc;
    background: transparent;
    border: 0;
    padding: 0 15px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.commingsoon-subscribe button:hover {
    color: #fff;
}

.comingsoon-footer {
    margin-top: 80px;
    color: #fff;
    padding-bottom: 30px;
}

.comingsoon-footer .social-list li {
    display: inline-block;
}

.comingsoon-footer .social-list li a {
    display: block;
    padding: 0 20px;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.comingsoon-footer .social-list li a:hover {
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.poweredby a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

/*------ 404 Page
=======================================*/

#page-404 {
    padding: 120px 0 40px;
}

.text-404 i {
    padding: 0 5px;
}

#page-404 h1 {
    margin: 40px 0 30px;
}

#page-404 h3 {
    margin: 0 0 20px;
}

.navbar-pc li a.active {
    background: #d90a24;
    color: #fff;
}

#header-top ul li i {
    color: #ff0;
}

#header-top ul li i,
#header-top .header-social li a:hover i {
    color: #ff0;
}

.portfolio figcaption a {
    color: #ff0;
}

.widget_about p a {
    color: #ff0;
}

#footer-widgets .widget .widget-title {
    color: #ff0;
}

#footer-widgets .widget hr {
    margin-top: 15px;
}

.widget_links li a:hover {
    color: #ff0;
}

.widget_links li:before {
    color: #ff0;
}

#breadcrumb-area {
    position: relative;
}

#breadcrumb-area:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.vertical-outer {
    display: table;
    height: 100%;
    text-align: center;
    width: 100%;
}

.vertical-inner {
    display: table-cell;
    height: auto;
    vertical-align: middle;
}



table.blueTable {
    border: 1px solid #1C6EA4;
    width: 40%;
    text-align: left;
    border-collapse: collapse;
}

table.blueTable td,
table.blueTable th {
    border: 1px solid #000000;
    padding: 3px 2px;
}

table.blueTable tbody td {
    font-size: 13px;
}

table.blueTable tfoot td {
    font-size: 14px;
}

table.blueTable tfoot .links {
    text-align: right;
}

table.blueTable tfoot .links a {
    display: inline-block;
    background: #1C6EA4;
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 5px;
}










/*

All grid code is placed in a 'supports' rule (feature query) at the bottom of the CSS (Line 77). 
        
The 'supports' rule will only run if your browser supports CSS grid.

Flexbox is used as a fallback so that browsers which don't support grid will still recieve an identical layout.

*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:500);

:root {
    /* Base font size */
    font-size: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}




.heading {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 3.5rem 0;
    color: #1a1a1a;
}

.heading span {
    display: block;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    /* Compensate for excess margin on outer gallery flex items */
    margin: -1rem -1rem;
}

.gallery-item {
    /* Minimum width of 24rem and grow to fit available space */
    flex: 1 0 24rem;
    /* Margin value should be half of grid-gap value as margins on flex items don't collapse */
    margin: 1rem;
    box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.gallery-image:hover {
    transform: scale(1.15);
}

/*

The following rule will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 

*/

@supports (display: grid) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
        grid-gap: 2rem;
    }

    .gallery,
    .gallery-item {
        margin: 0;
    }
}

/* =========================================================
   CPC CONTACT - COMPACT & COLORFUL
   FONT  : ROBOTO
   NAVY  : #121c61
   RED   : #d90a24
========================================================= */

.cpc-contact-section {
    position: relative;
    width: 100%;
    padding: 65px 0 70px;
    background: #ffffff;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    ;
}

.cpc-contact-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BACKGROUND PATTERN
========================================================= */

.cpc-bg-shape {
    position: absolute;
    pointer-events: none;
}

.cpc-bg-shape-one {
    width: 300px;
    height: 300px;
    right: -150px;
    top: -150px;
    border: 1px solid rgba(18, 28, 97, 0.08);
    border-radius: 50%;
}

.cpc-bg-shape-one::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    top: 44px;
    left: 44px;
    border: 1px solid rgba(217, 10, 36, 0.09);
    border-radius: 50%;
}

.cpc-bg-shape-one::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: 89px;
    left: 89px;
    border: 1px solid rgba(18, 28, 97, 0.06);
    border-radius: 50%;
}

.cpc-bg-shape-two {
    width: 150px;
    height: 150px;
    left: -75px;
    bottom: -75px;
    border: 1px solid rgba(217, 10, 36, 0.08);
    transform: rotate(45deg);
}

.cpc-bg-shape-two::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(18, 28, 97, 0.07);
}

.cpc-bg-shape-two::after {
    content: "";
    position: absolute;
    inset: 44px;
    border: 1px solid rgba(217, 10, 36, 0.06);
}


/* =========================================================
   HEADING
========================================================= */

.cpc-contact-heading {
    max-width: 700px;
    margin: 0 auto 38px;
    text-align: center;
}

.cpc-contact-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #d90a24;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cpc-contact-heading h2 {
    margin: 0;
    color: #121c61;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.cpc-contact-heading h2 span {
    color: #d90a24;
}

.cpc-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 13px 0;
}

.cpc-heading-line::before,
.cpc-heading-line::after {
    content: "";
    width: 38px;
    height: 1px;
    background: #d9dce7;
}

.cpc-heading-line i {
    display: block;
    width: 45px;
    height: 3px;
    background: #d90a24;
}

.cpc-contact-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #707070;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.cpc-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.cpc-contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 23px 24px 20px;
    background: #ffffff;
    border: 1px solid #e1e3ec;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
}


/* Top accent */

.cpc-contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #d90a24 0%,
            #d90a24 50%,
            #121c61 50%,
            #121c61 100%);
}


/* Bottom decorative glow */

.cpc-contact-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -65px;
    bottom: -65px;
    background: rgba(18, 28, 97, 0.035);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cpc-contact-card:hover::after {
    width: 180px;
    height: 180px;
    background: rgba(217, 10, 36, 0.06);
}

.cpc-contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 28, 97, 0.2);
    box-shadow: 0 12px 30px rgba(18, 28, 97, 0.10);
}


/* =========================================================
   CARD TOP
========================================================= */

.cpc-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cpc-card-number {
    color: #cfd3e1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cpc-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #f1f3fa;
    color: #d90a24;
    font-size: 21px;
    transition: all 0.3s ease;
}

.cpc-contact-card:hover .cpc-card-icon {
    background: #121c61;
    color: #ffffff;
    transform: rotate(-3deg);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.cpc-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cpc-card-label {
    display: block;
    margin-bottom: 8px;
    color: #8a8d98;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cpc-card-content h3 {
    max-width: 320px;
    margin: 0;
    color: #121c61;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.cpc-card-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 13px;
    border-top: 1px solid #ececf2;
}

.cpc-card-bottom span {
    color: #121c61;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cpc-card-bottom b {
    color: #d90a24;
    font-size: 17px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.cpc-contact-card:hover .cpc-card-bottom b {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.cpc-contact-message {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    padding: 18px 24px;
    background: linear-gradient(100deg,
            #f5f6fb 0%,
            #ffffff 100%);
    border: 1px solid #e5e6ee;
}

.cpc-message-line {
    width: 3px;
    align-self: stretch;
    flex: 0 0 3px;
    background: #d90a24;
}

.cpc-message-content {
    flex: 1;
}

.cpc-message-content>span {
    display: block;
    margin-bottom: 4px;
    color: #d90a24;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cpc-message-content h3 {
    margin: 0 0 3px;
    color: #121c61;
    font-size: 19px;
    font-weight: 600;
}

.cpc-message-content h3 strong {
    color: #d90a24;
}

.cpc-message-content p {
    margin: 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
}

.cpc-message-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #121c61;
    color: #ffffff;
    transform: rotate(45deg);
}

.cpc-message-mark span {
    font-size: 20px;
    font-weight: 300;
    transform: rotate(-45deg);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .cpc-contact-container {
        width: min(1000px, calc(100% - 40px));
    }

    .cpc-contact-card {
        padding: 21px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpc-contact-section {
        padding: 60px 0 65px;
    }

    .cpc-contact-heading {
        margin-bottom: 32px;
    }

    .cpc-contact-heading h2 {
        font-size: 36px;
    }

    .cpc-contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .cpc-contact-card {
        min-height: 220px;
        padding: 19px;
    }

    .cpc-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .cpc-card-content h3 {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpc-contact-section {
        padding: 50px 0 55px;
    }

    .cpc-contact-container {
        width: calc(100% - 30px);
    }

    .cpc-contact-heading {
        margin-bottom: 28px;
    }

    .cpc-contact-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .cpc-contact-heading h2 {
        font-size: 31px;
    }

    .cpc-contact-heading p {
        font-size: 13px;
    }

    .cpc-contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cpc-contact-card {
        min-height: 0;
        padding: 20px;
    }

    .cpc-card-top {
        margin-bottom: 16px;
    }

    .cpc-card-content h3 {
        max-width: 100%;
        font-size: 15px;
    }

    .cpc-contact-message {
        margin-top: 12px;
        padding: 17px;
    }

    .cpc-message-mark {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpc-contact-heading h2 {
        font-size: 27px;
    }

    .cpc-contact-card {
        padding: 18px;
    }

    .cpc-card-icon {
        width: 44px;
        height: 44px;
    }

    .cpc-card-content h3 {
        font-size: 14px;
    }

    .cpc-message-content h3 {
        font-size: 17px;
    }

}

:root {
    --aao-navy: #121c61;
    --aao-navy-light: #2c3894;
    --aao-navy-tint: #eef0fa;
    --aao-red: #dc1b33;
    --aao-red-tint: #fdeaec;
    --aao-white: #ffffff;
    --aao-ink: #1c2033;
    --aao-muted: #5b5f74;
}

/* ---------- AAO Base ---------- */
.aao-wrap {
    background: var(--aao-white);
}

.aao-wrap * {
    box-sizing: border-box;
}

.aao-wrap {
    font-family: 'Roboto', sans-serif;
    color: var(--aao-ink);
}

.aao-wrap h1,
.aao-wrap h2,
.aao-wrap h3 {
    margin: 0;
}

/* ---------- AAO Content Section ---------- */
.aao-content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 20px 30px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 30px;
}

.aao-quote-mark {
    font-size: 110px;
    line-height: .7;
    font-weight: 900;
    color: var(--aao-red);
    opacity: .9;
    grid-column: 1;
    grid-row: 1;
}

.aao-content-body {
    grid-column: 2;
    grid-row: 1;
    border-left: 4px solid var(--aao-navy-tint);
    padding-left: 30px;
}

.aao-content-eyebrow {
    display: inline-block;
    color: var(--aao-red);
    background: var(--aao-red-tint);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.aao-content-body h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--aao-navy);
    margin-bottom: 18px;
}

.aao-content-body h2 span {
    color: var(--aao-red);
}

.aao-content-body p {
    font-size: 16.5px;
    line-height: 1.9;
    color: var(--aao-muted);
    max-width: 820px;
    font-weight: 400;
}

/* ---------- AAO Pillars Grid ---------- */
.aao-pillars {
    max-width: 1180px;
    margin: 20px auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.aao-pillar-card {
    background: var(--aao-white);
    border: 1px solid #ececf3;
    border-top: 4px solid var(--aao-navy);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.aao-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(18, 28, 97, .12);
    border-top-color: var(--aao-red);
}

.aao-pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--aao-red-tint);
    color: var(--aao-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.aao-pillar-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--aao-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.aao-pillar-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--aao-muted);
    margin: 0;
    font-weight: 400;
}

/* ---------- AAO Closing Strip ---------- */
.aao-strip {
    background: var(--aao-navy-tint);
    padding: 34px 20px;
    text-align: center;
}

.aao-strip p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15.5px;
    color: var(--aao-navy);
    font-weight: 700;
    line-height: 1.7;
}

.aao-strip p b {
    color: var(--aao-red);
}

/* ========================================================
   AAO RESPONSIVE — 991 / 767 / 575
   ======================================================== */
@media (max-width:991px) {
    .aao-content {
        padding: 56px 20px 20px;
    }

    .aao-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .aao-content {
        grid-template-columns: 1fr;
        padding: 44px 18px 10px;
    }

    .aao-quote-mark {
        grid-column: 1;
        grid-row: 1;
        font-size: 70px;
        margin-bottom: -10px;
    }

    .aao-content-body {
        grid-column: 1;
        grid-row: 2;
        border-left: none;
        border-top: 4px solid var(--aao-navy-tint);
        padding-left: 0;
        padding-top: 18px;
    }

    .aao-content-body h2 {
        font-size: 23px;
    }

    .aao-content-body p {
        font-size: 15.5px;
    }

    .aao-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-bottom: 56px;
    }
}

@media (max-width:575px) {
    .aao-content {
        padding: 36px 16px 10px;
    }

    .aao-quote-mark {
        font-size: 56px;
    }

    .aao-content-body h2 {
        font-size: 21px;
    }

    .aao-pillars {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .aao-pillar-card {
        padding: 26px 20px;
    }

    .aao-strip p {
        font-size: 14px;
    }
}

:root {
    --isd-navy: #529ae2;
    --isd-crimson: #121d61;
    --isd-crimson-dk: #121d61;
    --isd-gold: #f5c518;
    --isd-white: #ffffff;
    --isd-text-dark: #1a1a2e;
    --isd-ease: 0.27s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── RESET (scoped to isd- elements only) ────────────────── */
.isd-topbar,
.isd-topbar *,
.isd-brand,
.isd-brand *,
.isd-nav-wrap,
.isd-nav-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.isd-topbar {
    background: #121d61;
    color: var(--isd-white);
    font-size: 13px;
    padding: 7px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.isd-topbar a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: color var(--isd-ease);
}

.isd-topbar a:hover {
    color: var(--isd-gold);
}

.isd-topbar svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ============================================================
   BRAND HEADER
   ============================================================ */
.isd-brand {
    background: var(--isd-white);
    /* padding: 10px 24px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--isd-crimson);
}

/* Logo Image — responsive */
.isd-logo-img {
    display: block;
    width: 100%;
    max-width: 355px;
    height: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
    .isd-brand {
        padding: 8px 16px;
    }

    .isd-logo-img {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .isd-brand {
        padding: 6px 10px;
    }

    .isd-logo-img {
        max-width: 100%;
    }
}

/* ============================================================
   NAVIGATION WRAPPER
   ============================================================ */
.isd-nav-wrap {
    background: linear-gradient(135deg, var(--isd-crimson) 0%, #121d61 100%);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* ============================================================
   DESKTOP MENU
   ============================================================ */
.isd-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.isd-menu>li {
    position: relative;
}

.isd-menu>li>.isd-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 17px;
    color: var(--isd-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: background var(--isd-ease), color var(--isd-ease), border-color var(--isd-ease);
    user-select: none;
}

.isd-menu>li>.isd-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-bottom-color: var(--isd-gold);
    color: var(--isd-gold);
}

/* Caret Arrow */
.isd-caret {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--isd-ease);
}

.isd-menu>li:hover .isd-caret {
    transform: rotate(-135deg) translateY(-2px);
}

/* ============================================================
   DROPDOWN SUBMENU
   ============================================================ */
.isd-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 215px;
    list-style: none;
    background: var(--isd-white);
    border-top: 3px solid var(--isd-gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
    z-index: 10000;
    animation: isd-fadeDown 0.18s ease;
}

@keyframes isd-fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.isd-menu>li:hover .isd-dropdown {
    display: block;
}

.isd-dropdown li a {
    display: block;
    padding: 11px 20px;
    color: var(--isd-text-dark);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f5;
    transition: background var(--isd-ease), color var(--isd-ease), padding-left var(--isd-ease);
}

.isd-dropdown li:last-child a {
    border-bottom: none;
}

.isd-dropdown li a:hover {
    background: var(--isd-crimson);
    color: var(--isd-white);
    padding-left: 28px;
}

/* ============================================================
   HAMBURGER BUTTON (Mobile)
   ============================================================ */
.isd-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 10px;
}

.isd-burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--isd-white);
    border-radius: 2px;
    transition: all 0.28s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.isd-burger.isd-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.isd-burger.isd-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.isd-burger.isd-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.isd-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 20, 0.5);
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.isd-overlay.isd-show {
    display: block;
}

/* ============================================================
   MOBILE SLIDE-IN PANEL
   ============================================================ */
.isd-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 285px;
    height: 100dvh;
    background: #121d61;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.isd-panel.isd-show {
    right: 0;
}

/* Panel Header */
.isd-panel-head {
    background: var(--isd-crimson);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.isd-panel-head span {
    color: var(--isd-white);
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.isd-panel-close {
    background: none;
    border: none;
    color: var(--isd-white);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background var(--isd-ease);
}

.isd-panel-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   MOBILE MENU LIST
   ============================================================ */
.isd-mob-menu {
    list-style: none;
    flex: 1;
    padding: 8px 0;
}

.isd-mob-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.isd-mob-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #cdd0ec;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: background var(--isd-ease), color var(--isd-ease);
    user-select: none;
}

.isd-mob-link:hover,
.isd-mob-menu>li.isd-mob-active>.isd-mob-link {
    background: rgba(192, 20, 60, 0.28);
    color: var(--isd-gold);
}

/* Mobile Caret */
.isd-mob-caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform var(--isd-ease);
}

.isd-mob-menu>li.isd-mob-active>.isd-mob-link .isd-mob-caret {
    transform: rotate(-135deg);
}

/* ── Mobile Submenu ── */
.isd-mob-sub {
    display: none;
    list-style: none;
    background: rgba(0, 0, 0, 0.22);
}

.isd-mob-menu>li.isd-mob-active>.isd-mob-sub {
    display: block;
}

.isd-mob-sub li a {
    display: block;
    padding: 11px 32px;
    color: #9ba3cc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color var(--isd-ease), background var(--isd-ease);
}

.isd-mob-sub li:last-child a {
    border-bottom: none;
}

.isd-mob-sub li a:hover {
    color: var(--isd-gold);
    background: rgba(192, 20, 60, 0.18);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet & Mobile — hide desktop menu, show hamburger */
@media (max-width: 900px) {
    .isd-menu {
        display: none;
    }

    .isd-burger {
        display: flex;
    }

    .isd-nav-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 52px;
    }
}

/* Small Mobile */
@media (max-width: 580px) {
    .isd-topbar {
        font-size: 11px;
        gap: 12px;
        padding: 6px 12px;
    }
}

/*School Toppers Start*/
.toppers-section {
    padding: 20px 20px;
    background: #fffdf8;
}

.toppers-heading {
    text-align: center;
    margin-bottom: 20px;
}

.toppers-heading h2 {
    font-size: 1.75rem;
    color: #d59a21;
    margin-bottom: 10px;
    font-weight: 600;
}

.toppers-heading p {
    font-size: 24px;
    color: #1f4e9e;
    font-weight: 600;
}

.toppers-subtitle {
    text-align: center;
    margin: 25px 0 40px;
}

.toppers-subtitle h3 {
    font-size: 24px;
    color: #1f4e9e;
}

.toppers-contanier {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.topper-card {
    width: 300px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: .4s;
    text-align: center;
}

.topper-card:hover {
    transform: translateY(-10px);
}

.topper-img {
    padding: 25px;
    background: linear-gradient(135deg, #0024a9, #69a4fb);
}

.topper-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
}

.topper-content {
    padding: 25px;
}

.topper-content h3 {
    font-size: 22px;
    color: #f39c12;
    margin-bottom: 10px;
}

.topper-content h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.topper-content span {
    color: #777;
    font-size: 16px;
}

/* Tablet */

@media(max-width:992px) {

    .topper-card {
        width: 280px;
    }

    .toppers-heading h2 {
        font-size: 34px;
    }
}

/* Mobile */

@media(max-width:768px) {

    .toppers-section {
        padding: 60px 15px;
    }

    .toppers-heading h2 {
        font-size: 28px;
    }

    .toppers-heading p {
        font-size: 18px;
    }

    .toppers-subtitle h3 {
        font-size: 24px;
    }

    .topper-card {
        width: 100%;
        max-width: 350px;
    }

    .topper-img img {
        width: 120px;
        height: 120px;
    }

    .topper-content h3 {
        font-size: 28px;
    }

    .topper-content h4 {
        font-size: 20px;
    }
}

/*School Toppers End*/

/* =========================================================
   CPC CONTACT - COMPACT & COLORFUL
   FONT  : ROBOTO
   NAVY  : #121c61
   RED   : #d90a24
========================================================= */

.cpc-contact-section {
    position: relative;
    width: 100%;
    padding: 65px 0 70px;
    background: #ffffff;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.cpc-contact-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BACKGROUND PATTERN
========================================================= */

.cpc-bg-shape {
    position: absolute;
    pointer-events: none;
}

.cpc-bg-shape-one {
    width: 300px;
    height: 300px;
    right: -150px;
    top: -150px;
    border: 1px solid rgba(18, 28, 97, 0.08);
    border-radius: 50%;
}

.cpc-bg-shape-one::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    top: 44px;
    left: 44px;
    border: 1px solid rgba(217, 10, 36, 0.09);
    border-radius: 50%;
}

.cpc-bg-shape-one::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: 89px;
    left: 89px;
    border: 1px solid rgba(18, 28, 97, 0.06);
    border-radius: 50%;
}

.cpc-bg-shape-two {
    width: 150px;
    height: 150px;
    left: -75px;
    bottom: -75px;
    border: 1px solid rgba(217, 10, 36, 0.08);
    transform: rotate(45deg);
}

.cpc-bg-shape-two::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(18, 28, 97, 0.07);
}

.cpc-bg-shape-two::after {
    content: "";
    position: absolute;
    inset: 44px;
    border: 1px solid rgba(217, 10, 36, 0.06);
}


/* =========================================================
   HEADING
========================================================= */

.cpc-contact-heading {
    max-width: 700px;
    margin: 0 auto 38px;
    text-align: center;
}

.cpc-contact-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #d90a24;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cpc-contact-heading h2 {
    margin: 0;
    color: #121c61;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.cpc-contact-heading h2 span {
    color: #d90a24;
}

.cpc-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 13px 0;
}

.cpc-heading-line::before,
.cpc-heading-line::after {
    content: "";
    width: 38px;
    height: 1px;
    background: #d9dce7;
}

.cpc-heading-line i {
    display: block;
    width: 45px;
    height: 3px;
    background: #d90a24;
}

.cpc-contact-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #707070;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.cpc-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.cpc-contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 23px 24px 20px;
    background: #ffffff;
    border: 1px solid #e1e3ec;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
}


/* Top accent */

.cpc-contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #d90a24 0%,
            #d90a24 50%,
            #121c61 50%,
            #121c61 100%);
}


/* Bottom decorative glow */

.cpc-contact-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -65px;
    bottom: -65px;
    background: rgba(18, 28, 97, 0.035);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cpc-contact-card:hover::after {
    width: 180px;
    height: 180px;
    background: rgba(217, 10, 36, 0.06);
}

.cpc-contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 28, 97, 0.2);
    box-shadow: 0 12px 30px rgba(18, 28, 97, 0.10);
}


/* =========================================================
   CARD TOP
========================================================= */

.cpc-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cpc-card-number {
    color: #cfd3e1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cpc-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #f1f3fa;
    color: #d90a24;
    font-size: 21px;
    transition: all 0.3s ease;
}

.cpc-contact-card:hover .cpc-card-icon {
    background: #121c61;
    color: #ffffff;
    transform: rotate(-3deg);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.cpc-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cpc-card-label {
    display: block;
    margin-bottom: 8px;
    color: #8a8d98;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cpc-card-content h3 {
    max-width: 320px;
    margin: 0;
    color: #121c61;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.cpc-card-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 13px;
    border-top: 1px solid #ececf2;
}

.cpc-card-bottom span {
    color: #121c61;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cpc-card-bottom b {
    color: #d90a24;
    font-size: 17px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.cpc-contact-card:hover .cpc-card-bottom b {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.cpc-contact-message {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    padding: 18px 24px;
    background: linear-gradient(100deg,
            #f5f6fb 0%,
            #ffffff 100%);
    border: 1px solid #e5e6ee;
}

.cpc-message-line {
    width: 3px;
    align-self: stretch;
    flex: 0 0 3px;
    background: #d90a24;
}

.cpc-message-content {
    flex: 1;
}

.cpc-message-content>span {
    display: block;
    margin-bottom: 4px;
    color: #d90a24;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cpc-message-content h3 {
    margin: 0 0 3px;
    color: #121c61;
    font-size: 19px;
    font-weight: 600;
}

.cpc-message-content h3 strong {
    color: #d90a24;
}

.cpc-message-content p {
    margin: 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
}

.cpc-message-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #121c61;
    color: #ffffff;
    transform: rotate(45deg);
}

.cpc-message-mark span {
    font-size: 20px;
    font-weight: 300;
    transform: rotate(-45deg);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .cpc-contact-container {
        width: min(1000px, calc(100% - 40px));
    }

    .cpc-contact-card {
        padding: 21px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpc-contact-section {
        padding: 60px 0 65px;
    }

    .cpc-contact-heading {
        margin-bottom: 32px;
    }

    .cpc-contact-heading h2 {
        font-size: 36px;
    }

    .cpc-contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .cpc-contact-card {
        min-height: 220px;
        padding: 19px;
    }

    .cpc-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .cpc-card-content h3 {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpc-contact-section {
        padding: 50px 0 55px;
    }

    .cpc-contact-container {
        width: calc(100% - 30px);
    }

    .cpc-contact-heading {
        margin-bottom: 28px;
    }

    .cpc-contact-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .cpc-contact-heading h2 {
        font-size: 31px;
    }

    .cpc-contact-heading p {
        font-size: 13px;
    }

    .cpc-contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cpc-contact-card {
        min-height: 0;
        padding: 20px;
    }

    .cpc-card-top {
        margin-bottom: 16px;
    }

    .cpc-card-content h3 {
        max-width: 100%;
        font-size: 15px;
    }

    .cpc-contact-message {
        margin-top: 12px;
        padding: 17px;
    }

    .cpc-message-mark {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpc-contact-heading h2 {
        font-size: 27px;
    }

    .cpc-contact-card {
        padding: 18px;
    }

    .cpc-card-icon {
        width: 44px;
        height: 44px;
    }

    .cpc-card-content h3 {
        font-size: 14px;
    }

    .cpc-message-content h3 {
        font-size: 17px;
    }

}

/* =========================================================
   CPJHY - HISTORY SECTION
========================================================= */

.cpjhy-history-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.cpjhy-history-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.cpjhy-history-heading {
    margin-bottom: 65px;
    text-align: center;
}

.cpjhy-history-subtitle {
    display: block;
    margin-bottom: 12px;
    color: #c11320;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cpjhy-history-heading h1 {
    margin: 0;
    color: #183c58;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
}

.cpjhy-history-heading h1 strong {
    color: #c11320;
}

.cpjhy-history-heading-line {
    width: 65px;
    height: 3px;
    margin: 20px auto 0;
    background: #c11320;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.cpjhy-history-content {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 60px;
    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.cpjhy-history-side {
    position: relative;
}

.cpjhy-history-side-box {
    position: sticky;
    top: 120px;
    padding: 35px 25px;
    background: #faecee;
    border-left: 4px solid #c11320;
    text-align: center;
}

.cpjhy-history-side-box span {
    display: block;
    color: #8e8e8e;
    font-size: 13px;
    letter-spacing: 3px;
}

.cpjhy-history-side-box strong {
    display: block;
    margin-top: 5px;
    color: #183c58;
    font-size: 24px;
    letter-spacing: 1px;
}


/* =========================================================
   HISTORY TEXT
========================================================= */

.cpjhy-history-text {
    position: relative;
}

.cpjhy-history-text::before {
    content: "“";
    position: absolute;
    top: -55px;
    left: -20px;
    color: #c1131f49;
    font-family: "Roboto", sans-serif;
    font-size: 100px;
    line-height: 1;
}

.cpjhy-history-text p {
    position: relative;
    margin: 0 0 25px;
    padding: 0 0 25px;
    color: #555555;
    font-size: 15px;
    line-height: 1.95;
    border-bottom: 1px solid #eeeeee;
}

.cpjhy-history-text p:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.cpjhy-history-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid #e7e1d5;
}

.cpjhy-history-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: #faecee;
    border: 1px solid #e8dfcf;
    transition: all 0.3s ease;
}

.cpjhy-history-highlight:hover {
    transform: translateY(-5px);
    border-color: #c6a15b;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cpjhy-history-highlight>span {
    color: #c11320;
    font-size: 25px;
    font-weight: 700;
}

.cpjhy-history-highlight h3 {
    margin: 0 0 7px;
    color: #183c58;
    font-size: 17px;
}

.cpjhy-history-highlight p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ACADEMIC
========================================================= */

.cpjhy-history-academic {
    margin-top: 80px;
}

.cpjhy-history-academic-heading {
    margin-bottom: 35px;
    text-align: center;
}

.cpjhy-history-academic-heading span {
    display: block;
    margin-bottom: 10px;
    color: #c11320;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cpjhy-history-academic-heading h2 {
    margin: 0;
    color: #183c58;
    font-size: 32px;
}

.cpjhy-history-academic-heading strong {
    color: #c11320;
}


/* =========================================================
   ACADEMIC CARDS
========================================================= */

.cpjhy-history-academic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.cpjhy-history-academic-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #c11320;
    transition: all 0.3s ease;
}

.cpjhy-history-academic-card:hover {
    transform: translateY(-4px);
    border-color: #c11320;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.cpjhy-history-academic-icon {
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #faecee;
    border-radius: 50%;
    color: #c11320;
    font-size: 12px;
    font-weight: 700;
}

.cpjhy-history-academic-card h3 {
    margin: 0 0 8px;
    color: #183c58;
    font-size: 19px;
}

.cpjhy-history-academic-card p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpjhy-history-section {
        padding: 70px 0;
    }

    .cpjhy-history-heading h1 {
        font-size: 34px;
    }

    .cpjhy-history-content {
        grid-template-columns: 150px 1fr;
        gap: 40px;
    }

    .cpjhy-history-side-box {
        padding: 28px 15px;
    }

    .cpjhy-history-side-box strong {
        font-size: 20px;
    }

    .cpjhy-history-highlights {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpjhy-history-section {
        padding: 55px 0;
    }

    .cpjhy-history-container {
        width: calc(100% - 30px);
    }

    .cpjhy-history-heading {
        margin-bottom: 40px;
    }

    .cpjhy-history-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .cpjhy-history-heading h1 {
        font-size: 28px;
    }

    .cpjhy-history-content {
        display: block;
    }

    .cpjhy-history-side {
        margin-bottom: 30px;
    }

    .cpjhy-history-side-box {
        position: static;
        padding: 20px;
        text-align: left;
    }

    .cpjhy-history-side-box span,
    .cpjhy-history-side-box strong {
        display: inline;
    }

    .cpjhy-history-side-box strong {
        margin-left: 7px;
        font-size: 20px;
    }

    .cpjhy-history-text::before {
        top: -35px;
        left: -5px;
        font-size: 70px;
    }

    .cpjhy-history-text p {
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-size: 14px;
        line-height: 1.85;
    }

    .cpjhy-history-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 50px;
        padding-top: 35px;
    }

    .cpjhy-history-highlight {
        padding: 23px 20px;
    }

    .cpjhy-history-academic {
        margin-top: 60px;
    }

    .cpjhy-history-academic-heading h2 {
        font-size: 27px;
    }

    .cpjhy-history-academic-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cpjhy-history-academic-card {
        padding: 23px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpjhy-history-heading h1 {
        font-size: 24px;
    }

    .cpjhy-history-text p {
        font-size: 13px;
    }

    .cpjhy-history-highlight>span {
        font-size: 22px;
    }

    .cpjhy-history-academic-heading h2 {
        font-size: 24px;
    }


}

/* ==========================================
   TOPPERS SECTION
========================================== */

.tpi-toppers-section {
    width: 100%;
    padding: 45px 15px;

    background: #f5f7fb;

    overflow: hidden;
}


.tpi-container {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}


/* ==========================================
   SECTION HEADING
========================================== */

.tpi-section-heading {
    text-align: center;

    margin-bottom: 22px;
}


.tpi-small-title {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color: #d90a24;
}


.tpi-section-heading h2 {
    margin: 0;

    font-size: 27px;
    line-height: 1.3;

    font-weight: 700;

    color: #121c61;
}


.tpi-section-heading h2 span {
    color: #d90a24;
}


/* ==========================================
   TOPPERS CARD
========================================== */
.tpi-image-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;

    height: auto;

    background: #fff;
    border-radius: 12px;
    overflow: hidden;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(18, 28, 97, 0.10);

    transition: all 0.3s ease;
}

.tpi-image-wrap {
    width: 100%;
    height: auto;
}

.tpi-image-wrap img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: unset;
}


/* Tablet */
@media (max-width: 991px) {
    .tpi-image-card {
        max-width: 280px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .tpi-image-card {
        max-width: 245px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {
    .tpi-image-card {
        max-width: 220px;
    }
}

/* ==========================================
   IMAGE WRAPPER
========================================== */

.tpi-image-wrap {
    position: relative;

    width: 100%;

    /*
       Keeps the card compact
       and prevents unwanted height.
    */
    /* aspect-ratio: 591 / 650; */

    overflow: hidden;

    background: #eef1f7;
}


/* ==========================================
   TOPPERS IMAGE
========================================== */

.tpi-image-wrap img {
    display: block;

    width: 100%;
    /* height: 100%; */

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}


.tpi-image-card:hover .tpi-image-wrap img {
    transform: scale(1.02);
}



/* ==========================================
   POPUP
========================================== */

.tpi-popup {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.tpi-popup.tpi-active {
    visibility: visible;

    opacity: 1;
}



/* ==========================================
   POPUP OVERLAY
========================================== */

.tpi-popup-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(4px);
}



/* ==========================================
   POPUP BOX
========================================== */

.tpi-popup-box {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    max-height: 92vh;

    padding: 7px;

    background: #ffffff;

    border-radius: 9px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.35);

    transform: scale(0.92);

    transition:
        transform 0.3s ease;
}


.tpi-popup.tpi-active .tpi-popup-box {
    transform: scale(1);
}



/* ==========================================
   POPUP IMAGE
========================================== */

.tpi-popup-image {
    width: 100%;

    max-height: calc(92vh - 14px);

    overflow: auto;

    text-align: center;
}


.tpi-popup-image img {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    margin: 0 auto;
}



/* ==========================================
   CLOSE BUTTON
========================================== */

.tpi-popup-close {
    position: absolute;

    top: -11px;
    right: -11px;

    z-index: 10;

    width: 30px;
    height: 30px;

    padding: 0;

    border: 2px solid #ffffff;

    border-radius: 50%;

    background: #d90a24;

    color: #ffffff;

    font-size: 22px;

    font-weight: 400;

    line-height: 24px;

    text-align: center;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.tpi-popup-close:hover {
    background: #121c61;

    transform: rotate(90deg);
}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .tpi-toppers-section {
        padding: 40px 15px;
    }


    .tpi-image-card {
        max-width: 280px;
    }


    .tpi-section-heading h2 {
        font-size: 25px;
    }

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .tpi-toppers-section {
        padding: 35px 12px;
    }


    .tpi-section-heading {
        margin-bottom: 18px;
    }


    .tpi-small-title {
        font-size: 10px;

        letter-spacing: 1px;
    }


    .tpi-section-heading h2 {
        font-size: 22px;
    }


    .tpi-image-card {
        max-width: 245px;

        border-radius: 9px;
    }


    .tpi-popup {
        padding: 12px;
    }


    .tpi-popup-box {
        max-width: 95%;

        padding: 5px;

        border-radius: 7px;
    }


    .tpi-popup-close {
        top: -9px;
        right: -8px;

        width: 27px;
        height: 27px;

        font-size: 20px;

        line-height: 21px;
    }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .tpi-toppers-section {
        padding: 30px 10px;
    }


    .tpi-section-heading h2 {
        font-size: 20px;
    }


    .tpi-image-card {
        max-width: 220px;
    }


    .tpi-popup {
        padding: 10px;
    }

}

/* =========================================================
   SECTION
========================================================= */

.oas-section {
    width: 100%;
    padding: 10px 20px 30px;
    background: #fff;
    overflow: hidden;
}

.oas-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================================
   HEADING
========================================================= */

.oas-heading {
    text-align: center;
    margin-bottom: 40px;
}

.oas-heading h2 {
    margin: 0;
    color: #e51b38;
    font-size: 34px;
    font-weight: 600;
}

.oas-heading-line {
    position: relative;
    display: block;
    width: 140px;
    height: 3px;
    margin: 18px auto 0;
    background: #e51b38;
}

.oas-heading-line i {
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #17178f;
}


/* =========================================================
   GRID
========================================================= */

.oas-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}


/* =========================================================
   CARD
========================================================= */

.oas-card {
    width: 100%;
    min-width: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    overflow: hidden;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.oas-card-image {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #222;
}

.oas-card-image>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .4s ease;
}


/* IMAGE DARKEN */

.oas-card:hover .oas-card-image>img {
    transform: scale(1.03);
    filter: brightness(.25);
}


/* =========================================================
   RED OVERLAY
========================================================= */

.oas-marquee {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: rgba(229, 27, 56, .94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;

    z-index: 10;
}


/* SHOW ON HOVER */

.oas-card:hover .oas-marquee {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MARQUEE CONTENT

   IMPORTANT:
   top:100% = starts from bottom
   top:-100% = completely goes above
========================================================= */

.oas-marquee-inner {
    position: absolute;

    width: 100%;

    /*
       VERY IMPORTANT
       Prevents text from going outside card
    */
    left: 0;

    top: 100%;

    padding: 25px 25px 40px;

    box-sizing: border-box;

    text-align: center;

    color: #fff;

    animation:
        oas-marquee-up 14s linear infinite;

    animation-play-state: paused;
}


/* START ONLY ON HOVER */

.oas-card:hover .oas-marquee-inner {
    animation-play-state: running;
}


/* =========================================================
   MARQUEE
========================================================= */

@keyframes oas-marquee-up {

    0% {
        top: 100%;
    }

    100% {
        top: -100%;
    }

}


/* =========================================================
   MARQUEE HEADING
========================================================= */

.oas-marquee-inner h3 {
    width: 100%;
    margin: 0 0 25px;

    color: #fff;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 600;

    text-align: center;

    white-space: normal;

    overflow-wrap: break-word;
}


/* =========================================================
   MARQUEE TEXT
========================================================= */

.oas-marquee-inner p {
    width: 100%;
    max-width: 600px;

    margin: 0 auto 25px;

    color: #fff;

    font-size: 18px;
    line-height: 1.6;

    text-align: center;

    white-space: normal;

    overflow-wrap: break-word;

    word-break: normal;
}


/* =========================================================
   MARQUEE IMAGE
========================================================= */

.oas-marquee-inner img {
    display: block;

    width: auto;
    max-width: 75%;

    height: auto;
    max-height: 160px;

    margin: 0 auto 30px;

    object-fit: contain;
}


/* =========================================================
   LINE
========================================================= */

.oas-marquee-line {
    display: block;

    width: 100%;
    max-width: 500px;

    height: 2px;

    margin: 0 auto 30px;

    background: #fff;
}


/* =========================================================
   QUOTE
========================================================= */

.oas-marquee-inner .oas-quote {
    font-size: 27px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.oas-marquee-inner .oas-author {
    font-size: 21px;
    font-weight: 500;
    text-align: center;
}


/* =========================================================
   CARD BODY
========================================================= */

.oas-card-body {
    position: relative;

    width: 100%;

    min-height: 180px;

    padding: 38px 22px 32px;

    text-align: center;

    box-sizing: border-box;
}

.oas-card-body h3 {
    margin: 0 0 12px;

    color: #e51b38;

    font-size: 25px;
    line-height: 1.3;

    font-weight: 500;
}

.oas-card-body p {
    margin: 0;

    color: #31577e;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.oas-bottom-line {
    position: absolute;

    width: 175px;
    height: 3px;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    background: #e51b38;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .oas-section {
        padding: 16px 20px 29px;
    }

    .oas-heading {
        margin-bottom: 65px;
    }

    .oas-heading h2 {
        font-size: 30px;
    }

    .oas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .oas-card-image {
        height: 340px;
    }

    .oas-marquee-inner {
        padding: 22px 20px 35px;
    }

    .oas-marquee-inner h3 {
        font-size: 24px;
    }

    .oas-marquee-inner p {
        font-size: 16px;
        line-height: 1.6;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .oas-section {
        padding: 520px 15px 30px;
    }

    .oas-heading {
        margin-bottom: 50px;
    }

    .oas-heading h2 {
        font-size: 27px;
    }

    .oas-grid {
        grid-template-columns: 1fr;

        width: 100%;
        max-width: 520px;

        margin: auto;

        gap: 35px;
    }

    .oas-card-image {
        height: 330px;
    }

    .oas-marquee-inner {
        padding: 20px 18px 30px;
    }

    .oas-marquee-inner h3 {
        font-size: 21px;
    }

    .oas-marquee-inner p {
        font-size: 15px;
        line-height: 1.6;
    }

    .oas-marquee-inner img {
        max-width: 65%;
        max-height: 130px;
    }

    .oas-marquee-inner .oas-quote {
        font-size: 21px;
    }

    .oas-marquee-inner .oas-author {
        font-size: 18px;
    }

    .oas-card-body {
        min-height: 165px;
        padding: 30px 18px;
    }

    .oas-card-body h3 {
        font-size: 22px;
    }

    .oas-card-body p {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .oas-section {
        padding: 10px 12px 20px;
    }

    .oas-heading h2 {
        font-size: 24px;
    }

    .oas-card-image {
        height: 290px;
    }

    .oas-marquee-inner {
        padding: 18px 15px 25px;
    }

    .oas-marquee-inner h3 {
        font-size: 19px;
    }

    .oas-marquee-inner p {
        font-size: 14px;
        line-height: 1.5;
    }

    .oas-marquee-inner img {
        max-width: 60%;
        max-height: 110px;
    }

    .oas-marquee-inner .oas-quote {
        font-size: 19px;
    }

    .oas-marquee-inner .oas-author {
        font-size: 16px;
    }

}

.igs-gallery-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 30px;
}


.igs-gallery-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.igs-gallery-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.igs-gallery-item {
    flex: 0 0 25%;
    /* 4 per row desktop */
    padding: 10px;
    box-sizing: border-box;
}

/* FIXED: Images now show full view, no shrinking, no cropping */
.igs-gallery-item img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .igs-gallery-item {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 768px) {
    .igs-gallery-item {
        flex: 0 0 50%;
    }

    .igs-gallery-item img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .igs-gallery-item {
        flex: 0 0 100%;
    }

    .igs-gallery-item img {
        max-height: 180px;
    }
}

:root {
    --cph-navy: #121c61;
    --cph-navy-tint: #eef0fa;
    --cph-red: #dc1b33;
    --cph-red-tint: #fdecee;
    --cph-white: #ffffff;
    --cph-ink: #22263c;
    --cph-gray: #666a80;
    --cph-border: #e6e7f2;
    --cph-font-head: 'Roboto', sans-serif;
    --cph-font-body: 'Roboto', sans-serif;
}

.cph-page * {
    box-sizing: border-box;
}

.cph-page {
    margin: 0;
    background: var(--cph-white);
    color: var(--cph-ink);
    font-family: var(--cph-font-body);
    line-height: 1.65;
}

.cph-page a {
    color: inherit;
    text-decoration: none;
}

.cph-page ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cph-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--cph-red);
    outline-offset: 3px;
}

/* Breadcrumb */
.cph-breadcrumb {
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--cph-gray);
}

.cph-breadcrumb a:hover {
    color: var(--cph-red);
}

.cph-breadcrumb .cph-sep {
    margin: 0 8px;
    color: var(--cph-border);
}

.cph-breadcrumb .cph-current {
    color: var(--cph-navy);
    font-weight: 600;
}

/* Page title */
.cph-page-head {
    padding: 32px 0 40px;
    border-bottom: 1px solid var(--cph-border);
}

.cph-page-head h1 {
    font-family: var(--cph-font-head);
    font-size: clamp(30px, 4vw, 42px);
    color: var(--cph-navy);
    font-weight: 600;
    margin: 0 0 12px;
}

.cph-page-head p {
    max-width: 640px;
    color: var(--cph-gray);
    margin: 0;
    font-size: 16px;
}

/* Section */
.cph-section {
    padding: 44px 0;
    border-bottom: 1px solid var(--cph-border);
}

.cph-section:last-of-type {
    border-bottom: none;
}

.cph-section h2 {
    font-family: var(--cph-font-head);
    color: var(--cph-navy);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 18px;
}

.cph-section p {
    color: var(--cph-ink);
    margin: 0 0 14px;
}

.cph-section p:last-child {
    margin-bottom: 0;
}

/* Stats - simple row */
.cph-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.cph-stat b {
    display: block;
    font-family: var(--cph-font-head);
    font-size: 29px;
    color: var(--cph-navy);
    font-weight: 700;
}

.cph-stat span {
    font-size: 14px;
    color: var(--cph-gray);
}

/* Timeline - simple list */
.cph-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cph-tl-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--cph-border);
}

.cph-tl-row:first-child {
    border-top: none;
}

.cph-tl-year {
    font-family: var(--cph-font-head);
    font-weight: 700;
    color: var(--cph-red);
    font-size: 17px;
}

.cph-tl-row h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--cph-navy);
}

.cph-tl-row p {
    margin: 0;
    color: var(--cph-gray);
    font-size: 15px;
}

/* Values - simple list */
.cph-values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cph-value {
    padding: 20px;
    background: var(--cph-navy-tint);
    border-radius: 6px;
    border-left: 3px solid var(--cph-navy);
}

.cph-value:nth-child(2) {
    border-left-color: var(--cph-red);
}

.cph-value h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cph-navy);
}

.cph-value p {
    margin: 0;
    font-size: 15px;
    color: var(--cph-gray);
}

/* Responsive */
@media (max-width:700px) {
    .cph-values-list {
        grid-template-columns: 1fr;
    }

    .cph-tl-row {
        grid-template-columns: 70px 1fr;
    }

    .cph-stats {
        gap: 24px;
    }
}

:root {
    --rri-navy: #121c61;
    --rri-navy-tint: #eef0fa;
    --rri-red: #dc1b33;
    --rri-red-tint: #fdecee;
    --rri-white: #ffffff;
    --rri-ink: #22263c;
    --rri-gray: #666a80;
    --rri-border: #e6e7f2;
    --rri-font-head: 'Roboto', sans-serif;
    --rri-font-body: 'Roboto', sans-serif;
}

.rri-page * {
    box-sizing: border-box;
}

.rri-page {
    margin: 0;
    background: var(--rri-white);
    color: var(--rri-ink);
    font-family: var(--rri-font-body);
    line-height: 1.65;
}

.rri-page a {
    color: inherit;
    text-decoration: none;
}

.rri-page ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rri-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.rri-page a:focus-visible,
.rri-page button:focus-visible {
    outline: 3px solid var(--rri-red);
    outline-offset: 3px;
}

/* Breadcrumb */
.rri-breadcrumb {
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--rri-gray);
}

.rri-breadcrumb a:hover {
    color: var(--rri-red);
}

.rri-breadcrumb .rri-sep {
    margin: 0 8px;
    color: var(--rri-border);
}

.rri-breadcrumb .rri-current {
    color: var(--rri-navy);
    font-weight: 600;
}

/* Page title */
.rri-page-head {
    padding: 32px 0 36px;
    border-bottom: 1px solid var(--rri-border);
}

.rri-page-head h1 {
    font-family: var(--rri-font-head);
    font-size: clamp(30px, 4vw, 42px);
    color: var(--rri-navy);
    font-weight: 700;
    margin: 0 0 12px;
}

.rri-page-head p {
    max-width: 640px;
    color: var(--rri-gray);
    margin: 0;
    font-size: 16px;
}

/* Notice strip */
.rri-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--rri-red-tint);
    border-left: 4px solid var(--rri-red);
    border-radius: 4px;
    padding: 16px 20px;
    margin: 28px 0;
}

.rri-notice svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--rri-red);
}

.rri-notice p {
    margin: 0;
    font-size: 14px;
    color: var(--rri-ink);
}

/* Rules list */
.rri-rules {
    padding: 36px 0 60px;
}

.rri-rule {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rri-border);
    align-items: start;
    transition: background .2s ease;
}

.rri-rule:first-child {
    padding-top: 0;
}

.rri-rule:last-child {
    border-bottom: none;
}

.rri-rule:hover {
    background: var(--rri-navy-tint);
}

.rri-rule-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rri-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--rri-font-head);
}

.rri-rule:nth-child(even) .rri-rule-num {
    background: var(--rri-red);
}

.rri-rule-text p {
    margin: 0;
    font-size: 15.5px;
    color: var(--rri-ink);
    padding-top: 8px;
}

/* Responsive */
@media (max-width:700px) {
    .rri-container {
        padding: 0 18px;
    }

    .rri-rule {
        grid-template-columns: 36px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .rri-rule-num {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .rri-rule-text p {
        font-size: 14.5px;
        padding-top: 4px;
    }
}

:root {
    --exec-navy: #121c61;
    --exec-navy-tint: #eef0fa;
    --exec-red: #dc1b33;
    --exec-red-tint: #fdecee;
    --exec-white: #ffffff;
    --exec-ink: #22263c;
    --exec-gray: #666a80;
    --exec-border: #e6e7f2;
    --exec-font-head: 'Roboto', sans-serif;
    --exec-font-body: 'Roboto', sans-serif;
}

.exec-page * {
    box-sizing: border-box;
}

.exec-page {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--exec-white);
    color: var(--exec-ink);
    font-family: var(--exec-font-body);
    line-height: 1.65;
    padding: 0px 50px;
}

.exec-page a {
    color: inherit;
    text-decoration: none;
}

.exec-page ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.exec-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.exec-page a:focus-visible,
.exec-page button:focus-visible {
    outline: 3px solid var(--exec-red);
    outline-offset: 3px;
}

/* Breadcrumb */
.exec-breadcrumb {
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--exec-gray);
}

.exec-breadcrumb a:hover {
    color: var(--exec-red);
}

.exec-breadcrumb .exec-sep {
    margin: 0 8px;
    color: var(--exec-border);
}

.exec-breadcrumb .exec-current {
    color: var(--exec-navy);
    font-weight: 600;
}

/* Page title */
.exec-page-head {
    padding: 32px 0 36px;
    border-bottom: 1px solid var(--exec-border);
}

.exec-page-head h1 {
    font-family: var(--exec-font-head);
    font-size: clamp(30px, 4vw, 42px);
    color: var(--exec-navy);
    font-weight: 700;
    margin: 0 0 12px;
}

.exec-page-head p {
    max-width: 640px;
    color: var(--exec-gray);
    margin: 0;
    font-size: 16px;
}

/* Members grid */
.exec-members {
    padding: 40px 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.exec-card {
    border: 1px solid var(--exec-border);
    border-radius: 8px;
    padding: 26px 22px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.exec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -18px rgba(18, 28, 97, 0.3);
    border-color: var(--exec-navy);
}

.exec-photo {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--exec-navy-tint);
    border: 2px dashed var(--exec-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--exec-navy);
    overflow: hidden;
}

.exec-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.exec-photo svg {
    width: 44px;
    height: 44px;
}

.exec-rank {
    display: inline-block;
    font-family: var(--exec-font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--exec-red);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.exec-name {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--exec-navy);
    font-family: var(--exec-font-head);
}

.exec-role {
    display: inline-block;
    background: var(--exec-navy-tint);
    color: var(--exec-navy);
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.exec-card:nth-child(3n+2) .exec-role {
    background: var(--exec-red-tint);
    color: var(--exec-red);
}

/* Responsive */
@media (max-width:900px) {
    .exec-members {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .exec-container {
        padding: 0 18px;
    }

    .exec-members {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

:root {
    --tch-navy: #121c61;
    --tch-navy-tint: #eef0fa;
    --tch-red: #dc1b33;
    --tch-red-tint: #fdecee;
    --tch-white: #ffffff;
    --tch-ink: #22263c;
    --tch-gray: #666a80;
    --tch-border: #e6e7f2;
    --tch-font-head: 'Roboto', sans-serif;
    --tch-font-body: 'Roboto', sans-serif;
}

.tch-page * {
    box-sizing: border-box;
}

.tch-page {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--tch-white);
    color: var(--tch-ink);
    font-family: var(--tch-font-body);
    line-height: 1.65;
    padding: 0px 50px;
}

.tch-page a {
    color: inherit;
    text-decoration: none;
}

.tch-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.tch-page a:focus-visible {
    outline: 3px solid var(--tch-red);
    outline-offset: 3px;
}

/* Breadcrumb */
.tch-breadcrumb {
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--tch-gray);
}

.tch-breadcrumb a:hover {
    color: var(--tch-red);
}

.tch-breadcrumb .tch-sep {
    margin: 0 8px;
    color: var(--tch-border);
}

.tch-breadcrumb .tch-current {
    color: var(--tch-navy);
    font-weight: 600;
}

/* Page title */
.tch-page-head {
    padding: 32px 0 36px;
    border-bottom: 1px solid var(--tch-border);
}

.tch-page-head h1 {
    font-family: var(--tch-font-head);
    font-size: clamp(30px, 4vw, 42px);
    color: var(--tch-navy);
    font-weight: 700;
    margin: 0 0 12px;
}

.tch-page-head p {
    max-width: 640px;
    color: var(--tch-gray);
    margin: 0;
    font-size: 16px;
}

/* Group section */
.tch-group {
    padding: 40px 0 8px;
}

.tch-group-title {
    font-family: var(--tch-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--tch-navy);
    margin: 0 0 4px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tch-red);
    display: inline-block;
}

.tch-group-wrap {
    padding: 20px 0 40px;
}

/* Table */
.tch-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tch-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    border: 1px solid var(--tch-border);
    border-radius: 8px;
}

.tch-table thead th {
    background: var(--tch-navy);
    color: #fff;
    text-align: left;
    font-family: var(--tch-font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 18px;
    border: 1px solid var(--tch-navy);
}

.tch-table thead th:first-child {
    width: 56px;
    text-align: center;
}

.tch-table tbody td {
    padding: 12px 18px;
    font-size: 14.5px;
    color: var(--tch-ink);
    border: 1px solid var(--tch-border);
    vertical-align: top;
}

.tch-table tbody tr:nth-child(even) {
    background: var(--tch-navy-tint);
}

.tch-table tbody tr:hover {
    background: var(--tch-red-tint);
}

.tch-sno {
    text-align: center;
    font-weight: 600;
    color: var(--tch-navy);
}

.tch-name {
    font-weight: 600;
    color: var(--tch-navy);
    white-space: nowrap;
}

.tch-qual {
    color: var(--tch-ink);
}

.tch-tag {
    display: inline-block;
    background: var(--tch-navy-tint);
    color: var(--tch-navy);
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.tch-table tbody tr:nth-child(even) .tch-tag {
    background: #fff;
}

/* Responsive: keep table format, scroll horizontally on small screens */
@media (max-width:700px) {
    .tch-container {
        padding: 0 18px;
    }

    .tch-table {
        min-width: 520px;
    }

    .tch-table thead th,
    .tch-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

:root {
    --ttns-navy: #121c61;
    --ttns-navy-tint: #eef0fa;
    --ttns-red: #dc1b33;
    --ttns-red-tint: #fdecee;
    --ttns-white: #ffffff;
    --ttns-ink: #22263c;
    --ttns-gray: #666a80;
    --ttns-border: #e6e7f2;
    --ttns-font-head: 'Roboto', sans-serif;
    --ttns-font-body: 'Roboto', sans-serif;
}

.ttns-page * {
    box-sizing: border-box;
}

.ttns-page {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--ttns-white);
    color: var(--ttns-ink);
    font-family: var(--ttns-font-body);
    line-height: 1.65;
}

.ttns-page a {
    color: inherit;
    text-decoration: none;
}

.ttns-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 50px;
}

.ttns-page a:focus-visible {
    outline: 3px solid var(--ttns-red);
    outline-offset: 3px;
}

/* Breadcrumb */
.ttns-breadcrumb {
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--ttns-gray);
}

.ttns-breadcrumb a:hover {
    color: var(--ttns-red);
}

.ttns-breadcrumb .ttns-sep {
    margin: 0 8px;
    color: var(--ttns-border);
}

.ttns-breadcrumb .ttns-current {
    color: var(--ttns-navy);
    font-weight: 600;
}

/* Page title */
.ttns-page-head {
    padding: 32px 0 36px;
    border-bottom: 1px solid var(--ttns-border);
}

.ttns-page-head h1 {
    font-family: var(--ttns-font-head);
    font-size: clamp(30px, 4vw, 42px);
    color: var(--ttns-navy);
    font-weight: 700;
    margin: 0 0 12px;
}

.ttns-page-head p {
    max-width: 640px;
    color: var(--ttns-gray);
    margin: 0;
    font-size: 16px;
}

/* Table wrapper */
.ttns-table-wrap {
    padding: 36px 0 60px;
}

.ttns-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ttns-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    border: 1px solid var(--ttns-border);
    border-radius: 8px;
}

.ttns-table thead th {
    background: var(--ttns-navy);
    color: #fff;
    text-align: left;
    font-family: var(--ttns-font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 20px;
    border: 1px solid var(--ttns-navy);
}

.ttns-table thead th:first-child {
    width: 56px;
    text-align: center;
}

.ttns-table tbody td {
    padding: 14px 20px;
    font-size: 15px;
    color: var(--ttns-ink);
    border: 1px solid var(--ttns-border);
}

.ttns-table tbody tr:nth-child(even) {
    background: var(--ttns-navy-tint);
}

.ttns-table tbody tr:hover {
    background: var(--ttns-red-tint);
}

.ttns-sno {
    text-align: center;
    font-weight: 600;
    color: var(--ttns-navy);
}

.ttns-name {
    font-weight: 600;
    color: var(--ttns-navy);
}

.ttns-role {
    display: inline-block;
    background: var(--ttns-navy-tint);
    color: var(--ttns-navy);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.ttns-table tbody tr:nth-child(even) .ttns-role {
    background: #fff;
}

/* Responsive: keep table format, scroll horizontally on small screens */
@media (max-width:700px) {
    .ttns-container {
        padding: 0 18px;
    }

    .ttns-table {
        min-width: 480px;
    }

    .ttns-table thead th,
    .ttns-table tbody td {
        padding: 10px 14px;
        font-size: 13.5px;
    }
}

/*Start*/
.sr-slider-container {
  width: 100%;
  max-width: 1920px; /* Set a maximum width for the slider */
  /* height: 700px; */
  overflow: hidden;
  position: relative;
}

.sr-slider {
  display: flex;
  transition: transform 1s ease;
  width: fit-content; /* Adjust based on content */
}

.sr-slide {
  min-width: 100%; /* Ensure each slide takes full width */
  /* flex-shrink: 0; */
}

.sr-slide img {
  width: 100%;
  height: 100%; /* Fill the height of the container */
  object-fit: contain; /* Maintain aspect ratio without cropping */
}

/* Arrow styles */
.sr-arrow {
  font-size: 25px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgb(0 0 0 / 23%);
  color: #00ff19;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.sr-arrow-left {
  left: 10px;
}

.sr-arrow-right {
  right: 10px;
}

/* For mobile and tablet view */
@media only screen and (max-width: 768px) {
  .sr-slider-container {
    width: 100%; /* Make it responsive on smaller screens */
    height: auto; /* Adjust height for smaller devices */
  }

  .sr-slide img {
    max-height: 300px; /* Adjust max height for smaller devices */
    object-fit: contain; /* Maintain aspect ratio */
  }

  .sr-arrow {
    padding: 5px;
  }
}
/*End*/
.ssmf-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.ssmf-social .ssmf-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.ssmf-social .ssmf-youtube {
    background: #ff0000;
}

.ssmf-social .ssmf-facebook {
    background: #1877f2;
}

.ssmf-social .ssmf-whatsapp {
    background: #25d366;
}

.ssmf-social .ssmf-icon:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 575px) {
    .ssmf-social {
        gap: 9px;
        margin-top: 15px;
    }

    .ssmf-social .ssmf-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}