@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
 :root {
    --primary: #364A9A;
    --secondary: #E3161C;
    --tertiary: #2e263b;
    --quaternary: #980d0c;
    --light-gray: #F4EDE9;
    --gray: #eeeeee;
    --dark: #6D6A67;
    --dark-gray: #777777;
    /* --dark: #000000; */
    --white: #ffffff;
    --text-color: #000;
    /* --rounded: 0.5rem; */
    --rounded: 18px;
    --placeholder: #9697CE82;
}

html {
    margin-top: 0 !important
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control::placeholder {
    color: var(--placeholder)
}

body,
html {
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    transition: background-color .15s ease-in-out;
}

.rounded {
    border-radius: var(--rounded) !important;
    overflow: hidden
}

.rounded-2x {
    border-radius: 1.3rem !important;
    overflow: hidden
}

img {
    border: none;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

a,
a:focus,
a:link,
a:visited,
input:focus,
textarea:focus {
    outline: 0;
    text-decoration: none
}

select:focus {
    outline: 0
}

textarea {
    resize: none
}

form:not(.content-area*),
h1:not(.content-area*),
h2:not(.content-area*),
h3:not(.content-area*),
h4:not(.content-area*),
h5:not(.content-area*),
h6:not(.content-area*),
p:not(.content-area*),
ul:not(.content-area*) {
    margin: 0;
    padding: 0
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

iframe {
    display: block
}

p+p {
    margin-top: 1em
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time {
    display: block;
    margin: 0;
    padding: 0
}

 ::selection {
    background: var(--primary);
    color: var(--tertiary)
}

 ::-moz-selection {
    background: #1c1c1c;
    color: #fff
}

ul {
    list-style: none
}

li {
    padding: 0;
    margin: 0
}

label {
    font-weight: 400 !important
}

.fa-ul>li:not(:last-child) {
    margin-bottom: 15px
}

.has-lead .content-area h5,
.lead {
    font-size: 1.25em;
    line-height: 1.4rem;
    font-weight: 600
}

.has-lead .content-area h5 {
    margin-bottom: 1.5em
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", serif;
    font-weight: 600;
    letter-spacing: 0;
}

.h1,
h1 {
    font-size: 2.25em;
    line-height: 2.2em;
}

.h2,
h2 {
    font-size: 2em;
    line-height: 1.25em;
}

.h3,
h3 {
    font-size: 1.75em;
    line-height: 1.25em;
}

.h4,
h4 {
    font-size: 1.5em;
    line-height: 1.25em;
}

.h5,
h5 {
    font-size: 1.25em;
    line-height: 1.25em;
}

.h6,
h6 {
    font-size: 1.25em
}

@media only screen and (max-width:991px) {
    .h1,
    h1 {
        font-size: 2em
    }
    .h2,
    h2 {
        font-size: 1.77em
    }
    .h3,
    h3 {
        font-size: 1.54em
    }
    .h4,
    h4 {
        font-size: 1.31em
    }
    .h5,
    h5 {
        font-size: 1.1em
    }
    .h6,
    h6 {
        font-size: 1em
    }
}

@media only screen and (max-width:767px) {
    .h1,
    h1 {
        font-size: 1.85em
    }
    .h2,
    h2 {
        font-size: 1.7em
    }
    .h3,
    h3 {
        font-size: 1.39em
    }
    .h4,
    h4 {
        font-size: 1.21em
    }
    .h5,
    h5 {
        font-size: 1.075em
    }
    .h6,
    h6 {
        font-size: 1em
    }
    .home-banner .banner-content {
        margin-right: 1.5rem;
    }
}

@media only screen and (min-width:1601px) {
    section>.minHeight {
        min-height: 250px
    }
}

a {
    color: var(--primary)
}

.underlined {
    padding-bottom: .75em;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
    position: relative
}

.underlined:after {
    content: "";
    width: 150px;
    height: 5px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: var(--danger)
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-size: .8em;
    display: block;
    line-height: 1.5em;
    font-family: "Manrope", serif;
}

p:last-child {
    margin-bottom: 0
}

.stretched {
    letter-spacing: 1px
}

.text-default,
.text-default:active,
.text-default:focus {
    color: var(--dark) !important
}

.text-primary,
.text-primary:active,
.text-primary:focus {
    color: var(--primary) !important
}

.text-secondary,
.text-secondary:active,
.text-secondary:focus {
    color: var(--secondary) !important
}

.text-tertiary,
.text-tertiary:active,
.text-tertiary:focus {
    color: var(--tertiary) !important
}

.text-quaternary,
.text-quaternary:active,
.text-quaternary:focus {
    color: var(--quaternary) !important
}

.text-white,
.text-white:active,
.text-white:focus {
    color: var(--white)
}


/* .text-danger,
.text-danger:active,
.text-danger:focus {
color: var(--danger) !important
}
*/

.text-grey {
    color: #737373 !important
}

.popover,
.tooltip {
    font-family: "Manrope", serif;
}

.tooltip-inner {
    font-size: .875em
}

.bgGradient::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, .9) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(60%, rgba(153, 153, 153, 0)), color-stop(100%, rgba(0, 0, 0, .9)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, .9) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, .9) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, .9) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, .9) 100%)
}

.bgOverlay,
.hoverIcon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 0
}

.bg-primary {
    background: var(--primary) !important
}

.bg-secondary {
    background: var(--secondary) !important
}

.bg-tertiary {
    background: var(--tertiary) !important
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.has-link-light a,
.has-link-primary a,
.has-link-primary-and-light a {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-weight: 700 !important;
    position: relative;
    background: var(--tertiary) !important;
    border-color: var(--tertiary) !important;
    color: #fff;
    margin-right: .75rem;
    margin-bottom: 1rem;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.has-link-light a:hover,
.has-link-primary a:hover,
.has-link-primary-and-light a:hover {
    background: var(--quaternary) !important;
    border-color: var(--quaternary) !important;
    color: #fff
}

.has-link-light a:focus,
.has-link-primary a:focus,
.has-link-primary-and-light a:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.has-link-light a,
.has-link-primary-and-light a:nth-child(even),
 :not(.has-link-primary)>.bg-overlay-dark .btn-primary,
 :not(.has-link-primary)>.bg-overlay-dark .open>.dropdown-toggle.btn-primary,
 :not(.has-link-primary)>.bg-tertiary .btn-primary,
 :not(.has-link-primary)>.bg-tertiary .open>.dropdown-toggle.btn-primary {
    background: var(--light-gray) !important;
    border-color: var(--light-gray) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    position: relative
}

.has-link-light a:hover,
.has-link-primary-and-light a:nth-child(even):hover,
 :not(.has-link-primary)>.bg-overlay-dark .btn-primary:hover,
 :not(.has-link-primary)>.bg-overlay-dark .open>.dropdown-toggle.btn-primary:hover,
 :not(.has-link-primary)>.bg-tertiary .btn-primary:hover,
 :not(.has-link-primary)>.bg-tertiary .open>.dropdown-toggle.btn-primary:hover {
    background: 0 0 !important;
    border-color: var(--light-gray) !important;
    color: var(--light-gray) !important
}

.has-link-light a:focus,
.has-link-primary-and-light a:nth-child(even):focus,
 :not(.has-link-primary)>.bg-overlay-dark .btn-primary:focus,
 :not(.has-link-primary)>.bg-overlay-dark .open>.dropdown-toggle.btn-primary:focus,
 :not(.has-link-primary)>.bg-tertiary .btn-primary:focus,
 :not(.has-link-primary)>.bg-tertiary .open>.dropdown-toggle.btn-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.bg-quaternary {
    background: var(--quaternary) !important
}

.bg-white {
    background: var(--white) !important
}

.bg-dark {
    background: var(--dark) !important
}

.bg-gray {
    background: var(--gray) !important
}

.bg-lgray {
    background: var(--light-gray) !important
}

.bg-darkGray {
    background: #333 !important
}

.bg-dark-gray-news * {
    color: #fff
}

.bg-opacity {
    background: rgba(245, 245, 245, .2)
}

.bg-dgray {
    background: #dedede !important
}

.grow {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.grow:hover {
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -webkit-transform: scale(1.04);
    transform: scale(1.04)
}

.btn-primary {
    background: var(--primary) !important;
    border: solid 1px var(--primary) !important;
    /* text-transform: uppercase; */
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 0px;
    line-height: 1rem;
    padding: 1.2rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
}

.btn-primary:after,
.btn-transparent:after,
.btn-light:after,
.btn-secondary:after {
    content: '\f04b';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 8px;
    font-size: .8rem;
}

.btn-primary:hover {
    background: #273A8A !important;
    border-color: #273A8A !important;
}

.btn-secondary {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--light-gray) !important;
    /* padding: .75rem 1.2rem !important; */
    /* border-radius: .25rem; */
    padding: 1.2rem 1.75rem;
    border-radius: 10px;
    letter-spacing: 0px;
    font-size: .9rem;
    line-height: 1rem;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #770e0e !important;
    border-color: #770e0e !important;
    color: var(--dark)
}

.btn-tertiary {
    background: var(--tertiary) !important;
    border-color: var(--tertiary) !important;
    color: #fff;
    font-weight: 700;
}

.btn-tertiary:hover {
    background: #1E172C !important;
    border-color: #1E172C !important;
    color: #fff
}

.btn-quaternary {
    background: var(--quaternary) !important;
    border-color: var(--quaternary) !important;
    color: #fff;
    font-weight: 700;
}

.btn-light {
    background: var(--light-gray);
    border-color: var(--light-gray);
    font-weight: 700;
    font-size: .8rem;
    border-radius: 10px;
}

.btn-light:hover {
    background: 0 0 !important;
    border-color: var(--light-gray) !important;
    color: var(--light-gray) !important
}

.btn-light:after {
    color: var(--primary);
}

.btn-transparent {
    background: transparent !important;
    border-color: #fff !important;
    /* text-transform: uppercase; */
    font-size: 0.9rem;
    color: #fff;
    /* letter-spacing: 2px; */
    line-height: 1rem;
    padding: 1.2rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
}

.btn-transparent:hover {
    background: var(--gray) !important;
    color: #333;
}

.btn-shape {
    border: 0;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: .75rem 2.2rem;
}

body {
    font-family: "Manrope", serif;
    overflow-x: hidden;
    padding-top: 0;
    color: var(--text-color);
    background-color: #fff;
    /* letter-spacing: .8px; */
    line-height: 1.3rem;
}

main {
    overflow-x: hidden
}

.container {
    position: relative;
    z-index: 9;
}

.container-max {
    width: 90%;
    max-width: 1460px;
    margin: auto;
    position: relative;
    z-index: 9;
}

.section {
    margin: 0;
    padding: 3rem 0 0;
    position: relative;
    z-index: 1;
}

header {
    position: absolute;
    width: 100%;
    z-index: 99;
    /* background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); */
    font-size: 1rem;
    left: 0px;
    top: 0;
    padding: 0rem 0 2rem;
    transform: ease-in .2s;
}

header .brand-logo {
    /* display: none; */
    max-width: 200px;
    display: flex;
    margin: auto;
}

header.sticky {
    position: fixed;
    top: 0;
    padding: 0;
    margin-top: 0;
    transform: ease-in .2s;
    z-index: 99;
}

header.sticky .brand-logo {
    display: block;
    z-index: 999;
    position: relative;
}

header.sticky .brand-logo img {
    max-height: 40px !important;
}

header.sticky .navbar-nav .nav-link {
    margin: 0 .5rem;
}

header.sticky .topbar {
    display: none;
}

header.sticky .navbar {
    background: #fff;
}

header .navbar-nav .nav-link {
    color: #fff;
    padding: .5rem .25rem;
    margin: 1rem;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-size: .9rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
    margin-left: 1rem;
    margin-right: 1rem;
}

header .navbar-nav .nav-link.active {
    font-weight: 700;
    position: relative;
}

header .navbar-nav .nav-link.active:before {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--primary);
    left: 0px;
    bottom: -2px;
    position: absolute;
    border-radius: 2px;
}

header .btn-secondary {
    padding: .5rem 1.2rem !important;
    letter-spacing: normal;
}

.sticky .navbar.navbar-expand-lg.navbar-dark {
    background: rgba(0, 0, 0, 0.85);
}

header.sticky .navbar-brand {
    max-width: 160px;
}

header .navbar {
    /* background: rgba(245, 245, 245, .2); */
    background: rgba( 255, 255, 255, 0.55);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 4px);
    -webkit-backdrop-filter: blur( 4px);
    /* border: 1px solid rgba( 255, 255, 255, 0.18); */
}


/* hamburger menu */

#menuToggle {
    display: none; /* Hidden by default on desktop/web views */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-user-select: none;
    user-select: none;
    padding: 0;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 99;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
}


/*
* Just a quick hamburger
*/

#menuToggle span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 3px 0;
    position: relative;
    background: #333;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}


/* 
* Transform all the slices of hamburger
* into a crossmark.
*/

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 1px);
    background: var(--light-gray);
}


/*
* But let's hide the middle one.
*/

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}


/*
* Ohyeah and the last one should go the other direction
*/

#menuToggle input:checked~span:nth-last-child(2) {
    opacity: 1;
    transform: rotate(-45deg) translate(1px, -1px);
}


/*
* Make this absolute positioned
* at the top left of the screen
*/

#menu {
    position: fixed;
    width: 100%;
    max-width: 560px;
    margin: -100px 0 0 0;
    top: 0;
    padding: 50px;
    padding-top: 10rem;
    right: 00px;
    height: calc(100vh + 100px);
    background: var(--primary);
    border-left: solid 2px var(--primary);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 0;
}

#menu li {
    padding: 10px 0;
    /* font-size: 22px; */
    text-transform: uppercase;
    letter-spacing: 3px;
}

#menu a {
    color: var(--gray);
}

#menu a:hover {
    color: #7994ff;
}


/*
* And let's fade it in from the left
*/

#menuToggle input:checked~ul {
    transform: none;
    opacity: 1;
}

.mc-w iframe {
    width: 800px;
    height: 460px;
    border-radius: 1rem;
}


/* @media screen and (max-width: 768px) {
    #menu {
        transform: none;
        opacity: 0;
        transition: opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }
} */

header.sticky #menuToggle {
    top: 6px;
}

header.sticky #menuToggle span {
    width: 19px;
    height: 2px;
    margin-bottom: 4px;
}


/* menu ends */

.stats-about {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 3rem;
    padding-left: 0;
}

.stats-about li {
    min-width: 30%;
}

.stats-about .about-stats {
    display: flex;
    border-right: solid 1px #DCDCDC;
    padding: 1rem 2rem;
    width: 100%;
    align-items: center;
}

.stats-about li:last-child .about-stats {
    border-right: 0;
}

.stats-pic {
    margin-right: .5rem;
}

.stats-pic img {
    max-width: 70px;
}

.stats-about .about-stats h3 {
    margin-right: .75rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.about-stats p {
    line-height: 1.3rem;
    margin-bottom: 0;
}

.bg-grey {
    background: #F1F3FB;
}

.services-list {
    display: flex;
    padding-left: 0;
    margin-top: 2rem;
}

.services-list li {
    width: 25%;
}

.service-box {
    background: linear-gradient(to bottom, rgba(54, 74, 154, 1), rgba(72, 97, 199, 1));
    padding: 2rem 1.5rem 1rem;
    border-radius: .75rem;
    color: #fff;
    margin-right: 1.2rem;
    font-size: .9rem;
    min-height: 240px;
    position: relative;
}

.service-icon {
    height: 42px;
}

.service-icon img {
    max-width: 40px;
}

.service-box h4 {
    font-size: 1.2rem;
    margin-top: .85rem;
    height: 50px;
}

.service-box p {
    width: 90%;
}

.service-box .arrow {
    text-align: right;
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: #fff;
}

.service-box:hover {
    /* background: linear-gradient(to bottom, rgb(41, 58, 126), rgb(59, 80, 165)); */
    background: linear-gradient(to bottom, rgb(200, 211, 255), rgb(255, 255, 255));
    color: var(--primary);
    border: solid 1px rgb(230, 233, 246);
}

.service-icon img {
    filter: grayscale(1) brightness(10);
}

.service-box:hover .service-icon img {
    filter: none;
}

.w-md-50 {
    max-width: 50%;
}


/* topbar */

.topbar {
    display: flex;
    justify-content: flex-end;
    font-size: .9rem;
    height: 34px;
}

.topbar>a {
    margin-right: 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem .5rem;
}

.topbar>a.active {
    color: #fff;
    background-color: var(--primary);
}

.topbar .social {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    margin-top: .35rem;
}

.topbar .social li a {
    padding: .25rem;
    margin: 0 .25rem;
    color: var(--secondary);
}

.topbar .social li a:hover {
    color: var(--quaternary);
}


/* home banner */

.home-banner {
    min-height: 80vh;
    margin-top: 50px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(54, 74, 154, 0), rgba(15, 39, 73, 0.7), );
}

.home-banner .banner-content {
    max-width: 500px;
    position: relative;
    z-index: 9;
}

.inner-banner .banner-content {
    max-width: 500px;
    position: relative;
    z-index: 9;
    margin-top: 3rem;
}

.home-banner h2 span,
.inner-banner h1 span {
    color: #CBD6FF;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Ensure the video stays behind the content */
    overflow: hidden;
}

.video-background::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(54, 74, 154, .1), rgba(15, 39, 73, 0.8));
    z-index: 8;
    content: '';
}

#bg-video {
    object-fit: cover;
    /* Ensure the video covers the entire screen */
    width: 100%;
    height: 100%;
    position: absolute;
}

.home-banner .slick-dots {
    justify-content: start;
    bottom: 0;
    padding-top: 1.5rem;
}

.certificate-list {
    background: linear-gradient(to right, rgba(219, 225, 246, 1), rgba(242, 242, 242, 1));
    padding: 1.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* border: solid 1px #ABC1EB80; */
    border: solid 1px #A8B7C9;
    border-radius: .5rem;
    margin-top: 1.5rem;
}

.certificate-list li {
    border-right: solid 1px #ABC1EB80;
    min-width: 16.5%;
    display: flex;
    justify-content: center;
}

.certificate-list li img {
    max-width: 120px;
}

.certificate-list li:last-child {
    border: 0;
}

.energy-section {
    background-position: bottom left;
    background-size: cover;
    padding: 5rem 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-section {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 3rem 2.6rem;
    background: #e3e3e3;
    height: 100%;
    background: url(../images/sustainability-bg.jpg) no-repeat;
    color: #fff;
}

.feature-section>div {
    max-width: 450px;
}

.feature-section h5 {
    font-size: 1.35em;
    font-weight: 500;
}

.mazrui-career-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 230px;
}

.career-section {
    max-height: 340px;
    overflow: hidden;
    position: relative;
    background: #F1F3FB;
    border-radius: .5rem;
}

.careers-content {
    max-width: 390px;
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 300px;
    margin-left: 1rem;
}

.career-img {
    display: flex;
    align-items: center;
    max-height: 300px;
    overflow: hidden;
}

.bg-grey-gradient {
    background: linear-gradient(to bottom, rgba(241, 243, 251, 1), rgba(255, 255, 255, 1));
}

.news-box {
    overflow: hidden;
    padding-right: 1.5rem;
}

.news-img {
    overflow: hidden;
    border-radius: 10px;
    max-height: 240px;
    position: relative;
    margin-bottom: 1rem;
}

.news-box .date {
    background: var(--secondary);
    border-radius: 10px;
    font-size: .9rem;
    text-transform: uppercase;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 3;
    color: var(--light-gray);
    padding: 3px 12px;
}

.news-intro {
    height: auto;
    min-height: 200px;
}

.news-intro h3 {
    font-size: 1.25rem;
    margin-bottom: .6rem;
    line-height: 1.5rem;
}

.news-intro a.btn {
    position: absolute;
    bottom: 0;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0 0 0 0;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
}

.slick-dots li {
    margin: 0 0.25rem;
    width: 10px;
    height: 10px;
}

.slick-dots span {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    text-indent: -9999px;
}

.slick-dots li.slick-active span {
    background-color: #ffffff;
}

.search-input input {
    border-color: #ABB3D6 !important;
    height: 45px;
    background: #F1F3FB;
}

.search-input input::placeholder {
    color: #b6b6b6;
}

.search-input .btn {
    border: solid 1px #ABB3D6 !important;
    color: var(--primary);
    height: 45px;
    background: #F1F3FB !important;
    border-left: 0 !important;
}

.news-slider .slick-list.draggable {
    /* padding-left: calc((100% - 1300px)/2); */
}


/* footer */

.footer {
    margin-bottom: 1.5rem;
}

.footer-bg {
    background: #EBE7F7AD;
    border-radius: 10px;
    overflow: hidden;
    padding: 2rem 4.5rem;
    color: var(--primary);
}

.footer-content {
    max-width: 600px;
    color: #273A8A;
    margin-top: 1rem;
}

.foot-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
}

.foot-links li {
    margin-right: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.2rem;
    margin-bottom: 0;
}

.footer-social li {
    margin-left: 1.7rem;
}

.footer-head h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comp-profile-btn {
    text-transform: uppercase;
    background: #4D5FA5 !important;
    border-color: #4D5FA5 !important;
    font-weight: 600;
}

.comp-profile-btn:after {
    display: none;
}

.footer .input-group input {
    height: 50px;
    border-radius: 10px;
}

.footer .copy {
    display: flex;
    align-items: flex-end;
}

.footer .video-background {
    width: calc(100% - 24px);
    margin: auto;
    left: 12px;
    overflow: hidden;
    border-radius: .5rem;
}

.inner-banner {
    min-height: 500px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    background-size: cover;
    padding-top: 180px;
}

.inner-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: linear-gradient(rgba(6, 55, 124, 0), rgba(14, 39, 74, 0.7));
    top: 0;
}

.inner-banner .banner-content {
    position: relative;
    z-index: 10;
}

.inner-banner .banner-title {
    margin-top: 5rem;
    max-width: 590px;
}

.inner-banner .banner-title h1 {
    line-height: 1.3em;
}

.overview-section .about-stats {
    display: block;
}

.stats-about li:first-child .about-stats {
    padding-left: 0;
}

.stats-about li:last-child .about-stats {
    padding-right: 0;
}

.overview-section .about-stats .stats-pic {
    margin-bottom: 1rem;
}

.capability-img {
    max-width: 700px;
    margin: auto;
}

.about-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

.service-item {
    margin-top: 4rem;
}

.search-group input,
.search-group select {
    height: 45px;
    margin-right: 1rem;
    border-radius: .5rem !important;
}

.search-group select option {
    font-family: "Manrope", serif;
}

.search-group .btn-primary {
    height: 45px;
    border-radius: .5rem !important;
    width: 45px;
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(54, 74, 154, 1), rgba(72, 97, 199, 1)) !important;
    font-size: 1.2rem;
}

.search-group .btn-primary::after {
    display: none;
}

.services-listing {
    display: flex;
    align-items: start;
}

.services-listing ul {
    padding-right: .5rem;
    min-width: 200px;
    margin: 0;
    max-width: 260px;
}

.services-listing ul li {
    width: 100%;
}

.services-listing .nav-link {
    width: 100%;
    background: #EDF0FD;
    border-radius: 0;
    margin-bottom: 2px;
    color: #333 !important;
}

.services-listing .nav-pills .nav-link.active {
    background: linear-gradient(rgba(54, 74, 154, 1), rgba(72, 97, 199, 1));
    color: #fff !important;
    font-weight: 600;
}

.table-coloured tr {
    border-bottom: solid 1px #fff;
}

.table-coloured th {
    text-align: center;
    background: #9098B8;
    color: #fff;
    min-width: 140px;
    font-weight: 600;
}

.table-coloured td {
    background: #EDF0FD;
    text-align: center;
}

.pattern {
    position: absolute;
}

.right-pattern {
    right: 0;
    max-height: 150px;
}

.right-pattern img {
    max-height: 150px;
}

.left-pattern {
    left: 0;
    margin-top: 60px;
    max-height: 150px;
}

.left-pattern img {
    max-height: 150px;
}

.btn-preview {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .8rem;
    color: #fff;
    margin: .25rem;
    border-radius: .25rem;
}

.btn-preview.stb {
    background: #ED1C24;
}

.btn-preview.pb {
    background: #22B14C;
}

.table-bg tr {
    display: flex;
}

.table-bg th {
    text-align: left;
    background: #C7CFE0;
    color: #121619;
    font-size: .9rem;
    padding: .75rem;
}

.table-bg td,
.table-bg th {
    display: flex !important;
    align-items: center;
    width: 100%;
    border-bottom: solid 1px #edeff2;
}

.prod-det-box {
    display: flex;
    border: solid 1px #DADEEE;
    border-radius: 10px;
    overflow: hidden;
}

.prod-det-box .prod-spec {
    padding: .75rem .75rem;
    background: linear-gradient(rgba(54, 74, 154, 1), rgba(72, 97, 199, 1));
    color: #fff;
}

.prod-det-box .prod-spec img {
    max-width: 20px;
    margin-right: 5px;
}

.prod-det-box .prod-data {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
}

.prod-det-box.grey-bx .prod-spec {
    width: 180px;
    background: #E9ECF6;
    color: #000;
}

.star-heading {
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
}

.star-heading::before {
    /* content: '\f005';
    font-family: "Font Awesome 6 Free"; */
    content: '';
    font-weight: 400;
    position: absolute;
    left: 0;
    margin-right: 10px;
    color: var(--primary);
    background: url(../images/star-four-fill.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.box {
    border: solid 1px #eaecfe;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    /* border-radius: .65rem; */
    border-radius: 10px;
    max-width: 380px;
}

.box:hover {
    box-shadow: 0px 0px 20px 5px #e2e2e2;
}

.box-gradient {
    /* background: linear-gradient(rgba(71, 96, 197, .2), rgba(255, 255, 255, 1)); */
    background: linear-gradient(white, rgb(158 171 224));
    padding: 3rem;
    border-radius: 13px;
    position: relative;
    z-index: 1;
}

.box-gradient::after {
    content: "";
    position: absolute;
    top: -1px;
    right: 1px;
    width: calc(100% - 2px);
    height: 100%;
    background: linear-gradient(rgb(233 238 255), white);
    border-radius: 13px;
    z-index: -3;
}

.box-gradient .full-width-content {
    display: flex;
    flex-wrap: nowrap;
}

.client-logo {
    border: solid 1px #eaecfe;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    margin: .5rem .75rem;
    height: 120px;
    overflow: hidden;
}

.career-single {
    border: solid 1px #DBDEFA;
    padding: 2rem;
    border-radius: .5rem;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.career-single .career-data {
    display: flex;
}

.career-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #DCE0F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.career-single ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.career-single ul li {
    background-color: #CFD8FC;
    border-radius: .5rem;
    color: #333;
    font-size: .9rem;
    padding: .5rem 1rem;
    margin-right: .5rem;
}

.career-single .career-btns {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
}

.career-single .career-btns .btn-transparent {
    border: solid 1px #bdbdbd !important;
    color: var(--primary) !important;
    font-weight: 500;
    letter-spacing: 1px;
}

.career-search .btn-primary {
    width: auto;
}

.career-search .btn-primary i {
    padding-left: 10px;
}

.career-single:hover {
    box-shadow: 10px 0px 10px #e3e3e3;
}

.news-box {
    margin-bottom: 3rem;
}

.news-box .news-img {
    position: relative;
    max-height: 240px;
    overflow: hidden;
}

.news-box .news-img img {
    height: 240px;
    object-fit: cover;
    width: 100%;
    transition: all .5s;
}

.news-box .news-img-lg {
    max-height: 500px;
}

.news-box .news-img-lg img {
    height: auto;
}

.news-box .date-info {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    width: fit-content;
    font-size: .8rem;
    color: #fff;
    padding: 2px 7px;
    border-radius: .25rem;
    text-transform: uppercase;
}

.news-desc {
    min-height: 150px;
    position: relative;
}

.news-desc p {
    font-size: .9rem;
}

.news-box .btn {
    position: relative;
    bottom: 0;
}

.news-box:hover .news-img img {
    transform: scale(1.1);
    transition: all .5s;
}

.news-det-content {
    padding-right: 2.6rem;
}

.news-det-img {
    max-height: 400px;
    overflow: hidden;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.news-det-img img {
    object-fit: cover;
}

.events-slider {
    margin-bottom: 0;
}

.events-box {
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
    margin: 0 1rem;
    min-height: 400px;
}

.events-box figure img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.events-box .event-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient( rgba(39, 58, 138, 0), rgba(49, 56, 81, 1)); */
    background: linear-gradient( rgba(39, 58, 138, 0), rgba(49, 56, 81, 1)80%);
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.events-box .event-desc p {
    font-size: .9rem;
}

.event-desc a {
    padding: .75rem 1.2rem .85rem;
    border-radius: 8px;
}

.events-box .event-type {
    position: absolute;
    top: 14px;
    right: 15;
    background: var(--secondary);
    width: auto;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    font-size: .8rem;
    color: #fff;
    border-radius: 5px;
}

.events-box .event-type img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    margin-top: 2px;
}

.events-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.events-tab {
    padding: 10px 20px;
    cursor: pointer;
    background: #e0e0e0;
    margin: 0 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

.events-tab.active {
    background: #007bff;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.events-container {
    max-width: 1000px;
    text-align: center;
    margin: auto;
}

.events-container .main-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 500px;
    object-fit: cover;
}

.events-container .thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
}

.events-container .thumbnails img {
    width: 200px;
    height: 140px;
    cursor: pointer;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
}

.events-container .thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.events-container .thumbnails img.active {
    opacity: 1;
    border: 2px solid var(--primary);
}

.main-image.slick-slider {
    margin-bottom: 0px;
}

.slide-arrow.slick-arrow {
    position: absolute;
    left: -50px;
    top: 45%;
    background: transparent;
    border: 0;
    max-width: 40px;
}

.slide-arrow.prev-arrow.slick-arrow {
    left: -50px;
}

.slide-arrow.next-arrow.slick-arrow {
    right: -50px;
    left: auto;
}

.event-slider .slick-dots {
    bottom: 0;
}

.events-tab {
    background: #C2C8E0;
    color: #fff;
}

.events-tab.active {
    background: var(--primary);
}

.bg-gradient {
    background: linear-gradient(to bottom, rgba(54, 74, 154, 1), rgba(72, 97, 199, 1)) !important;
    padding: 2rem 1.5rem;
    border-radius: .75rem;
    color: #fff;
    font-size: .9rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.exhibitors-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
    padding: 0;
}

.exhibitors-logos .exhibitors-logo-single {
    margin: 1rem;
}

.ethics-box {
    background: linear-gradient(to right, rgba(200, 211, 255, 1), rgba(255, 255, 255, 1));
    padding: 2rem 3rem 2rem 5rem;
    border-radius: .5rem;
    font-size: .9rem;
    position: relative;
    overflow: hidden;
    line-height: 1.1rem;
}

.ethics-box:before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: url(../images/ethics-pic.png) no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: right;
    max-width: 300px;
    opacity: .3;
}

.bg-sustainability {
    min-height: 550px;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sustainability-pic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zero-txt {
    color: #86A414;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    right: -50px;
}

.harm-txt {
    color: #1E530B;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    left: -50px;
}

.gradient-light {
    background: linear-gradient(to right, rgba(219, 225, 246, 1), rgba(242, 242, 242, 1)) !important;
    border: solid 1px #ABC1EB80;
    color: var(--text-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 130px;
}


/* .sustain-logo {
    display: flex;
} */

.sustain-logo img {
    max-width: 140px;
    margin: 0 10px;
    max-height: 60px;
    padding-left: 20px;
    border-left: solid 1px #A8B7C9;
}

.sustain-logo img:first-child {
    border: 0;
}

.qhse-logo {
    max-width: 140px;
}

.chemical-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.chemical-list li {
    width: 48%;
    /* background: linear-gradient(to right, rgba(219, 225, 246, 1), rgba(242, 242, 242, 1)) !important; */
    /* background: linear-gradient(to right, rgba(200, 211, 255, 1), rgba(253 254 255, 1)) !important; */
    background: linear-gradient(to right, rgb(201 212 255), rgb(253 254 255)) !important;
    color: var(--text-color);
    padding: 1rem;
    border-radius: .75rem;
    display: flex;
    border: solid 1px #acb8f4;
    border-top: 0;
    margin-right: 2%;
    margin-bottom: 1rem;
}

.chemical-list li:before {
    content: '';
    width: 25px;
    height: 25px;
    background: url(../images/token_dot.png) no-repeat;
    position: relative;
    display: block;
    margin-right: 5px;
}

.chemical-list li:hover {
    /* background: var(--primary) !important; */
    background: linear-gradient(rgba(54, 74, 154, 1), rgba(72, 97, 199, 1)) !important;
    color: #fff;
    font-weight: bold;
}

.chemical-list li:hover:before {
    filter: invert(1) brightness(10);
}

.chemical-list li:hover:after {
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-left: 10px;
    font-size: 1.2rem;
}

.contact-form {
    margin-top: 2rem;
}

.contact-form .form-label {
    font-weight: 500 !important;
    font-size: .9rem;
}

.contact-form .form-control {
    height: 46px;
    border-radius: .5rem;
    border: solid 1px #BCC9FE;
}

.contact-form .form-control::placeholder {
    color: #c1c1c1;
    font-size: .9rem;
}

.contact-form .form-area {
    height: auto;
}

.news-slider .slick-dots {
    bottom: 0;
}

#enqModal.modal {
    z-index: 999999
}

.enq-form,
.enq-form .form-control {
    font-size: .9rem;
}


/* about page mes chain section */

.soothsayer-section {
    width: 100%;
    overflow-x: hidden;
}

.parent-circle {
    width: 420px;
    height: 420px;
    border-radius: 100%;
    margin: -50px auto 65px auto;
}

.child-circle:hover {
    scale: 1.04;
    transition: 0.5s;
}

.child-one {
    top: 41%;
    left: 8%;
    transform: translate(-50%, -50%);
}

.child-one svg {
    transform: rotate(193deg);
}

.child-two {
    bottom: 29%;
    left: 24%;
    transform: translate(-90%, 50%);
}

.child-two svg {
    transform: rotate(152deg);
}

.child-three {
    bottom: 6%;
    right: 50%;
    transform: translate(0%, 40%);
}

.child-three svg {
    transform: rotate(110deg);
}

.child-four {
    bottom: -7%;
    right: 19%;
    transform: translate(0%, 0%);
}

.child-four svg {
    transform: rotate(68deg);
}

.child-five {
    bottom: 32%;
    right: 23%;
    transform: translate(90%, 50%);
}

.child-five svg {
    transform: rotate(25deg);
}

.child-six {
    top: 38%;
    right: 9%;
    transform: translate(50%, -50%);
}

.child-six svg {
    transform: rotate(-15deg);
}

.shape {
    fill: #395996;
    cursor: pointer;
}

.shape:hover {
    fill: #223d6c;
    transition: 1s;
}


/* Content */

.card-content-one {
    position: absolute;
    color: white;
    z-index: 1;
    font-size: 12px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
    line-height: 16px;
}

.card-content-one:hover~svg .shape {
    transition: 1s;
    fill: #223d6c;
}

.card-show-one {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-120px, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.card-show-two {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-120px, 0%);
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.card-show-three {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-110px, 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.card-show-four {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(120px, 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.card-show-five {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(120px, 0%);
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.card-show-six {
    position: absolute;
    top: 0%;
    right: 0%;
    transform: translate(120px, 20%);
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.soothsayer-section .card {
    padding: 10px;
    color: #223d6c;
    border: 1px solid #A4C9EB;
    border-radius: 8px;
    font-size: 12px;
    line-height: 14px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
    box-shadow: 0;
}

.card-content-one:hover+.card-show-one {
    opacity: 1;
    visibility: visible;
}

.card-content-one:hover+.card-show-two {
    opacity: 1;
    visibility: visible;
}

.card-content-one:hover+.card-show-three {
    opacity: 1;
    visibility: visible;
}

.card-content-one:hover+.card-show-four {
    opacity: 1;
    visibility: visible;
}

.card-content-one:hover+.card-show-five {
    opacity: 1;
    visibility: visible;
}

.card-content-one:hover+.card-show-six {
    opacity: 1;
    visibility: visible;
}


/* main-cirlce */

.main-cirlce {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: #395996;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-cirlce-content {
    height: 100%;
    color: white;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
}


/* semi-circle */

.semi-circle {
    width: 213px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -15%);
}

.semi-circle img {
    width: 214px;
    height: 126px;
}


/* TAB DATA */

.soothsayer .card-border {
    padding-bottom: 2.3rem !important;
}

.tab-details-section {
    /* max-width: 800px; */
    padding: 0px 20px;
}

.tab-data {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 14px;
    max-width: 1000px;
    position: relative;
    border: 0;
}

.tab-data::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    /* border thickness */
    border-radius: 14px;
    background: linear-gradient( 135deg, #dfe6ff, #bfcaff, #e6ebff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.tab-data h1 {
    font-size: 24px;
    font-weight: 800;
}

.soothsayer span {
    color: #a9b5e6;
}

.tab-data .custom-button {
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    border-color: var(--primary);
}

.services-listing .tab-content {
    display: block;
}

.fa-brands.fa-linkedin-in {
    font-weight: 600;
}

.no-results-message {
    color: red;
    font-weight: bold;
    text-align: center;
}

.error {
    color: var(--secondary);
    font-size: .8rem;
}

.form-select {
    height: 45px;
    color: #9697CE82;
    border-radius: .5rem;
}

.form-select option {
    color: #333;
}

.career-list li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.career-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--primary);
    position: absolute;
    left: 0;
}

.sustain-pic {
    margin-bottom: .5 rem;
}


/* map section */

.map-section {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    min-height: 500px;
}

.map-image {
    width: 100%;
    display: block;
}

.map-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: blue;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite ease-out;
}

.popup {
    position: absolute;
    padding: 30px 26px;
    max-width: 320px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(to bottom, #364a9a, #4861c7);
    display: none;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
}

.popup-desc {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 14px;
}

.popup-heading {
    background-color: transparent;
    border: none;
    color: white;
    margin: 10px 0;
    font-size: 1.4rem;
}

.popup img {
    width: 30px;
}

@keyframes pop {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.popup.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(32, 61, 188, 0.8);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(32, 61, 188, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(32, 61, 188, 0);
    }
}

.inner-banner.banner-sm {
    min-height: 500px;
}

.navbar-brand img {
    max-width: 130px;
}

.news-slider-wrapper {
    position: relative;
}

.news-slider {
    width: calc(100vw - var(--bs-gutter-x, 1.5rem));
    margin-left: 0;
    margin-right: calc((100vw - 100%) / -2);
    margin-bottom: 0;
}


/* .news-slider {
            position: relative;
            width: 100vw;
            left: calc((100vw - 100%) / 2);
        } */

.footer-head .btn-secondary {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .75rem 1.75rem;
    font-weight: 600;
}

.footer-social .social-icons {
    font-size: 1.5rem;
}

.subscribe-message.text-success,
.subscribe-message1.text-danger {
    margin: 0 1rem 1rem !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-size: 1.3rem;
    color: var(--primary);
    padding-right: .25rem;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .25rem;
}

.border-bottom {
    border-bottom: 1px solid #ADB3CD !important;
}

.services-listing a {
    text-decoration: underline;
    font-weight: 600;
    font-size: .9rem;
}

.services-listing a:hover {
    text-decoration: underline;
    color: var(--secondary);
}

.empowering-pic img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.shadow-bottom {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.feature-pic-section {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table> :not(:last-child)> :last-child>* {
    border-top: solid 1px #8994a2;
    border-bottom: 0;
}

.table-listing a {
    text-decoration: underline;
    font-weight: 600;
}

.table-listing a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.table-listing a:hover::after {
    content: '\f04b';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 8px;
    font-size: .8rem;
    color: var(--primary);
}

.zero-harm-mob {
    display: none;
}

.searchProd-form .btn-primary {
    padding: .8rem 1.5rem;
}

.searchProd-form #search-product {
    padding: 0.6rem .75rem;
    border-radius: 10px;
}

@media screen and (max-width:1560px) {
    header {
        font-size: 0.95rem;
    }
    header .navbar-nav .nav-link {
        margin: .5rem;
    }
    .navbar-light .navbar-brand {
        max-width: 150px;
    }
    .home-banner {
        margin-top: 120px;
        padding-top: 6rem;
    }
    .bg-sustainability {
        min-height: auto;
        background-size: cover;
        padding-top: 0;
        margin-top: 0;
    }
    .globe {
        max-width: 360px;
    }
}

@media screen and (max-width:1028px) {
    .certificate-list li {
        min-width: 33%;
        padding: 1rem;
        border-bottom: solid 1px #ABC1EB80;
    }
    .certificate-list li:nth-child(3),
    .certificate-list li:nth-child(6) {
        border-right: 0;
    }
    .certificate-list li:nth-child(4),
    .certificate-list li:nth-child(5) {
        border-bottom: 0;
    }
    .stats-about {
        display: block;
    }
}

@media screen and (max-width:900px) {
    .stats-about .about-stats {
        border-right: 0;
        border-bottom: solid 1px #DCDCDC;
        padding: 1rem 0;
    }
    .services-list {
        flex-wrap: wrap;
    }
    .services-list li {
        width: 50%;
    }
    .service-box {
        margin-bottom: 1rem;
    }
    .career-section {
        max-height: fit-content;
    }
    .career-section .careers-content {
        max-height: none;
        padding: 1.5rem 0;
    }
    /* .mazrui-career-logo {
        position: relative;
    } */
    .footer .copy {
        justify-content: center;
    }
}

@media screen and (max-width: 516px) {
    .parent-circle {
        width: 280px;
        height: 280px;
        margin: 0 auto 45px auto;
    }
    .child-circle svg {
        width: 80px;
    }
    .card-content-one {
        font-size: 8px;
    }
    .card-content-one img {
        width: 20px;
    }
    .card-show {
        display: none;
    }
    .main-cirlce {
        width: 110px;
        height: 110px;
    }
    .main-cirlce-content {
        font-size: 9px;
        gap: 0px;
    }
    .main-cirlce-content img {
        width: 20px;
    }
    .semi-circle img {
        width: 214px;
        height: 86px;
    }
    .services-list li {
        width: 100%;
    }
    .footer-head {
        margin-bottom: 1rem;
    }
    .footer .copy {
        justify-content: center;
    }
}


/* about page mes chain section ends */

@media (max-width: 767px) {
    header {
        position: relative;
        padding-bottom: 0;
    }
    header .navbar-toggler {
        z-index: 99999;
    }
    .home-banner {
        margin-top: 0;
    }
    header .navbar-nav .nav-link {
        margin: 0 0 .25rem
    }
    .section {
        padding-top: 3rem;
    }
    body {
        font-size: .9rem;
    }
    .container-max {
        width: 100%;
    }
    .certificate-list li {
        min-width: 50%;
        padding: 1rem;
        border-bottom: solid 1px #ABC1EB80;
    }
    .certificate-list li:nth-child(2),
    .certificate-list li:nth-child(4) {
        border-right: 0;
    }
    .certificate-list li:nth-child(3) {
        border-right: solid 1px #ABC1EB80;
    }
    .certificate-list li:nth-child(5) {
        border-bottom: 0;
    }
    .certificate-list li:nth-child(4) {
        border-bottom: solid 1px #ABC1EB80
    }
    .lead {
        font-size: 1.15em;
    }
    .heading {
        font-size: 1.5rem;
    }
    .search-input {
        margin-top: 1rem;
    }
    .stats-about {
        display: block;
        padding-left: 0;
    }
    .stats-about .about-stats {
        border-right: 0;
        border-bottom: solid 1px #DCDCDC;
    }
    .service-box {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .services-list {
        display: block;
    }
    .services-list li {
        margin-bottom: 1rem;
    }
    .about-pic {
        max-width: 100%;
        margin: 0 0 1.5rem;
    }
    .w-md-50 {
        max-width: 100%;
    }
    .career-section {
        max-height: none;
        padding-bottom: 8rem;
    }
    .careers-content {
        max-width: none;
        max-height: none;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    .energy-section {
        min-height: 560px;
        padding: 0 1rem;
    }
    .footer-content {
        border-bottom: solid 1px #CFCFCF;
        margin-bottom: 1rem;
    }
    .footer-head h3 {
        font-size: 1.2rem;
    }
    .footer-bg {
        padding: 1.6rem;
    }
    .copy {
        margin: 1rem 0;
    }
    .fs-5 {
        font-size: 1rem;
    }
    .footer-social {
        justify-content: center;
        padding-left: 0;
    }
    .footer-social li {
        margin: 0 1rem;
    }
    .services-listing {
        display: block;
    }
    .services-listing ul {
        display: flex;
        flex-wrap: nowrap;
    }
    .news-box {
        padding-right: 0;
    }
    .mazrui-career-logo {
        width: 100%;
        text-align: right;
        max-width: 100%;
        margin-top: 1.5rem;
    }
    .mazrui-career-logo img {
        max-width: 200px;
    }
    .inner-banner {
        margin-top: 0;
        min-height: 260px;
    }
    .navbar-brand img {
        max-width: 120px;
    }
    .stats-about .about-stats h3 {
        margin-right: .75rem;
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    .footer-head img {
        max-width: 120px;
    }
    .foot-links li {
        margin-bottom: .5rem;
    }
    .service-item {
        margin-top: 3rem;
    }
    .about-content {
        padding: 0 1rem;
    }
    .sustain-logo {
        display: flex;
    }
    .qhse-logo {
        margin-bottom: 1rem;
    }
    .ethics-box {
        padding: 0rem 3rem 1.5rem;
        background: linear-gradient(to bottom, rgba(200, 211, 255, 1), rgba(255, 255, 255, 1));
    }
    .ethics-box::before {
        position: relative;
        height: 260px;
        margin-bottom: 1rem;
    }
    #menuToggle {
        display: none;
    }
    .sustain-pic {
        margin-bottom: 2rem;
    }
    .client-logo {
        height: fit-content
    }
    .slick-dots {
        bottom: 0;
    }
    header.sticky .navbar .navbar-nav {
        margin-bottom: 2rem;
    }
    .content-body {
        margin-bottom: 1rem;
    }
    .bg-gradient.shadow-bottom {
        display: block;
    }
    .bg-gradient.shadow-bottom .btn {
        margin-top: 1rem;
    }
    .exhibitors-logos {
        margin: 1rem 0 0;
    }
    .box {
        max-width: none;
    }
    .box-gradient {
        margin-bottom: 1rem;
    }
    .services-listing ul {
        max-width: none;
        overflow-x: auto;
    }
    .services-listing ul li {
        width: fit-content;
        min-width: fit-content;
        margin-right: 1px;
    }
    .bg-sustainability {
        display: none;
    }
    .zero-harm-mob {
        display: block;
    }
    .prodDownload-btns .btn {
        width: 100%;
    }
    .exhibitors-logos .exhibitors-logo-single {
        margin: .5rem;
    }
}

#gdpr {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-top: solid 1px #e2e2e2;
    color: #fff;
    padding: .5rem;
}

#gdpr_btn {
    padding: .35rem .75rem;
    border-radius: .5rem;
    margin-left: .5rem;
}

.service-box:hover .arrow {
    color: #3e54ae;
}

.scrollTop-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--secondary);
    border: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 1.4rem;
    border-radius: .25rem;
}

.page-link {
    color: var(--primary);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}