* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, sans-serif;
    overflow-x: hidden;
    font-weight: 400;
    color: #000;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url("../images/banner.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
    padding: 170px 0;
}


/* Dark blue overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 28, 55, 0.92) 0%,
            rgba(0, 35, 65, 0.78) 34%,
            rgba(0, 37, 68, 0.42) 65%,
            rgba(0, 25, 48, 0.32) 100%
        );
}


/* =========================================
   CONTAINER
========================================= */

.hero-container {
    width: 100%;
    margin: 0 auto;
    padding-left: 58px;
    padding-right: 58px;
}


/* =========================================
   HEADER
========================================= */

.hero-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 9999;

    width: 100%;

    padding-top: 10px;
    padding-bottom: 10px;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.hero-header.scrolled {
    padding-top: 7px;
    padding-bottom: 7px;

    background: rgba(0, 27, 51, 0.96);

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* =========================================
   LOGO
========================================= */

.hero-logo {
    display: flex;
    align-items: center;
    width: 20%;
}

.hero-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================
   NAVIGATION
========================================= */

.hero-nav {
    gap: 0;
}

.hero-nav .nav-item {
    position: relative;
}

.hero-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 25px 0 0!important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    transition: color 0.25s ease;
    text-transform: uppercase;
}

.hero-nav .nav-link:hover {
    color: #e3ad3b;
}


/* Active navigation */

.hero-nav .nav-link.active {
    color: #ffffff;
}

.hero-nav .nav-link.active::after {
    position: absolute;
    content: "";
    left: 0px;
    right: 13px;
    bottom: -7px;
    height: 2px;
    background: #e5ac36;
}


/* =========================================
   NAV CTA
========================================= */

.nav-cta-item {
    margin-left: 12px;
}

.nav-meeting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #ffffff;
    background: #c99632;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease,
        transform 0.25s ease;
}

.nav-meeting-btn:hover {
    color: #ffffff;
    background: #b68428;
    transform: translateY(-1px);
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
}

.hero-text {
    padding-top: 45px;
}


/* =========================================
   HERO TITLE
========================================= */

.hero-text h1 {
    margin: 0;
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================
   HERO SUBTITLE
========================================= */

.hero-text h2 {
    margin: 11px 0 0;

    color: #f2b632;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.6;
}


/* =========================================
   EVENT INFORMATION
========================================= */

.event-info {
    margin-top: 15px;
}

.event-info h3 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}


/* Event meta */

.event-meta {
    display: flex;
    align-items: center;
    gap: 13px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;
}

.meta-item i {
    color: #ffffff;
    font-size: 18px;
}

.meta-divider {
    width: 1px;
    height: 20px;

    background: rgba(255, 255, 255, 0.45);
}


/* =========================================
   HERO CTA
========================================= */

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
    padding: 8px;

    color: #ffffff;
    background: #d29d34;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.hero-cta:hover {
    color: #ffffff;
    background: #b98728;
    transform: translateY(-1px);
}

.hero-cta i {
    font-size: 21px;
    line-height: 1;
}


/* =========================================
   DUMMY SECTIONS
========================================= */

.dummy-section {
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 20px;
}

.dummy-section h2 {
    color: #123452;
}


/* =========================================
   BOOTSTRAP MOBILE TOGGLER
========================================= */

.hero-header .navbar-toggler {
    padding: 6px 8px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;

    box-shadow: none;
}

.hero-header .navbar-toggler:focus {
    box-shadow: none;
}

.hero-header .navbar-toggler-icon {
    width: 22px;
    height: 22px;

    filter: brightness(0) invert(1);
}



/* =========================================
   1200px - 1499px
========================================= */

@media (min-width: 1200px) and (max-width: 1499px) {

    .hero-container {
        max-width: 1250px;
        padding-left: 45px;
        padding-right: 45px;
    }

    .hero-nav .nav-link {
        font-size: 10px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hero-logo {
        width: 170px;
        margin-right: 20px;
    }

    .nav-cta-item {
        margin-left: 5px;
    }

    .hero-text {
        padding-top: 45px;
    }
}


/* =========================================
   TABLET
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .hero-section {
        min-height: 470px;
        height: 470px;
    }

    .hero-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hero-logo {
        width: 155px;
        margin-right: 15px;
    }

    .hero-nav .nav-link {
        padding-left: 7px !important;
        padding-right: 7px !important;

        font-size: 9px;
    }

    .hero-nav .nav-link.active::after {
        left: 7px;
        right: 7px;
    }

    .nav-cta-item {
        margin-left: 4px;
    }

    .nav-meeting-btn {
        min-width: 120px;
        padding: 0 9px;
        font-size: 8px;
    }

    .hero-text {
        padding-top: 55px;
    }

    .hero-text h1 {
        font-size: 47px;
    }

    .hero-text h2 {
        font-size: 21px;
    }

    .event-info h3 {
        font-size: 20px;
    }
}


/* =========================================
   MOBILE NAVIGATION
   Below 991px
========================================= */

@media (max-width: 991.98px) {

    .hero-section {
        min-height: 650px;
        height: auto;

        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 28, 55, 0.94) 0%,
                rgba(0, 35, 65, 0.80) 65%,
                rgba(0, 25, 48, 0.55) 100%
            );
    }

    .hero-container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-header {
        padding-top: 16px;
    }

    .hero-logo {
        width: 170px;
        margin-right: 0;
    }

    .hero-logo img {
        max-height: 45px;
    }

    .hero-header .navbar-collapse {
        margin-top: 15px;
        padding: 15px;

        background: rgba(0, 27, 51, 0.96);

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 5px;
    }

    .hero-nav {
        align-items: stretch !important;
    }

    .hero-nav .nav-link {
        height: 42px;
        padding: 0 5px !important;

        font-size: 12px;
    }

    .hero-nav .nav-link.active::after {
        left: 5px;
        right: auto;
        width: 35px;
    }

    .nav-cta-item {
        margin: 10px 0 0;
    }

    .nav-meeting-btn {
        width: 100%;
        height: 40px;
    }

    .hero-text {
        padding-top: 90px;
        padding-bottom: 55px;
    }

    .hero-text h1 {
        font-size: 48px;
        line-height: 1.06;
    }

    .hero-text h2 {
        font-size: 21px;
    }

    .event-info h3 {
        font-size: 20px;
    }
}


/* =========================================
   SMALL TABLET
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .hero-section {
        min-height: 580px;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-text h1 {
        font-size: 52px;
    }

    .hero-text h2 {
        font-size: 23px;
    }
}


/* =========================================
   MOBILE
   576px - 767px
========================================= */

@media (min-width: 576px) and (max-width: 767.98px) {

    .hero-section {
        min-height: 620px;
    }

    .hero-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-text {
        padding-top: 80px;
    }

    .hero-text h1 {
        font-size: 43px;
    }

    .hero-text h2 {
        font-size: 19px;
    }

    .event-info h3 {
        font-size: 19px;
    }

    .meta-item {
        font-size: 15px;
    }
}


/* =========================================
   MOBILE
   Below 575px
========================================= */

@media (max-width: 575.98px) {

    .hero-section {
        min-height: 680px;
        height: auto;

        background-position: 65% center;
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-header {
        padding-top: 14px;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-logo img {
        max-height: 42px;
    }

    .hero-header .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
    }

    .hero-text {
        padding-top: 85px;
        padding-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.5px;
    }

    .hero-text h2 {
        margin-top: 13px;

        font-size: 18px;
        line-height: 1.4;
    }

    .event-info {
        margin-top: 22px;
    }

    .event-info h3 {
        margin-bottom: 13px;

        font-size: 18px;
        line-height: 1.3;
    }

    .event-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .meta-divider {
        display: none;
    }

    .meta-item {
        font-size: 14px;
    }

    .meta-item i {
        font-size: 17px;
    }

    .hero-cta {
        width: 100%;
        max-width: 325px;

        margin-top: 22px;
        padding-left: 18px;
        padding-right: 15px;

        font-size: 11px;
    }

    .desktop-break {
        display: none;
    }
}


/* =========================================
   EXTRA SMALL MOBILE
   Below 400px
========================================= */

@media (max-width: 399.98px) {

    .hero-section {
        min-height: 650px;
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-logo {
        width: 135px;
    }

    .hero-text {
        padding-top: 75px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text h2 {
        font-size: 16px;
    }

    .event-info h3 {
        font-size: 17px;
    }

    .hero-cta {
        max-width: 300px;
        font-size: 10px;
    }
}

/* Sec1 */
.sp1 {
    margin-top: 30px;
}
.sp2 {
    margin-top: 10px;
}
.mission-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #ffffff;
}

.mission-content {
    position: relative;
    z-index: 3;
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 60px;
}

/* =========================================
   CONTENT INNER
========================================= */

.mission-inner {
    width: 100%;
}

.mission-inner h2 {
    color: #082d62;
    font-size: 30px !important;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    text-transform: uppercase;
}

p {
    margin: 0 0 10px; 
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
}

.mission-inner p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.mission-image {
    position: relative;
    z-index: 1;

    width: 60%;
    height: auto;

    margin: 0;
    padding: 0;

    overflow: hidden;

}

.mission-image img {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    max-width: none;

    object-fit: cover;
    object-position: center center;
}



/* =========================================
   1200px - 1499px
========================================= */

@media (min-width: 1200px) and (max-width: 1499px) {

    .mission-inner {
        padding-left: 55px;
        padding-right: 45px;
    }

    .mission-inner h2 {
        font-size: 30px;
    }

    .mission-inner p {
        font-size: 11px;
    }
}


/* =========================================
   TABLET
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .mission-wrapper,
    .mission-content,
    .mission-image {
        min-height: 250px;
    }

    .mission-inner {
        padding: 25px 35px 25px 35px;
    }

    .mission-inner h2 {
        font-size: 27px;
    }

    .mission-inner p {
        font-size: 11px;
        line-height: 1.45;
    }

    .mission-content::after {
        height: 270px;
    }

    .mission-content::before {
        height: 270px;
    }
}


/* =========================================
   TABLET / SMALL LAPTOP
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .mission-wrapper,
    .mission-content,
    .mission-image {
        min-height: 280px;
    }

    .mission-inner {
        padding: 30px 35px;
    }

    .mission-inner h2 {
        font-size: 27px;
    }

    .mission-inner p {
        font-size: 11px;
        line-height: 1.5;
    }

    .mission-content::after {
        height: 300px;
    }

    .mission-content::before {
        height: 300px;
    }
}


/* =========================================
   MOBILE
   Below 767px
========================================= */

@media (max-width: 767px) {

    .mission-wrapper {
        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    .mission-content {
        width: 100%;
        min-height: auto;

        display: block;
    }

    /*
       Remove desktop diagonal
       from the content area
    */

    .mission-content::before,
    .mission-content::after {
        display: none;
    }

    .mission-inner {
        max-width: 100%;

        padding: 35px 25px 30px;
    }

    .mission-inner h2 {
        margin-bottom: 14px;

        font-size: 28px;
        line-height: 1.2;
    }

    .mission-inner p {
        max-width: 100%;

        margin-bottom: 13px;

        font-size: 13px;
        line-height: 1.6;
    }

    .mission-image {
        width: 100%;
        min-height: 280px;

        order: 2;
    }

    .mission-image img {
        width: 100%;
        height: 100%;
        min-height: 280px;

        object-fit: cover;
    }
}


/* =========================================
   SMALL MOBILE
   Below 575px
========================================= */

@media (max-width: 575px) {

    .mission-inner {
        padding: 30px 20px 28px;
    }

    .mission-inner h2 {
        font-size: 25px;
    }

    .mission-inner p {
        font-size: 13px;
        line-height: 1.6;
    }

    .mission-image,
    .mission-image img {
        min-height: 240px;
    }
}


/* =========================================
   EXTRA SMALL MOBILE
   Below 400px
========================================= */

@media (max-width: 399px) {

    .mission-inner {
        padding: 27px 17px 25px;
    }

    .mission-inner h2 {
        font-size: 23px;
    }

    .mission-inner p {
        font-size: 12px;
    }

    .mission-image,
    .mission-image img {
        min-height: 220px;
    }
}
/* Sec2 */
.why-oman-section {
    width: 100%;

    background: #ffffff;
}

.why-oman-note {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    height: auto;
    margin: auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.why-oman-heading {
    text-align: center;
    margin-bottom: 16px;
}


.why-oman-heading span {
    display: block;

    width: 90px;
    height: 4px;

    margin: 7px auto 0;

    background: #c99b32;
}


/* =========================================
   CARD ROW
========================================= */

.why-oman-row {
    width: 100%;

    display: flex;
    align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.why-oman-card {
    width: calc(100% - 7px);
    height: 300px;
    margin: 0 auto;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 2px solid #e0e7e3;
    border-radius: 7px;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-oman-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
}


/* =========================================
   ICON
========================================= */

.why-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}

.why-icon img {
    display: block;

    width: 70px;
    height: 70px;

    object-fit: contain;
}


/* =========================================
   CARD TITLE
========================================= */
.why-oman-card h3 {
    margin: 0 0 10px;
    color: #082d62;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}




/* =========================================
   BOTTOM NOTE
========================================= */

.why-oman-note {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    margin-top: 18px;
}

.note-icon {
    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.note-icon img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

.why-oman-note p span {
    color: #082d62;
    font-weight: 700;
}



/* =========================================
   1200px - 1499px
========================================= */

@media (min-width: 1200px) and (max-width: 1499px) {

  

    .why-oman-card {
        height: 325px;

        padding: 20px 15px 15px;
    }

    .why-icon,
    .why-icon img {
        width: 68px;
        height: 68px;
    }

    .why-oman-card h3 {
        font-size: 17px;
    }

    .why-oman-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .why-oman-note p {
        font-size: 14px;
    }
}


/* =========================================
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

        .why-oman-card {
        height: 325px;

        padding: 20px 13px 15px;
    }

    .why-icon,
    .why-icon img {
        width: 65px;
        height: 65px;
    }

    .why-oman-card h3 {
        font-size: 16px;
    }

    .why-oman-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .why-oman-note {
        gap: 12px;
    }

    .why-oman-note p {
        font-size: 13px;
    }
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .why-oman-section {
        padding: 30px 0;
    }

        .why-oman-row {
        row-gap: 12px;
    }

    .why-oman-card {
        width: calc(100% - 8px);
        height: 310px;

        padding: 20px 18px;
    }

    .why-icon,
    .why-icon img {
        width: 65px;
        height: 65px;
    }

    .why-oman-card h3 {
        font-size: 17px;
    }

    .why-oman-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .why-oman-note {
        margin-top: 20px;
        gap: 12px;
    }

    .why-oman-note p {
        font-size: 13px;
    }
}


/* =========================================
   MOBILE
   Below 767px
========================================= */

@media (max-width: 767px) {

    .why-oman-section {
        padding: 35px 0 30px;
    }

    .why-oman-heading {
        margin-bottom: 22px;
    }

        .why-oman-heading span {
        width: 75px;
        height: 3px;
    }

    .why-oman-row {
        row-gap: 14px;
    }

    .why-oman-card {
        width: 100%;
        height: auto;
        min-height: 300px;

        padding: 25px 25px 23px;
    }

    .why-icon,
    .why-icon img {
        width: 70px;
        height: 70px;
    }

    .why-oman-card h3 {
        min-height: auto;

        margin-bottom: 12px;

        font-size: 18px;
    }

    .why-oman-card p {
        max-width: 360px;

        font-size: 14px;
        line-height: 1.65;
    }

    .why-oman-note {
        align-items: flex-start;

        margin-top: 22px;
        padding: 0 10px;

        gap: 12px;
    }

    .note-icon,
    .note-icon img {
        width: 42px;
        height: 42px;
    }

    .why-oman-note p {
        font-size: 13px;
        line-height: 1.55;
    }

    .desktop-only {
        display: none;
    }
}


/* =========================================
   SMALL MOBILE
   Below 575px
========================================= */

@media (max-width: 575px) {

    .why-oman-section {
        padding: 30px 0 25px;
    }

        .why-oman-card {
        min-height: 285px;

        padding: 22px 20px;
    }

    .why-icon,
    .why-icon img {
        width: 65px;
        height: 65px;
    }

    .why-oman-card h3 {
        font-size: 17px;
    }

    .why-oman-card p {
        font-size: 13px;
    }

    .why-oman-note {
        padding: 0 5px;
    }

    .why-oman-note p {
        font-size: 12px;
    }
}


/* =========================================
   EXTRA SMALL
   Below 400px
========================================= */

@media (max-width: 399px) {

        .why-oman-card {
        min-height: 275px;
    }

    .why-oman-card h3 {
        font-size: 16px;
    }

    .why-oman-card p {
        font-size: 12px;
        line-height: 1.6;
    }

    .why-oman-note {
        gap: 8px;
    }

    .note-icon,
    .note-icon img {
        width: 38px;
        height: 38px;
    }

    .why-oman-note p {
        font-size: 11px;
    }
}

/* Sec3 */
.strategic-section {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.strategic-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.strategic-heading {
    margin-bottom: 10px;
    text-align: center;
}

.strategic-heading span {
    display: block;
    width: 48px;
    height: 3px;
    margin: 5px auto 0;
    background: #c99b32;
}

/* Row */
.strategic-row {
    --bs-gutter-x: 4px;
    --bs-gutter-y: 4px;
    align-items: stretch;
}

/* Card */
.objective-card {
    display: flex;
    align-items: center;
    width: 100%;
    height: 260px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e1e7ed;
    border-radius: 8px;
    overflow: hidden;
}

/* Icon Box */
.objective-number {
    position: relative;
    flex: 0 0 120px;
    width: 120px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
}

.objective-green {
    background: #08713c;
}

.objective-gold {
    background: #c69a36;
}

.objective-blue {
    background: #073577;
}

/* Icon */
.objective-icon {
    display: block;
    width: 62px;
    height: 62px;
    margin: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Content */
.objective-content {
    flex: 1;
    min-width: 0;
    padding: 0 0 0 12px;
}

.objective-content h3 {
    margin: 0 0 8px;
    color: #102d55;
    font-size: 18px !important;
    font-weight: 800;
    line-height: 1.2;
     text-transform: uppercase;
}


/* 1200px - 1499px */
@media (min-width: 1200px) and (max-width: 1499px) {

    .objective-card {
        height: 160px;
        padding: 13px;
    }

    .objective-number {
        flex-basis: 74px;
        width: 74px;
        height: 90px;
    }

    .objective-icon {
        width: 60px;
        height: 60px;
    }

    .objective-content {
        padding-left: 11px;
    }

    .objective-content h3 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .objective-content p {
        font-size: 9px;
        line-height: 1.48;
    }
}


/* 992px - 1199px */
@media (min-width: 992px) and (max-width: 1199px) {

    .strategic-row {
        --bs-gutter-x: 5px;
    }

    .objective-card {
        height: 165px;
        padding: 12px;
    }

    .objective-number {
        flex-basis: 65px;
        width: 65px;
        height: 85px;
    }

    .objective-icon {
        width: 54px;
        height: 54px;
    }

    .objective-content {
        padding-left: 10px;
    }

    .objective-content h3 {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .objective-content p {
        font-size: 8px;
        line-height: 1.5;
    }
}


/* 768px - 991px */
@media (min-width: 768px) and (max-width: 991px) {

    .strategic-section {
        padding: 25px 0;
    }

    .strategic-heading {
        margin-bottom: 18px;
    }

    .strategic-row {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 8px;
    }

    .objective-card {
        height: 170px;
        padding: 14px;
    }

    .objective-number {
        flex-basis: 72px;
        width: 72px;
        height: 95px;
    }

    .objective-icon {
        width: 58px;
        height: 58px;
    }

    .objective-content {
        padding-left: 12px;
    }

    .objective-content h3 {
        font-size: 15px;
    }

    .objective-content p {
        font-size: 10px;
        line-height: 1.5;
    }
}


/* Below 767px */
@media (max-width: 767px) {

    .strategic-section {
        padding: 28px 0 30px;
    }

    .strategic-heading {
        margin-bottom: 18px;
    }

    .strategic-row {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 10px;
    }

    .objective-card {
        height: auto;
        min-height: 145px;
        padding: 12px;
    }

    .objective-number {
        flex-basis: 65px;
        width: 65px;
        height: 85px;
    }

    .objective-icon {
        width: 52px;
        height: 52px;
    }

    .objective-content {
        padding-left: 10px;
    }

    .objective-content h3 {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 7px;
    }

    .objective-content p {
        font-size: 10px;
        line-height: 1.5;
    }
}


/* Below 575px */
@media (max-width: 575px) {

    .strategic-section {
        padding: 25px 0 28px;
    }

    .objective-card {
        min-height: 140px;
        padding: 10px;
    }

    .objective-number {
        flex-basis: 58px;
        width: 58px;
        height: 76px;
    }

    .objective-icon {
        width: 47px;
        height: 47px;
    }

    .objective-content {
        padding-left: 9px;
    }

    .objective-content h3 {
        font-size: 13px;
    }

    .objective-content p {
        font-size: 9px;
        line-height: 1.45;
    }
}


/* Below 400px */
@media (max-width: 399px) {

    .objective-card {
        min-height: 135px;
        padding: 9px;
    }

    .objective-number {
        flex-basis: 52px;
        width: 52px;
        height: 70px;
    }

    .objective-icon {
        width: 42px;
        height: 42px;
    }

    .objective-content {
        padding-left: 8px;
    }

    .objective-content h3 {
        font-size: 12px;
    }

    .objective-content p {
        font-size: 8px;
        line-height: 1.4;
    }
}

/* Sec4 */
.oman-overview-section {
    width: 100%;
    padding: 10px 0;
    height: auto;
    background: #ffffff;
}


/* =========================================
   MAIN 3 COLUMN GRID
========================================= */

.oman-overview-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.05fr;

    gap: 4px;

    width: 100%;
}


/* =========================================
   COMMON PANEL
========================================= */

.oman-panel {
    position: relative;

    min-width: 0;

    height: auto;

    padding: 12px 12px 10px;

    background: #ffffff;

    border: 1px solid #dfe5eb;

    border-radius: 7px;

    overflow: hidden;
}


/* =========================================
   PANEL HEADING
========================================= */

.oman-panel h2 {
   margin: 0 0 7px;
    font-weight: 800;
    line-height: 1.2;
    color: #102d55;
    font-size: 18px !important;
     text-transform: uppercase;
}


.meeting-section .mission-inner h2 {
    color: #082d62;
    font-size: 20px !important;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* =========================================
   SUBTITLE
========================================= */

.pavilion-panel h3 {
    margin: 0 0 10px;
    font-weight: 800;
    line-height: 1.2;
    color: #102d55;
    font-size: 18px !important;
    text-transform: uppercase;
}
/* =========================================
   DESCRIPTION
========================================= */

.panel-description {

    font-size:16px;
}


/* =========================================
   COLUMN 1
   OMAN PAVILION
========================================= */

.pavilion-bottom {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 60px;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.pavilion-panel .pavilion-image {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 0 0 500px;
    width: 350px;
    height: 350px;
    overflow: visible;
}


.pavilion-panel .pavilion-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* Pavilion features */

.pavilion-features {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 4px 6px;
}

.pavilion-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    margin-right: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;

    object-fit: contain;
}

.pavilion-feature span {
    color: #082d62;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================
   COLUMN 2
   WHO SHOULD ENGAGE
========================================= */

.engage-panel .panel-description {
    margin-bottom: 7px;
}


/* 4 × 3 cards */

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stakeholder-card {
    min-width: 0;

    height: auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 15px;

    background: #ffffff;

    border: 1px solid #c7d7e6;

    border-radius: 4px;

    text-align: center;
}

.stakeholder-icon {
    width: 30px;
    height: 30px;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.stakeholder-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.stakeholder-card span {
    color: #102e55;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.15;

    text-align: center;
    padding: 5px;
}


/* =========================================
   COLUMN 3
   STAKEHOLDERS
========================================= */

.stakeholders-panel h2 {
    line-height: 1.2;
    margin-bottom: 7px;
    font-size: 20px !important;
}

.stakeholders-panel .panel-description {
    max-width: 100%;
}
.stakeholder-intro {
    margin: 20px 0 10px 0;
    color: #102e55;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
/* =========================================
   DISCUSSION LIST
========================================= */

.discussion-list {
    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.discussion-list li {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 10px;
}

.discussion-list li i {
    flex: 0 0 11px;

    width: 11px;
    height: 11px;

    margin-right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #102e55;

    font-size: 15px;
}



/* =========================================
   1200px - 1499px
========================================= */

@media (min-width: 1200px) and (max-width: 1499px) {

    .oman-panel {
        height: 255px;
    }
}


/* =========================================
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .oman-overview-grid {
        grid-template-columns:
            1fr
            1fr
            1fr;
    }

    .oman-panel {
        height: 250px;

        padding: 11px 10px;
    }

    .oman-panel h2 {
        font-size: 13px;
    }

    .pavilion-panel h3 {
        font-size: 9px;
    }

    .panel-description {
        font-size: 7px;
    }

    .pavilion-bottom {
        left: 8px;
        right: 8px;
    }

    .pavilion-panel .pavilion-image {
        flex-basis: 115px;

        width: 115px;
        height: 115px;
    }

    .pavilion-features {
        padding-left: 4px;
    }

    .pavilion-feature span {
        font-size: 6px;
    }

    .stakeholder-card {
        height: 46px;
    }

    .stakeholder-card span {
        font-size: 5px;
    }

    .stakeholder-icon,
    .stakeholder-icon img {
        width: 18px;
        height: 18px;
    }

    .discussion-list li {
        font-size: 6px;
    }
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .oman-overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .oman-panel {
        height: 275px;
    }

    .stakeholders-panel {
        grid-column: 1 / -1;
    }

    .oman-panel h2 {
        font-size: 16px;
    }

    .pavilion-panel h3 {
        font-size: 11px;
    }

    .panel-description {
        font-size: 8px;
    }

    .stakeholder-card {
        height: 55px;
    }

    .stakeholder-card span {
        font-size: 6.5px;
    }

    .discussion-list li {
        font-size: 7px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .oman-overview-section {
        padding: 15px 0;
    }

    .oman-overview-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .oman-panel {
        height: auto;

        min-height: 300px;

        padding: 18px 15px;
    }

    .oman-panel h2 {
        font-size: 20px;
    }

    .pavilion-panel h3 {
        font-size: 14px;
    }

    .panel-description {
        font-size: 10px;
        line-height: 1.55;
    }

    .pavilion-bottom {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        height: 180px;

        margin-top: 15px;
    }

    .pavilion-panel .pavilion-image {
        flex-basis: 155px;

        width: 155px;
        height: 155px;
    }

    .pavilion-features {
        gap: 6px;
    }

    .feature-icon,
    .feature-icon img {
        width: 20px;
        height: 20px;
    }

    .feature-icon {
        flex-basis: 20px;
    }

    .pavilion-feature span {
        font-size: 9px;
    }

    .stakeholder-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 5px;
    }

    .stakeholder-card {
        height: 70px;
    }

    .stakeholder-icon,
    .stakeholder-icon img {
        width: 28px;
        height: 28px;
    }

    .stakeholder-card span {
        font-size: 8px;
    }

    .discussion-list {
        gap: 6px;
    }

    .discussion-list li {
        font-size: 9px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .oman-panel {
        min-height: 280px;

        padding: 16px 13px;
    }

    .oman-panel h2 {
        font-size: 18px;
    }

    .pavilion-panel h3 {
        font-size: 13px;
    }

    .panel-description {
        font-size: 9px;
    }

    .pavilion-bottom {
        height: 165px;
    }

    .pavilion-panel .pavilion-image {
        flex-basis: 140px;

        width: 140px;
        height: 140px;
    }

    .pavilion-feature span {
        font-size: 8px;
    }

    .stakeholder-card {
        height: 65px;
    }

    .stakeholder-card span {
        font-size: 7px;
    }
}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 399px) {

    .oman-panel {
        min-height: 260px;

        padding: 14px 11px;
    }

    .oman-panel h2 {
        font-size: 17px;
    }

    .pavilion-panel h3 {
        font-size: 12px;
    }

    .panel-description {
        font-size: 8px;
    }

    .pavilion-bottom {
        height: 150px;
    }

    .pavilion-panel .pavilion-image {
        flex-basis: 125px;

        width: 125px;
        height: 125px;
    }

    .pavilion-feature span {
        font-size: 7px;
    }

    .stakeholder-grid {
        gap: 4px;
    }

    .stakeholder-card {
        height: 60px;
    }

    .stakeholder-icon,
    .stakeholder-icon img {
        width: 24px;
        height: 24px;
    }

    .stakeholder-card span {
        font-size: 6.5px;
    }
}
/* Sec5 */
.meeting-section {
    width: 100%;
    padding: 8px 0;

    background: #ffffff;

    overflow: hidden;
}
.meeting-content p {
    font-size: 16px !important;
}
.date-placeholder  i {
    margin-left: 90px;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.meeting-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px !important;
    display: grid;
    grid-template-columns: 36% 38% 26%;
    overflow: hidden;
    background: #f5f6f7;
    border: 1px solid #e1e4e7;
    border-radius: 13px;
}


/* =========================================
   CONTENT
========================================= */

.meeting-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 18px 20px;
}

.meeting-left {
    padding-left: 25px;
    padding-right: 15px;
}

.meeting-right {
    padding-left: 20px;
    padding-right: 25px;
}



/* =========================================
   TITLE ROW
========================================= */

.meeting-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* =========================================
   ICON
========================================= */

.meeting-icon {
    flex: 0 0 75px;

    width: 75px;
    height: 75px;

    margin-right: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #002455;

    overflow: hidden;
}

.meeting-icon img {
    display: block;

    width: 46px;
    height: 46px;

    object-fit: contain;
}

.meeting-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.meeting-image img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =========================================
   LARGE DESKTOP
   Base styles handle 1500px+
========================================= */

@media (min-width: 1200px) {

    .meeting-wrapper {
        min-height: 215px;
    }

    .meeting-left {
        padding-left: 28px;
    }

    .meeting-right {
        padding-right: 28px;
    }

    .meeting-icon {
        flex-basis: 78px;

        width: 78px;
        height: 78px;

        margin-right: 15px;
    }

    .meeting-icon img {
        width: 48px;
        height: 48px;
    }

    .meeting-content h2 {
        font-size: 22px;
    }

    .meeting-content p {
        font-size: 11px;
        line-height: 1.65;
    }
}


/* =========================================
   TABLET
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .meeting-wrapper {
        min-height: 200px;
    }

    .meeting-left {
        padding-left: 18px;
        padding-right: 10px;
    }

    .meeting-right {
        padding-left: 15px;
        padding-right: 18px;
    }

    .meeting-icon {
        flex-basis: 62px;

        width: 62px;
        height: 62px;

        margin-right: 10px;
    }

    .meeting-icon img {
        width: 38px;
        height: 38px;
    }

    .meeting-content h2 {
        margin-top: 3px;

        font-size: 17px;
    }

    .meeting-content p {
        font-size: 9px;
        line-height: 1.55;
    }
}


/* =========================================
   SMALL TABLET
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .meeting-wrapper {
        min-height: 220px;

        grid-template-columns: 35% 35% 30%;
    }

    .meeting-content {
        padding: 15px;
    }

    .meeting-icon {
        flex-basis: 55px;

        width: 55px;
        height: 55px;

        margin-right: 8px;
    }

    .meeting-icon img {
        width: 34px;
        height: 34px;
    }

    .meeting-content h2 {
        margin-top: 2px;

        font-size: 14px;
        line-height: 1.25;
    }

    .meeting-content p {
        font-size: 8px;
        line-height: 1.5;
    }
}


/* =========================================
   MOBILE
   Below 767px
========================================= */

@media (max-width: 767px) {

    .meeting-section {
        padding: 15px 0;
    }

    .meeting-wrapper {
        display: flex;
        flex-direction: column;

        min-height: auto;

        border-radius: 10px;
    }


    /* Left */

    .meeting-left {
        width: 100%;

        padding: 25px 20px 20px;

        order: 1;
    }


    /* Image */

    .meeting-image {
        order: 2;

        width: 100%;
        height: 280px;
        min-height: 280px;

        clip-path: none;
    }


    /* Right */

    .meeting-right {
        width: 100%;

        padding: 25px 20px;

        order: 3;
    }


    .meeting-icon {
        flex-basis: 65px;

        width: 65px;
        height: 65px;

        margin-right: 12px;
    }

    .meeting-icon img {
        width: 40px;
        height: 40px;
    }

    .meeting-content h2 {
        margin-top: 4px;

        font-size: 20px;
    }

    .meeting-content p {
        font-size: 11px;
        line-height: 1.6;
    }
}


/* =========================================
   SMALL MOBILE
   Below 575px
========================================= */

@media (max-width: 575px) {

    .meeting-left,
    .meeting-right {
        padding: 22px 17px;
    }

    .meeting-title-row {
        margin-bottom: 9px;
    }

    .meeting-icon {
        flex-basis: 58px;

        width: 58px;
        height: 58px;

        margin-right: 10px;
    }

    .meeting-icon img {
        width: 35px;
        height: 35px;
    }

    .meeting-content h2 {
        margin-top: 2px;

        font-size: 17px;
    }

    .meeting-content p {
        font-size: 10px;
        line-height: 1.55;
    }

    .meeting-image {
        height: 240px;
        min-height: 240px;
    }
}


/* =========================================
   EXTRA SMALL
   Below 400px
========================================= */

@media (max-width: 399px) {

    .meeting-left,
    .meeting-right {
        padding: 20px 15px;
    }

    .meeting-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;

        margin-right: 9px;
    }

    .meeting-icon img {
        width: 31px;
        height: 31px;
    }

    .meeting-content h2 {
        font-size: 15px;
    }

    .meeting-content p {
        font-size: 9px;
    }

    .meeting-image {
        height: 210px;
        min-height: 210px;
    }
}

/* Sec6 */
/* =========================================
   REQUEST SECTION
========================================= */

.request-section {
    width: 100%;
    padding: 8px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.request-wrapper {
    width: 100%;
    padding: 22px 28px 12px;
    background: #001740;
    border: 1px solid #082d62;
    border-radius: 12px;
    overflow: hidden;
    color: #ffffff;
}
.mt-10 {
    margin-top: 10%;
}

/* =========================================
   FORM
========================================= */

.request-form-main {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================
   TOP AREA
========================================= */

.request-top {
    display: grid;

    grid-template-columns: 22% 78%;

    align-items: center;

    width: 100%;
}


/* =========================================
   LEFT INTRO
========================================= */

.request-intro {
    padding-right: 25px;
}

.request-intro h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.5;

  text-align: center;
}

.request-intro p {

    margin: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;

    text-align: justify;
}


/* =========================================
   FORM AREA
========================================= */

.request-form {
    width: 100%;
}

.request-form-row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 9px;

    margin: 0;
}

.request-form-row > div {
    padding-left: 4px;
    padding-right: 4px;
}


/* =========================================
   INPUTS
========================================= */

.request-input {
    width: 100%;
    height: 60px;
    padding: 15px;
    color: #102e55 !important;
    background: #ffffff !important;
    border: 1px solid #d8dfe8 !important;
    border-radius: 5px !important;
    outline: none;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.request-input::placeholder {
    color: #102e55;

    opacity: 1;
}

.request-input:focus {
    border-color: #d4a536 !important;

    box-shadow: none !important;
}


/* =========================================
   SELECT
========================================= */

select.request-input {
    color: #102e55;

    background-color: #ffffff;

    cursor: pointer;
}


/* =========================================
   DATE
========================================= */

.date-input-wrap {
    position: relative;

    width: 100%;
}

.date-input-wrap input[type="date"] {
    position: relative;


    cursor: pointer;
}

.date-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.date-placeholder {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    pointer-events: none;

    color: #102e55;

    font-size: 16px;
    font-weight: 600;

    line-height: 1;
}

.date-icon {
    position: absolute;

    right: 13px;
    top: 50%;

    width: 18px;
    height: 18px;

    transform: translateY(-50%);

    object-fit: contain;

    pointer-events: none;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.request-submit {
    width: 100%;
    height: 60px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d4a536;
    border-radius: 5px;
    background: #c9982d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease,
        transform 0.25s ease;
}

.request-input.form-select {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;

    cursor: pointer;

    background-color: #ffffff !important;
    color: #102e55 !important;
}

.request-submit:hover {
    background: #d7a83a;

    transform: translateY(-1px);
}

.submit-arrow {
    font-size: 24px;
    font-weight: 400;

    line-height: 1;
}


/* =========================================
   DIVIDER
========================================= */

.request-divider {
    width: 100%;

    height: 1px;

    margin: 17px 0 13px;

    background: rgba(255, 255, 255, 0.18);
}


/* =========================================
   BOTTOM AREA
========================================= */

.request-bottom {
    display: grid;

    grid-template-columns:
        17%
        20%
        43%
        20%;

    align-items: center;

    min-height: 95px;
}


/* =========================================
   BOTTOM HEADINGS
========================================= */

.contact-block h3,
.organizer-block h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.2;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1820px !important;
}

.container-hero {
    max-width: 1520px !important;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.contact-block {
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #fff;
}
.social-links a i {
    color: #fff;
    text-decoration: none;
}

.contact-item img {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    margin-right: 9px;

    object-fit: contain;
}

.contact-item span {
    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.45;
}


/* =========================================
   ADDRESS
========================================= */

.address-block {
    padding-left: 5px;
}


/* =========================================
   OPAZ
========================================= */

.opaz-block {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 0;
}

.opaz-logo {
    display: block;

    width: 245px;
    max-width: 100%;
    height: 75px;

    object-fit: contain;
}


/* =========================================
   ORGANIZER
========================================= */

.organizer-block {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.organizer-logo {
    display: block;

    width: 150px;
    max-width: 100%;
    height: 65px;

    object-fit: contain;
}


/* =========================================
   FOOTER
========================================= */

.request-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 2px;
}

.request-footer p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.3;
}
.contact-item i {
    margin-right: 10px;
}

.social-links {
    display: flex;

    align-items: center;

    gap: 15px;
}

.social-links a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
}

.social-links img {
    width: 17px;
    height: 17px;

    object-fit: contain;
}


/* =========================================
   1200px - 1499px
========================================= */

@media (min-width: 1200px) and (max-width: 1499px) {

    .request-wrapper {
        padding: 20px 25px 11px;
    }

    .request-intro {
        padding-right: 20px;
    }

    .request-intro h2 {
        font-size: 19px;
    }

    .request-intro p {
        font-size: 9px;
    }

    .request-input {
        height: 45px;

        font-size: 9px;
    }

    .request-submit {
        height: 45px;

        font-size: 11px;
    }

    .opaz-logo {
        width: 220px;
        height: 70px;
    }

    .organizer-logo {
        width: 135px;
        height: 60px;
    }
}


/* =========================================
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .request-wrapper {
        padding: 18px 20px 10px;
    }

    .request-top {
        grid-template-columns: 23% 77%;
    }

    .request-intro {
        padding-right: 15px;
    }

    .request-intro h2 {
        font-size: 17px;

        margin-bottom: 13px;
    }

    .request-intro p {
        max-width: 175px;

        font-size: 8px;

        line-height: 1.6;
    }

    .request-input {
        height: 42px;

        padding: 7px 11px;

        font-size: 8px;
    }

    .date-placeholder {
        left: 11px;

        font-size: 16px;
    }

    .date-placeholder i {
        right: 10px;

        width: 15px;
        height: 15px;
    }

    .request-submit {
        height: 42px;

        padding: 7px 10px;

        font-size: 9px;
    }

    .submit-arrow {
        font-size: 20px;
    }

    .request-bottom {
        min-height: 85px;
    }

    .contact-item span {
        font-size: 8px;
    }

    .opaz-logo {
        width: 190px;
        height: 60px;
    }

    .organizer-logo {
        width: 120px;
        height: 55px;
    }
}


/* =========================================
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .request-wrapper {
        padding: 20px;
    }

    .request-top {
        display: block;
    }

    .request-intro {
        padding: 0 0 18px;
    }

    .request-intro h2 {
        font-size: 20px;
    }

    .request-intro p {
        max-width: 400px;

        font-size: 10px;
    }

    .request-input {
        height: 45px;
    }

    .request-submit {
        height: 45px;
    }

    .request-bottom {
        grid-template-columns:
            25%
            25%
            25%
            25%;
    }

    .opaz-logo {
        width: 150px;
        height: 55px;
    }

    .organizer-logo {
        width: 105px;
        height: 50px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .request-section {
        padding: 12px 0;
    }

    .request-wrapper {
        padding: 22px 16px 14px;

        border-radius: 10px;
    }

    .request-top {
        display: block;
    }

    .request-intro {
        padding: 0 0 20px;
    }

    .request-intro h2 {
        font-size: 22px;

        line-height: 1.35;
    }

    .request-intro p {
        max-width: 100%;

        font-size: 10px;

        line-height: 1.6;
    }

    .request-form-row {
        --bs-gutter-y: 8px;
    }

    .request-input {
        height: 45px;

        font-size: 10px;
    }

    .request-submit {
        height: 45px;

        font-size: 11px;
    }

    .request-divider {
        margin: 20px 0 18px;
    }

    .request-bottom {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        min-height: auto;
    }

    .address-block {
        padding-left: 0;
    }

    .opaz-block {
        justify-content: flex-start;
    }

    .organizer-block {
        align-items: flex-start;
    }

    .opaz-logo {
        width: 180px;
        height: 65px;
    }

    .organizer-logo {
        width: 125px;
        height: 55px;
    }

    .request-footer {
        margin-top: 18px;
    }

    .request-footer p {
        font-size: 7px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .request-wrapper {
        padding: 20px 13px 13px;
    }

    .request-intro h2 {
        font-size: 20px;
    }

    .request-intro p {
        font-size: 9px;
    }

    .request-input {
        height: 43px;

        padding: 7px 11px;

        font-size: 9px;
    }

    .date-placeholder {
        left: 11px;
        right: 20px;
        font-size: 9px;
    }

    .date-icon {
        right: 10px;

        width: 15px;
        height: 15px;
    }

    .request-submit {
        height: 43px;

        font-size: 10px;
    }

    .request-bottom {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .opaz-logo {
        width: 200px;
    }

    .organizer-logo {
        width: 135px;
    }

    .request-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }
}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 399px) {

    .request-wrapper {
        padding: 18px 11px 12px;
    }

    .request-intro h2 {
        font-size: 18px;
    }

    .request-intro p {
        font-size: 8px;
    }

    .request-input {
        height: 41px;

        font-size: 8px;
    }

    .request-submit {
        height: 41px;

        font-size: 9px;
    }

    .request-bottom {
        gap: 13px;
    }

    .contact-item span {
        font-size: 8px;
    }

    .request-footer p {
        font-size: 6.5px;
    }
}

/* =========================================
   OPAZ MISSION SECTION
========================================= */

.opaz-mission-section {
    width: 100%;
    padding: 30px 0;
    background: #d4ddeb2e;
    overflow: hidden;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.opaz-mission-wrapper {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns:
        42%
        32%
        26%;

    overflow: hidden;

    border-radius: 8px;
}


/* =========================================
   LEFT COLUMN
========================================= */

.opaz-about {
    position: relative;

    min-width: 0;

    padding: 20px 38px 20px 42px;

    z-index: 3;
}


/* =========================================
   LEFT TITLE
========================================= */

.opaz-about-title {
    display: flex;

    align-items: flex-start;

    margin-bottom: 17px;
}


/* =========================================
   OPAZ ICON
========================================= */

.opaz-about-icon {
    flex: 0 0 72px;

    width: 72px;
    height: 88px;

    margin-right: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #082d62;

    clip-path: polygon(
        50% 0,
        100% 22%,
        100% 78%,
        50% 100%,
        0 78%,
        0 22%
    );
}

.opaz-about-icon img {
    width: 45px;
    height: 45px;

    object-fit: contain;
}


/* =========================================
   LEFT HEADING
========================================= */

.opaz-about-title h2 {
    margin: 11px 0 0;
    color: #092d5d;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}


/* =========================================
   LEFT CONTENT
========================================= */

.opaz-about-content {
    padding-left: 35px;
}
.opaz-about-content p {
    margin: 0px 0 15px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    text-align: justify;
}

.opaz-about-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   MIDDLE COLUMN
========================================= */
.mission-column {
    position: relative;
    min-width: 0;
    z-index: 3;
    border-left: 1px solid #bbb;
    padding-left: 20px;
}


/* =========================================
   MISSION HEADING
========================================= */

.mission-heading {
    margin-bottom: 20px;
}

.mission-heading h2 {
    margin: 0;
    color: #092d5d;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.mission-heading span {
    display: block;

    width: 50px;
    height: 3px;

    margin-top: 9px;

    background: #c99b32;
}


/* =========================================
   MISSION POINT
========================================= */

.mission-point {
    display: flex;

    align-items: flex-start;

    width: 100%;
}


/* =========================================
   MISSION ICON
========================================= */

.mission-icon {
    flex: 0 0 66px;

    width: 66px;
    height: 66px;

    margin-right: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #082d62;
}

.mission-icon img {
    width: 42px;
    height: 42px;

    object-fit: contain;
}


/* =========================================
   MISSION CONTENT
========================================= */

.mission-point-content {
    flex: 1;

    min-width: 0;

    padding-top: 1px;
}

.mission-point-content p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    text-align: justify;
}
.opaz-about-content {
    border-left: 1px solid #bbbbbb;
    margin-left: 35px;
}

/* =========================================
   MISSION DIVIDER
========================================= */

.mission-divider {
    width: calc(100% - 80px);

    height: 1px;

    margin: 22px 0 22px 35px;

    background: #bbb;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.opaz-mission-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    min-height: 455px;

    overflow: hidden;

    /*
     * Curved / diagonal left edge
     * similar to the reference.
     */
    clip-path: polygon(
        10% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}

.opaz-mission-image img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/* =========================================
   1200px - 1499px
========================================= */

@media (min-width: 1200px) and (max-width: 1499px) {

    .opaz-mission-wrapper {
        min-height: 430px;

        grid-template-columns:
            42%
            33%
            25%;
    }

    .opaz-about {
        padding: 18px 30px 18px 35px;
    }

    .opaz-about-icon {
        flex-basis: 65px;

        width: 65px;
        height: 80px;
    }

    .opaz-about-icon img {
        width: 41px;
        height: 41px;
    }

    .opaz-about-title h2 {
        font-size: 18px;
    }

    .opaz-about-content {
        padding-left: 78px;
    }

    .opaz-about-content p {
        font-size: 9px;

        line-height: 1.6;

        margin-bottom: 15px;
    }

    .mission-column {
        padding: 22px 20px 18px;
    }

    .mission-heading h2 {
        font-size: 17px;
    }

    .mission-icon {
        flex-basis: 60px;

        width: 60px;
        height: 60px;

        margin-right: 14px;
    }

    .mission-icon img {
        width: 38px;
        height: 38px;
    }

    .mission-point-content p {
        font-size: 9px;
    }

    .mission-divider {
        margin-top: 19px;
        margin-bottom: 19px;
    }

    .opaz-mission-image {
        min-height: 430px;
    }
}


/* =========================================
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .opaz-mission-wrapper {
        min-height: 400px;

        grid-template-columns:
            42%
            34%
            24%;
    }

    .opaz-about {
        padding: 18px 22px 18px 25px;
    }

    .opaz-about-title {
        margin-bottom: 13px;
    }

    .opaz-about-icon {
        flex-basis: 58px;

        width: 58px;
        height: 70px;

        margin-right: 10px;
    }

    .opaz-about-icon img {
        width: 37px;
        height: 37px;
    }

    .opaz-about-title h2 {
        margin-top: 7px;

        font-size: 15px;
    }

    .opaz-about-content {
        padding-left: 68px;
    }

    .opaz-about-content p {
        margin-bottom: 12px;

        font-size: 8px;

        line-height: 1.55;
    }

    .mission-column {
        padding: 20px 15px;
    }

    .mission-heading {
        margin-bottom: 16px;
    }

    .mission-heading h2 {
        font-size: 15px;
    }

    .mission-heading span {
        width: 43px;
        height: 2px;

        margin-top: 7px;
    }

    .mission-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;

        margin-right: 11px;
    }

    .mission-icon img {
        width: 33px;
        height: 33px;
    }

    .mission-point-content p {
        font-size: 7.5px;

        line-height: 1.55;
    }

    .mission-divider {
        width: calc(100% - 60px);

        margin: 16px 0 16px 25px;
    }

    .opaz-mission-image {
        min-height: 400px;
    }
}


/* =========================================
   768px - 991px
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .opaz-mission-wrapper {
        min-height: 500px;

        grid-template-columns:
            1fr 1fr;
    }

    .opaz-about {
        padding: 20px 25px;
    }

    .mission-column {
        padding: 25px 20px;
    }

    .opaz-mission-image {
        grid-column: 1 / -1;

        min-height: 300px;

        clip-path: none;
    }

    .opaz-about-title h2 {
        font-size: 18px;
    }

    .opaz-about-content {
        padding-left: 0;
    }

    .opaz-about-content p {
        font-size: 9px;
    }

    .mission-heading h2 {
        font-size: 18px;
    }

    .mission-point-content p {
        font-size: 9px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .opaz-mission-section {
        padding: 15px 0;
    }

    .opaz-mission-wrapper {
        display: flex;

        flex-direction: column;

        min-height: auto;

        border-radius: 8px;
    }


    /* Left */

    .opaz-about {
        width: 100%;

        padding: 22px 18px;

        border-right: 0;

        border-bottom: 1px solid #e2e6ea;
    }

    .opaz-about-title h2 {
        font-size: 20px;
    }

    .opaz-about-content {
        padding-left: 0;
    }

    .opaz-about-content p {
        font-size: 10px;

        line-height: 1.6;
    }


    /* Middle */

    .mission-column {
        width: 100%;

        padding: 22px 18px;

        border-bottom: 1px solid #e2e6ea;
    }

    .mission-heading h2 {
        font-size: 19px;
    }

    .mission-icon {
        flex-basis: 60px;

        width: 60px;
        height: 60px;
    }

    .mission-point-content p {
        font-size: 10px;

        line-height: 1.6;
    }


    /* Image */

    .opaz-mission-image {
        width: 100%;

        min-height: 300px;

        height: 300px;

        clip-path: none;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .opaz-about {
        padding: 20px 15px;
    }

    .opaz-about-title {
        margin-bottom: 15px;
    }

    .opaz-about-icon {
        flex-basis: 58px;

        width: 58px;
        height: 70px;

        margin-right: 10px;
    }

    .opaz-about-icon img {
        width: 35px;
        height: 35px;
    }

    .opaz-about-title h2 {
        margin-top: 5px;

        font-size: 17px;
    }

    .opaz-about-content p {
        font-size: 9px;

        line-height: 1.55;
    }

    .mission-column {
        padding: 20px 15px;
    }

    .mission-heading h2 {
        font-size: 17px;
    }

    .mission-icon {
        flex-basis: 53px;

        width: 53px;
        height: 53px;

        margin-right: 10px;
    }

    .mission-icon img {
        width: 34px;
        height: 34px;
    }

    .mission-point-content p {
        font-size: 9px;

        line-height: 1.55;
    }

    .mission-divider {
        width: calc(100% - 55px);

        margin: 18px 0 18px 25px;
    }

    .opaz-mission-image {
        min-height: 250px;
        height: 250px;
    }
}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 399px) {

    .opaz-about-title h2 {
        font-size: 15px;
    }

    .opaz-about-content p {
        font-size: 8px;
    }

    .mission-heading h2 {
        font-size: 15px;
    }

    .mission-point-content p {
        font-size: 8px;
    }

    .mission-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .mission-icon img {
        width: 30px;
        height: 30px;
    }

    .opaz-mission-image {
        min-height: 220px;
        height: 220px;
    }
}

#home,
#sec1,
#sec2,
#sec3,
#sec4,
#about,
#sec6,
#sec8,
#sec9 {
    scroll-margin-top: 120px;
}

/* Whatsapp */
.whatsapp-name {
font-size: 14px;
font-weight: 600;
padding-bottom: 0;
margin-bottom: 0;
line-height: 0.5;
color: #fff;
}
#whatsapp-chat {
box-sizing: border-box !important;
outline: none !important;
position: fixed;
width: 350px;
border-radius: 10px;
box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
bottom: 230px;
right: 32px;
overflow: hidden;
z-index: 99;
animation-name: showchat;
animation-duration: 1s;
transform: scale(1);
}
a.blantershow-chat {
background: none !important;
color: #404040;
position: fixed;
display: flex;
font-weight: 400;
justify-content: space-between;
z-index: 1002;
bottom: 180px;
right: 20px;
font-size: 18px;
height: 45px;
width: 45px;
padding: 4px;
border-radius: 30px;
/box-shadow: 0 1px 15px rgb(32 33 36 / 61%);/
}
a.blantershow-chat svg {
transform: scale(1.2);
}
.header-chat {
    background: #1e4080;
    color: #fff;
    padding: 20px;
}
.header-chat h3 {
margin: 0 0 10px;
}
.header-chat p {
font-size: 14px;
line-height: 1.7;
margin: 0;
}
.info-avatar {
position: relative;
}
.info-avatar img {
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
    padding: 5px;
}
a.informasi {
padding: 20px;
display: block;
overflow: hidden;
animation-name: showhide;
animation-duration: 0.5s;
}
a.informasi:hover {
background: #f1f1f1;
}
.info-chat span {
display: block;
}
#get-label,
span.chat-label {
font-size: 12px;
color: #888;
}
#get-nama,
span.chat-nama {
margin: 5px 0 0;
font-size: 15px;
font-weight: 700;
color: #222;
}
#get-label,
#get-nama {
color: #fff;
}
span.my-number {
display: none;
}
textarea#chat-input {
border: none;
width: 100%;
height: 46px;
outline: none;
resize: none;
padding: 9px;
font-size: 14px;
border-radius: 0px;
min-height: 50px;
}
a#send-it {
font-weight: 700;
padding: 10px 10px 0;
background: #eee;
}
a#send-it svg {
fill: #a6a6a6;
height: 24px;
width: 24px;
}
.first-msg {
background: transparent;
padding: 30px;
text-align: center;
}
.first-msg span {
background: #e2e2e2;
color: #333;
font-size: 14.2px;
line-height: 1.7;
border-radius: 10px;
padding: 15px 20px;
display: inline-block;
}
.start-chat .blanter-msg {
display: flex;
}
#get-number {
display: none;
}
a.close-chat {
position: absolute;
top: 5px;
right: 15px;
color: #fff;
font-size: 30px;
}
@keyframes ZpjSY {
0% {
background-color: #b6b5ba;
}
15% {
background-color: #111111;
}
25% {
background-color: #b6b5ba;
}
}
@keyframes hPhMsj {
15% {
background-color: #b6b5ba;
}
25% {
background-color: #111111;
}
35% {
background-color: #b6b5ba;
}
}
@keyframes iUMejp {
25% {
background-color: #b6b5ba;
}
35% {
background-color: #111111;
}
45% {
background-color: #b6b5ba;
}
}
@keyframes showhide {
from {
transform: scale(0.5);
opacity: 0;
}
}
@keyframes showchat {
from {
transform: scale(0);
opacity: 0;
}
}
@media screen and (max-width: 480px) {
#whatsapp-chat {
width: auto;
left: 5%;
right: 5%;
font-size: 80%;
}
}
@media screen and (max-width: 1200px) {
.index-page.show{
display: none !important;
}
}
#whatsapp-chat.hide {
display: none;
animation-name: showhide;
animation-duration: 0.5s;
transform: scale(1);
opacity: 1;
}
#whatsapp-chat.show {
display: block;
animation-name: showhide;
animation-duration: 0.5s;
transform: scale(1);
opacity: 1;
}
.whatsapp-message-container {
display: flex;
z-index: 1;
}
.whatsapp-message {
padding: 7px 14px 6px;
background-color: white;
border-radius: 0px 8px 8px;
position: relative;
transition: all 0.3s ease 0s;
opacity: 0;
transform-origin: center top 0px;
z-index: 2;
box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
margin-top: 4px;
margin-left: -54px;
max-width: calc(100% - 66px);
}
.whatsapp-chat-body {
padding: 4px 0px 0px 2px;
background-color: #e6ddd4;
position: relative;
}.whatsapp-chat-body::before {
display: block;
position: absolute;
content: "";
left: 0px;
top: 0px;
height: 100%;
width: 100%;
z-index: 0;
opacity: 0.08;
background-image: url("../../senthaa/image-senthaa/whatsapp-bg.webp");
}
.dAbFpq {
display: flex;
z-index: 1;
}
.eJJEeC {
background-color: white;
width: 52.5px;
height: 32px;
border-radius: 16px;
display: flex;
-moz-box-pack: center;
justify-content: center;
-moz-box-align: center;
align-items: center;
margin-left: 10px;
opacity: 0;
transition: all 0.1s ease 0s;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
.hFENyl {
position: relative;
display: flex;
}
.ixsrax {
height: 5px;
width: 5px;
margin: 0px 2px;
border-radius: 50%;
display: inline-block;
position: relative;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
top: 0px;
background-color: #9e9da2;
animation-name: ZpjSY;
}
.dRvxoz {
height: 5px;
width: 5px;
margin: 0px 2px;
background-color: #b6b5ba;
border-radius: 50%;
display: inline-block;
position: relative;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
top: 0px;
animation-name: hPhMsj;
}
.kAZgZq {
/*  padding: 7px 14px 6px;*/
/* background-color: white;
border-radius: 0px 8px 8px;*/
position: relative;
transition: all 0.3s ease 0s;
opacity: 0;
transform-origin: center top 0px;
z-index: 2;
/*  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;*/
margin-top: 4px;
margin-left: -54px;
max-width: calc(100% - 66px);
}
/*.kAZgZq::before {
position: absolute;
background-image: url("../../solar-image/images/whatsapp/side-extend.webp");
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: contain;
content: "";
top: 0px;
left: -12px;
width: 12px;
height: 19px;
}*/
.bMIBDo {
font-size: 13px;
font-weight: 700;
line-height: 18px;
color: #000;
}
.iSpIQi {
font-size: 14px;
line-height: 19px;
margin-top: 4px;
color: #111111;
}
.iSpIQi {
font-size: 14px;
line-height: 19px;
margin-top: 4px;
color: #111111;
}
.cqCDVm {
text-align: right;
margin-top: 4px;
font-size: 12px;
line-height: 16px;
color: rgba(17, 17, 17, 0.5);
margin-right: -8px;
margin-bottom: -4px;
}
.phone .phon1 {
position: fixed;
bottom: 135px;
right: 44px;
z-index: 9;
width: 35px;
}

.call-phone {
height: 40px;
z-index: 1003;
position: fixed;
right: 24px;
bottom: 120px;
border: 3px solid #fff;   /* White border */
border-radius: 50%;       /* Make it a circle */
}

/* BACK TO TOP */
.back-to-top{
    position:fixed;
    right:25px;
    bottom:55px;    
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .35s ease;
}

/* IMAGE */
.back-to-top img{
   width:35px;
    height:35px;
    object-fit:cover;
    display:block;
}

/* SHOW */
.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* HOVER */
.back-to-top:hover{
    background:#d94d1f;
    transform:translateY(-4px);
}
.bold {
    font-weight: 800;
}

/* =========================================
   SECTION 1
   COLUMN 1 + COLUMN 2
========================================= */

.oman-first-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}


/* =========================================
   SECTION 2
   COLUMN 3 + IMAGE
========================================= */

.oman-second-section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.oman-second-section .stakeholders-panel {
    height: 100%;
    padding: 0 100px;
}

.oman-second-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oman-second-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .oman-first-section {
        grid-template-columns: 1fr;
    }

    .oman-second-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oman-second-image {
        order: 2;
    }

    .oman-second-section .stakeholders-panel {
        order: 1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .oman-first-section {
        gap: 20px;
    }

    .oman-second-section {
        gap: 20px;
        margin-top: 20px;
    }

    .oman-second-image img {
        width: 100%;
    }

}

.oman-second-section .oman-panel{
    border: unset;
}