:root {

    /*---------- Fonts ----------*/
    --font-regular: 'coconregular';
    --font-light: 'cocon_lightregular';
    --font-bold: 'coconbold';

    /*---------- Backgrounds ----------*/
    --bg-body: #fff;
    --bg-gradient: linear-gradient(#56B89D, #073D8A);
    --bg-gradient-right: linear-gradient(to right, #56B89D, #073D8A);
    --bg-gradient-left: linear-gradient(to left, #56B89D, #073D8A);
    --bg-stages: linear-gradient(70deg, #073D8A, #21709A);
    --bg-governance: linear-gradient(to top, rgb(7, 61, 138, 0.2), rgb(86, 184, 157, 0.18));

    --bg-footer: #EFF6F8;
    --bg-bleu-vert: #E3F7FD;

    /*---------- Colors ----------*/
    --color-primary: #006F73;
    --color-secondary: #475858;
    --color-tertiary: #5A6F6F;
    --color-secondary-light: #748B8B;
    --color-footer: #6E8484;
    --color-1: #C3E3E3;
    --color-2: #E5FBFC;
    --color-bleu-vert: #E3F7FD;
    --color-bleu: #1692BC;

}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html.overflow {
    overflow: hidden;
}

body {
    font-family: var(--font-regular), sans-serif;
    background: var(--bg-body);
    overflow-x: hidden;
}

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

::-moz-selection {
    color: #fff;
    background: var(--color-primary);
}

* {
    outline: none !important;
}

a {
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
label {
    margin: 0;
}

b,
strong,
.font-bold {
    font-family: var(--font-bold);
}

.font-light {
    font-family: var(--font-light);
}

.font-regular {
    font-family: var(--font-regular);
}

ul.list-style-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.adjust-ul {
    font-size: 0;
}

ul.adjust-ul li {
    font-size: 1rem;
}

img {
    width: 100%;
    height: 100%;
}

img.cover {
    object-fit: cover;
}

img.contain {
    object-fit: contain;
}

img.width-20 {
    width: 20px;
    height: 20px;
}

button {
    box-shadow: none !important;
}

/*
|--------------------------------------------------------------------------
| CMS General Styling
|--------------------------------------------------------------------------
*/

.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-left {
    text-align: left;
}

/*
|--------------------------------------------------------------------------
| General Styling
|--------------------------------------------------------------------------
*/

.height-300{
    height: 430px;
}

#Path_833:hover {
    fill: var(--color-primary);
    transition: 0.2s;
}

#Path_248 {
    pointer-events: none
}

.app-store-hover:hover .svg-green {
    fill: white;
}

.app-store-hover:hover .svg-white{
    fill: var(--color-primary) ;
}

.app-store-hover:hover .svg-white[stroke="#006F73"]{
    fill: var(--color-primary) ;
    stroke: white;
}

/* .svg-green:hover {
    fill: white;
}

.svg-white:hover {
    fill: var(--color-primary);
} */

.photo-hover-effect {
    transition: 0.3s;
    z-index: 2;
}

.photo-hover-effect:hover {
    background-color: rgba(7, 61, 138, 0.15);
    transition: 0.3s;
}

.gallery{
    z-index: -1;
}
/* .zoom {
    transition: 0.3s;
}

.zoom:hover {
    zoom: 1.4;
    transition: 0.3s;
} */

.word-break {
    word-break: break-all;
}

.page-item .page-link {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    font-family: var(--font-light);
    color: var(--color-tertiary) !important;
}

.page-item.active .page-link {
    background-color: var(--color-tertiary);
    border: none;
    border-radius: 10%;
    font-size: 24px;
    font-family: var(--font-light);
    color: white !important;

}

/*---------- Shortcuts ----------*/
.color-grey {
    color: #707070;
}

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

.color-secondary {
    color: var(--color-secondary) !important;
}

.color-tertiary {
    color: var(--color-tertiary);
}

.color-secondary-light {
    color: var(--color-secondary-light);
}

.color-secondary-light p span {
    color: var(--color-secondary-light) !important;
}

.color-1 {
    color: var(--color-1);
}

.color-bleu-vert {
    color: var(--color-bleu-vert);
}

.color-green-light {
    color: #82B1B2 !important;
}

.bg-blue-vert {
    background: var(--color-bleu-vert);
}

.bg-green-light {
    background: #82B1B2;
}

.bg-gradient {
    background-image: var(--bg-gradient);
}

.bg-footer {
    background-color: var(--bg-footer);
}

/*---------- End Shortcuts ----------*/

/*---------- Loading Screen ----------*/
.loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: wait;
    z-index: 100000;
}

.loadingScreen div {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    background: #fff;
    transition: all 0.3s;
}

.loadingScreen .top {
    top: 0;
}

.loadingScreen span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(0);
    width: 100%;
    height: 5px;
    background-image: var(--bg-gradient-right);
    transition: all 0.3s;
}

.loadingScreen .bottom {
    bottom: 0;
}

/********************/
.loadingScreen.open .top {
    top: -50vh;
}

.loadingScreen.open .bottom {
    bottom: -50vh;
}

/*---------- End Loading Screen ----------*/

/*---------- Navigation ----------*/
nav {
    background: rgba(255, 255, 255, 0.75);
    color: var(--color-secondary);
    padding: 0 !important;
    transition: all 0.3s;
    font-family: var(--font-bold);
}

nav .logo {
    position: relative;
    width: auto;
    height: 75px;
    transform: translateY(37px);
    transition: all 0.5s;
}

nav .logo:hover {
    /* animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0) translateY(37px);
    backface-visibility: hidden;
    perspective: 1000px; */
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0) translateY(37px);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0) translateY(37px);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0) translateY(37px);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0) translateY(37px);
    }
}

nav .nav-item {
    position: relative;
}

nav .nav-link {
    padding: 25px 15px !important;
}

nav .nav-item:hover .nav-link {
    color: #82B1B2 !important;
}

nav.onScroll {
    background: #fff;
    box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.15);
}

/********************/
nav .nav-item:hover .c-dropdown {
    display: block;
}

nav .nav-item .c-dropdown {
    display: none;
    position: absolute;
    width: 200px;
    top: 100%;
    left: 0;
    font-family: var(--font-light);
    background-image: linear-gradient(rgba(86, 184, 157, 0.75), rgba(7, 61, 138, 0.75));
    color: var(--color-2);
    padding: 15px;
    border-bottom-right-radius: 30px;
    text-align: left;
    transition: all 0.3s;
}

nav .nav-item .c-dropdown li {
    position: relative;
}

nav .nav-item .c-dropdown a {
    display: block;
    margin-bottom: 5px;
}

nav .nav-item .c-dropdown a:hover {
    color: #fff !important;
}

/********************/
nav .nav-item .c-dropdown li:hover .c-dropdown-sub {
    display: block;
}

nav .nav-item .c-dropdown .c-dropdown-sub {
    display: none;
    position: absolute;
    width: 200px;
    background: #fff;
    color: var(--color-primary);
    padding: 15px;
    border-bottom-right-radius: 30px;
    top: 0;
    left: 100%;
    z-index: 1;
}

nav .nav-item .c-dropdown .c-dropdown-sub li a {
    margin-bottom: 10px;
}

nav .nav-item .c-dropdown .c-dropdown-sub li:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

nav .nav-item .c-dropdown .c-dropdown-sub li:last-child:after {
    content: none;
}

nav .nav-item .c-dropdown .c-dropdown-sub a:hover {
    color: #82B1B2 !important;
}

/*---------- End Navigation ----------*/

/*---------- Footer ----------*/

.footer-title-height {
    height: 35px;
    cursor: default !important;

}

.footer-title-height-2 {
    height: 30px;
}

footer {
    position: relative;
    padding: 140px 80px 60px 80px;
    background: var(--bg-footer);
    font-family: var(--font-light);
    font-size: 14px;
    color: var(--color-footer);
}

footer .logo {
    position: absolute;
    width: 200px;
    height: auto;
    object-fit: contain;
    top: -55px;
    z-index: 2;
}

footer .watermark {
    position: absolute;
    width: auto;
    height: 500px;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
}

/********************/
footer .social-list li {
    transition: all 0.3s;
}

footer .social-list li:hover {
    transform: translateY(-5px);
}

/********************/
footer .links .c-dropdown-sub {
    display: none;
    padding-left: 10px;
}

footer .links .title {
    color: var(--color-secondary);
    font-family: var(--font-bold);
    font-size: 18px;
}

footer .links .title i {
    display: none;
}

footer .links li {
    padding-bottom: 7.5px;
    cursor: pointer;
}


.bg-blue-vert .links li i {
    margin-left: 5px;
    color: #9BB7B7;
    font-size: 25px;
}

.bg-blue-vert .links .c-dropdown-sub {
    display: none;
    padding-left: 10px;
}

.bg-blue-vert .links li span {
    font-size: 1.875rem;
}

.bg-blue-vert .links .title {
    color: var(--color-secondary);
    font-family: var(--font-bold);
}

.bg-blue-vert .links .title i {
    display: none;
}

.bg-blue-vert .links li {
    font-family: var(--font-bold);
    color: var(--color-secondary);
    font-size: 1.5625rem;
    padding-bottom: .5rem !important;
    cursor: pointer;
}

.m-x-100 {
    margin: 0 100px;
}

/*---------- End Footer ----------*/

/*---------- Search ----------*/
.searchBox {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: 75px;
    background: #4e8d92;
    z-index: -1;
}

.searchBox i {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

.form-search {
    position: relative;
    width: 450px;
    height: 55px;
    margin: auto;
    background: transparent !important;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #fff !important;
    color: #fff !important;
}

.form-search::-webkit-input-placeholder {
    color: #fff;
}

/*---------- End Search ----------*/
.display-none {
    display: none;
}

.display-inherit {
    display: inherit;
}

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

.rotate-180 {
    transform: rotate(180deg);
}

.mx-100 {
    margin: 0 -100px;
}

/*
|--------------------------------------------------------------------------
| End General Styling
|--------------------------------------------------------------------------
*/


/*
|--------------------------------------------------------------------------
| Home Page
|--------------------------------------------------------------------------
*/

/*---------- Home SLick ----------*/
.home-header {
    position: relative;
    padding-top: 74px;
}

.home-header .watermark {
    position: absolute;
    top: -20%;
    right: -45%;
    height: 125%;
}

/********************/
.home-slide {
    position: relative;
    height: 100vh;
}

.home-slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: var(--bg-gradient);
    opacity: 0.25;
}

.home-slide .info {
    position: absolute;
    top: 50%;
    left: calc(15% + 100px);
    transform: translateY(-50%);
    width: 35%;
    color: #fff;
}

.home-slide .info .title {
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.home-slide .info .description {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/********************/
.slick-prev,
.slick-next {
    width: auto;
    height: auto;
    top: 50%;
    z-index: 1;
}

.slick-prev {
    left: 35px;
}

.slick-prev:before {
    content: url('../images/icons/angle-left.svg');
}

.slick-next {
    right: 35px;
}

.slick-next:before {
    content: url('../images/icons/angle-right.svg');
}

/*---------- End Home SLick ----------*/

.core.prev {
    left: 15% !important;
}

.core-slick {}



/*---------- Home Iframe ----------*/
.video-section {
    position: relative;
    font-size: 0;
}

.video-section iframe {
    width: 100%;
    height: 100vh;
}

.video-section .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 100%;
}

.video-section .video-play:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
}

/*---------- End Home Iframe ----------*/

/*---------- Corporate Grid ----------*/
.corporate {
    position: relative;
    display: inline-block;
    width: calc(100% / 3);
    height: 275px;
    color: #fff;
}

.corporate:before,
.corporate:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    ;
}

.corporate:before {
    opacity: 0.4;
}

.corporate:after {
    background-image: linear-gradient(transparent, #08394E);
    opacity: 0.65;
}

.corporate[data-grid="0"]:before {
    background: #003886;
}

.corporate[data-grid="1"]:before {
    background: #2AA77A;
}

.corporate[data-grid="2"]:before {
    background: #82D4F5;
}

.corporate[data-grid="3"]:before {
    background: #035E6A;
}

.corporate[data-grid="4"]:before {
    background: #82D4F5;
}

.corporate[data-grid="5"]:before {
    background: #003886;
}

.corporate .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 115px 15px 15px;
    z-index: 1;
}

.corporate .info p {
    font-size: 12px;
    font-family: var(--font-light);
    margin-bottom: 20px;
    color: var(--color-2);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 15px;
    max-height: 30px;
}

.corporate .info button {
    font-size: 10px;
}

.corporate:hover:before {
    opacity: 0;
}

/*---------- End Corporate Grid ----------*/

/*---------- Section Values ----------*/
.section-values {
    position: relative;
    background-image: var(--bg-gradient);
    overflow: hidden;
}

.section-values .watermark {
    position: absolute;
    bottom: -5%;
    right: -45%;
    height: 345%;
    opacity: 0.2;
}

.section-values .value {
    font-family: var(--font-light);
    font-size: 13px;
}

.section-values .value .picture {
    position: relative;
}

.section-values .value .picture svg {
    width: 100%;
    height: auto;
}

.section-values .value .picture svg path {
    transition: all 0.3s;
}

.section-values .value:hover .picture svg path {
    fill: #fff;
}

.section-values .value:hover .picture svg path.bg {
    fill: #01b389;
}

.section-values .value .title {
    font-size: 20px;
    font-family: var(--font-bold);
    margin-bottom: 5px;
}

/********************/
.section-values .value.top .picture {
    margin-bottom: 15px;
}

.section-values .value.bottom .picture {
    margin-top: 15px;
}

/*---------- End Section Values ----------*/

/*---------- Section Cores ----------*/

.item {
    text-align: center;
    color: var(--color-primary);
    cursor: pointer;
}

.item span {
    font-family: var(--font-light);
}

/********************/
.section-core .item.active img {
    opacity: 0.5 !important;
    transition: all 0.3s;
}

.section-core .item img {
    display: block;
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    object-fit: contain;
}

/*---------- End Section Cores ----------*/

/*---------- Section Project ----------*/
.section-project {
    position: relative;
}

.section-project .section-core {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(228, 246, 253, 0.75);
    z-index: 1;
}

/********************/
.core-slide {
    position: relative;
    height: 100vh;
}

.core-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #032C3E, #052D3E);
    opacity: 0.5;
}

.core-slide .info {
    position: absolute;
    top: 50vh;
    width: 35%;
    color: #fff;
}

.core-slide .info p {
    margin-bottom: 35px;
    font-family: var(--font-light);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 25px;
    max-height: 75px;
}

.core-slide .info p span {
    color: white !important;
    margin-bottom: 35px;
    font-family: var(--font-light);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 25px;
    max-height: 75px;
}

/*---------- End Section Project ----------*/

/*---------- Section Development Stages ----------*/
.section-stages {
    background-image: var(--bg-stages);
    -webkit-border-radius: 200vh 200vh / 30vh 30vh;
    margin: 0 -100px;
    position: relative;
}

.section-stages .stage svg,
.section-stages .stage img {
    width: 100%;
    margin-bottom: 25px;
    padding: 15px;
    height: 173px;
}

.section-stages .stage svg path,
.section-stages .stage img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-stages .stage:hover path {
    fill: #fff;
}

.section-stages .stage span,
.section-stages .stage img {
    color: #06A4CE;
    display: block;
    font-size: 32px;
}

/*---------- End Section Development Stages ----------*/

/*---------- Section Products ----------*/
.section-products .item .picture {
    position: relative;
    margin-bottom: 25px;
}

.section-products .item .picture:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 56, 134, 0.5);
    border-radius: 100%;
    opacity: 0;
    transition: all 0.3s;
}

.section-products .item .picture img {
    width: 100%;
    border-radius: 100%;
}

.section-products .item .picture span {
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-bold);
    font-size: 22px;
    color: #fff;
    transition: all 0.3s;
    z-index: 1;
}

.section-products .item span {
    font-size: 20px;
}

.section-products .item .picture:hover:after,
.section-products .item .picture:hover span {
    opacity: 1;
}

/*---------- End Section Products ----------*/

/*---------- Section Recipes ----------*/
.section-recipes {
    position: relative;
    height: 750px;
    -webkit-border-radius: 200vh 200vh 0 0 / 30vh 30vh;
    margin: 0 -100px;
    overflow: hidden;
    z-index: 1;

    /* opacity: 0.65; */
    background-attachment: fixed;
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
}

.section-recipes:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-gradient);
    opacity: 0.5;
}

.section-recipes .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.section-recipes .info h1 {
    font-size: 65px;
    margin-bottom: 20px;
}

.section-recipes .info p {
    margin-bottom: 35px;
}

/*---------- End Section Recipes ----------*/

/*---------- Contact Section ----------*/
.section-contact {
    position: relative;
    color: #fff;
    background-image: linear-gradient(#073D8A, #56B89D);
}

.contact-wrapper {
    position: relative;
    width: 100%;
    max-width: 570px;
    height: 100%;
}

.section-contact .info {
    padding: 100px 45px 100px;
}

#map {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 570px);
}

.gmnoprint {
    display: none;
}

.gm-style .gm-style-iw-c {
    color: #000 !important;
}

/*---------- End Contact Section ----------*/

/*
|--------------------------------------------------------------------------
| End Home Page
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| About Page
|--------------------------------------------------------------------------
*/
.about-mission-text p span {
    color: var(--color-tertiary) !important
}

.about-nav-color {
    background: rgb(225, 234, 241);
}

/**********General Css**********/
.font-size-50 {
    font-size: 3.125rem;
}

.font-size-40 {
    font-size: 2.5rem;
}

.font-size-37 {
    font-size: 2.3125rem;
}

.font-size-35 {
    font-size: 2.1875rem;
}

.font-size-32 {
    font-size: 2rem;
}

.font-size-30 {
    font-size: 1.875rem;
}

.font-size-27 {
    font-size: 1.6875rem;
}

.font-size-25 {
    font-size: 1.5625rem;
}

.font-size-24 {
    font-size: 1.5rem;
}

.font-size-22 {
    font-size: 1.375rem;
}

.font-size-21 {
    font-size: 1.3125rem;
}

.font-size-20 {
    font-size: 1.25rem;
}

.font-size-19 {
    font-size: 1.1875rem;
}

.font-size-18 {
    font-size: 1.125rem;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-16 p,
.font-size-16 p span,
.font-size-16 p strong,
.font-size-16 ul li {
    font-size: 16px !important;
}

.font-size-20 p,
.font-size-20 p span,
.font-size-20 p strong,
.font-size-20 ul li {
    font-size: 20px !important;
}

.font-size-15 {
    font-size: 15px;
}

.line-height-2 {
    line-height: 2;
}

.line-height-17 {
    line-height: 1.7;
}

.w-lg-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-73 {
    width: 73% !important;
}

.w-15 {
    width: 15%;
}

.w-title {
    width: 245px;
    padding: 20px 0 !important;
}

.height-60vh {
    height: 60vh !important;
}

.height-70vh {
    height: 70vh !important;
}

.home-products-wrapper {
    position: relative;
    padding-top: 100%;
}

.image-wrapper {
    position: relative;
    padding-top: 70%;
}

.member-wrapper {
    position: relative;
    padding-top: 70%;
}

.image-ratio {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.border-radius-8 {
    border-radius: 8px !important;
}

.border-radius-25 {
    border-radius: 25px;
}

.border-radius-20 {
    border-radius: 20px;
}

.border-radius-12 {
    border-radius: 12px;
}

.border-light-blue {
    border: 1px solid #82B1B2 !important;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.parallax {
    /* background-image: url('../images/about-naqua.png'); */
    height: 100%;
    position: relative; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed !important;
    /*background-position: center;*/
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* .parallax::before {     */
    /* content: "";
    background-image: url('../images/about-naqua.png');
    height: 100%;
    width: 100%;
    position: absolute; */
    /* top: 0px;
    left: 0px; */
    /* Create the parallax scrolling effect */
    /* background-attachment: fixed; */
    /*background-position: center;*/
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* opacity: 0.65; */
/* } */

.bg-light-blue {
    background: rgba(228, 246, 253, 0.75);
}

.rounded-section {
    -webkit-border-radius: 200vh 200vh / 30vh 30vh;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

/********************/
.banner-cover {
    position: relative;
    height: 100vh;
    margin: 0 -100px;
}

.banner-cover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: var(--bg-gradient);
    opacity: 0.35;
    border-bottom-left-radius: 200vh 30vh;
    border-bottom-right-radius: 200vh 30vh;
}

.banner-cover .cover {
    border-bottom-left-radius: 200vh 30vh;
    border-bottom-right-radius: 200vh 30vh;
}

.banner-cover .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    text-align: center;
}

.banner-cover .info .title {
    font-size: 4.0625rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.banner-cover .info .description {
    font-size: 1.375rem;
    font-family: var(--font-light);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/*---------- Section Values ----------*/
.about-section-values {
    background: var(--color-bleu-vert) !important;
    -webkit-border-radius: 200vh 200vh / 30vh 30vh;
    margin: 0 -100px;
}

.about-section-values .value {
    font-size: 16px;
}

.about-section-values .value .picture svg path {
    fill: #fff;
}

.about-section-values .value .picture svg path.bg {
    fill: #06A4CE;
}

.about-section-values .value:hover .picture svg path {
    fill: #06A4CE;
}

.about-section-values .value:hover .picture svg path.bg {
    fill: #fff;
}

.about-section-values .value .title {
    font-size: 24px;
}

/*----------About Section Satges ----------*/
.about-section-stages {
    background-color: var(--bg-body);
    background-image: none;
    border-bottom-left-radius: 200vh 30vh;
    border-bottom-right-radius: 200vh 30vh;
    margin: 0 -100px;
    position: relative;
}

.about-section-stages .stage:hover path {
    fill: var(--color-secondary);
}

.about-section-stages .stage span {
    color: var(--color-secondary);
    display: block;
    font-size: 52px;
}

.about-section-stages .stage p {
    font-size: 18px;
}

/*----------About Section Board ----------*/
.board-section {
    background: white !important;
}

.board-section .bg-blue {
    cursor: pointer;
}

.board-section .title {
    font-size: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 23px;
}

.board-section .position {
    font-size: 18px;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 21px;
}

.board-section .description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    height: 192px;
}

.bg-blue {
    background-image: var(--bg-stages);
}

/*----------About Section Message ----------*/
.message-section {
    padding: 100px 0 150px 0;
    background-color: var(--color-bleu-vert) !important;
    background-image: none;
    border-bottom-left-radius: 200vh 30vh;
    border-bottom-right-radius: 200vh 30vh;
    margin: -160px -100px 0 -100px;
    padding: 180px 0 70px 0;
}

.about_pattern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 100%;
    width: auto;
}

/*----------About Section Mission and Vision ----------*/
.mission-vision-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mission-vision-section .vision-padding {
    padding-bottom: 100px;
}

.mission-vision-section .about_pattern {
    right: -20%;
    height: 100%;
    top: 5%;
    transform: translateY(5%);
}

/*----------About Section Governance ----------*/
.about-section-governance {
    background-image: var(--bg-governance);
    border-top-left-radius: 200vh 30vh;
    border-top-right-radius: 200vh 30vh;
    margin: 0 -100px;
}

.about-section-governance .title {
    font-size: 33px;
    height: 120px;
}

.about-section-governance a {
    color: white !important;
}

.slick-dots li button:before {
    font-size: 13px;
}

.about-section-stages .stages-slick .stage svg path {
    fill: #06A4CE;
}

.about-section-governance .text p {
    font-size: 22px;
    font-family: var(--font-light);
    color: var(--color-secondary-light);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.5;
    max-height: 100px;
}

.about-section-governance .text ul,
.about-section-governance .text img {
    display: none;
}

/*
|--------------------------------------------------------------------------
| End About Desktop Page
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
|  FAQS Desktop Page
|--------------------------------------------------------------------------
*/
.radius {
    -moz-border-radius-topleft: 30px;
    -webkit-border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    -webkit-border-bottom-right-radius: 30px;
    border-bottom-right-radius: 30px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.button-radius-faq {
    background-image: linear-gradient(to right, #073D8A, #56B89D);
    padding: 20px 32px;
    border: 1px solid #53b39c;
}

.button-radius-faq p {
    font-size: 13px;
}

.button-radius-faq.active {
    opacity: 0.6;
}

.faq-title {
    font-size: 1.4375rem;
}

.faq-padding {
    padding-bottom: 100px;
}

.faqs-div {
    padding: 38px 114px 64px 48px;
    background-color: var(--bg-footer);
    -moz-border-radius-topleft: 70px;
    -webkit-border-top-left-radius: 70px;
    border-top-left-radius: 70px;
    -moz-border-radius-bottomright: 70px;
    -webkit-border-bottom-right-radius: 70px;
    border-bottom-right-radius: 70px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.faq::after {
    content: '';
    border-bottom: 1px solid #AABABA !important;
    width: 100%;
    margin: 0 15px;
}

.faq:last-child::after {
    content: '';
    border-bottom: 0px solid #AABABA !important;
    width: 100%;
    margin: 0 15px;
}

.faq-btn h2 {
    transition: 0.5s;
}

.translatey {
    transform: translateY(-50%);
}

/*
|--------------------------------------------------------------------------
| End FAQS Desktop Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Media Desktop Page
|--------------------------------------------------------------------------
*/
/** News Section **/
.news:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, #08394E);
    opacity: 0.65;
    border-radius: 25px;
    transition: 0.3s;
}

.news:hover:after {

    /* opacity: 0.35; */
    background-color: rgba(7, 61, 138, 0.8);
    transition: 0.3s;
}

.news-btn-margin {
    margin: 40px 0;
    padding: 15px 40px !important;
}

.news-wrapper {
    padding-top: 100%;
    position: relative;
    height: 475px;
}

.news .info {
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1;
}

.news .info .title {
    font-size: 19px;
}

.news .info .text {
    font-size: 18px;
}

.news .info img {
    width: 27px;
    float: right;
}

.next {
    top: 50%;
    right: -70px;
}

.prev {
    top: 50%;
    left: -70px;
}

/** Gallery Section **/
.gallery-section {
    background-color: var(--bg-footer);
    -webkit-border-radius: 200vh 200vh / 30vh 30vh;
    margin: 0 -100px;
    position: relative;
}

.gallery-slick {
    padding: 48px 0 100px 0;
}

.gallery .info .title {
    font-size: 21px;
    text-align: left;
}

.bottom-0 {
    bottom: 0;
}

.gallery-prev {
    right: 49%;
    transform: translateX(-49%);
}

.gallery-next {
    left: 53%;
    transform: translateX(-53%);
}

.gallery-wrapper {
    padding-top: 66%;
    position: relative;
}

.gallery-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, #08394E);
    opacity: 0.65;
    border-radius: 20px;
}

/** Video Section **/
.video-slick {
    padding-bottom: 100px;
}

.video-wrapper {
    padding-top: 83%;
}

.video-section-gallery {
    padding-top: 50px;
    padding-bottom: 100px;
}

.center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-icon {
    width: 100px;
    height: 80px;
}

/*
|--------------------------------------------------------------------------
| End Media Desktop Page
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Gallery Desktop Page
|--------------------------------------------------------------------------
*/
img.mfp-img {
    min-width: 800px;
}

.full-gallery-wrapper {
    position: relative;
    padding-top: 80%;
    transition: 0.3s;
    background-color: rgba(7, 61, 138, 0);

}

.full-gallery-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(to top, #073D8A, #56B89D); */
    /* background-color:  rgba(7, 61, 138, 0.8); */
    opacity: 0.65;
    border-radius: 20px;
    transition: 0.3s;
}

.full-gallery-wrapper .gallery-btn {
    transition: 0.3s;
}

.full-gallery-wrapper:hover:after {
    /* background-image: linear-gradient(to top, #073D8A, #56B89D); */
    background-color: rgba(7, 61, 138, 0.8);
    transition: 0.3s;
}

.full-gallery-wrapper:hover .gallery-btn {
    display: block;
    transition: 0.3s;
}

.gallery-btn {
    color: var(--color-primary);
    background: var(--color-bleu-vert);
    font-family: var(--font-bold);
    font-size: 17px;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s;
}

/**mfp changes**/
.mfp-s-loading .mfp-arrow {
    display: none;
}

.mfp-arrow-left {
    background: url(../images/icons/previous-arrow.svg) no-Repeat top left !important;
    height: 63px;
    opacity: 1;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    left: 13px;
}

.mfp-arrow-right {
    background: url(../images/icons/next-arrow.svg) no-Repeat top left !important;
    height: 63px;
    opacity: 1;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.mfp-arrow-left::before,
.mfp-arrow-right::before {
    display: none;
}

.mfp-arrow-left::after,
.mfp-arrow-right::after {
    display: none;
    border: none;
}

.mfp-close {
    cursor: pointer;
    height: 110px !important;
    opacity: 1;
    text-align: left !important;
    right: 0 !important;
    top: 0;
    z-index: 5;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0) !important;
    position: absolute !important;
}

.mfp-close svg {
    height: 100%;
    position: absolute;
    top: -15px;
    left: -43px;
}

/* content animate it */
* {
    transition: filter .25s ease;
}

.mfp-wrap~* {
    filter: blur(10px) brightness(0.80);
}

.mfp-bg {
    background: #0b0b0b00;
}

.mfp-content {
    z-index: 5;
}

/*
|--------------------------------------------------------------------------
| End Gallery Desktop Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Core Business Desktop Page
|--------------------------------------------------------------------------
*/

.business-icon img {
    max-width: 80px;
}

.business-icon {
    padding-left: 15px;
}

.core-business-cover::after {
    content: '';
    background-color: rgba(228, 246, 253, 0.75);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.core-business-section .section-core .item {
    font-size: 21px;
}

.core-text {
    font-size: 21px;
}

.core-title {
    font-size: 50px;
}

.core-bg-right {
    top: 180px;
    left: 50%;
    height: 100%;
    z-index: 1;
    transform: rotate(180deg);
    opacity: 30%;
}

/*
|--------------------------------------------------------------------------
| Core Business Desktop Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Bahri Desktop Page
|--------------------------------------------------------------------------
*/
.bahri-padding {
    padding-bottom: 180px;
}

.related-padding {
    padding-bottom: 160px;
}

/*
|--------------------------------------------------------------------------
| Bahri Desktop Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| News Desktop Page
|--------------------------------------------------------------------------
*/
.news-cover-wrapper {
    padding-top: 40%;
}

.each-news-image-wrapper {
    padding-top: 70%;
}

.image-text-absolute {
    position: absolute;
    left: 50px;
    bottom: 30px;
}

.news-overlay {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    visibility: visible;
    transition: 1.5s;
    opacity: 0;
}

.news-overlay.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.news-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #073D8A, #56B89D);
    opacity: 0.65;
    border-radius: 20px;
    transition: 0.5s !important;
}

.news-overlay:hover:after {
    background-image: linear-gradient(to top, #073D8A, #073D8A);
    opacity: 0.4;
    transition: 0.5s !important;

}

.news-text-absolute {
    position: absolute;
    width: 80%;
    padding-left: 20px;
    bottom: 15px;
}

.search-div {
    background-color: rgba(130, 177, 178, 0.37);
    border-radius: 20px;
    padding: 16px 22px;
}

.search-div input {
    padding-left: 60px;
}

.submit-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
}

.category-padding {
    padding: 32px 45px 83px 45px;
}

.category-title-padding {
    padding: 18.5px 0 16px 0;
}

.category-icon {
    width: 45px;
    height: 45px;
}

/*
|--------------------------------------------------------------------------
| End News Desktop Page
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Business Desktop Pages
|--------------------------------------------------------------------------
*/
.business-padding {
    padding-top: 140px;
    padding-bottom: 130px;
}

.csr-image-wrapper {
    padding-top: 60%;
}

.csr-image-ratio {
    position: absolute;
    width: 85%;
    height: 100%;
    top: 0;
}

.csr-image-ratio.right {
    right: 0
}

.csr-image-ratio.left {
    left: 0;
}

.business-image-wrapper {
    padding-top: 60%;
}

.business-image-ratio {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.business-image-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: linear-gradient(to top, #073D8A, #56B89D);
    border-radius: 20px;
    opacity: 0.25;
}

.business-bg {
    top: 50%;
    left: 560px;
    height: 770px;
    width: 1400px;
    transform: translateY(-50%);
    z-index: -1;
}

/*
|--------------------------------------------------------------------------
| End Business Desktop Pages
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Products Desktop Pages
|--------------------------------------------------------------------------
*/
.bordered-btn {
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    border-radius: 8px;
    transition: 0.2s all;
}

.bordered-btn:hover {
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary) !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.each-product-padding {
    padding-top: 90px;
}

.product-wrapper {
    position: relative;
    padding-top: 67%;
}

.products-wrapper {
    position: relative;
    padding-top: 40%;
}

.certifications-wrapper {
    position: relative;
    padding-top: 67%;
}

.product-wrapper:after,
.products-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: linear-gradient(to top, #073D8A, #56B89D);
    border-radius: 20px;
    opacity: 0.25;
}

.products-next {
    top: 50%;
    right: 5%;
}

.products-prev {
    top: 50%;
    left: 5%;
}

.products-bg-right {
    top: -30%;
    left: 58%;
    height: 820px;
    width: 1400px;
    z-index: -1;
}

.products-bg-left {
    top: -30%;
    right: 58%;
    height: 820px;
    width: 1400px;
    z-index: -1;
    transform: rotate(180deg);
}

.products-text h5 {
    padding-bottom: .5rem !important;
    font-size: 19px;
}

.products-text p strong,
.products-text h5 strong {
    font-family: var(--font-regular);
    color: var(--color-primary);
    font-weight: 100;
    font-size: 19px;
}

/************Custom Popup*****************/
.blur-filter {
    filter: blur(10px) brightness(0.80);
}

.close-btn {
    position: absolute;
    top: -72px;
    left: -60px;
    z-index: 2;
    transform: rotate(180deg);
}

.overlay-close {
    position: absolute;
    /* background: red; */
    height: 100%;
    width: 100%;
}

.close-btn-bg {
    transition: 0.5s all;
}

.close-btn-bg:hover {
    fill: var(--color-primary);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 20;
}

.popup-shadow {
    box-shadow: 0rem 0.5rem 1.2rem #092c5c6b !important;
}

.popup-radius {
    -moz-border-radius-topleft: 50px;
    -webkit-border-top-left-radius: 50px;
    border-top-left-radius: 50px;
    -moz-border-radius-bottomright: 50px;
    -webkit-border-bottom-right-radius: 50px;
    border-bottom-right-radius: 50px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.input-style {
    border: 1px solid #82B1B2;
    padding: 16px;
}

.input-style::-webkit-input-placeholder {
    color: #DBE8E8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--color-primary);
}

/*
|--------------------------------------------------------------------------
| End Products Desktop Pages
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Recipes Desktop Pages
|--------------------------------------------------------------------------
*/
.recipes1-wrapper {
    position: relative;
    padding-top: 82%;
}

.recipes2-wrapper {
    position: relative;
    padding-top: 40%;
}

.recipes1-wrapper:after,
.recipes2-wrapper:afterr {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: linear-gradient(to top, #073D8A, #56B89D);
    border-radius: 20px;
    opacity: 0.25;
}

.recipes-padding {
    padding-top: 170px;
    padding-bottom: 150px;
}

.recipe-bg-right {
    top: -50%;
    left: 55%;
    height: 770px;
    width: 1400px;
    z-index: -1;
}

.details-image-wrapper {
    position: relative;
    padding-top: 40%;
    margin: 0 -15px;
}

.popup-details-image-wrapper {
    position: relative;
    padding-top: 60%;
    margin: 0 -15px;
}

.details-image-wrapper img,
.popup-details-image-wrapper img {
    border-bottom-left-radius: 200vh 15vh;
    border-bottom-right-radius: 200vh 15vh;
    border-top-right-radius: 8vh 8vh;
    border-top-left-radius: 8vh 8vh;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
}

.popup-recipe-details ul {
    padding-left: 20px;
}

.popup-recipe-details ul li {
    color: var(--color-primary);
    font-family: var(--font-regular);
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
}

.recipe-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    max-height: 54px;
    height: 54px;
}

/*
|--------------------------------------------------------------------------
| End Recipes Desktop Pages
|--------------------------------------------------------------------------
*/
.frame-width-height {
    height: 550px;
    width: 300px;
    z-index: 102;
}

.carousel {
    border-radius: 60px
}

.content-width-height {
    /* height: 735px;
 width: 352px;
 left: 24px;
 border-radius: 35px;
 top: 24px;*/
    z-index: 100;
    width: 280px;
    object-fit: cover;
    left: 180px;
    height: 555px;
    border-radius: 63px;
    top: -2.5px;
}

/*
|--------------------------------------------------------------------------
| Commerce Desktop Pages
|--------------------------------------------------------------------------
*/
.commerce-right-bg {
    top: 41%;
    left: 58%;
    height: 820px;
    width: 1400px;
    z-index: -1;
}

.commerce-wrapper {
    position: relative;
    padding-top: 61%;
}

.commerce-pading {
    padding-top: 50px;
    padding-bottom: 50px;
}

.carousel {
    margin: 0 auto;
    width: 800px;
    height: 300px;
    display: relative;
}

.carousel img {
    display: hidden;
    /* hide images until carousel prepares them */
    cursor: pointer;
    /* not needed if you wrap carousel items in links */
}

.app-btn-padding {
    padding: 6px 30px 6px 20px !important;
    margin-right: 10px;
}

.app-btn-padding img {
    width: 105px;
    height: 40px;
}

.submit-btn-padding {
    padding: 12px 24px !important;
}

/*
|--------------------------------------------------------------------------
| End Commerce Desktop Pages
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| National-Saudi Desktop Pages
|--------------------------------------------------------------------------
*/
.location-btn {
    white-space: normal;
}

.location-map {
    min-height: 617px;
}

.location-map#map:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: linear-gradient(to top, #073D8A, #56B89D);
    border-radius: 20px;
    opacity: 0.6;
}

.partner-wrapper {
    padding-top: 54%;
}

.partner-section .watermark {
    position: absolute;
    bottom: -5%;
    right: -45%;
    height: 345%;
    opacity: 0.2;
}

/*
|--------------------------------------------------------------------------
| End National-Saudi Desktop Pages
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Sustainability Desktop Pages
|--------------------------------------------------------------------------
*/
.substainability-icons-position {
    top: 0;
    right: -40px;
}

.substainability-icons {
    width: 150px;
    height: 130px;
    object-fit: contain;
}

.substainability-wrapper {
    padding-top: 58%;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3) !important;
}

.sustainability-div-height {
    height: 100px;
}

.sustainability-div .sustainability-text p,
.sustainability-div .sustainability-text h1 {
    padding-left: 3rem !important;
}

.sustainability-div h1 {
    padding-left: 1rem;
}

.sustainability-text p,
.sustainability-text p span {
    font-size: 1.375rem;
    font-family: var(--font-light);
    color: var(--color-secondary-light) !important;
}

.sustainability-text h1,
.sustainability-text h2,
.sustainability-text h3,
.sustainability-text h4 {
    font-family: var(--font-bold) !important;
    color: var(--color-secondary) !important;
    padding-bottom: 1.25rem !important;
}

.sustainability-text p strong {
    font-size: 1.375rem;
    font-family: var(--font-bold);
    color: var(--color-secondary-light) !important;
}

.sustainability-text ul {
    padding-left: 1.25rem;
}

.sustainability-text ul li {
    background: url(../images/icons/list-triangle.svg) no-repeat left center;
    list-style: none;
    /* margin: 0; */
    margin: 9px 30px 9px 32px;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-family: var(--font-light);
    padding-left: 32px;
}

/*
|--------------------------------------------------------------------------
| End Sustainability Desktop Pages
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| CSR Desktop Pages
|--------------------------------------------------------------------------
*/

.twist-border-radius {
    border-radius: 7px 100%;
}

.twist-left-border-radius {
    border-radius: 100% 7px;
}

.csr-bg-position .bg-white {
    border-radius: 7px 100%;
    transform: rotate(-16deg);
    height: 545px;
    width: 100%;
    z-index: 1;
}

.csr-bg-position {
    top: calc(100% - 400px);
    left: 58%;
    height: 100%;
    width: 100%;
}

.csr-image-position {
    bottom: -206px;
    width: 600px;
    height: auto;
    right: 0;
    z-index: 2;
}

.csr-svg-position {
    bottom: -30px;
    right: 438px;
    width: 500px;
}

.csr-svg-position svg {
    width: 100%;
    height: auto;
    margin-bottom: -20px;
    transform: rotate(-2deg);
}

.csr-wrapper {
    padding-top: 80%;
    transform: rotate(-27deg);
    border: 50px solid #fff;
    border-top-width: 0;
    border-right-width: 0;
}

/* -----Left Side----- */
.csr-bg-left-position .bg-left-blue {
    transform: rotate(17deg);
    height: 515px;
    width: 100%;
    z-index: 1;
    background-image: linear-gradient(#2e7993, #0c448b);
}

.csr-bg-left-position {
    top: calc(100% - 413px);
    left: -55%;
    height: 100%;
    width: 100%;
}

.csr-image-left-position {
    top: calc(100% - 540px);
    width: 100%;
    height: 100%;
    left: -66%;
    z-index: 2;
}

.csr-svg-left-position {
    bottom: -12px;
    right: 6%;
}

.csr-svg-left-position svg path {
    fill: #B4CED9;
    opacity: 0.4;
}

.csr-svg-left-position svg {
    transform: rotate3d(-4, 200, 1, 180deg);
}

.csr-left-wrapper {
    padding-top: 80%;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3) !important;
    transform: rotate(30deg);
}

/*
|--------------------------------------------------------------------------
| End CSR Desktop Pages
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Careers Desktop Pages
|--------------------------------------------------------------------------
*/
.hr-careers {
    border: 0;
    height: 2px;
    background-color: #82B1B2;
    margin-bottom: 57px;
    margin-top: 57px;
}

.m-careers {
    margin-left: 15px;
    margin-right: 15px;
}

.careers-hover {
    margin-bottom: 60px;
    transition: 0.5s all;
    cursor: pointer
}

.careers-hover:hover h3 {
    color: white !important;
}

.careers-hover:hover h4 {
    color: white !important;
}

.careers-hover:hover hr {
    color: white !important;
}

.careers-hover .careers-div {
    transition: 0.2s all;
}

.careers-hover:hover .careers-div {
    box-shadow: 0rem 0.5rem 1.2rem #092c5c6b !important;
}

.careers-hover:hover .careers-text {
    color: white !important;
}

.careers-hover:hover .careers-btn {
    color: var(--color-primary);
    background: white !important;
}

.careers-hover:hover .bg-footer {
    background: var(--bg-gradient) !important;
}

.careers-form {
    border: 1px solid #A1C4C5;
}

.careers-form .close-btn {
    left: -10px;
}

.close-career {
    transition: 2s all;
    position: absolute;
    top: -55px;
    left: -68px;
    z-index: 2;
    height: 110px;
    transform: rotate(180deg);
}

.close-career svg {
    height: 100%;
}

.careers-attach img {
    width: 24px;
}


@keyframes animatedHide {
    from {
        -webkit-transform: rotate3d(1, 200, 1, 00deg);
        transform: rotate3d(1, 200, 1, 00deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }

    50% {
        -webkit-transform: rotate3d(1, 200, 1, 45deg);
        transform: rotate3d(1, 200, 1, 45deg);
        opacity: 0.5;
    }

    to {

        -webkit-transform: rotate3d(1, 200, 1, 90deg);
        transform: rotate3d(1, 200, 1, 90deg);
        opacity: 0.2;
    }
}

.animatedHide {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: animatedHide;
    animation-name: animatedHide;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

@keyframes animatedDisplay {
    from {
        -webkit-transform: rotate3d(1, 200, 1, 90deg);
        transform: rotate3d(1, 200, 1, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0.2;
    }

    50% {
        -webkit-transform: rotate3d(1, 200, 1, 45deg);
        transform: rotate3d(1, 200, 1, 45deg);
        opacity: 0.5;
    }

    to {

        -webkit-transform: rotate3d(1, 200, 1, 0deg);
        transform: rotate3d(1, 200, 1, 0deg);
        opacity: 1;
    }
}

.animatedDisplay {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: animatedDisplay;
    animation-name: animatedDisplay;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

/*
|--------------------------------------------------------------------------
| End Careers Desktop Pages
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Inputs & Buttons Styling
|--------------------------------------------------------------------------
*/

/*---------- Button Language ----------*/
.btn-lang {
    border: 2px solid var(--color-primary);
    border-radius: 100%;
    padding: 4px 6px;
    text-align: center;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-lang:hover {
    background: var(--color-primary);
    color: #fff;
}

/*---------- End Button Language ----------*/

/*---------- Button Search ----------*/
.btn-search {
    cursor: pointer;
    object-fit: contain;
}

/*---------- End Button Search ----------*/

/*---------- Button Custom ----------*/
.btn-custom {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-bold);
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s;
}

.btn-gradient {
    background: var(--bg-gradient);
    color: #fff;
    font-family: var(--font-bold);
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s;
    border: 1px solid #49a49a;
}

.btn-custom.bigger,
.btn-gradient.bigger {
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-custom:hover:not(.btn-appstore),
.btn-gradient:hover:not(.btn-appstore) {
    background: #fff;
    color: var(--color-primary) !important;
}

.btn-gradient:hover:not(.btn-appstore) {
    border: 1px solid #fff;
}

/*---------- End Button Custom ----------*/

.form-control:focus {
    box-shadow: none !important;
    border-color: inherit;
}

.form-control {
    height: 45px;
    border-radius: 0;
    border: none;
}

textarea {
    resize: none;
}

/*---------- End Inputs Styling ----------*/


/*
|--------------------------------------------------------------------------
| End Inputs & Buttons Styling
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Animation Styling
|--------------------------------------------------------------------------
*/
.slide-in-up {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    transition: 1.5s;
    opacity: 0;
}

.slide-in-up.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.slide-in-down,
.news-title-slide-down {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
    transition: 1.5s;
    opacity: 0;
}

.slide-in-down.show,
.news-title-slide-down.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.animate-from-left {
    transform: translateX(-15%);
    opacity: 0;
    transition: 1.5s;
}

.animate-from-right {
    transform: translateX(15%);
    opacity: 0;
    transition: 1.5s;
}

.animate-from-right.show,
.animate-from-left.show {
    transform: translateX(0);
    opacity: 1;
}

.rollIn {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transition: 1.5s;
}

.rollIn.show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.governance,
.gallery-item {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
    transition: 1.5s;
}

.governance.show,
.gallery-item.show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }

    50% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -18deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -18deg);
        opacity: 1;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 18deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 18deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

/*
|--------------------------------------------------------------------------
| End Animation Styling
|--------------------------------------------------------------------------
*/


/*
|--------------------------------------------------------------------------
| Responsiveness Media Queries
|--------------------------------------------------------------------------
*/
@media (min-width: 1200px) {
    .container {
        max-width: 1620px;
    }

    .m-100 {
        margin: 0 100px;
    }

    /*-----Careers Desktop----*/
    .careers-row {
        /*margin: 0 -30px;*/
    }

    /********csr Desktop**********/
    .csr-padding {
        padding-top: 140px;
    }

    .location-icon {
        width: 45px;
        height: 40px;
    }
}

@media (min-width: 1200px) and (max-width:1690px) {
    .next {
        right: 0;
    }

    .prev {
        left: 0;
    }
}

@media (min-width: 1200px) and (max-width:1560px) {
    .csr-bg-position {
        top: calc(100% - 320px);
        left: 400px;
    }

    .csr-bg-position .bg-white {
        border-radius: 7px 100%;
        transform: rotate(-14deg);
        height: 500px;
    }

    .csr-left-wrapper {
        transform: rotate(25deg);
    }

    .csr-image-left-position {
        top: calc(100% - 460px);
        width: 100%;
        height: 100%;
        left: -450px;
    }

    .csr-bg-left-position .bg-left-blue {
        opacity: 0;
        transform: rotate(18deg) !important;
        height: 530px !important;
    }

    .csr-bg-left-position {
        top: calc(100% - 360px) !important;
        left: -60%;
    }

    .categories-padding {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .csr-svg-left-position {
        bottom: -35px;
        right: -2%;
    }

    .csr-svg-left-position svg {
        transform: rotate3d(3, 200, 1, 180deg);
    }
}

@media (min-width: 1300px) and (max-width:1400px) {
    .csr-bg-position .bg-white {
        transform: rotate(-18deg);
    }

    .csr-bg-position {
        top: calc(100% - 350px);
        left: 400px;
    }

    .csr-left-wrapper {
        transform: rotate(29deg);
    }

    .csr-image-left-position {
        top: calc(100% - 460px);
        left: -450px;
    }

    .csr-svg-left-position svg {
        transform: rotate3d(-5, 200, 1, 180deg);
    }

    .csr-svg-left-position {
        bottom: -45px;
        right: -2%;
    }
}

@media (min-width: 1200px) and (max-width:1300px) {
    .csr-wrapper {
        transform: rotate(-26deg);
    }

    .csr-bg-position {
        top: calc(100% - 370px);
        left: 400px;
    }

    .csr-bg-position .bg-white {
        border-radius: 7px 100%;
        transform: rotate(-21deg);
        height: 500px;
    }

    .csr-left-wrapper {
        transform: rotate(29deg);
    }

    .csr-image-left-position {
        top: calc(100% - 440px);
        left: -450px;
    }

    .csr-bg-left-position .bg-left-blue {
        opacity: 0;
    }

    .categories-padding {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .csr-svg-left-position {
        bottom: -45px;
        right: -2%;
    }

    .csr-svg-left-position svg {
        transform: rotate3d(-7, 200, 1, 180deg);
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .footer-title-height {
        height: 35px;
    }

    .footer-title-height-2 {
        height: 25px;
    }

    .m-careers {
        margin-left: 0;
        margin-right: 0;
    }

    footer {
        padding: 140px 30px 60px 30px;
    }
}

@media (min-width: 992px) {

    .vh-lg-100 {
        height: 100vh;
    }

    /*---------- Banner Cover  ----------*/
    /* .banner-cover{
        margin: 0 150px !important;
        }*/
    /*---------- Section Values & Stages Animtaion ----------*/
    .member {
        opacity: 0;
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
        transition: 1.5s;
    }

    .member.show {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .section-values .value,
    .section-stages .stage {
        opacity: 0;
        transition: all 1s;
    }

    /*---------- End Section Values & Stages Animtaion ----------*/

    .animation.up {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
        -webkit-transform: translate3d(0px, 100px, 0px);
        transform: translate3d(0px, 100px, 0px);
    }

    .animation.down {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
        -webkit-transform: translate3d(0px, -100px, 0px);
        transform: translate3d(0px, -100px, 0px);
    }

    .animation.in-view {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0px, 0px, 0px);
        transform: translate3d(0px, 0px, 0px);
    }

    /*Commerce Page*/
    .pr-lg-commerce {
        padding-right: 98px;
    }

    .pl-lg-commerce {
        padding-left: 98px;
    }

    .px-lg-32 {
        padding-right: 32px !important;
        padding-left: 32px !important;
    }

    .contact-map {
        height: 60vh;
    }

    .become-reseller-btn {
        position: absolute;
        top: 0px !important;
        right: 15px;
    }

    .contact-map #map {
        position: absolute;
        top: 0;
        right: 1rem;
        width: calc(100% - 30px);
    }

    /********Substainability Desktop**********/
    .substainability-padding {
        padding-top: 70px;
    }

    .substainability-section-padding {
        padding-bottom: 70px;
    }


    /********Contact Desktop**********/
}

@media (max-width: 1200px) {
    .mfp-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .banner-cover p.description {
        font-size: 1rem !important;
    }

    .banner-cover .title {
        font-size: 2.5rem !important;
    }

    .banner-cover .info {
        width: 100% !important;
    }

    /*
        |--------------------------------------------------------------------------
        | News Responsive Page
        |--------------------------------------------------------------------------
        */
    .category-padding {
        padding: 30px 20px 60px 20px;
    }

    .image-text-absolute {
        left: 15px;
    }

    .w-xs-77 {
        width: 77%;
    }

    .news-triangle {
        width: 50px;
    }

    .news-text-absolute {
        width: 100%;
        left: 0;
        padding: 0 10px !important;
        line-height: 1.5;
    }

    .news-cover-wrapper {
        padding-top: 80%;
    }

    /*
        |--------------------------------------------------------------------------
        | End News Responsive Page
        |--------------------------------------------------------------------------
        */
    .location-icon {
        width: 35px;
        height: 35px;
    }

}

@media (max-width: 991px) {

    /*
    |--------------------------------------------------------------------------
    | General Styling
    |--------------------------------------------------------------------------
    */
    .home-header {
        padding-top: 0;
    }

    .section-project .slick-next.slick-arrow,
    .section-project .slick-prev.slick-arrow {
        display: none !important;
    }


    /*---------- Gallery popup image ----------*/
    img.mfp-img {
        min-width: 100%;
    }

    /*---------- Gallery popup image ----------*/

    /*---------- Footer ----------*/

    .footer-title-height {
        height: 35px;
    }

    .footer-title-height-2 {
        height: 25px;
    }

    footer {
        padding: 100px 15px 35px;
    }

    footer .logo {
        width: 125px;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
    }

    footer .links .c-dropdown {
        display: none;
    }

    footer .links .title i {
        display: inline-block;
    }

    /*---------- End Footer ----------*/

    /*---------- Menu ----------*/
    .menu-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        background: rgba(255, 255, 255, 0.75);
        transition: all 0.3s;
    }

    /********************/
    .menu-mobile.onScroll {
        background: #fff;
    }

    /********************/
    .menu-mobile .header {
        position: relative;
        height: 50px;
        padding: 0 15px;
    }

    .menu-mobile .header .logo {
        width: auto;
        height: 50px;
        top: 25px;
        position: absolute;
        object-fit: contain;
    }

    /********************/
    .burger {
        background: transparent;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        transition: all 0.3s;
    }

    .burger span {
        position: relative;
        display: block;
        background: var(--color-primary);
        width: 30px;
        height: 3px;
        margin: 3px 0;
        transition: all 0.3s;
    }

    /* Button on close */
    .burger.change {
        padding: 0;
        position: relative;
        top: 0;
        transform: translateY(0);
    }

    .burger.change span {
        background: #fff;
    }

    .burger.change span:nth-child(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .burger.change span:nth-child(2) {
        background: transparent !important;
    }

    .burger.change span:nth-child(3) {
        transform: rotate(-45deg);
        top: -6px;
    }

    /********************/
    .menu-action .btn-lang {
        border-color: #9fd7d8;
        color: #9fd7d8;
    }

    .menu-action img {
        display: inline-block;
        width: 28px;
    }

    /********************/
    .menu-mobile .menu-content {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--bg-gradient) !important;
        color: #fff;
        font-size: 20px;
        padding: 25px 50px;
        overflow: auto;
        transition: all 0.5s;
    }

    .menu-mobile .menu-content ul.links li {
        margin-bottom: 5px;
    }

    .menu-mobile .menu-content ul.links li:last-child {
        margin-bottom: 0;
    }

    .menu-mobile .menu-content ul.links li>div {
        position: relative;
        font-family: var(--font-bold);
    }

    .menu-mobile .menu-content ul.links li>div i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        font-size: 18px;
    }

    /* Menu when showen */
    .menu-mobile .menu-content.show {
        top: 0;
    }

    /********************/
    .menu-mobile .menu-content .c-dropdown {
        display: none;
        color: var(--color-1);
        font-size: 15px;
        margin: 5px 0 20px;
    }

    /********************/
    .menu-mobile .menu-content .c-dropdown-sub {
        display: none;
        font-family: var(--font-light);
        padding: 0 15px;
        margin-bottom: 10px;
    }

    /********************/
    .menu-search {
        display: none;
        margin-bottom: 15px !important;
    }

    .menu-search .form-search {
        width: 100%;
    }

    /********************/
    .menu-mobile .social-list svg {
        width: 20px;
        height: auto;
    }

    /*---------- End Menu ----------*/
    .w-lg-80 {
        width: 100%;
    }

    /*
    |--------------------------------------------------------------------------
    | End General Styling
    |--------------------------------------------------------------------------
    */


    /*
    |--------------------------------------------------------------------------
    | Home Page
    |--------------------------------------------------------------------------
    */

    /*---------- Home SLick ----------*/
    .home-slide .info {
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 15px;
    }

    .home-slide .info .title {
        font-size: 2rem;
    }

    .home-slick .slick-prev,
    .home-slick .slick-next {
        top: 90%;
    }

    /*---------- End Home SLick ----------*/

    /*---------- Corporate Grid ----------*/
    .corporate .info {
        text-align: center;
        width: 75%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
    }

    .corporate-grid-slick .slick-dots {
        bottom: -15px;
    }

    .corporate-grid-slick .slick-dots li button:before {
        background: #003886;
    }

    /*---------- End Corporate Grid ----------*/

    /*---------- Section Values ----------*/
    .section-values .value {
        padding: 0 50px;
        font-size: 15px;
    }

    .values-slick .slick-dots {
        bottom: -30px;
    }

    .values-slick .slick-dots li button:before {
        background: #55B69C;
    }

    /*---------- End Section Values ----------*/

    /*---------- Section Stages ----------*/
    .stages-slick {
        margin: 0 85px;
    }

    .stages-slick .stage img {
        width: 100%;
        /* margin: auto; */
        margin-bottom: 25px;
    }

    .stages-slick .slick-dots {
        bottom: -40px;
    }

    .history-slick .slick-dots {
        bottom: 12px;
    }

    .stages-slick .slick-dots li button:before {
        background: #55B69C;
    }

    /*---------- End Section Stages ----------*/

    /*---------- Section Products ----------*/
    .section-products .item .picture span {
        font-size: 15px;
    }

    .section-products .item.showMobile .picture:after,
    .section-products .item.showMobile span {
        opacity: 1;
    }

    /*---------- Section Products ----------*/

    /*---------- Section Recipes ----------*/
    .section-recipes .info h1 {
        font-size: 50px
    }

    /*---------- End Section Recipes ----------*/

    /*---------- Section Contact ----------*/
    .section-contact .contact-wrapper {
        margin: auto;
    }

    .section-contact .info {
        height: auto;
        padding: 50px 15px 50px
    }

    #map {
        position: relative !important;
        width: 100%;
        height: 500px !important;
        border-radius: 0 !important;
    }

    .contact-map#map,
    .location-map#map {
        border-radius: 20px !important;
    }

    /*---------- End Section Contact ----------*/

    /*
    |--------------------------------------------------------------------------
    | End Home Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | About Responsive Page
    |--------------------------------------------------------------------------
    */
    .vh-lg-100 {
        height: 100%;
    }

    .font-size-50 {
        font-size: 2.125rem;
    }

    .font-size-40 {
        font-size: 2rem;
    }

    .font-size-32 {
        font-size: 1.52rem;
    }

    h1 {
        font-size: 2rem;
    }

    .about-section-values {
        margin: 0 auto;
    }

    .about-section-stages {
        margin: 0 auto;
    }

    .about-section-governance {
        margin: 0 auto;
    }

    .mission-vision-section {
        padding-top: 0;
        padding-bottom: 50px;
        background: white;
    }

    .mission-vision-section .vision-padding {
        padding: 20px;
    }

    .mission-vision-section .about_pattern {
        height: 250px;
        top: auto;
        right: auto;
        transform: translateY(0);
        position: relative;
    }

    .message-section {
        padding-top: 160px;
        padding-bottom: 50px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .message-section .about_pattern {
        position: relative;
        top: 0;
        right: 0;
        height: 300px;
        transform: translateY(0);
    }

    .about-section-governance .title {
        font-size: 1.5rem;
    }

    .about-section-governance .text {
        font-size: 1rem;
    }

    .member-wrapper {
        padding-top: 90%;
    }

    /*--------------- Members slick ---------------------*/
    .slick-dots li button:before {
        content: "";
        background: #125491;
    }

    .about-section-stages .stages-slick .stage svg {
        margin-bottom: 0;
    }

    /*
    |--------------------------------------------------------------------------
    | End About Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | FAQ Responsive Page
    |--------------------------------------------------------------------------
    */
    .faqs-div {
        padding: 20px;
    }

    .faq-padding {
        padding-bottom: 50px;
    }

    .info-icon {
        width: 30px !important;
    }

    .faq-title {
        font-size: 20px;
    }

    /*
    |--------------------------------------------------------------------------
    | End FAQ Responsive Page
    |--------------------------------------------------------------------------
    */

    /*
    |--------------------------------------------------------------------------
    | Media Responsive Page
    |--------------------------------------------------------------------------
    */

    .video-slick {
        padding-bottom: 60px;
    }

    .gallery-section {
        margin: 0 auto;
    }

    .gallery-slick {
        padding: 60px 0 100px 0;
    }

    .gallery-next {
        left: 70%;
        transform: translateX(-70%);
    }

    .gallery-prev {
        left: 30%;
        transform: translateX(-30%);
    }

    .next {
        right: 0%;
    }

    .prev {
        left: 0%;
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px;
    }

    .mfp-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /*
    |--------------------------------------------------------------------------
    | End Media Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | Core Business Responsive Page
    |--------------------------------------------------------------------------
    */
    .core-title {
        font-size: 1.5rem;
    }

    .core-text {
        font-size: 1rem;
    }

    /*
    |--------------------------------------------------------------------------
    | End Core Business Responsive Page
    |--------------------------------------------------------------------------
    */

    /*
    |--------------------------------------------------------------------------
    | bahri Responsive Page
    |--------------------------------------------------------------------------
    */
    .bahri-padding {
        padding-bottom: 60px;
    }

    .related-padding {
        padding-bottom: 60px;
    }

    /*
    |--------------------------------------------------------------------------
    | End bahri Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | Business Responsive Page
    |--------------------------------------------------------------------------
    */
    .business-padding {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .each-product-padding {
        padding-top: 60px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Business Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | Products Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | End Products Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | Recipes Responsive Page
    |--------------------------------------------------------------------------
    */
    .details-image-wrapper {
        padding-top: 60%;
    }

    .popup-details-image-wrapper {
        padding-top: 90%;
    }

    .recipes-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .close-btn {
        position: absolute;
        top: -47px;
        left: -32px;
        z-index: 2;
        transform: rotate(180deg);
    }

    .close-btn svg {
        width: 80px;
        height: 80px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Recipes Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | Commerce Responsive Page
    |--------------------------------------------------------------------------
    */
    .commerce-pading {
        padding-bottom: 60px;
        padding-top: 60px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Commerce Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | Locations Responsive Page
    |--------------------------------------------------------------------------
    */
    .location-map #map {
        border-radius: 20px !important;
    }

    /*
    |--------------------------------------------------------------------------
    | End Locations Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    |--------------------------------------------------------------------------
    | CSR Responsive Page
    |--------------------------------------------------------------------------
    */
    .csr-image-position {
        top: 0;
        left: 0;
    }

    .csr-image-left-position {
        top: 0;
        left: 0;
    }

    /*
    }
    |--------------------------------------------------------------------------
    | End CSR Responsive Page
    |--------------------------------------------------------------------------
    */
    /*
    }
    |--------------------------------------------------------------------------
    | Careers Responsive Page
    |--------------------------------------------------------------------------
    */
    .careers-form .close-btn {
        left: -23px;
    }

    .careers-hover {
        margin-bottom: 60px;
    }

    .m-careers {
        margin-left: 0;
        margin-right: 0;
    }

    /*
    }
    |--------------------------------------------------------------------------
    | End Careers Responsive Page
    |--------------------------------------------------------------------------
    */
    .slick-dots {
        font-size: 0;
    }

    .slick-dots li,
    .slick-dots li button {
        width: 8px;
        height: 8px;
    }

    .slick-dots li button:before {
        content: "";
        border-radius: 100%;
        width: 8px;
        height: 8px;
    }

    .slick-dots li.slick-active button:before {
        opacity: 1;
    }

    .sustainability-text ul li {
        margin: 9px 30px 9px 10px;
    }

    .sustainability-div .sustainability-text p,
    .sustainability-div .sustainability-text h1 {
        padding-left: 2rem !important;
    }

}

@media (max-width: 767px) {
    html {
        font-size: 13px;
    }

.video-section iframe{
    height: 230px;
    width: 100%;
}

    /*---------- Section Project ----------*/
    .section-core .item img {
        width: 30px;
        height: 30px;
    }

    .section-core .item span {
        font-size: 12px;
    }

    .core-slide {
        height: 700px;
    }

    .core-slide .info {
        top: 45%;
        width: calc(100% - 30px);
    }

    /*---------- End Section Project ----------*/

    /*---------- Recipes Page ----------*/
    .recipe-text {
        height: auto;
    }

    .hr-careers {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .close-career {
        top: -31px;
        left: -74px;
    }

    .close-career svg {
        height: 50px;
    }

    .mfp-close {
        height: 60px !important;
        top: 10px;
    }

    .mfp-close svg {
        top: 0;
        left: -60px;
    }

    .mfp-iframe-holder .mfp-close svg {
        left: -60px;
        top: -30px;
    }

    .mfp-iframe-holder .mfp-close {
        top: -0px;
    }

    .mfp-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .frame-width-height {
        height: 100%;
        width: 300px;
    }

    .content-width-height {
        height: 100%;
        width: 300px;
        border-radius: 15%;
    }
}

@media (max-width: 575px) {
    html {
        font-size: 12px;
    }

    .banner-cover .info .description {
        font-size: 1.2rem;
    }

    .certifications-wrapper {
        padding-top: 50%;
    }

    .banner-cover {
        margin: 0 !important;
        height: 100vh;
    }

    .mission-vision-section .about_pattern {
        height: 150px;
    }

    .message-section .about_pattern {
        height: 180px;
    }

    .prev svg,
    .next svg {
        height: 50px;
    }

    .prev {
        left: -22px;
    }

    .next {
        right: -22px;
    }

    /*
    |--------------------------------------------------------------------------
    | Sustainability Responsive Pages
    |--------------------------------------------------------------------------
    */
    .substainability-icons-position {
        right: -55px;
    }

    .substainability-icons {
        height: 60px;
    }

    /*
    |--------------------------------------------------------------------------
    | End Sustainability Responsive Pages
    |--------------------------------------------------------------------------
    */
    .mfp-iframe-holder .mfp-close svg {
        top: -20px;
    }

    .frame-width-height {
        height: 400px;
        width: 250px;
    }

    .content-width-height {
        height: 390px;
        width: 250px;
        border-radius: 15%;
    }

    .csr-image-ratio {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .close-career {
        top: -80px;
    }
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-close {
        position: absolute;
        height: 60px !important;
        right: 0 !important;
        top: 0;
        background: rgba(0, 0, 0, 0) !important;
        width: 100% !important;

    }

    .mfp-close svg {
        top: -30px;
    }

    .mfp-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

}

/*
|--------------------------------------------------------------------------
| End Responsiveness Media Queries
|--------------------------------------------------------------------------
*/

.csr-new-title{
    padding-bottom: 250px !important;
    padding-top: 30px;
}
@media (max-width: 1200px){
 .csr-new-title{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
 }   
}