@font-face {
    font-family: body-reg;
    src: url('../public/assets/fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: body-mid;
    src: url('../public/assets/fonts/Montserrat-Medium.ttf');
}

@font-face {
    font-family: body-semi;
    src: url('../public/assets/fonts/Montserrat-SemiBold.ttf');
}

@font-face {
    font-family: body-bold;
    src: url('../public/assets/fonts/Montserrat-Bold.ttf');
}

@font-face {
    font-family: cta-mid;
    src: url('../public/assets/fonts/IBMPlexMono-Medium.ttf');
}

@font-face {
    font-family: cta-semi;
    src: url('../public/assets/fonts/IBMPlexMono-SemiBold.ttf');
}

@font-face {
    font-family: heading-mid;
    src: url('../public/assets/fonts/Lexend-Light.ttf');
}

@font-face {
    font-family: heading-semi;
    src: url('../public/assets/fonts/Lexend-SemiBold.ttf');
}

@font-face {
    font-family: heading-bold;
    src: url('../public/assets/fonts/Lexend-Bold.ttf');
}









html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    padding: 0;
    margin: 0;
    position: relative;
    color: #03002c;
}

a {
    color: inherit;
    text-decoration: none;
}

.pointer {
    cursor: pointer;
}

.dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.banner-img {
    object-position: 0 -40px;
}

.banner-img-165 {
    object-position: 0 -165px;
}

.banner-img-270 {
    object-position: 0 -270px;
}

#analytical-laboratory-services .services-item-top {
    display: none;
}

.object--75 {
    object-position: 0px -75px !important;
}

.object--300 {
    object-position: 0px -300px !important;
}

.object--400 {
    object-position: 0px -400px !important;
}

.object--500 {
    object-position: 0px -500px !important;
}











/* ============  S W I P E R  ============= */

.swiper-section {
    width: 1000px;
    margin: 4rem auto 0;
    height: 35rem;
    overflow: hidden;
}

.swiper-image {
    width: 100%;
    height: 100%;
}

.swiper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

swiper-container {
    height: 100%;
    width: 100%;
}










/* =================  H E A D E R  ================= */

header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    box-shadow: 0px 0px 5px 0px #bababa;
}

.header {
    position: relative;
    z-index: 10;
    color: black;
    padding: 1rem 0rem 1.5rem;
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-div {
    /* height: 75px;
    width: 75px; */
    /* height: 55px;
    width: 200px; */
    height: 45px;
    width: 170px;
}

.logo-div img {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-big {
    font-family: body-bold;
    font-size: 25px;
    letter-spacing: 2px;
}

.logo-text-small {
    font-family: body-mid;
    font-size: 12px;
    letter-spacing: 2px;
}

.menu-list {
    list-style-type: none;
    display: flex;
    color: #03002c;
    gap: 2.5rem;
    font-family: heading-mid;
}

.menu-list-item a {
    color: #03002c;
    text-decoration: none;
}

.menu-cta {
    font-family: 'cta-semi';
    display: flex;
    background-color: #00adef;
    padding: 1.5rem 2.5rem;
    text-shadow: 0 0 1px black;
    color: black;
}

.about-menu-item {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.about-list-div-con {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 0.5s ease;
    position: absolute;
    top: 100%;
    left: -0.5rem;
    right: -5rem;
    font-size: 15px;
    transform: translateY(1rem);
    box-shadow: 0px 1px 3px 0px #afafaf;
    background-color: white;
}

.about-menu-item:hover .about-list-div-con {
    grid-template-rows: 1fr;
}

.about-list-con {
    overflow: hidden;
}

.about-list {
    padding: 1.5rem;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}





/* --------- mobile  header --------- */

.header-mobile {
    display: none;
    position: relative;
}

.mobile-menu {
    position: fixed;
    transition: all 0.5s ease-in-out;
    top: 0;
    right: 0;
    width: calc(100% - 5rem);
    min-height: calc(100vh - 5rem);
    background-color: #fff;
    transform: translateX(105%);
    padding-bottom: 3rem;
    max-height: 100vh;
    overflow: auto;
}

.mobile-menu-out {
    transform: translateX(0%) !important;
}

.header-mobile:has(.mobile-menu-out)::before {
    position: fixed;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: -50rem;
    background-color: #000000b8;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    font-family: 'body-reg';
    padding: 0 0.5rem;
}

.mobile-menu-item {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-group svg {
    transition: all 0.3s ease-in-out;
}

.mobile-about-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}

.mobile-about-list-div-con {
    display: grid;
    transition: all 0.3s ease-in-out;
}

.mobile-about-list-con {
    overflow: hidden;
}









/* ==================  F O O T E R  ================== */

footer {
    background-image: url('../public/assets/images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: contain;
    position: relative;
    padding: 5rem 0;
}

footer::before {
    content: '';
    position: absolute;
    background-color: #000a46f5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.footer {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    color: white;
    font-family: 'heading-mid';
    font-weight: normal;
    font-size: 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid white;
    padding-bottom: 4rem;
    column-gap: 2rem;
}

.footer-top-div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top-header {
    font-family: 'heading-bold';
}

footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

footer .footer-socials-list {
    flex-direction: row;
    gap: 0.5rem;
}

.footer-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: center;
}

.footer-contact .footer-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-contact .footer-item-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact .footer-item svg {
    margin-top: 5px;
}

.footer-contact .footer-item label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: calc(100% - 15px - 1rem);
}

.footer-contact p {
    margin: 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    padding: 3rem 0 1rem;
}

.footer-bottom-left {
    height: 45px;
    width: 170px;
}

.footer-bottom-left img {
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(0.1) brightness(2);
}











/* ===================  H E R O 2  =================== */

.hero2-section {
    position: relative;
    height: 27rem;
}

.hero2-bg-img {
    position: absolute;
    line-height: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-evenly;
    top: 1rem;
}

.hero2-bg-img img {
    width: calc((100% / 3) - 2rem);
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}

.hero2-bottom {
    width: 1000px;
    text-align: center;
    margin: 1rem auto 0;
    position: relative;
    z-index: 11;
    padding: 2rem;
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #bbbbbb;
    color: #03002c;

}

.hero2-statement {
    text-shadow: none;
}

.hero2-statement h2 {
    margin: 0;
    font-family: heading-bold;
    font-size: 30px;
}

.hero2-statement p {
    font-family: body-reg;
    line-height: 1.5;
}












/* ===================  H E R O  =================== */

.hero-section {
    position: relative;
    height: 30rem;
    overflow: hidden;
}

.hero-section img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #000b1e36;
}



.hero-bg-img {
    position: absolute;
    line-height: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: -webkit-fill-available;
}

.hero-bg-img img {
    width: calc(100%/3);
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bottom {
    width: 100%;
    /* background-color: #0026ca; */
    background-color: #00539b;
    color: white;
    text-align: center;
    margin: 0rem auto 0;
    position: relative;
    z-index: 11;
    padding: 2rem;
    box-sizing: border-box;
}

.hero-statement {
    text-shadow: 0 0 3px black;
}

.hero-statement h2 {
    margin: 0;
    font-family: heading-bold;
    font-size: 30px;
}

.hero-statement p {
    font-family: 'body-mid';
    line-height: 1.5;
    font-size: 20px;
}















/* ================  C L I E N T S  ================= */

.clients-section {
    padding: 5rem 0rem 5rem;
    width: 1200px;
    margin: 0 auto;
}

.clients-section h2 {
    text-align: center;
    font-family: heading-semi;
    font-weight: normal;
    color: #03002c;
    font-size: 30px;
    margin-top: 0;
}

.clients-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 2rem 0rem;
}

.clients-list img {
    height: auto;
    width: 120px;
    filter: brightness(0.8) contrast(1.4);
}












/* ===================  S E R V I C E S  ====================== */

.services-section {
    background-color: #f7f7f7;
    color: #03002c;
    padding: 4rem 0 6rem;
}

.services-home {
    width: 1250px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    font-family: heading-semi;
    font-weight: normal;
    color: #03002c;
    font-size: 30px;
    margin: 1rem 0 3rem;
}

.services-home h2 {
    text-align: center;
    font-family: heading-semi;
    font-weight: normal;
    color: #03002c;
    font-size: 30px;
    margin: 0;
}

.services-list-con {
    margin-top: 4rem;
}

.services-list-con:first-of-type {
    margin-top: 2rem;
}

.services-list-header {
    font-weight: normal;
    font-family: 'heading-semi';
    font-size: 24px;
    margin-bottom: 2rem;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1rem;
    row-gap: 3rem;
}

.services-item {
    width: 100%;
    box-shadow: 0px 3px 6px 0px #c5c5c5;
    background-color: white;
}

.services-card-list {
    width: 1190px !important;
}

.services-card {
    width: calc((100% / 3) - 1.5rem) !important;
}

.services-card .about-page-more-item-header::before {
    width: 3rem !important;
    bottom: -0.7rem !important;
}

.services-item-top {
    width: 100%;
    height: 6rem;
    line-height: 0;
}

.services-item-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card .about-page-more-item-bottom {
    padding: 1.5rem 1.5rem 3rem;
}

.services-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease-in-out;
}

.services-card-header svg {
    margin-top: 0.7rem;
}

.services-card-header .about-page-more-item-header {
    margin-bottom: 0;
}

.services-card .about-page-more-item-body {
    margin-top: 1.7rem;
    line-height: 1.5;
    word-spacing: 2px;
}

.services-item-bottom {
    padding: 2rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-item-bottom label {
    text-transform: uppercase;
    font-family: 'body-reg';
    font-size: 13px;
}

.services-item-bottom h3 {
    margin: 0;
    font-family: 'heading-semi';
    font-size: 18px;
}

.services-item-bottom p {
    margin: 0;
    font-family: 'body-bold';
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-align: justify;
}

.services-item-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.services-item-bottom ul {
    font-family: 'body-reg';
    font-size: 14px;
    padding: 0;
    margin: 0;
    list-style-type: circle;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.multi-col-ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}











/* ===================  E X H I B I T I O N  ==================== */

.exhibition-section {
    padding: 6rem 0;
}

.exhibition-home {
    width: 1100px;
    margin: 0 auto;
}

.exhibition-header {
    font-size: 24px;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'heading-bold';
}

.exhibition-list-item {
    display: flex;
    position: relative;
}

.exhibition-list-item-img {
    line-height: 0;
    width: 35rem;
    height: 25rem;
}

.exhibition-list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(100% 0%, 100% 80%, 86% 100%, 0% 100%, 0% 100%, 0% 20%, 14% 0%);
}

.exhibition-list-details {
    position: absolute;
    width: calc(100% - 30rem);
    background-color: white;
    padding: 4rem 4rem;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px 0px #c5c5c5;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-family: 'body-reg';
    font-size: 14px;
}

.exhibition-list-details h3 {
    font-family: 'heading-semi';
    font-size: 18px;
}










/* =====================  S U S T A I N A B I L I T Y  ==================== */

.sustainability-section {
    position: relative;
    height: 100vh;
}

.sustainability-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
}

.sustainability-bg-img-div {
    position: relative;
    width: 100%;
    height: 100%;
}

.sustainability-bg-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability-bg-img-div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000d1;
    z-index: 24;
}












/* ===========  C O N T A C T  =========== */

.contact-map {
    line-height: 0;
    height: 30rem;
    margin-bottom: 5rem;
}

.contact-details {
    width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    font-family: 'body-reg';
    font-size: 14px;
    line-height: 1.5;
}

.contact-info {
    width: calc((100%/2) - 3rem);
}

.contact-info h1 {
    font-family: 'heading-semi';
    font-size: 40px;
    margin: 0rem 0 1rem;
    letter-spacing: -0.5px;
}

.contact-list {
    width: calc((100%/2) - 3rem);
    display: flex;
    justify-content: space-between;
}

.contact-item {
    width: calc((100%/2) - 2rem);
}

.contact-item svg {
    color: #2D8BFF;
    background-color: #2d8bff1f;
    padding: 10px;
    border-radius: 15px;
}

.contact-item h3 {
    font-family: 'heading-semi';
    font-weight: normal;
    margin: 0.5rem 0;
}

.contact-item p {
    margin: 0;
}














/* =================================   P  A  G  E  S   =================================== */



/* ================  A B O U T  ================ */

.about-page-img {
    width: 100%;
    height: 15rem;
    line-height: 0;
    position: relative;
}

.about-page-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000a8;
}

.about-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-page-bottom {
    width: 1100px;
    margin: -4rem auto 0;
    background-color: white;
    position: relative;
}

.about-page-header {
    text-align: center;
    font-family: 'heading-bold';
    font-size: 24px;
    padding: 2rem 0 0rem;
    width: fit-content;
    margin: 0 auto 6rem;
    position: relative;
}

.about-page-header::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #2d8bff;
    transform: translateX(-50%);
}

.about-page-body {
    font-family: 'body-reg';
    font-size: 15px;
}

.about-page-body h3 {
    font-family: 'heading-semi';
    font-weight: normal;
    font-size: 20px;
}

.about-page-body p {
    line-height: 1.5;
}

.about-mission {
    margin-top: 3rem;
}

.about-mission span {
    font-family: heading-mid;
}

.about-mission ul {
    padding: 0;
    list-style-type: circle;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* .about-page .exhibition-section {
    padding: 4rem 0 6rem;
}

.about-page .exhibition-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
} */

/* .about-page .exhibition-list-details {
    padding: 2rem 3rem;
    box-sizing: content-box;
}

.exhibition-list-item-reverse {
    display: flex;
    position: relative;
    justify-content: flex-end;
}

.exhibition-list-item-reverse .exhibition-list-details {
    left: 0;
    z-index: 1;
}

.about-page-list {
    list-style-type: circle;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-page-list span {
    font-family: 'heading-semi';
} */

.about-page-more {
    background-color: #f7f7f7;
    margin-top: 3rem;
    padding: 3rem 0 4rem;
}

.about-page-more-header {
    width: fit-content;
    margin: 0 auto 2rem;
    font-family: 'heading-semi';
    text-transform: capitalize;
    font-size: 24px;
}

.about-page-more-list {
    display: flex;
    width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

.about-page-more-item {
    width: calc((100%/3) - 1rem);
    display: flex;
    flex-direction: column;

}

.about-page-more-item-top {
    height: 13rem;
    line-height: 0;
}

.about-page-more-item-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-page-more a {
    text-decoration: none;
    color: black;
    height: -webkit-fill-available;
    display: flex;
}

.about-page-more-item-bottom {
    width: calc(100% - 1.5rem);
    margin: -3rem auto 0;
    background-color: white;
    padding: 1.5rem;
    box-sizing: border-box;
    position: relative;
    border-bottom: 3px solid #2d8bff;
}

.about-page-more-item-header {
    position: relative;
    font-family: 'heading-semi';
    font-size: 18px;
    margin-bottom: 1.5rem;
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.about-page-more-item-header::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 85%;
    height: 2px;
    background-color: #595959;
    transition: all 0.3s ease-in-out;
}

.about-page-more-item-bottom:hover .about-page-more-item-header,
.about-page-more-item-bottom:hover .services-card-header,
.about-page-more-item-bottom:hover .services-page-more {
    color: #2d8bff;
}

.about-page-more-item-bottom:hover .about-page-more-item-header::before {
    width: 100%;
    background-color: #2d8bff;
}

.about-page-more-item-body {
    font-family: 'body-reg';
    font-size: 14px;
}










/* ================  S E R V I C E S  =============== */

.services-page .about-page-more {
    margin-top: 0;
    padding: 8rem 0 6rem;
}

.services-page .about-page-img {
    height: 25rem;
}

.services-page .about-page-img::before {
    background-color: #000000a8;
}

.services-page-title-con {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1150px;
    transform: translate(-50%, -50%);
}

.services-page-title {
    color: white;
    font-family: 'body-mid';
}

.services-page-title label {
    line-height: 0.3;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    font-family: 'heading-mid';
    font-size: 14px;
    text-transform: uppercase;
}

.services-page-title a {
    text-decoration: none;
    color: white;
    flex: 1 1 auto;
    width: fit-content;
    max-width: fit-content;
}

.services-page-title h2 {
    font-family: 'heading-bold';
    font-size: 40px;
    margin: 0.3rem 0 1rem;
    line-height: normal;
}

.services-page-title p {
    line-height: 1.6;
    word-spacing: 2px;
    letter-spacing: 0.5px;
}

.services-card .about-page-more-item-bottom {
    position: relative;
    z-index: 1;
}

.services-page-more {
    height: fit-content !important;
    font-size: 13px;
    font-family: 'body-mid';
    align-items: center;
    gap: 0.2rem;
    position: absolute;
    bottom: 0.5rem;
    display: flex;
    transition: all 0.3s ease-in-out;
}













/* ===========  S E R V I C E - P A G E  =========== */

.service-page .about-page-img {
    height: 10rem !important;
}

.service-page .services-section {
    background-color: #fff;
    padding: 2rem 0 6rem;
}

.service-page .services-home {
    width: 1150px;
}

.service-page .services-list {
    column-gap: 2rem;
}

.service-page .services-item {
    box-shadow: none;
    position: relative;
}

.service-page .services-item-header {
    min-height: 90px;
}

.service-page .services-item-header h3 {
    position: relative;
    font-family: 'heading-bold';
    margin-bottom: 1rem;
}

.service-page .services-item-header h3::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: #03002c;
}

.service-page .services-item-top {
    height: 12rem;
    position: relative;
}

.service-more-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    overflow: hidden;
    background-color: #000000b8;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.services-item:hover .service-more-btn {
    right: 0;
    opacity: 1;
}

.service-more-btn a {
    text-decoration: none;
    color: white;
    font-family: 'heading-bold';
    text-transform: uppercase;
    border: 1px solid white;
    line-height: normal;
    padding: 1rem 2rem;
    font-size: 14px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.services-item:hover .service-more-btn a {
    opacity: 1;
}

.service-page .services-item-bottom {
    padding: 2rem 0rem 2rem 1rem;
    gap: 0rem;
}

.service-more {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-decoration: none;
    color: #03002c;
    font-family: 'body-mid';
    font-size: 14px;
    align-items: center;
    display: flex;
    gap: 0.2rem;
    margin: 0 0 0 auto;
}









/* ============  S E R V I C E S --- I T E M  ============ */

.service-item-page .about-page-img {
    height: 12rem !important;
}

.service-item-page-body {
    padding: 4rem 0;
    font-family: 'body-reg';
    color: #03002c;
}

.service-item-page-body-top {
    width: 1150px;
    margin: 0 auto;
}

.service-item-page-body-top-header {
    margin: 0 0 3rem;
    font-family: 'heading-bold';
    font-size: 40px;
    text-transform: capitalize;
    position: relative;
}

.service-item-page-body-top-header:before {
    content: '';
    position: absolute;
    background-color: #00539b;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 4px;
}

.service-item-page-body-top p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

.service-item-page-list {
    font-family: 'body-reg';
    padding: 0 1rem 1rem;
    margin: 0;
    list-style-type: circle;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-item-page-details {
    background-color: #f7f7f7;
    padding: 5rem 0;
}

.service-page-item {
    width: 1150px;
    margin: 0 auto;
    display: flex;
    line-height: 0;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.service-page-item-img {
    width: 400px;
    height: 325px;
}

.service-page-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-item-txt {
    width: calc(100% - 400px);
    padding: 2.5rem 3rem;
    box-sizing: border-box;
}

.service-page-item-txt h3 {
    font-family: 'heading-bold';
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 0;
}

.service-page-item-body {
    line-height: 1.5;
    font-family: 'body-reg';
    font-size: 15px;
}

.service-page-item-body p {
    margin-bottom: 0;
}

.service-page-description {
    background-color: #eaf5ff;
    padding: 5rem 0;
}

.service-page-description-white {
    background-color: #fff;
    padding: 5rem 0;
}

.service-page-description-con {
    width: 950px;
    margin: 0 auto;
}

.service-page-description-header {
    width: fit-content;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.service-page-description-header label {
    font-family: 'body-reg';
    font-size: 13px;
    text-align: center;
}

.service-page-description-header h3 {
    margin: 0;
    font-family: 'heading-bold';
    font-size: 24px;
}

.service-page-description-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
    font-family: 'body-reg';
    line-height: 1.6;
    font-size: 14px;
}

.service-page-description-item-header {
    font-family: 'heading-bold';
    font-size: 17px;
    margin-bottom: 0.3rem;
    position: relative;
}

.service-page-description-white .service-page-description-item-header {
    margin-bottom: 1rem;
}

.service-page-description-white .service-page-description-item-header:before {
    position: absolute;
    content: '';
    background-color: #03002c;
    bottom: -0.35rem;
    left: 0;
    width: 3rem;
    height: 2px;
}

.services-page-nav {
    width: 1100px;
    margin: 0 auto;
}

.services-page-nav-list {
    padding: 0;
    list-style-type: none;
    font-family: 'heading-mid';
    font-size: 16px;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid #03002c;
}

.services-page-nav-list li {
    padding: 1rem 3rem;
}

.services-page-nav-list .active {
    background-color: #03002c;
    color: white;
}

.services-page-tab-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 15px;
    font-family: 'body-reg';
    margin-top: 3rem;
}

.services-page-tab-details p {
    margin: 0;
}

.services-images {
    width: 1150px;
    margin: 0 auto 5rem;
}

.services-image-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 3rem;
    row-gap: 3rem;
}

.services-image-list-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 3rem;
}

.services-image-list-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
    row-gap: 3rem;
}

.services-image-item img {
    width: 100%;
    height: auto;
    filter: brightness(0.7) contrast(1.2);
}

.services-image-item img.dubbed-image {
    height: 100%;
    filter: none;
}

.same-img-height img {
    height: 100%;
    object-fit: cover;
}














/* ==================  T E S T I M O N I A L S  ================== */

.testimonials-section {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 5rem 0 6rem;
    font-family: 'body-reg';
    font-size: 14px;
    line-height: 1.5;
}

.testimonials-left {
    width: 300px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.testimonials-left-mobile {
    display: none;
}

.testimonials-left label {
    background-color: #ffe4bd;
    padding: 0.5rem 1rem;
    font-family: 'body-mid';
}

.testimonials-left h2 {
    font-weight: normal;
    font-family: 'body-semi';
}

.testimonials-left ul {
    margin: 3rem 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.testimonials-left li {
    padding: 0.6rem 1rem;
    border: 1px solid #020d4a2b;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-left li span {
    width: calc(100% - 20px - 1rem);
}

.testimonials-right {
    width: calc(100% - 300px - 6rem);
    position: relative;
}

.testimonials-list {
    transition: all 0.3s ease-in;
    column-count: 2;
}



/* TESTIMONIAL SLIDE */

.slide-active {
    display: block;
}

.slide-inactive {
    display: none;
}

.active-tab {
    box-shadow: 0 0 10px 1px #ffe4bd;
    border-color: #ffe4bd !important;
}



.testimonial-card {
    margin: 1rem 0;
    padding: 2rem;
    background-color: aliceblue;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    border-radius: 10px;
}

.testimonial-card:first-child {
    margin-top: 5rem;
}

.testimonial-card-text h3 {
    margin: 0 0 0.5rem;
    font-weight: normal;
    font-family: 'body-semi';
}

.testimonial-card-text p {
    margin: 0;
}

.testimonial-card-info {
    font-size: 12px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card-info-left {
    width: 50px;
    height: 50px;
}

.testimonial-card-info-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-card-info h4 {
    margin: 0;
    font-weight: normal;
    font-family: 'body-semi';
    text-transform: uppercase
}












/* ===============  C A R E E R S  ============== */

.no-vacancy {
    width: 900px;
    margin: 6rem auto;
    font-family: 'heading-bold';
    font-size: 30px;
    text-align: center;
}



















/* =======================   M  E  D  I  A     Q  U  E  R  Y   ======================= */

@media(max-width: 1220px) {

    .services-card-list,
    .clients-section {
        width: 1100px !important;
    }

    .services-page-title-con {
        width: calc(100% - 4rem);
    }

    .about-page-bottom,
    .about-page-more-list {
        width: 1050px;
    }

    .service-item-page-body-top {
        width: calc(100% - 4rem);
    }

    .services-images {
        width: calc(100% - 4rem);
    }

}



@media(max-width: 1200px) {
    .contact-list {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .contact-item {
        width: fit-content;
    }

    .service-page .services-home {
        width: 1000px;
    }

    .services-list {
        grid-template-columns: 1fr 1fr;
    }

    .services-image-list {
        column-gap: 1.5rem;
    }
}



@media(max-width: 1150px) {

    .object--500 {
        object-position: 0px -400px !important;
    }

    .object--400 {
        object-position: 0px -320px !important;
    }

    .hero2-bg-img img:nth-child(2),
    .hero-bg-img img:nth-child(2) {
        display: none;
    }

    .hero2-bg-img img {
        width: calc((100% / 2) - 2rem);
    }

    .hero-bg-img img {
        width: calc(100% / 2);
    }

    .services-card-list,
    .clients-section,
    .contact-details,
    .footer,
    .header {
        width: 900px !important;
    }

    .services-card-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
        row-gap: 3rem;
    }

    .swiper-section {
        width: 800px;
        height: 30rem;
    }

    .service-page .services-home {
        width: 800px;
    }

    .about-page-more-item {
        width: 100% !important;
    }

    .about-page-bottom,
    .about-page-more-list {
        width: 900px;
    }

    .about-page-img {
        height: 12rem;
    }

    .about-page .about-page-more-list {
        gap: 1rem;
        row-gap: 2rem;
    }

    .testimonials-right {
        width: 100%;
    }

    .testimonials-list {
        column-count: 1;
    }
}


@media(max-width: 1055px) {
    .object--300 {
        object-position: 0px -250px !important;
    }
}


@media(max-width: 990px) {
    .object--300 {
        object-position: 0px -140px !important;
    }

    .object--400 {
        object-position: 0px -310px !important;
    }

    .object--500 {
        object-position: 0px -300px !important;
    }

    .hero2-bottom {
        width: 700px !important;
    }

    .services-card-list,
    .clients-section,
    .contact-details,
    .footer,
    .header {
        width: 800px !important;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 3rem;
    }

    .about-page-bottom,
    .about-page-more-list {
        width: 800px;
    }

    .about-page .about-page-more-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 3rem;
        column-gap: 1.5rem;
    }

    .services-image-list {
        grid-template-columns: 1fr 1fr;
    }

    .services-image-list-3,
    .services-image-list-2 {
        column-gap: 2rem;
    }

    .no-vacancy {
        font-size: 25px;
        width: calc(100% - 2rem);
    }
}


@media(max-width: 850px) {
    .header {
        width: calc(100% - 4rem) !important;
    }

    .header-mid {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .logo-div,
    .footer-bottom-left {
        height: 40px;
        width: 150px;
    }

    .object--300 {
        object-position: 0px -30px !important;
    }

    .hero2-bottom {
        width: calc(100% - 10rem) !important;
    }

    .hero2-bg-img img {
        width: calc(100% - 2rem);
    }

    .hero-bg-img img {
        width: calc(100%);
    }

    .hero2-bg-img img:nth-child(3),
    .hero-bg-img img:nth-child(3) {
        display: none;
    }

    .hero2-statement h2,
    .hero-statement h2,
    .clients-section h2,
    .services-header {
        font-size: 25px;
    }

    .hero2-statement p,
    .hero-statement p,
    .services-page-title p,
    .mobile-menu-item,
    .mobile-about-list-item a {
        font-size: 15px;
    }

    .contact-info h1,
    .services-page-title h2 {
        font-size: 30px;
    }

    .contact-info,
    .contact-list {
        width: calc((100% / 2) - 1rem);
    }

    .services-card-list,
    .clients-section,
    .contact-details,
    .footer {
        width: calc(100% - 2rem) !important;
    }

    .clients-list img {
        width: 90px;
    }

    .about-page-bottom,
    .about-page-more-list {
        width: calc(100% - 4rem);
    }

    .about-page-header,
    .about-page-more-header {
        font-size: 22px;
        margin-bottom: 4rem;
    }

    .about-page-body {
        font-size: 14px;
    }

    .about-page-body h3 {
        font-size: 18px;
    }

    .swiper-section {
        width: calc(100% - 4rem);
        height: 24rem;
    }

    .service-page .services-home {
        width: calc(100% - 4rem);
    }

    .services-image-list-3,
    .services-image-list-2 {
        column-gap: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 3rem;
    }
}


@media(max-width: 750px) {
    .object--400 {
    object-position: 0px -250px !important;
}

    .object--500 {
        object-position: 0px -200px !important;
    }
}


@media(max-width: 700px) {
    .object--300 {
        object-position: center !important;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-info,
    .contact-list {
        width: calc(100% - 1rem);
    }

    .clients-list {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 1rem;
    }

    .services-card-list {
        grid-template-columns: 1fr;
    }

    .about-page-more-item-top {
        height: 15rem;
    }

    .about-page .about-page-more-list {
        grid-template-columns: 1fr;
    }

    .testimonials-left {
        display: none;
    }

    .testimonials-left-mobile {
        display: block;
        background-color: #fff;
        position: sticky;
        top: 70px;
        padding: 30px 0 10px;
        z-index: 10;
        width: 100%;
    }

    .testimonials-left-mobile ul {
        margin-top: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom-right {
        text-align: center;
        font-size: 8px;
    }
}


@media(max-width: 600px) {

    .hero2-section,
    .hero-section {
        height: 20rem;
    }

    .hero2-bg-img,
    .hero-bg-img {
        top: 0;
    }

    .hero2-bg-img img,
    .hero-bg-img img {
        width: 100%;
        border-radius: 0;
    }

    .hero2-bottom {
        width: -webkit-fill-available !important;
        box-shadow: none;
        transform: none;
        margin: 0rem auto 5rem;
        padding: 3rem 1rem;
    }

    .hero2-statement h2,
    .hero-statement h2,
    .clients-section h2,
    .services-header {
        font-size: 22px;
    }

    .hero2-statement p,
    .hero-statement p {
        font-size: 14px;
    }

    .contact-info h1,
    .services-page-title h2 {
        font-size: 25px;
    }

    .clients-list img {
        width: 70px;
    }

    .services-page-title-con {
        width: calc(100% - 2rem);
    }

    .services-page-title label {
        font-size: 12px;
    }

    .service-item-page-body-top-header {
        font-size: 32px;
    }

    .services-page-title p,
    .mobile-menu-item,
    .mobile-about-list-item a {
        font-size: 14px;
    }

    .about-page-bottom,
    .about-page-more-list {
        width: calc(100% - 2rem);
    }

    .swiper-section {
        width: calc(100% - 2rem);
        height: 15rem;
    }

    .service-page .services-home {
        width: calc(100% - 2rem);
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-page .services-item-header {
        min-height: fit-content;
    }

    .services-page-title h2 {
        margin-top: 0.5rem;
    }

    .pointer {
        cursor: none;
    }

    a {
        cursor: none;
    }
}




@media (max-width: 500px) {
    .object--400 {
    object-position: 0px -180px !important;
}

    .object--500 {
        object-position: 0px -100px !important;
    }

    .swiper-section {
        height: 12rem;
    }

    .service-item-page-body-top {
        width: calc(100% - 2rem);
    }

    .services-images {
        width: calc(100% - 2rem);
    }

    .services-image-list {
        column-gap: 1rem;
        row-gap: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-top-div {
        gap: 1rem;
    }

}