.banner-section {
    min-height: 100vh;
    background: #EFEFEF;
}

.owl-carousel.owl-theme.banner-slider {
    height: 80vh;
}

.owl-carousel.owl-theme.banner-slider.owl-loaded.owl-drag .item {
    position: relative;
    height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 1;
    transition: transform 0.5s ease-in-out;

}

.owl-carousel.owl-theme.banner-slider.owl-loaded.owl-drag .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88%;
    /* object-fit: cover;*/
    z-index: -1;
    transition: transform 0.5s ease-in-out;
}

.owl-carousel.owl-theme.banner-slider.owl-loaded.owl-drag .item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transition: transform 0.5s ease-in-out;
}

.owl-carousel.owl-theme.banner-slider.owl-loaded.owl-drag .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 78%), rgb(0 0 0 / 14%));
    z-index: 0;
}


.line-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
    align-items: center;
}

.line-indicator span {
    height: 9px;
    width: 9px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.line-indicator .active {
    opacity: 1;
    border-radius: 2px;
    width: 34px;
    height: 6px;
}

.banner-slider .owl-nav {
    position: absolute;
    bottom: 40px;
    right: 90px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

input.searchbar-text::placeholder {
    color: #032C48;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;

}

.banner-slider .owl-nav .owl-prev,
.banner-slider .owl-nav .owl-next {
    background: rgb(255 255 255 / 86%);
    border: none;
    color: #000;
    padding: 10px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 25px;
    border-radius: 50%;
}

.banner-slider .owl-nav span {
    background-color: #fff;
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
}

.text-banner h1 {
    font-family: Poppins;
    font-size: 75px;
    font-weight: 500;
    line-height: 78px;
    text-align: left;
    width: 50%;
    color: #ffff;
}

.text-banner {
    width: 90%;
    z-index: 10;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

header {
    padding: 0px 0px;
    position: sticky;
    top: 0px;
    z-index: 100;
    backdrop-filter: blur(7px);
    background: linear-gradient(157.56deg, rgb(255 255 255 / 75%) 15.97%, rgb(255 255 255 / 61%) 78.01%);
}

.tittle-our h2 {
    font-family: Poppins;
    text-align: center;
    font-size: 46px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
}

section.approach-section {
    background: #EFEFEF;
    padding: 35px 0px;
}

.tittle-our {
    padding-bottom: 25px;
}

.approach-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.approach-img {
    width: 40%;
}

.approach-text {
    width: 60%;
}

.approach-img img {
    width: 80%;
    border-radius: 20px;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
}

.approach-faq {
    border-bottom: 1px solid var(--lightgray);
}

.approach-faq-item {
    border-bottom: 1px solid #171A20;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.approach-faq-item img {
    width: 25px;
    padding-top: 18px;
}

.approach-faq-item button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 9px 0;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.approach-faq-item button:hover,
.approach-faq-item button:focus {
    cursor: pointer;
    color: var(--blue);
}

.approach-faq-item button:hover::after,
.approach-faq-item button:focus::after {
    cursor: pointer;
    color: var(--blue);
    border: 1px solid var(--blue);
}

.approach-faq-title {
    padding: 1em 1.5em 1em 0;
}

.approach-faq-icon {
    display: inline-block;
    position: absolute;
    top: 25px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
    background-color: #000;
}

.approach-faq-icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
    color: #fff;
}

.approach-faq-icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
    color: #fff;
}

.approach-faq-item button[aria-expanded='true'] {
    color: var(--blue);
}

.approach-faq-item button[aria-expanded='true'] .approach-faq-icon::after {
    width: 0;
}

.approach-faq-item button[aria-expanded='true']+.approach-faq-content {
    opacity: 1;
    max-height: max-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    padding-bottom: 20px;
}

.approach-faq-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.approach-faq-content p {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-weight: 400;
    line-height: 25px;
    text-align: justify;
}

.approach-faq-title {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 500;
    line-height: 48.4px;
    text-align: left;
    color: #032C48;
}

.courses-tittle h2 {
    font-family: Poppins;
    font-size: 46px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
    text-align: left;
}

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

.item.card-item {
    width: 100%;
    margin-top: 20px;
    border: solid 1px #d7d7d7;
    border-radius: 33px;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0px 4px 17.1px 0px #032C4833;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.training-pgm ul li img {
    border-radius: 30px 30px 0px 0px;
    max-height: 300px;
}

.box-courses h4 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    min-height: 100px;
    overflow: auto;
    text-transform: capitalize;
    color: #032C48;
}

.box-courses .icon-view img {
    width: 15px;
}

.training-pgm span {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    display: block;
    padding-left: 15px;
    text-transform: capitalize;
}

.box-courses h4 {
    font-family: Poppins;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    min-height: 70px;
    overflow: hidden;
    text-transform: capitalize;
    color: #032C48;
    max-height: 70px;
}

.box-courses h4:hover {
    overflow: auto;
}

.box-courses {
    padding: 25px;
    padding-top: 15px;
}

.box-courses span {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    display: block;
    text-transform: capitalize;
    color: #032C48;
}

.owl-carousel-wrapper {
    padding: 30px 0px 0px 60px;
}

section.up-courses {
    position: relative;
}

.item.card-item img {
    border-radius: 30px 30px 0px 0px;
    height: 165px;
}

.custom-nav {
    position: absolute;
    top: 17%;
    right: 90px;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
    border: none;
}

.custom-nav button {
    cursor: pointer;
    height: 35px;
    width: 35px;
    background: #032C48;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.box-courses p {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #032C48;
    height: 70px;
    text-transform: capitalize;
}

.owl-carousel-wrapper {
    padding: 0px;
}

.item.card-item {
    margin-top: 3px;
}

.courses-tittle a {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 30.25px;
    text-align: left;
    color: #032c48;
    text-decoration: underline !important;
    display: inline-block;
    text-decoration-color: #032c48;
}

.owl-carousel-wrapper {
    padding: 18px 0px 0px 0px;
}

section.up-courses {
    padding: 40px 0px 5px 10px;
}

.owl-carousel.owl-theme.c-slide.owl-loaded.owl-drag {
    padding-left: 0px;
}

.view-all {

    width: 10%;
}

.courses-tittle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

.owl-carousel.owl-theme.logo-slider.owl-loaded.owl-drag {
    padding-top: 20px;
}

.owl-carousel.owl-theme.logo-slider.owl-loaded.owl-drag .item {
    width: 100%;
    height: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 6px 1px #cdcdcd;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 5px 0px;
}

.owl-carousel.owl-theme.logo-slider.owl-loaded.owl-drag .item img {
    width: 66%;
    margin: 0 auto;
}

section.client-section {
    background: #EFEFEF;
    padding: 30px 0px;
}

.logo-tittle h3 {
    font-family: Poppins;
    font-size: 46px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
    text-align: center;
}

.view-btn {
    text-align: center;
}

.view-btn a.btn-link {
    min-width: 170px;
    margin: 4px 0px;
}

.map-content {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

.map-image {
    width: 70%;
}

.tittle-map h3 {
    font-family: Poppins;
    text-align: center;
    font-size: 40px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
}

section.gallery-map {
    padding: 40px 0px;
}

.map-btn ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    border: solid 1px #000;
    border-radius: 30px;
    padding: 4px 17px;
    justify-content: space-between;
    width: 45%;
}

.map-btn {
    width: 30%;
}

.map-btn ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.map-btn ul li span {
    display: inline-block;
    width: 90%;
    text-align: center;
    font-size: 13px;
    text-transform: capitalize;
}

.offering-text h3 {
    font-family: Poppins;
    font-size: 46px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

section.offers-section {
    padding: 40px 0px 0px 0px;

}

.image-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.image-background {
    background-image: url(../images/banner.webp);
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.08);
}

.content-wrapper {
    display: flex;
    min-height: 450px;
    margin: 0 auto;
    align-items: flex-end;
    color: #FCFCE4;
    position: relative;
    z-index: 10;
    width: 88%;
    margin: 0 auto;
    gap: 55px;
}

.content-left .content-box {
    align-items: center;
}

.content-right {
    width: 50%;
}

.content-box {
    padding: 10px 35px 10px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(121, 115, 115, 0.56);
    border-radius: 20px;
    cursor: pointer;
    align-items: baseline;
    gap: 20px;
    height: 130px;
    /* overflow: auto; */
}

.offering-text {
    padding-bottom: 40px;
}

.content-left {
    width: 50%;
}

.btn-box a {
    background-color: #171A20;
    color: #fff;
    min-width: 160px;
    display: inline-block;
    text-align: center;
    padding: 10px 0px;
    border-radius: 50px;
    text-transform: capitalize;
    text-decoration: none;
}

.btn-box {
    padding-top: 30px;
}

.content-box h2 {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 500;
    line-height: 37px;
    text-align: left;
    width: 60%;
    color: #FFFFFF;
}

.btn-box a:hover {
    background-color: #032c48;
}

/*--about--*/
.about-banner {
    background-image: url('../images/about-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 44, 72, 0.3);
    z-index: 1;
}

.about-banner>* {
    position: relative;
    z-index: 2;
}

.about-tittle h1 {
    font-family: Poppins;
    font-size: 49px;
    font-weight: 500;
    line-height: 97.76px;
    text-align: center;
}

.sub-banner {
    position: relative;
    background-image: url(../images/about-sub.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px 0px 60px 0px;
}

.sub-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(3 44 72 / 83%);
    z-index: 1;
}

.sub-banner>* {
    position: relative;
    z-index: 2;
}

.sub-tittle h3 {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 500;
    line-height: 60.5px;
    text-align: center;
}

.wrapper-counter {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.counter {
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    margin-top: 10px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: Poppins;
    font-size: 34px;
    font-weight: 600;
    line-height: 72.6px;
    text-align: center;
}

.count-text {
    margin-top: 10px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: Poppins;
    font-size: 25px;
    font-weight: 400;
    line-height: 30.25px;
    text-align: center;
}

.counter-flex {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

section.sub-banner p {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #fff;
    padding-top: 9px;
}

ul.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 35px;
    width: 75%;
    margin: 0 auto;
}

ul.about-flex li {
    width: 30%;
    position: relative;
    overflow: hidden;
}

.globe-tittle h3 {
    font-family: Poppins;
    text-align: center;
    font-size: 40px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
}

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

/*ul.about-flex li img {
    border-radius: 33px;
    transition: filter 0.3s ease;
    width: 93%;
    height: auto;
    cursor: pointer;
}*/
ul.about-flex li img {
    border-radius: 20px;
    transition: filter 0.3s ease;
    width: 100%;
    height: 200px;
    cursor: pointer;
}

ul.about-flex h4 {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 500;
    line-height: 50px;
    text-align: left;
    color: #032C48;
    padding-top: 10px;
}

ul.about-flex li:hover img {
    filter: brightness(80%);
}

.card-sector {
    background-color: #032c48;
    color: #ffff;
    width: 90%;
    height: 200px;
    overflow: auto;
    border-radius: 10px;
    padding: 30px;
}

section.core-sectors {
    padding: 30px 0px 60px 60px;
}

.card-sector p {
    font-family: Poppins;
    font-size: 21px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    color: #ffff;
}

.core-tittle h4 {
    font-family: Poppins;
    text-align: center;
    font-size: 40px;
    line-height: 60px;
    color: #032C48;
    font-weight: 600;
}

.core-tittle {
    padding-bottom: 20px;
}

.card-sector img {
    width: 55px !important;
    padding-bottom: 50px;
}

.card-sector {
    background-color: #032c48;
    color: #ffff;
    width: 90%;
    height: 220px;
    overflow: auto;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.card-sector:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.text-banner a {
    background: rgba(23, 26, 32, 1);
    color: #fff;
    min-width: 320px;
    display: inline-block;
    text-align: center;
    padding: 18px 0px;
    border-radius: 50px;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-transform: capitalize;
    margin-top: 15px;
}

.text-banner a:hover {
    background-color: #032c48;
}

.text-banner h1 {
    position: relative;
    left: -100%;
    animation: slideIn 1s forwards;
}

.text-banner a {
    opacity: 0;
    animation: fadeIn 2s 1s forwards;
}

.icon-image {
    width: 100%;
}

@keyframes slideIn {
    to {
        left: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.owl-carousel.owl-theme.c-slide.owl-loaded.owl-drag {
    padding-left: 40px;
}

.content-left .content-box,
.content-right .content-box {
    align-items: center;
}

.testimonial-img {
    height: 100%;
}
.text-expand {
        padding-top: 15px;
}

/* Remove text transform everywhere except <p> */
body.select-portuguese a,
body.select-portuguese span,
body.select-portuguese label,
body.select-portuguese li,
body.select-portuguese button,
body.select-portuguese h1,
body.select-portuguese h2,
body.select-portuguese h3,
body.select-portuguese h4,
body.select-portuguese h5,
body.select-portuguese h6 {
    text-transform: none !important;
}

/* Only paragraphs should be lowercase */
body.select-portuguese p {
    text-transform: none !important;
}

body.select-portuguese .box-courses span {
    text-transform: none !important;
}

body.select-portuguese .box-courses h4 {
    text-transform: none !important;
}

body.select-portuguese h4 {
    text-transform: none
}
.testimonial-img {
        height: auto;
}
.testimonial-img img {
        height: 100%;
}