@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
    --clr--mbblue: 36, 56, 128; /* #243880 */
    --clr--mborange: 235, 145, 46; /* #EB912E */
    --clr--lightblue: 245, 245, 245; /* #F5F5F5 */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--rubik: "Rubik", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background: rgb(var(--clr--white));
    box-shadow: inset 2px 2px 3px rgba(var(--clr--black), 0.1);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: rgb(var(--clr--mborange));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--black), 0.1);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.news-grid__news-wrapper::-webkit-scrollbar-thumb {
    background: rgb(var(--clr--mbblue));
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: clamp(15px, 1vw, 21px);
    font-weight: 400;
    font-family: var(--fnt--rubik);
    line-height: 1.2;
    background: rgb(var(--clr--white));
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgb(var(--clr--primary--blue));
    font-family: var(--fnt--rubik);
    margin: 5px 0;
    line-height: 1.1;
    font-weight: 600;
}

h1 {
    font-size: clamp(30px, 2.5vw, 60px);
}

h2 {
    font-size: clamp(22px, 1.8vw, 42px);
}

h3 {
    font-size: clamp(19px, 1.1vw, 36px);
}

h4 {
    font-size: clamp(18px, 1.0vw, 27px);
}

h5 {
    font-size: clamp(16px, 0.9vw, 23px);
}

h6 {
    line-height: 1.3;
}

p,
ul, ol {
    font-size: clamp(14px, 1.15vw, 18px);
    font-weight: 400;
    line-height: 1.3;
}

p:nth-last-of-type(1) {
    margin-bottom: 0;
}

ul, ol {
    padding-left: 20px;
}

ul.copy-lists {
    padding-left: 0;
    list-style: none;
}

ul.copy-lists li {
    color: rgb(var(--clr--mbblue));
    font-size: 24px;
    padding-left: 25px;
    margin-bottom: 20px;
    background: url("/wp-content/uploads/2025/05/icon-chevron-right-blue.svg") no-repeat 5px 10px;
}

.small,
small {
    font-weight: 400;
    line-height: 1.4;
    font-size: 14px !important;
}

.large-text > p {
    font-size: clamp(19px, 1.3vw, 36px);
}

a {
    color: currentColor;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    width: 100%;
}

.section-row {
    padding: 5rem 12px;
    position: relative;
}

.section-row-small {
    padding: 2rem 12px;
    position: relative;
}

.section-row-large {
    padding: 8rem 12px;
    position: relative;
}

section {
    position: relative;
}

.titles {
    position: relative;
    margin-bottom: 30px;
}

.titles * {
    color: rgb(var(--clr--mbblue));
    font-size: clamp(24px, 2.1vw, 36px);
    text-align: center;
    margin: 0;
}

.title-absolute {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.title-wrapper {
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.title-wrapper .titles {
    margin: 0;
}

.text-highlighter {
    color: rgb(var(--clr--mborange));
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700,
strong {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

/* ====== COLORS ====== */
.clr--mbblue {
    color: rgb(var(--clr--mbblue));
}

.clr--mborange {
    color: rgb(var(--clr--mborange));
}

.clr--black {
    color: rgb(var(--clr--black));
}

.clr--white {
    color: rgb(var(--clr--white));
}

.bgclr--mbblue {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mbblue));
}

.bgclr--mborange {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mborange));
}

.bgclr--black {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--black));
}

.bgclr--white {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
}

/* Fonts */
.fnt--rubik {
    font-family: var(--fnt--rubik);
}

/* Input Fields */
.form-control {
    color: rgb(var(--clr--mbblue));
    font-family: var(--fnt--rubik);
    font-size: clamp(16px, 1vw, 24px);
    font-weight: 400;
    line-height: 1.1;
    min-height: 30px;
    padding: 15px 25px;
    background-color: rgb(var(--clr--white));
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: inset 0px 3px 6px rgba(var(--clr--black), 0.15);
}

.form-control:focus {
    color: rgb(var(--clr--mbblue));
    background-color: rgb(var(--clr--white));
    outline: 0;
    border: 1px solid rgb(var(--clr--mbblue));
    box-shadow: none;
    transition: ease-in .3s;
    -webkit-transition: ease-in .3s;
    -moz-transition: ease-in .3s;
    -ms-transition: ease-in .3s;
    -o-transition: ease-in .3s;
}

textarea.form-control {
    min-height: 120px;
}

select.form-control {
    color: rgb(var(--clr--mbblue));
    background: rgb(var(--clr--white))url("/wp-content/uploads/2025/07/select-dropdown-blue-icon.png");
    background-position: calc(100% - 9px) calc(100% - 9px);
    background-repeat: no-repeat;
    background-size: 30px;
    padding: 16px 45px 17px 25px !important;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
}

select.form-control:hover {
    color: rgb(var(--clr--mbblue));
    background: rgb(var(--clr--white)) url("/wp-content/uploads/2025/07/select-dropdown-white-icon.png");
    background-position: calc(100% - 9px) calc(100% - 9px);
    background-repeat: no-repeat;
    background-size: 30px;
}

.form-control::-webkit-input-placeholder {
    color: rgba(var(--clr--mbblue), .4);
}

.form-control:-ms-input-placeholder {
    color: rgba(var(--clr--mbblue), .4);
}

.form-control::placeholder {
    color: rgba(var(--clr--mbblue), .4);
}

.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control[type=number] {
  -moz-appearance: textfield;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0 solid rgb(var(--clr--white));
    border-bottom: 1px solid rgb(var(--clr--white));
    -webkit-text-fill-color: var(--clr--mbblue);
    box-shadow: 0 0 0px 1000px rgba(var(--clr--white), 0.1) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--white), 0.1) inset;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
    width: 100%;
    margin-top: 2px;
    font-size: clamp(13px, 1.6vw, 16px);
    color: rgb(var(--clr--white));
    padding: 5px;
    text-align: left;
    line-height: 1;
    background-color: rgb(255, 17, 0);
    font-weight: 400;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.grid-two > * {
    width: calc((100% / 2) - 8px) !important;
}

.grid-three > * {
    width: calc((100% / 3) - 19px) !important;
}

.grid-four > * {
    width: calc((100% / 4) - 19px) !important;
}

.grid-five > * {
    width: calc((100% / 5) - 19px) !important;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: clamp(15px, 1.2vw, 28px);
    font-weight: 500 !important;
    color: rgb(var(--clr--mbblue));
    line-height: 1.1;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
    width: fit-content;
    padding: 10px 60px;
    border: none;
    position: relative;
}

.btn:hover,
a:hover {
    text-decoration: none;
}

.btn:focus {
    outline: none;
    box-shadow: none !important;
}

.btn i {
    margin-left: 10px;
}

.primary--btn {
    color: rgb(var(--clr--mbblue));
    background-color: transparent;
    border: 3px solid rgb(var(--clr--mbblue));
}

.primary--btn:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mbblue));
    border: 3px solid rgb(var(--clr--mbblue));
}

.secondary--btn {
    font-size: clamp(15px, 1vw, 18px);
    color: rgb(var(--clr--white));
    background-color: transparent;
    border: 2px solid rgb(var(--clr--white));
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.secondary--btn:hover {
    color: rgb(var(--clr--mbblue));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--white));
}

/* OWL CAROUSEL */
.owl-loaded {
    width: 100%;
    position: relative;
}

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

.owl-stage {
    display: flex;
}

.owl-item {
    padding: 20px 5px;
    vertical-align: top;
    display: flex;
    justify-content: center;
}

.owl-nav {
    width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
    font-size: 21px;
    color: rgb(var(--clr--mbblue));
    font-weight: 700;
    background-color: transparent;
    border: 0;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next{
    right: 0;
}

.owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    background: rgba(var(--clr--mbblue), .3);
    border: 0;
    border-radius: 50%;
}

.owl-dots button.owl-dot.active {
    background: rgb(var(--clr--mbblue));
}

.owl-loaded .disabled {
    display: none;
}

/* Carousel Styles */
.testimonials-section__items,
.stats-section__items,
.partners-section__items,
.news-section__articles {
    position: relative;
    display: flex;
    gap: 50px;
    overflow: hidden;
}

.testimonials-section__items.owl-loaded,
.stats-section__items.owl-loaded,
.partners-section__items.owl-loaded,
.news-section__articles.owl-loaded {
    display: block;
    overflow: visible;
}

.testimonials-section__items .testimonials-section__items-single,
.stats-section__items .stats-section__item-single,
.partners-section__items .partners-section__item-single,
.news-section__articles .news-section__articles-single {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
}

.testimonials-section__items > .testimonials-section__items-single ,
.stats-section__items > .stats-section__item-single,
.partners-section__items > .partners-section__item-single,
.news-section__articles > .news-section__articles-single {
    position: relative;
    overflow: hidden;
}

.testimonials-section__items > .testimonials-section__items-single {
    min-width: 100%;
}

.stats-section__items > .stats-section__item-single,
.partners-section__items > .partners-section__item-single {
    min-width: calc((100% / 4) - 38px);
}

.news-section__articles .news-section__articles-single {
    min-width: calc((100% / 3) - 33px);
}

.partners-section__items > .partners-section__item-single {
    height: 115px;
}

.testimonials-section__items > .testimonials-section__items-single:before,
.stats-section__items > .stats-section__item-single:before,
.partners-section__items > .partners-section__item-single:before,
.news-section__articles > .news-section__articles-single:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(241, 241, 241);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.row > * {
    position: relative;
}

/* ====== HEADER ====== */
.header {
    width: 100%;
    padding: 10px 0;
    /* position: relative;
    z-index: 9; */
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header {
    background-color: rgb(var(--clr--white));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    transform: translateY(0);
}

.header__logo {
    max-width: 150px;
    padding: 10px 0;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header .header__logo {
    max-width: 110px;
    padding: 0;
}

.header__logo img {
    height: auto;
    position: relative;
}

/* ====== NAVIGATION ====== */
.header__navbar--container {
    background: rgba(var(--clr--white), .8);
    backdrop-filter: blur(100px);
    padding: 0;
    border-radius: 10px;
}

.header__navbar_collapse {
    justify-content: flex-end;
}

.header__navbar {
    justify-content: space-between;
}

ul#menu-menu,
ul#header__navbar--menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__navbar_collapse.collapsing {
    height: unset !important;
}

.header__navbar .navbar-nav .nav-link,
.menu-item a {
    color: rgb(var(--clr--mbblue));
    font-size: clamp(13px, 0.7vw, 18px);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 12px;
    display: block;
}

.header__navbar .navbar-nav .active-nav .nav-link,
.header__navbar .navbar-nav .nav-link:hover,
.menu-item.current-menu-item a,
.menu-item:hover a {
    color: rgb(var(--clr--mborange));
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav,
ul#menu-menu li.menu-item ul.sub-menu {
    min-width: 250px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: rgb(226, 226, 226);
    border: none;
    border-radius: 10px;
    position: absolute;
    z-index: 9;
    display: none;
}

.header__navbar .navbar-nav li.nav-item:hover ul.sub-nav,
ul#menu-menu li.menu-item:hover ul.sub-menu {
    display: block;
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav li a,
ul#menu-menu li.menu-item ul.sub-menu li a {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav li a:hover,
ul#menu-menu li.menu-item ul.sub-menu li a:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mborange));
}

.nav-btn a {
    color: rgb(var(--clr--white)) !important;
    font-weight: 500;
    background-color: rgb(var(--clr--mborange));
    padding: 6px 30px !important;
    margin-left: 15px;
    border: 2px solid rgb(var(--clr--mborange));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.nav-btn a:hover {
    color: rgb(var(--clr--mborange)) !important;
    background-color: rgb(var(--clr--white));
}

.nav-btn iframe {
    margin-left: 15px;
}

.header__navbar_toggler {
    border: 0;
}

.header__navbar_toggler:focus {
    box-shadow: unset;
}

.header__navbar_icon {
    background-color: rgb(var(--clr--mborange));
    width: 32px;
    height: 3px;
    margin: 6px 0;
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
    opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
    opacity: 1 !important;
    transform: rotate(0deg) translate(0px, 0px) !important;
    -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
    -moz-transform: rotate(0deg) translate(0px, 0px) !important;
    -ms-transform: rotate(0deg) translate(0px, 0px) !important;
    -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

/* ====== Alignments ====== */
div[class*="cmm-align-"] {
    display: flex;
    align-items: center;
    gap: 35px;
}

.cmm-align-left {
    flex-direction: row;
}

.cmm-align-right {
    flex-direction: row-reverse;
}

.cmm-align-top {
    flex-direction: column;
}

.cmm-align-bottom {
    flex-direction: column-reverse;
}

.cmm-align-left > *,
.cmm-align-right > * {
    width: calc(50% - 18px);
}

.cmm-align-top > *,
.cmm-align-bottom > * {
    width: 100%;
}

.textimage--main--image {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.column-content {
    background: rgb(var(--clr--white));
    padding: 10px;
}

/* ====== HERO SECTION ====== */
.hero-banner {
    background: url("/wp-content/uploads/2025/07/bg-pattern.png") no-repeat 0 0 / cover;
}

.gutter-top {
    padding-top: 135px;
}

.hero-banner__left-panel {
    position: relative;
    min-height: 580px;
}

.hero-banner__left-panel-single {
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.hero-banner__left-panel-single-active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.hero-banner__left-panel-single:not(.hero-banner__left-panel-single-active) {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-banner__left-panel-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-banner__left-panel-heading {
    color: rgb(var(--clr--mbblue));
}

.hero-banner__left-panel-exerpt {
    font-size: clamp(18px, 1.0vw, 27px);
    color: rgb(var(--clr--mbblue));
}

.hero-banner__logo-grid {
    max-width: 360px;
    align-items: center;
}

.hero-banner__right-panel {
    display: flex;
    gap: 20px;
}

.hero-banner__right-panel-single .hero-banner__right-panel-item {
    width: 80px;
    height: 100%;
    position: relative;
    transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.hero-banner__right-panel-single {
    width: 80px;
    padding-top: 25px;
    border-radius: 15px;
}

.hero-banner__right-panel-single-active {
    width: calc(100% - ((80px + 20px) * 3));
}

.hero-banner__right-panel-single-active .hero-banner__right-panel-item {
    width: 100% ;
}

.hero-banner__right-panel-single-active .hero-banner__right-panel-item:before {
    content: "";
    background: linear-gradient(180deg,rgba(var(--clr--right), 0) 0%, rgba(var(--clr--right), 1) 100%);
    width: 100%;
    height: 75%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -ms-border-radius: 0 0 15px 15px;
    -o-border-radius: 0 0 15px 15px;
}

.hero-banner__right-panel-single .hero-banner__right-panel-image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.hero-banner__right-panel-single .hero-banner__right-panel-heading {
    background-color: rgba(var(--clr--right), .7);
    width: 580px;
    height: 80px;
    padding: 30px 20px;
    border: 0 solid rgb(var(--clr--white));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transform: translate(calc((50% - 40px) * -1), calc((50% - 290px) * -1)) rotate(90deg);
    -webkit-transform: translate(calc((50% - 40px) * -1), calc((50% - 290px) * -1)) rotate(90deg);
    -moz-transform: translate(calc((50% - 40px) * -1), calc((50% - 290px) * -1)) rotate(90deg);
    -ms-transform: translate(calc((50% - 40px) * -1), calc((50% - 290px) * -1)) rotate(90deg);
    -o-transform: translate(calc((50% - 40px) * -1), calc((50% - 290px) * -1)) rotate(90deg);
    transition: unset;
    -webkit-transition: unset;
    -moz-transition: unset;
    -ms-transition: unset;
    -o-transition: unset;
}

.hero-banner__right-panel-single-active .hero-banner__right-panel-heading {
    background-color: rgb(var(--clr--right));
    width: calc(100% - 100px);
    height: fit-content;
    padding: 10px 20px;
    border: 3px solid rgb(var(--clr--white));
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: all 800ms ease;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    -o-transition: all 800ms ease;
}

.hero-banner__right-panel-single .hero-banner__right-panel-heading > * {
    font-size: clamp(16px, 1vw, 36px);
    text-align: center;
    color: rgb(var(--clr--white));
    width: 540px;
    margin: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.hero-banner__right-panel-single-active .hero-banner__right-panel-heading > * {
    width: 100%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.hero-banner__right-panel-single .hero-banner__right-panel-body {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-banner__right-panel-single-active .hero-banner__right-panel-body {
    width: calc(100% - 60px);
    opacity: 1;
}

.hero-banner__right-panel-single-active .hero-banner__right-panel-excerpt {
    text-align: center;
    color: rgb(var(--clr--white));
}

.hero-banner__right-panel-btn {
    width: calc(100% - 160px);
    padding: 6px 20px;
}

.hero-two-banner {
    background: url("/wp-content/uploads/2025/07/hero-2-bg-pattern.png") no-repeat center center, linear-gradient(90deg, rgba(var(--clr--white), 1) 0%, rgba(var(--clr--white), 1) 50%, rgba(var(--clr--mbblue), 1) 50%, rgba(var(--clr--mbblue), 1) 100%);
    background-size: cover, cover;
    position: relative;
    overflow: hidden;
}

.hero-two-banner__left-panel,
.hero-two-banner__right-panel {
    position: relative;
}

.hero-two-banner__left-panel {
    z-index: 1;
}

.hero-two-banner__right-panel {
    z-index: 0;
}

.hero-two-banner__left-panel-wrapper,
.hero-two-banner__right-panel-wrapper {
    height: 65vh;
    display: flex;
    gap: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
    -moz-transition: opacity 0.4s ease, transform 0.4s ease;
    -ms-transition: opacity 0.4s ease, transform 0.4s ease;
    -o-transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-two-banner__left-panel-wrapper {
    opacity: 1;
    z-index: 1;
}

.hero-two-banner__right-panel-wrapper {
    opacity: 0;
    z-index: 0;
}

.hero-panel--animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
}

.hero-panel--animate-out {
  opacity: 0 !important;
  transform: translateY(10px) !important;
  -webkit-transform: translateY(10px) !important;
  -moz-transform: translateY(10px) !important;
  -ms-transform: translateY(10px) !important;
  -o-transform: translateY(10px) !important;
}

.hero-two-banner__left-panel-one,
.hero-two-banner__right-panel-one {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 9;
}

.hero-two-banner__left-panel-two,
.hero-two-banner__right-panel-two {
    width: 50%;
    position: relative;
    z-index: 0;
}

.hero-two-banner__left-panel-two .hero-two-banner__panel-image,
.hero-two-banner__right-panel-two .hero-two-banner__panel-image {
    height: 75vh;
    width: auto;
    max-width: unset;
    position: absolute;
    bottom: -105px;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    z-index: 0;
}

.hero-two-banner__left-panel-two .hero-two-banner__panel-image {
    aspect-ratio: 11 / 17;
    left: 100%;
}

.hero-two-banner__right-panel-two .hero-two-banner__panel-image {
    aspect-ratio: 158 / 150;
    left: 0%;
}

.hero-two-banner__left-panel-excerpt,
.hero-two-banner__right-panel-excerpt {
    font-size: clamp(19px, 1.6vw, 36px);
    font-weight: 500;
}

.hero-two-banner__left-panel-excerpt {
    color: rgb(var(--clr--mbblue));
}

.hero-two-banner__right-panel-excerpt {
    color: rgb(var(--clr--white));
}

.hero-two-banner__left-panel-btn {
    color: rgb(var(--clr--mbblue));
    padding: 10px 20px;
    margin-top: 25px;
    border-color: rgb(var(--clr--mbblue));
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.hero-two-banner__left-panel-btn:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mbblue));
    border-color: rgb(var(--clr--mbblue));
}

.hero-two-banner__right-panel-btn {
    color: rgb(var(--clr--white));
    padding: 10px 20px;
    margin-top: 25px;
    border-color: rgb(var(--clr--white));
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.hero-two-banner__btn-left,
.hero-two-banner__btn-right {
    font-size: clamp(32px, 3vw, 92px);
    display: block;
    width: 100%;
    padding: 0;
    padding-bottom: 35px;
}

.hero-two-banner__btn-left {
    text-align: left;
    color: rgb(var(--clr--mbblue));
}

.hero-two-banner__btn-right {
    text-align: right;
    color: rgb(var(--clr--white));
}

.hero-two-banner__btn-left:hover,
:not(.btn-check)+.hero-two-banner__btn-left:active,
.hero-two-banner__btn-right:hover,
:not(.btn-check)+.hero-two-banner__btn-right:active {
    color: rgb(var(--clr--mborange));
    text-decoration: underline;
}

.hero-panel--animate-in + .hero-two-banner__btn {
    text-decoration: underline;
}

/* ====== NEWS ====== */
.more-news {
    color: rgb(var(--clr--mborange));
    font-family: var(--fnt--rubik);
    font-size: clamp(18px, 1.4vw, 27px);
    font-weight: 700;
    text-decoration: none;
}

.more-news:hover {
    text-decoration: underline;
}

/* ====== NEWS ====== */
.news-section {
    background-color: rgb(var(--clr--lightblue));
}

.news-section__articles .owl-stage {
    padding-bottom: 60px;
}

.news-section__articles-single {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-section__articles-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.news-section__articles-image {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.news-section__articles-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.news-section__articles-date {
    color: rgb(var(--clr--mbblue));
    font-size: 15px;
}

.news-section__articles-titles {
    color: rgb(var(--clr--mbblue));
    font-weight: 500;
}

.news-section__articles-excerpt {
    color: rgb(var(--clr--mbblue));
    flex-grow: 1;
}

.news-section__articles-excerpt {
    line-clamp: 3;
}

.news-section__articles-btn {
    color: rgb(var(--clr--mbblue));
    text-decoration: none;
}

.news-section__articles-single:hover .news-section__articles-titles,
.news-section__articles-single:hover .news-section__articles-btn {
    text-decoration: underline;
}

.news-section__btn {
    font-size: 21px;
    font-weight: 700 !important;
    margin: -35px auto 0;
    display: block;
}

.news-section__articles .owl-nav.disabled {
    display: block;
}

/* ====== ABOUT ====== */
.about-section__excerpt > * {
    color: rgb(var(--clr--mbblue));
}

.about-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* ====== VIDEO PLAYER ====== */
.video-section__thumbnail-wrapper {
    position: relative;
    cursor: pointer;
}

.video-section__video-thumbnail,
.video-section__video-thumbnail-video {
    width: 100%;
    display: block;
    aspect-ratio: 135 / 86;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.video-section__thumbnail-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
}

.video-section__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
}

.video-section__player video {
    width: 100%;
    display: block;
}

.video-section__player .video-section__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.video-section__player .video-section__play-icon.hidden {
    display: none;
}

.video-section__modal-content {
    position: relative;
    border: 0;
    background-color: transparent;
}

.video-section__modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    border: 0;
}

.video-section__modal-body {
    padding: 0;
    background-color: transparent;
}

.video-section__modal-close-btn {
    background: rgba(var(--clr--white), 0);
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 1;
}

.video-section__modal-close-btn:focus {
    box-shadow: none;
}

.video-section__modal-close-btn:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-size: 24px;
    line-height: 18px;
    font-weight: 900;
    color: rgb(var(--clr--white));
}

.video-section__modal-close-btn:focus {
    background: rgba(var(--clr--white), 0);
    position: absolute;
    top: 30px;
    right: 30px;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
    background: url("/wp-content/uploads/2025/07/testimonials-bg.jpg") no-repeat 0 0 / cover;
    position: relative;
}

.testimonials-section:before {
    content: "";
    background-color: rgba(var(--clr--mbblue), .75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials-section__items {
    max-width: 600px;
    margin-inline: auto;
}

.testimonials-section__items .owl-stage-outer {
    overflow: visible;
}

.testimonials-section__items-single {
    color: rgb(var(--clr--mbblue));
    text-align: center;
    background-color: rgba(234, 234, 234, .6);
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

.owl-item.active .testimonials-section__items-single {
    background-color: rgb(234, 234, 234);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.testimonials-section__items-quote {
    font-style: italic;
}

.testimonials-section__items-author {
    font-size: clamp(16px, 1vw, 21px);
}

.testimonials-section__items .owl-nav button.owl-prev,
.testimonials-section__items .owl-nav button.owl-next{
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mborange));
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    position: absolute;
    top: 50%;
    bottom: inherit;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonials-section__items .owl-nav button.owl-prev {
    left: -40px;
}

.testimonials-section__items .owl-nav button.owl-next{
    right: -40px;
}

/* ====== PARTNERS ====== */
.parteners-section__title > *,
.parteners-section__title > * span {
    font-size: clamp(19px, 1.4vw, 36px);
}

/* ====== NEWSLETTER SECTION ====== */
.newsletter-section {
    background-color: rgb(var(--clr--lightblue));
}

.newsletter-section__title > * {
    font-size: clamp(19px, 1.3vw, 36px);
    font-style: italic;
    font-weight: 400;
}

.newsletter-section__title-name {
    font-size: clamp(19px, 1.3vw, 36px);
    font-weight: 500;
    display: block;
}

.newsletter-section__logo {
    width: 250px;
    margin: 35px auto 0;
    display: block;
}

.newsletter-section__form-wrapper {
    width: calc(100% - 50px);
    padding-left: 50px;
    margin-left: 50px;
    border-left: 1px solid rgb(var(--clr--mbblue));
}

.newsletter-section__form-title {
    color: rgb(var(--clr--mbblue));
    font-weight: 700;
}

.newsletter-section__form {
    margin-block: 35px;
}

.newsletter-section__form-btn,
.newsletter-section__form-btn:focus-visible {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mbblue));
    width: 100%;
    padding-inline: 15px;
}

.newsletter-section__form-btn:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mborange));
    border-color: rgb(var(--clr--mborange));
}

.signup_form_response {
    margin: 0;
}

.signup_form_response:empty {
    padding: 0;
    border: 0;
}

.newsletter-section__form-excerpt {
    font-size: clamp(15px, 1.0vw, 27px);
    color: rgb(var(--clr--mbblue));
}

/* ====== STATS ====== */
.stats-section__item-value {
    color: rgb(var(--clr--mbblue));
    font-size: clamp(42px, 4.5vw, 92px);
    font-weight: 700;
    text-align: center;
    display: block;
}

.stats-section__item-excerpt {
    color: rgb(var(--clr--mbblue));
    font-size: clamp(15px, 1.0vw, 27px);
    text-align: center;
}

/* ====== BENIFITS ====== */
.benifits-section {
    background-color: rgb(234, 234, 234);
}

.benifits-section__nav-tabs {
    justify-content: center;
    gap: 25px;
    border: 0;
}

.benifits-section__nav-link {
    color: rgb(var(--clr--mbblue)) !important;
    font-size: clamp(19px, 1.4vw, 42px);
    font-weight: 600;
    width: 300px;
    padding: 5px 50px !important;
    border: 3px solid rgb(var(--clr--mbblue)) !important;
    border-radius: 25px !important;
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    -ms-border-radius: 25px !important;
    -o-border-radius: 25px !important;
}

.benifits-section__nav-link:hover {
    background-color: rgb(var(--clr--white));
}

.benifits-section__nav-link-mentee.active {
    color: rgb(var(--clr--white)) !important;
    background-color: rgb(var(--clr--mbblue)) !important;
}

.benifits-section__nav-link-mentor.active {
    color: rgb(var(--clr--white)) !important;
    background-color: rgb(var(--clr--mborange)) !important;
    border-color: rgb(var(--clr--mborange)) !important;
}

.benifits-section__tab-content {
    margin-top: 35px;
}

.benifits-section__tab-content-wrapper {
    justify-content: center;
}

.benifits-section__tab-item {
    margin-top: 60px;
}

.benifits-section__tab-item-wrapper {
    color: rgb(var(--clr--mbblue));
    text-align: center;
    background-color: rgb(var(--clr--white));
    height: 100%;
    padding: 60px 60px 30px 60px;
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0px 8px 15px rgba(var(--clr--black), 0.15);
}

.benifits-section__tab-item-icon {
    background-color: rgb(var(--clr--mbblue));
    width: 90px;
    height: 90px;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 50%;
    border: 3px solid rgb(var(--clr--white));
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.benifits-section__tab-item-title {
    margin-bottom: 20px;
}

.benifits-section__tabs-btn {
    font-weight: 600 !important;
    color: rgb(var(--clr--mbblue));
    padding: 10px 20px;
    margin: 60px auto 0;
    display: block;
    border-color: rgb(var(--clr--mbblue));
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.benifits-section__tabs-btn:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mbblue));
    border-color: rgb(var(--clr--mbblue));
}

/* ====== FORMS PAGE ====== */
.form-section {
    background: url("/wp-content/uploads/2025/07/bg-pattern.png") no-repeat 0 0 / cover;
}

.form-section__form-wrapper {
    background-color: rgb(var(--clr--mbblue));
    width: 100%;
    max-width: 992px;
    padding: 30px 40px;
    margin-inline: auto;
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.form-section__form-title {
    color: rgb(var(--clr--white));
    font-size: clamp(22px, 1.4vw, 42px);
    text-align: center;
    margin-bottom: 15px;
}

.form-section__form-excerpt {
    color: rgb(var(--clr--white));
    text-align: center;
    width: 100%;
    max-width: 575px;
    margin: 0 auto 20px !important;
}

.form-section__form-wrapper .form-control:focus {
    border-color: rgb(var(--clr--mborange));
}

.form-section__form-submit-btn {
    color: rgb(var(--clr--white));
    font-weight: 600 !important;
    background-color: rgb(var(--clr--mborange));
    width: 100%;
    border-color: rgb(var(--clr--mborange));
}

.form-section__form-submit-btn:hover {
    color: rgb(var(--clr--mbblue));
    background-color: rgb(var(--clr--white));
    border-color: rgb(var(--clr--white));
}

.form-section__form-footer {
    color: rgb(var(--clr--white));
    text-align: center;
    width: 100%;
    max-width: 575px;
    margin: 20px auto 0 !important;
}

.form-section__form-footer a {
    display: inline-block;
}

.form-section__form-success-alert {
    background-color: rgba(var(--clr--mbblue), .95);
    width: 100%;
    height: 100%;
    padding: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
    -ms-transition: opacity 0.5s ease, visibility 0.5s ease;
    -o-transition: opacity 0.5s ease, visibility 0.5s ease;
}

.form-section__form-success-alert.fade-out {
    opacity: 0;
    visibility: hidden;
}

.form-section__form-success-heading {
    color: rgb(var(--clr--white));
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.form-section__form-success-back-btn {
    color: rgb(var(--clr--white));
    border-color: rgb(var(--clr--white));
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.form-section__form-success-back-btn:hover {
    color: rgb(var(--clr--mbblue));
    background-color: rgb(var(--clr--white));
    border-color: rgb(var(--clr--white));
}

.form-section__form-success-close-btn {
    font-size: 24px;
    color: rgb(var(--clr--white));
    text-decoration: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(var(--clr--white));
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* ====== NEWS GRID ====== */
.news-grid {
    background: url("/wp-content/uploads/2025/07/bg-pattern.png") no-repeat 0 0 / cover;
}

.news-grid__wrapper {
    background: rgb(var(--clr--white));
    padding: 35px;
    box-shadow: 0px 0px 30px rgba(var(--clr--black), 0.15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.news-grid__header-wrapper {
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.news-grid__header-title {
    margin: 0;
}

.news-grid__filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-grid__filter select {
    font-size: 16px;
    text-align: center;
    max-width: 230px;
    padding: 10px 45px 10px 10px !important;
    background-position: calc(100% - 4px) calc(100% - 4px);
    border: 2px solid rgb(var(--clr--mbblue));
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.news-grid__filter select:hover,
.news-grid__filter select:focus {
    color: rgb(var(--clr--white));
    background: rgb(var(--clr--mbblue)) url("/wp-content/uploads/2025/07/select-dropdown-white-icon.png");
    background-position: calc(100% - 4px) calc(100% - 4px);
    background-repeat: no-repeat;
    background-size: 30px;
    border: 2px solid rgb(var(--clr--mbblue));
}

.news-grid__news-wrapper {
    gap: 28px;
}

.news-grid__news-item {
    background: rgb(var(--clr--white));
    box-shadow: 0px 7px 9px rgba(var(--clr--black), 0.15);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.news-grid__news-item .news-grid__news-image {
    background: url("/wp-content/uploads/2025/07/news-placeholder.png") no-repeat 50%;
    background-size: cover;
    width: 100%;
    height: unset;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.news-grid__news-item .news-grid__news-image img {
    width: 100%;
    height: unset;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.news-grid__news-copy {
    text-align: left;
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-grid__news-copy-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-grid__news-title {
    font-size: clamp(18px, 1.2vw, 42px);
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-grid__news-copy p {
    font-size: clamp(15px, 0.8vw, 18px);
    color: rgba(var(--clr--black), .6);
}

.news-grid__news-copy p:not(.news-grid__news-date) {
    line-clamp: 3;
}

.news-grid__news-more-btn {
    font-size: clamp(17px, 0.9vw, 28px);
    color: rgb(var(--clr--white));
    width: 100%;
    padding: 5px;
    background-color: rgb(var(--clr--mbblue));
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.news-grid__news-more-btn:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mborange));
    border: 0;
}

.news-grid__news-pagination .pagination,
.news-grid__news-pagination:not(:has(.pagination)) {
    width: 100%;
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.news-grid__news-pagination:not(:has(.prev)) {
    justify-content: flex-end;
}

.news-grid__news-pagination .page-numbers {
    display: none;
}

.news-grid__news-pagination .prev,
.news-grid__news-pagination .next {
    display: inline-block;
    font-size: 17px;
    color: rgb(var(--clr--black));
    text-decoration: none;
}

.news-grid__news-pagination .prev:hover,
.news-grid__news-pagination .next:hover {
    color: rgb(var(--clr--mborange));
}

.news-grid__news-pagination .prev {
    float: left;
}

.news-grid__news-pagination .next {
    float: right;
}

.news-grid__news-pagination .next,
.news-grid__news-pagination .prev {
    font-size: 21px;
    color: rgb(var(--clr--black));
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ====== ARTICLES ====== */
.single-article {
    background: url("/wp-content/uploads/2025/07/bg-pattern.png") no-repeat 0 0 / cover;
}

.single-article__wrapper {
    background-color: rgb(var(--clr--white));
    padding: 25px;
    box-shadow: 0px 0px 30px rgba(var(--clr--black), 0.15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.single-article__feature-image{
    max-height: 600px;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    display: block !important;
    margin: 0 auto 35px !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-article__content-title {
    color: rgb(var(--clr--mbblue));
    font-size: clamp(24px, 2.1vw, 60px);
    margin-bottom: 35px;
}

/* ====== ERROR ====== */
.error-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    background: url("/wp-content/uploads/2025/07/bg-pattern.png") no-repeat 0 0 / cover;
}

.error-section__error {
    color: rgb(var(--clr--mborange));
    font-size: clamp(48px, 5vw, 92px);
    font-weight: 700;
}

.error-section__error-note {
    color: rgb(var(--clr--mbblue));
}

.error-section__error-btn {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--mbblue));
    margin-top: 30px;
}

.error-section__error-btn:hover {
    background-color: rgb(var(--clr--mborange));
    border-color: rgb(var(--clr--mborange));
}

/* ====== FOOTER ====== */
.footer {
    background-color: rgb(var(--clr--lightblue));
}

.footer__social-links {
    width: 200px;
    padding: 0;
    margin: 0 auto 30px;
    list-style: none;
    justify-content: center;
}

.footer__social-icons a {
    font-size: 21px;
    color: rgb(var(--clr--white));
    text-decoration: none;
    background-color: rgb(var(--clr--mbblue));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer__social-icons a:hover {
    background-color: rgb(var(--clr--mborange));
}

.pe-none {
    opacity: 0.7;
}