@font-face {
    font-family: KSHR-Font-Bold-65;
    src: url('Fonts/FrutigerLTArabic-65Bold.ttf');
}
@font-face {
    font-family: KSHR-Font-Bold-75;
    src: url('Fonts/FrutigerLTArabic-75black.ttf');
}
@font-face {
    font-family: KSHR-Font-Medium;
    src: url('Fonts/FrutigerLTArabic-55Roman.ttf');
}
@font-face {
    font-family: KSHR-Font-Regular;
    src: url('Fonts/FrutigerLTArabic-45Light.ttf');
}
/* Setting main propreties for styles */
:root {
    --clr-neutral-300: #E2E2DB;
    --clr-neutral-200: #F6F6F1;
    --clr-neutral-100: #FFFFFF;
    --clr-primary:#3b8ac3;
    --clr-accent: #161615;
    --clr-button: #fff;
    --fnf-bold: KSHR-Font-Bold-65;
    --fnf-bold-75: KSHR-Font-Bold-75;
    --fnf-Medium: KSHR-Font-Medium;
    --fnf-regular: KSHR-Font-Regular;
    --fns-big-header: 1.75rem; /* 80 - 28 */
    --fns-sec-header: 1.25rem; /* 64 - 20 */
    --fns-sub-header: min(1rem, 1.5rem, 3rem); /* 48 - 16 */
    --fns-intro-text: min(1rem, 0.875rem, 2rem); /* 32 - 14 */
    --fns-content-text: min(1.5rem, 1rem, 2rem); /* 32 - 16 */
    --fns-nav-text: clamp(0.875rem, 1rem, 1.5rem); /* 24 - 14 */
    --fns-footer-title: clamp(1rem, 2.5vw, 1.75rem); /* 28 - 16 */
    --fns-footer-text: clamp(0.75rem, 0.3vw, 1.25rem); /* 20 - 12 */
    --fns-view-date: 0.75rem; /* 15 - 12 */
    --fns-view-title: 1.25rem; /* 32 - 20 */
    --fns-view-text: 1rem; /* 20 - 16 */
    --fns-publication-title: 1.25rem; /* 24 - 20 */
    --fns-publication-Text: 0.875rem; /* 26 - 14 */
}
/* Remove unecessary default styling */
*, *::after, *::before {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    /* outline: 2px solid lime; */
}
/* Set maximum image size to 100% to prevent exceeding parent size */
img {
    max-height: 100%;
    max-width: 100%;
}
/* Remove a default styling */
a {
    text-decoration: none;
    text-decoration-skip-ink: auto;
    cursor: pointer;
    color: inherit;
}
/* unvisited link */
a:link {
    text-decoration:none;
}
/* visited link */
a:visited {
    text-decoration:none;
}
/* mouse over link */
a:hover {
    text-decoration:none;
}
/* selected link */
a:active {
    text-decoration:none;
}
/* Set main body and html elements styling */
html, body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    background: var(--clr-neutral-200);
    overflow-x: hidden;
}
/* Remove buttons default style */
button {
    border: none;
    outline: none;
    background: inherit;
    cursor: pointer;
}
.btn {
    width: 10rem;
    max-height: 3rem;
    padding: 0.2em;
    margin: 1em auto;
    background: var(--clr-primary);
    border: var(--clr-accent) solid 1.5px;
    box-shadow: 0 2px 0px var(--clr-accent);
    color: var(--clr-button);
    font-family: var(--fnf-Medium);
    font-size: 1rem;
    line-height: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.btn.black {
    color: var(--clr-accent);
}
.btn p {
    margin-block-end: 0.5em;
}
.btn img {
    width: 20%;
    height: 90%;
}
.downloadBtn img {
    rotate: -90deg;
}
.mainBoxTxt .btn {
    margin: 1em;
    margin-top: 2rem;
}
.bodYears .btn[data-bodYear-active="true"] {
    background-color: var(--clr-primary);
    transform: translateY(-1rem);
}
/* Set background-color to body color since most are the same */
section, header, div {
    background: inherit;
}
nav.containerBox {
    padding-inline: min(13.5%, 4em);
    padding-top:0.25em;
    padding-bottom:0.25em;
}
.section_header .containerBox {
    padding-inline: min(9.5%, 4em);
}
.containerBox {
    padding: 1.5em min(7.5%, 2em);
    margin: 0 auto;
}
.section_header .containerBox:not(nav) {
    margin-inline: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Set common header styles */ 
.main_header {
    width: 100%;
    /* min-height: 45vh; */
    height: auto;
    padding-bottom: 6em;
    background: var(--clr-primary);
}
.main_header.headerMainBg {
    background-image: url("../assets/headerMainBack.svg");
    background-repeat: no-repeat;
    background-position: bottom -2rem left min(7.5%, 2em);
    background-size: 3.5rem 11rem;
}
.main_header > * {
    background: none;
}
.header_index {
    /* min-height: 3rem !important; */
    padding-bottom: 0;
    background-color: var(--clr-neutral-200);
}
.section_header {
    background-image: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5em;
}
nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navLogo {
    /*width: clamp(30%, 35%, 39%);*/
    height: 100%;
}
.navLogo img {
    width:100px;
    height:100px;
}
.navBtn, .secNavBtn {
    height: clamp(1.5rem, 1rem, 3rem);
    width: clamp(1.5rem, 1rem, 3rem);
    padding: 0.70em 0;
    background: var(--clr-neutral-100);
    border-radius: 50%;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* visibility: hidden; temp */
}
.navBtn {
    position: relative;
    box-shadow: 0px 0px 4px var(--clr-accent);
    margin-inline: auto 1em;
}
.secNavBtn {
    padding: 0.2em;
    justify-content: center;
    display: none;
}
.navList {
    visibility: hidden;
    width: 7.5rem;
    padding: 0.5em;
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    text-align: center;
    font-family: var(--fnf-Medium);
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: 145%;
    left: 50%;
    margin-left: -60px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.navList::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}
/* .navList a + a {
    margin-top: 0.5em;
} */
.navList a:hover {
    color: var(--clr-neutral-100);
}
.navBtn:hover .navList {
    visibility: visible;
}
.navList a.active {
    color: var(--clr-primary);
}
.pageCaption {
    width: min(1080px, 80%);
}
.welcomeMsg {
    font-family: var(--fnf-bold);
    font-size: var(--fns-big-header);
    font-weight: 100;
    text-align: center;
    text-shadow: 0 1px var(--clr-neutral-100);
}
.section_header {
    /* min-height: 30vh !important; */
    padding-bottom: 0;
}
.section_header .welcomeMsg {
    font-size: var(--fns-view-text);
    text-align: center;
    text-shadow: unset;
    display: flex;
    line-height: 4;
    z-index: 2;
}
.section_header .welcomeMsg::before {
    content: '';
    height: 4rem;
    width: 1.5rem;
    margin-inline-end: 0.5em;
    background-image: url("../assets/headerSubBackground.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
}
.sectionTitle {
    padding-bottom: 0;
}
.headerDove {
    width: 100%;
    height: 3.5rem;
    margin-top: 2em;
    display: flex;
    justify-content: center;
}
.headerDove::before, .headerDove::after {
    content: '';
    height: 100%;
    width: 100%;
    background-image: url("../assets/headerDoveWhite.svg");
    background-repeat: repeat-x;
    background-position: right center;
    background-size: 5rem;
    -webkit-background-size: 5rem;
    -moz-background-size: 5rem;
    -o-background-size: 5rem;
}
/* index main page */
.mainTxt {
    width: 100%;
    margin-block: 3em 0;
    font-family: var(--fnf-regular);
    font-size: var(--fns-nav-text);
    color: var(--clr-accent);
    text-align: center;
}
.visionTxt.mainPageTxt {
    margin-inline: 1em;
    margin-block: 1em;
    text-align: start;
}
.whiteTxtBoxInverse {
    background-color: var(--clr-primary) !important;
}
/* .whiteTxtBoxInverse .btn, .headerMainBg .btn {
    background-color: var(--clr-neutral-100);
} */
:where(.whiteTxtBoxInverse, .headerMainBg, .section_header) .btn {
    background-color: var(--clr-neutral-100);
}
.mainSectionTitle {
    padding-block: 2em 0;
    padding-inline: 1em 0;
    font-family: var(--fnf-bold);
    font-size: var(--fns-big-header);
}
.mainTxtSpr {
    color: var(--clr-primary);
}
.mainTxtLight {
    color: #6A6A66;
}
.sectionSeperator {
    width: 100%;
    padding-inline: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sectionSeperator img {
    height: 7rem;
    width: 4rem;
}
.workIllustration {
    margin-block-start: 3em;
    margin-inline-start: 1em;
}
.complainIntro {
    margin-inline: 1em;
    font-size: var(--fns-publication-Text);
}
.complainIllstration {
    margin-inline: 0.5em;
}
/* Side bar */
.sideBarTape {
    
    height: 2rem;
    background: var(--clr-neutral-100);
    display: flex;
    align-items: center;
    display: none;
}
.sideNavBtn {
    height: 100%;
    width: 2rem;
    background: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sideNavBtn img {
    width: 90%;
    height: 90%;
}
.storyIcon {
    transform: rotate(225deg);
}
.storyBtn {
    margin-bottom: 0;
    z-index: 1;
}
.navBarTitle {
    width: 90%;
    margin: 0 1em;
    text-align: right;
    font-size: 1rem;
    font-family: var(--fnf-bold);
}
.sideBarGroup {
    display: none;
}
/* Set common titles styling */
.columnTitle {
    max-width: 95%;
    width: fit-content;
    margin: 1em auto;
    /* padding-bottom: 0.5em; */
    padding-inline-end: 0.5em;
    text-align: center;
    font-family: var(--fnf-bold);
    font-size: var(--fns-view-text);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,rgba(255,255,255,0) 50%, var(--clr-primary) 50%);
    display: inline;
}
/* .columnTitle::after {
    content: '';
    width: calc(100% - 0.5em);
    height: 1rem;
    background: var(--clr-primary);
    position: absolute;
    bottom: 0.6875rem;
    left: 0.25em;
    z-index: -1;
} */
.publicationContent .columnTitle {
    margin: 1em 0;
    /* margin-inline-start: auto; */
}
/* List syling of listed content */
.contentList {
    list-style: none;
    font-family: var(--fnf-Medium);
}
.contentList li {
    margin: 2em 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
/*
ul li::before {
    content: "\200B";
    width: 0.5rem;
    height: 0.5rem;
    margin: 0.5em 0 0 0;
    background: black;
    border-radius: 50%;
    flex: 0 0 0.5rem;
    margin-inline: 0.5em
}
*/
.contentList li p {
    width: 93%;
    font-family: var(--fnf-Medium);
    font-size: var(--fns-intro-text);
    text-align: justify;
}
/* Content container with white background */
.containerWhite {
    margin-bottom: 2rem;
}
.slidingContainerWhite {
    margin-block: 2em;
    padding: 0 1em 0.5em;
    background-color: var(--clr-neutral-100);
}
.containerWhite :is(div, section, article) {
    background-color: var(--clr-neutral-100);
}
.noWhite {
    background-color: inherit !important;
}
/* Wrapping container with sliding motion */
.containerSection {
    width: 100%;
    padding: 2em 1rem;
    background: var(--clr-neutral-100);
}
.containerWrapper {
    flex-wrap: wrap;
}
/* Sliding content */
.sliderBtns {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 1.5em;
    left: 2em;
    background: transparent;
    z-index: 10;
}
.btmSliderBtns {
    width: 100%;
    margin-block: 1em;
    justify-content: space-between;
    align-items: center;
    position: initial;
}
.sliderBtn {
    width: 3rem;
    height: 2rem;
}
.sliderBox {
    padding-bottom: 1em;
}
.sliderPage {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100%;
}
.pageNum {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--clr-accent);
    border-radius: 50%;
    background-color: var(--clr-primary);
    color: #161615;
    text-align: center;
    font-family: var(--fnf-Medium);
    font-weight: 100;
    font-size: 1rem;
    box-shadow: 0 2px 0px var(--clr-accent);
}
/* News */
.introBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--fnf-Medium);
    max-width: unset;
    width: calc((100% / var(--items-per-screen)) - 2em) !important;
    flex: 0 0 calc((100% / var(--items-per-screen)) - 2em) !important;
}
.introSlider .introBox + .introBox {
    margin-inline-start: 2em;
}
.introSlider .introBox:first-child {
    margin-inline-start: 2em;
}
.introSlider {
    --slider-index: 0;
    --items-per-screen: 1;
    --move-amount: calc(100% / var(--items-per-screen) - 2em);
    transform: translateX(calc((100% / var(--items-per-screen)) * var(--slider-index))) !important;
}
.sliderBox .introBox {
    max-height: 38rem;
    --items-per-screen: 1;
}
.introBox :is(.introHead, .introBody) {
    flex-basis: 100%;
}
.introHead {
    width: 100%;
    max-height: 18rem;
    position: relative;
    display: flex;
    background-image: url("../assets/mediaBg.svg");
    background-size: contain;
}
.introDate {
    width: fit-content;
    padding: 0 .2em;
    margin: 0.5em;
    position: absolute;
    background-color: var(--clr-primary);
    color: var(--clr-accent);
    font-size: var(--fns-view-date);
    font-weight: 100;
}
.introImg {
    /* width: 100%; */
    height: 100%;
    object-fit: fill;
    margin-inline: auto;
}
.introTitle {
    width: 100%;
    padding: 0.3em 0.5em;
    position: absolute;
    bottom: 0;
    /* color: var(--clr-accent); */
    color: var(--clr-neutral-100);
    font-size: var(--fns-view-title);
    font-weight: 100;
    text-shadow: -1px -2px 3px var(--clr-accent);
    background: linear-gradient(180deg,rgba(255,255,255,0) 0%, rgba(0, 0, 0, 0.5) 50%);
    display: inline-block;
}
.introBody .introTitle {
    position: initial;
    padding-inline: 0.2em;
    color: var(--clr-accent);
}
.introBody {
    background-color: var(--clr-neutral-200) !important;
    padding-bottom: 2em;
}
.introText {
    margin-inline: 1em;
    font-size: var(--fns-view-text);
    font-weight: 100;
    text-align: justify;
}
/* Publications */
.publicationBox {
    width: 100%;
    margin-block: 3rem;
    padding-inline: 1em;
    font-family: var(--fnf-regular);
    display: grid;
}
.publicationContent {
    margin-block: 1em;
}
.publicationTitle {
    width: fit-content;
    padding-inline-end: 0.5em;
    font-family: var(--fnf-Medium);
    font-size: var(--fns-publication-title);
    font-weight: 100;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,rgba(255,255,255,0) 50%, var(--clr-primary) 50%);
    display: inline;
}
/* .publicationTitle::after {
    content: '';
    width: 100%;
    height: 0.875rem;
    background: var(--clr-primary);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-radius: 1rem;
} */
.pubulicationDetail {
    font-family: var(--fnf-Medium);
}
.columnTitle + .pubulicationDetail {
    margin-top: 1em;
}
.publicationText {
    font-size: var(--fns-content-Text);
    font-family: var(--fnf-Medium);
    margin: 1.5em 0.5em;
    text-align: justify;
}
.publicationBox .detailPageBtn {
    margin-inline: auto;
    order: 1;
}
/**/
.towerTitle {
    padding: 0.5em 1em;
    font-family: var(--fnf-Medium);
    font-size: var(--fns-sub-header);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}
.towerTitle::before {
    content: '';
    height: 3rem;
    width: 2rem;
    position: relative;
    background-image: url(../assets/towerIndicator.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
}
.containerWhite .towerTitle {
    padding-block: 0em 0.5em;
    margin-bottom: 2em;
    background-color: var(--clr-neutral-100);
}
.contentTxt, .emphTxt {
    font-family: var(--fnf-Medium);
    font-size: var(--fns-publication-text);
    font-weight: 100;
    text-align: justify;
}
.publicationContent .contentTxt {
    margin-block: 1em;
    white-space: pre-wrap;
    word-break: break-word;
}
iframe {
    max-width: 100%;
    display: block;
    margin: 1.5em auto;
}
.emphTxt {
    font-family: var(--fnf-bold);
}
.prjIcon {
    width: 100%;
    height: 20rem;
    margin: 1em auto;
    display: flex;
    background-image: url(../assets/mediaBg.svg) !important;
    background-size: contain;
}
.prjIcon img {
    margin-inline: auto;
    object-fit: cover;
}
.newsViewIcon {
    width: 100%;
    height: 20rem;
    margin: 1em auto;
    display: flex;
    background-image: url(../assets/mediaBg.svg) !important;
    background-size: contain;
}
.newsViewIcon img {
    object-fit: fill;
    /* width: 100%; */
    height: 100%;
    margin-inline: auto;
}
/* Carousel */
.parentSlider {
    width: 100%;
    margin-top: 1em;
    position: relative;
    overflow-x: hidden;
}
.containerSlider {
    --slider-index: 0;
    --items-per-screen: 1;
    width: 100%;
    display: flex;
    transform: translateX(calc(var(--slider-index) * 100%));
    transition: transform 250ms ease-in-out;
}
.sliderBox {
    max-width: calc(100% / var(--items-per-screen) - 2em);
    flex: 0 0 calc(100% / var(--items-per-screen) - 2em);
}
/* Footer */
footer {
    padding-bottom: 10rem !important;
    background: var(--clr-accent);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* set cut column background */
    background-image: url("../assets/footerPatern.svg");
    background-repeat: space no-repeat;
    background-position: bottom center;
}
footer > * {
    background: none;
}
.footerContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerLogo {
    width: 100%;
}
.footerLogo img {
    width: 100%;
    height: 100%;
}
.footerLogo, .newsLetter, .socialMedia, .smIcons {
    width: 100%;
    color: white;
    margin: 2em 0;
    font-family: var(--fnf-Medium);
}
.footerTitle {
    margin: 0.5em 0;
    color: var(--clr-primary);
    font-size: var(--fns-footer-title);
    font-weight: 500;
    text-align: center;
}
.footerText {
    margin: 0.5em 0;
    font-size: var(--fns-footer-text);
    text-align: center;
}
.newsLetter form input {
    width: 80%;
    height: 2rem;
    padding: 0.5em 1em 1em;
    font-family: var(--fnf-Medium);
    text-align: left;
}
.newsLetter form button {
    width: 3rem;
    height: 2rem;
}
.newsLetter form button img {
    width: 90%;
    height: 90%;
    transform: rotate(-115deg);
}
.newsLetter form, .smIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1em, 0.5em, 1.5em);
}
.newsLetter form {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 0 0.5em;
}
.emailErr {
    width: 100%;
    font-size: 0.75em;
}
.powered {
    width: 100%;
    padding-block: 1.5em;
    text-align: center;
    color: var(--clr-primary);
    font-family: var(--fnf-Medium);
    background-color: var(--clr-accent);
    direction: ltr;
}
/* Board of directors */
.bodImg {
    width: 100%;
    height: 22rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}
.bodImg img {
    margin-inline: auto;
    margin-top: 3em;
}
.imgCircle {
    width: 19.5rem;
    height: 19.5rem;
    margin-inline: auto;
    background-color: var(--clr-primary) !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow-y: hidden;
}
.bodImg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--clr-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}
.bodDetail {
    height: 11rem;
    margin-top: 0; /* 7rem */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
}
.bodDetail {
    font-family: var(--fnf-bold);
    font-size: 1.5rem;
}
.bodDetail .contentTxt {
    font-family: var(--fnf-regular);
    font-size: 1rem;
}
.bodTitle {
    width: 22ch;
}
.bodYears {
    height: auto;
    padding-inline: 5%;
    display: block;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}
.bodYears .btn {
    height: 2rem;
    min-width: 6rem;
    width: fit-content;
    max-height: 2.5rem;
    background: var(--clr-neutral-100);
    flex: 0;
    transition: all 0.25s ease-in-out;
}
/* story page */
.storySection {
    width: 100%;
}
.storyProgress {
    display: none;
}
.pageNum.storyOrder {
    margin: 1em auto;
}
.storyBox {
    width: calc(100% - 2em);
    margin: 1em auto;
}
.storyLargePart {
    width: fit-content;
    margin: 2em auto;
    padding: 1.5em 1em;
    background-color: var(--clr-neutral-100);
    color: var(--clr-accent);
    font-family: var(--fnf-Medium);
    font-size: var(--fns-view-text);
    text-align: justify;
    box-shadow: -5px 5px 0px var(--clr-accent);
    position: relative;
}
.storyBoxInverse .storyLargePart {
    background-color: var(--clr-primary);
}
.storyTime {
    width: fit-content;
    padding: 0.3em 0.5em;
    background-color: var(--clr-primary);
    font-size: var(--fns-view-date);
    box-shadow: -2px 2px 0px var(--clr-accent);
    position: absolute;
    top: -0.75rem;
}
.storyBoxInverse .storyTime {
    background-color: var(--clr-neutral-100);
}
.storyText {
    width: 38ch;
    padding-bottom: 6rem;
}
.storyIllustration {
    position: relative;
    top: -10rem;
}
.storyIllustration1992 {
    top: -8rem;
}
.storyIllustrationJasem {
    top: -5rem;
}
.founderName {
    padding: 0.5em 1em;
}
.whoWeAreSection {
    width: 100%;
    margin-block: 10em;
    color: var(--clr-accent);
    font-family: var(--fnf-Medium);
    font-size: var(--fns-view-text);
    text-align: justify;
}
.whoWeAreSection > img {
    width: 75%;
    margin: 0 auto;
    display: block;
    height: 20rem;
}
.whoWeAreTxt {
    width: calc(100% - 2em);
    margin: 0 1em;
    padding: 1em;
    background-color: var(--clr-neutral-100);
    border-bottom: 15px solid var(--clr-primary);
}
.ourTarget {
    width: 100%;
}
.whiteTxtBox {
    width: 100%;
    padding-block: 2em;
    background-color: var(--clr-neutral-100);
    display: flex;
    flex-direction: column;
    color: var(--clr-accent);
    font-family: var(--fnf-Medium);
    font-size: var(--fns-big-header);
    /* text-align: center; */
}
.whiteTxtBox.whiteTxtBoxMain {
    padding-block: 0;
}
.visionTxt {
    margin: 2em;
}
.whoWeAreTxt.membershipTxt {
    width: 70%;
    margin-block: 3em 8em;
    margin-inline: auto;
    border: none;
    box-shadow: -7px 7px 0px var(--clr-primary);
}
.membershipBox, .membershipApplication {
    padding-block: 1em;
    position: relative;
    font-family: var(--fnf-Medium);
    font-size: var(--fns-view-text);
}
.membershipApplication {
    margin-top: 5em;
    text-align: justify;
}
.whiteBoxTitle {
    width: 100%;
    height: fit-content;
    padding-block: 0.5em;
    font-family: var(--fnf-Medium);
    font-size: var(--fns-view-title);
    text-align: center;
    display: block;
    position: absolute;
    top: -1.5em;
    background-image: url(../assets/titleDove.svg), url(../assets/titleDove.svg);
    background-repeat: no-repeat;
    background-position: bottom 1em left, bottom 1em right;
    background-size: 3.5rem;
}
.membershipConds {
    margin: 2em 2.5em;
    padding-inline-start: 1em;
    text-align: justify;
}
.membershipConds li {
    margin-block: 1em;
}
.membershipConds li::before {
    margin: unset;
}
.membershipApplication p {
    padding: 2em;
}
.membershipApplication .detailPageBtn {
    max-height: 2.5rem;
    margin-block: 4em 2em;
    margin-inline: auto;
}
.membershipApplication .detailPageBtn p {
    padding: 0 0.5em;
}
/* view acrticle project / news */
.mainContent {
    width: 100%;
}
.publicationGallery {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
}
.publicationGallery img {
    width: calc(100% - 2em);
    object-fit: cover;
}
.publicationImage {
    width: 100%;
    margin: 1em 0;
}
.publicationImage img {
    width: 100%;
    object-fit: cover;
}
/* language */
.langChk {
    /* height: clamp(1.5rem, 2rem, 3rem); */
    width: clamp(1.5rem, 2rem, 3rem);
    margin-inline-end: 0.5em;
    padding-bottom: 0.2em;
    /* border-radius: 50%;
    background-color: var(--clr-primary);
    border: 3px solid var(--clr-accent); 
    color: var(--clr-accent); 
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; */
    overflow: hidden;
    font-family: var(--fnf-Medium);
}
/* .langChk[data-lang-sel="En"] {
    background-color: var(--clr-accent);
    border: 3px solid var(--clr-primary);
    color: var(--clr-neutral-100);
} */
/* tablet */
@media (min-width: 45em) {
    .introSlider {
        --items-per-screen: 2;
    }
    .sliderBox .introBox {
        --items-per-screen: 2;
    }
}
    .mainBoxQuarter{
        padding-inline: 15px !important;
    }
/* Laptop */
@media (min-width: 50em) {
    /* resetting font size for big screens */
    :root {
        --fns-big-header: 3rem; /* 80 - 28 */
        --fns-sec-header: 2rem; /* 64 - 20 */
        --fns-sub-header: 1.5rem; /* 48 - 16 */
        --fns-intro-text: 1rem; /* 32 - 14 */
        --fns-content-text: 1rem; /* 32 - 16 */
        --fns-nav-text: 1.2rem; /* 24 - 14 */
        --fns-footer-title: 1.5rem; /* 28 - 16 */
        --fns-footer-text: 1.2rem; /* 20 - 12 */
        --fns-view-date: 0.94rem; /* 15 - 12 */
        --fns-view-title: 2rem; /* 32 - 20 */
        --fns-view-text: 1.25rem; /* 20 - 16 */
        --fns-publication-title: 1.5rem; /* 24 - 20 */
        --fns-publication-Text: 1.625rem; /* 26 - 14 */
    }
    /* navigation reset for laptop */
    .navBtn {
        width: 100%;
        box-shadow: unset;
        border-radius: unset;
        background: inherit;
        height: 3rem;
    }
    .navBtn img {
        display: none;
    }
    .navList {
        width: 100%;
        height: 100%;
        margin-left: unset;
        background: transparent;
        visibility: unset;
        position: unset;
        flex-direction: row;
        gap: 1em;
    }
    .navList::after {
        display: none;
    }
    .navList a {
        height: 100%;
        color: var(--clr-accent);
        font-family: var(--fnf-bold);
    }
    .navList a:hover {
        color: var(--clr-primary);
    }
    .headerMainBg .navList a:hover, .section_header .navList a:hover {
        color: var(--clr-neutral-300);
    }
    /**/
    .detailPageBtn {
        float: left;
        margin: 1em 0;
    }
    .main_header {
        /* min-height: 70vh; */
    }
    .section_header .welcomeMsg {
        font-size: var(--fns-sec-header);
        line-height: 2;
    }
    .secNavBtn {
        display: initial;
        visibility: hidden; /* temp */
    }
    .containerTwoSides {
        display: flex;
    }
    .whiteContainerTwoSides {
        background: var(--clr-neutral-100);
    }
    .sideNavBar {
        width: 20%;
        height: 100%;
        position: sticky;
        top: 0;
    }
    .sideBarTape {
        display: none;
    }
    .sideBarGroup {
        display: flex;
        margin-top: 3.5rem;
    }
    .sideBarTitleIndicatorGroup {
        width: 0.5rem;
        height: auto;
        margin-inline: 0.5em;
        background-color: var(--clr-neutral-300);
        position: relative;
        z-index: 1;
    }
    .sideBarTitleIndicatorGroup span {
        width: 100%;
        height: 2.3rem;
        background-color: var(--clr-primary);
        position: absolute;
        top: 0rem;
        transition: top 0.25s ease;
    }
    .sideBarTitles {
        width: 100%;
    }
    .sideBarTitles a {
        width: 100%;
        display: block;
        padding: 0.2em 0.2em 0.2em 0;
        font-family: var(--fnf-Medium);
        font-size: var(--fns-nav-text);
        color: var(--clr-accent);
    }
    .sideBarNavTitle[data-link-active=true] {
        font-weight: 600;
    }
    .mainContent {
        width: 80%;
    }
    #article_view {
        width: 100% !important;
    }
    /* Reset main classes */
    .columnTitle {
        margin: 0.5em 0;
        text-align: start;
        line-height: 1.2;
        font-size: 2rem;
    }
    .columnTitle::after {
        bottom: 0.5em;
        height: 1rem;
    }
    .towerTitle {
        background-position: right bottom 0.5rem;
        background-size: 5rem;
    }
    .contentList li {
        justify-content: flex-start;
    }
    /*
    ul li::before {
        width: 0.75rem;
        height: 0.75rem;
        margin: 0.5em 1em 0;
        flex: 0 0 0.75rem;
    }
    */
    /* Footer reset */
    footer {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 2.5em;
    }
    .footerTitle, .footerText {
        text-align: start;
    }
    .newsLetter form button {
        margin: 0;
    }
    .smIcons {
        justify-content: flex-start;
    }
    .smIcons img {
        margin: 0 0.2em;
    }
    footer :is(.newsLetter, .socialMedia) {
        margin-inline: 1em;
    }
    /* Slider reset */
    .slidingContainerWhite {
        position: relative;
    }
    .introSlider {
        --items-per-screen: 2;
    }
    .btmSliderBtns {
        width: 7rem;
        margin-block: 0.5em;
        position: absolute;
        top: -0.5em;
        background: transparent !important;
    }
    .bodSliderBtns {
        position: initial;
        float: left;
        margin-inline: 1em;
    }
    .containerSection {
        padding-inline: 10%;
        background-image: url("../assets/doveSectionBackground.svg");
        background-size: 2.5rem;
    }
    /* .containerSection :is(section, header, div) {
        background-image: initial;
    } */
    .containerSection .btmSliderBtns {
        position: initial !important;
        width: 40%;
        margin-inline: auto;
    }
    .containerWrapper {
        justify-content: center;
    }
    .sliderBox .introBox {
        --items-per-screen: 2;
    }
    /* Publication reset */
    .publicationBox .detailPageBtn {
        order: initial;
    }
    .publicationBox {
        max-height: 350px;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 5rem;
    }
    .publicationContent {
        padding-inline: 0.5em;
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    /* .publicationTitle::after {
        height: 1rem;
    } */
    .publicationBox .detailPageBtn {
        margin-inline: 1em;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .publicationBox .introHead {
        grid-column: 2 / 3;
        grid-row: 1 / -1;
        height: 100%;
        max-height: unset;
    }
    .publicationGallery img {
        width: calc(50% - 2em);
    }
    /* Board of directors reset */
    .bodSlider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .bodDetail .towerTitle {
        font-size: 2rem;
    }
    .bodDetail .contentTxt {
        font-size: 1rem;
    }
    /* story page  reset */
    .storyNarration {
        display: flex;
    }
    .storyProgress {
        width: 5rem;
        display: initial;
    }
    .storyProgressBar {
        width: 0.2em;
        height: 100%;
        margin-inline: auto 1.5em;
        background: var(--clr-neutral-300);
        position: relative;
    }
    .storyProgressIndicator {
        width: 100%;
        height: 2%;
        background-color: var(--clr-primary);
        transition: height 0.50s ease-in-out;
    }
    .progressDove {
        height: 1rem;
        max-width: unset;
        max-height: unset;
        margin-inline: -3.1em 0;
        margin-block: -0.8em 0;
        background: transparent;
        display: flex;
        position: absolute;
        font-family: var(--fnf-Medium);
    }
    .storyParts {
        width: calc(100% - 5rem);
    }
    .storyBoxFull {
        width: 85%;
        margin-inline: auto;
        margin-bottom: 10rem;
    }
    .storySection .columnTitle {
        margin-inline: auto;
    }
    /* .storyLargePart {
        margin: 1em;
    } */
    .storyText {
        padding-inline-end: 0;
    }
    .storyText {
        width: clamp(55vw, 26ch, 30ch);
        padding-bottom: 1em;
    }
    .storyTextWithWS {
        padding-inline-end: 3rem;
    }
    .storyBoxFull .storyText {
        width: 100%;
        padding-inline-end: 0;
    }
    .storyIllustration {
        width: clamp(50vw, 40rem, 40%);
        left: 0;
        margin-inline: auto 1.5em;
        top: -5rem;
    }
    .storyIllustrationJasem {
        margin-inline: auto;
        top: -4rem;
    }
    .founderName {
        margin: 1em auto;
    }
    .dblStoryBox {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .dblStoryBox > section {
        width: 47%;
        margin: 0;
    }
    .dblStoryBox .storyBox {
        margin: 0;
    }
    .dblStoryBox .storyText:nth-child(1) {
        width: 35ch;
    }
    .dblStoryBox .storyText:nth-child(2) {
        width: 40ch;
    }
    .dblStoryBox .storyBox:nth-child(2) {
        /* margin: 5rem 1em 0 0; */
        margin-inline-start: 10rem;
    }
    .storyIllustration1992 {
        top: -10rem;
    }
    /* .storyLargePartInverse {
        margin-inline-start: auto;
    } */
    .storyLargePartInverse > .storyText {
        padding-inline-start: 2em;
        width: 43ch;
    }
    .storyIllustrationInverse {
        top: -5rem;
        left: 0.5rem;
    }
    .storyIllustration1992 {
        top: -6rem;
    }
    /* Who we are*/
    .whoWeAreTxt {
        width: calc(85% - 2em);
        margin: 0 auto;
    }
    .whoWeAreSection > img {
        margin-top: 5rem;
    }
    .whiteTxtBox {
        padding-block: 0;
    }
    .membershipBox, .membershipApplication {
        width: 70%;
        margin-inline: auto;
        padding-block: 2em;
    }
    .ourTarget .whiteTxtBox {
        height: 30rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .ourTarget .whiteTxtBox :is(p, img) {
        width: 45%;
        padding-inline: 0.5em;
    }
    .visionTxt {
        margin: 0;
    }
    /* index main page reset */
    .header_index .containerBox {
        padding-inline: min(7.5%, 6em);
    }
    .whiteTxtBoxMain {
        flex-direction: row;
        /* height: max(16rem, 25vw); */
    }
    .whiteTxtBoxMainStory {
        /* height: max(25rem, 28vw); */
    }
    .mainBoxTwenty {
        width: 20% !important;
    }
    .mainBoxHalf {
        width: 44% !important;
    }
    .mainBoxFourty {
        width: 40% !important;
    }
    .mainBoxQuarter{
        width: 28% !important;
        padding-inline: 15px !important;
        padding: 15px !important;
    }
    .mainBoxThirty {
        width: 30% !important;
        padding-inline: 1em !important;
    }
    .mainBoxQuarter img, .mainBoxThirty img {
        margin: auto 0;
        float:none;
    }
    .mainBoxTxt {
        width: 65%;
        padding-inline: 2em 0.5em;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom:2rem;
    }
    .mainBoxTxt > * {
        text-align: start;
        margin-inline: 0 !important;
        padding-inline-start: 0;
    }
    .mainTxt {
        margin-block: 1em 0;
        white-space: wrap;
    }
    .mainBoxTxt .btn {
        /* float: right; */
        margin-block: -1em 1.5em;
        margin-top: 2rem;
    }
    .mainBoxImg {
        width: 35%;
        background: transparent;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .mainBoxImg img {
        width: 100%;
        height: auto;
    }
    .visionTxt.mainPageTxt {
        width: max(17ch, 25vw + 12rem);
        margin-block: 0.5em 0;
        margin-inline: 0;
        /* font-size: clamp(1.5rem, 4rem, 1vw + 1rem); */
        font-size: clamp(1.2rem, 2rem, 1vw);
    }
    .sectionSeperator {
        padding-inline: 4m;
    }
    .sectionSeperator img {
    height: 7rem;
    width: 4rem;
    }
    .sectionSeperatorColumn img {
        height: 7rem;
    }
    .sectionSeperatorColumn {
        margin-bottom: 5rem;
    }
    .mainSectionTitle {
        font-size: clamp(2rem, 48px, 1vw + 2rem);;
        padding-block: 1em 0;
    }
    .mainSectionTitle ~ .mainPageTxt {
        margin-block: 1em;
    }
    .mainPageTxtStory {
        width: 22ch !important;
        font-size: clamp(2.5rem, 4rem, 1vw + 1rem) !important;
    }
    .mainBoxImgWork {
        position: relative;
    }
    .workIllustration {
        margin: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        max-height: unset;
        height: 122% !important;
    }
    .whiteTxtBoxInverse {
        /* height: max(19rem, 25vw); */
        flex-direction: row-reverse;
        color: #fff;
    }
    .whiteTxtBoxInverse .mainBoxTxt {
        padding-inline: 1.5em 0.5em;
    }
    .whiteTxtBoxInverse .mainBoxImg {
        position: relative;
    }
    .whiteTxtBoxInverse .mainBoxImg img{
        max-height: unset;
        height: 110%;
        margin-inline-start: 1em;
        position: absolute;
        bottom: 0;
        right: 0;
        object-fit: cover;
    }
    .mainBoxTxt .btn {
        margin-block-start: 0.5em;
        margin-top: 2rem;
    }
    /* .btn + .btn {
        margin-inline-start: 0.5em !important;
    } */
    .whiteTxtBoxInherit {
        background-color: inherit !important;
        /* height: max(24rem, 27vw) !important; */
    }
    .whiteTxtBoxInherit .mainBoxTxt {
        padding-inline-start: 1em;
    }
    .mainPageTxtComplain {
        width: 30ch !important;
    }
    .complainIntro {
        margin-block: 0.5em;
        font-size: 0.875rem;
    }
    .social-post {
        height:300px;
        width:auto;
        max-width:100%;
    }
}
.circle-sketch-highlight{
    background-image: url("../assets/circleHighlight.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
}
/* PDF download button */
.pdfBtn {
    max-height: 7rem;
    height: 7rem;
    width: 7rem;
    display: flex;
    flex-direction: column;
}
.pdfBtn img {
    width: 50%;
}
/* 
.circle-sketch-highlight:before{
    content:"";
    z-index:-1;
    left:-0.5em;
    top:-0.1em;
    border-width:2px;
    border-style:solid;
    border-color:#ef8c22;
    position:absolute;
    border-right-color:transparent;
    width:100%;
    height:1em;
    transform:rotate(2deg);
    opacity:0.7;
    border-radius:50%;
    padding:0.1em 0.25em;
}
.circle-sketch-highlight:after{
    content:"";
    z-index:-1;
    left:-0.5em;
    top:0.1em;
    padding:0.1em 0.25em;
    border-width:2px;
    border-style:solid;
    border-color:#ef8c22;
    border-left-color:transparent;
    border-top-color:transparent;
    position:absolute;
    width:100%;
    height:1em;
    transform:rotate(-1deg);
    opacity:0.7;
    border-radius:50%;
} */

h2 {
    font-size: var(--fns-sec-header);
    margin-top:0.9rem;
}

.social-post {
    margin-top:15px;
    height:auto;
    width:100%;
    max-width:100%;
}

ul.file-list {
    margin:15px;
    padding:15px;
    list-style:none;
}

ul.file-list a {
    color: var(--clr-primary) !important;
    text-decoration: underline;
    text-decoration-color: #333;
}

summary {
    font-size:1.95rem;
    margin-top:15px;
}

details p {
    font-size:1.2rem;
    margin:5px;
}
