/********************** CSS Reset *********************/
 html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, sidebar, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
     margin: 0;
     padding: 0;
     border: 0;
     outline: 0;
     font-size: 100%;
     vertical-align: baseline;
}
 body {
     line-height: 1;
}
 article, sidebar, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
     display: block;
}
 ul {
     list-style: none;
}
 blockquote, q {
     quotes: none;
}
 blockquote:before, blockquote:after, q:before, q:after {
     content: none;
}
 a {
     margin: 0;
     padding: 0;
     font-size: 100%;
     color: inherit;
     vertical-align: baseline;
     text-decoration: none;
}
 del {
     text-decoration: line-through;
}
 hr {
     display: block;
     height: 1px;
     border: 0;
     border-top: 1px solid #663b3b;
     margin: 1em 0;
     padding: 0;
}
 input, select {
     vertical-align: middle;
}
 * {
     box-sizing: border-box;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     -o-box-sizing: border-box;
}
 :focus {
     outline: 0;
}
 html {
     scroll-behavior: smooth;
}
 iframe {
     max-width: 100%;
     margin: 0 auto;
     border-radius: 16px;
     display: flex;
}
/******************************************** Overal Styles *******************************************/
/********************** Fonts *********************/
 @font-face {
     font-family: 'YekanBakhFaNum-VF';
     src: url('../fonts/YekanBakhFaNum-VF.woff2?v=1.0') format('woff2-variations');
     font-weight: 100 1000;
     font-display: swap;
}
/********************** Variables *********************/
 :root {
     --white: #fff;
     --black: #161C24;
     --primary-text-color: #212B36;
     --secondary--text-color: #454F5B;
    /*rgba(14,66,138,1)*/
     --primary-color: #0E428A;
    /*rgba(0,171,201,1)*/
     --secondary-color: #00ABC9;
    /*rgba(255,128,49,1)*/
     --tertiary-color: #FF8031;
     --box-shadow: 0px 7px 29px 0px rgba(14, 66, 138, 0.1);
     --box-shadow-hover: 0px 2px 4px 0px rgba(14, 66, 138, 0.12), 0px 2px 16px 0px rgba(14, 66, 138, 0.12);
     --transparent: transparent;
     --YekanBakh: 'YekanBakhFaNum-VF', tahoma;
     --fontWeight200: "wght" 200, "dots" 1;
     --fontWeight300: "wght" 300, "dots" 1;
     --fontWeight400: "wght" 400, "dots" 1;
     --fontWeight500: "wght" 500, "dots" 1;
     --fontWeight600: "wght" 600, "dots" 1;
     --fontWeight700: "wght" 700, "dots" 1;
     --title-huge: 34px;
     --title-big: 28px;
     --title-regular: 22px;
     --title-small: 18px;
     --paragraph-big: 16px;
     --paragraph-regular: 14px;
     --paragraph-small: 12px;
}
/********************** Overal CSS *********************/
 .container {
     max-width: 100%;
     padding-right: 15px;
     padding-left: 15px;
     margin-right: auto;
     margin-left: auto;
}
 body {
     direction: rtl;
     width: 100%;
     font-family: var(--YekanBakh);
     font-size: var(--paragraph-regular);
     line-height: 30px;
     word-spacing: -2px;
     color: var(--primary-text-color);
     position: relative;
}
 .me-body {
     min-height: calc(100vh + 152px);
}
 p {
     font-family: var(--YekanBakh);
     font-size: var(--paragraph-regular);
     color: var(--black);
}
 a {
     font-family: var(--YekanBakh);
     font-size: var(--paragraph-regular);
     text-decoration: none;
     color: var(--black);
}
 input[type=search]::-ms-clear, input[type=search]::-moz-clear {
     display: none;
     width: 0;
     height: 0;
}
 input[type=search]::-ms-reveal {
     display: none;
     width: 0;
     height: 0;
}
 .img-style {
     width: 100%;
     height: auto;
     margin-bottom: 20px;
     border-radius: 16px;
}
 input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
     display: none;
}
 [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
     cursor: pointer;
}
 .transparent-highlight {
     -webkit-tap-highlight-color: transparent;
     -webkit-touch-callout: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
}
/********************** Light/Dark Mode *********************/
 .bg-dark {
     background: radial-gradient(67.42% 67.42% at 50% 50%, #0D375C 0%, #021325 100%) no-repeat;
}
 .bg-light {
     background: rgba(255, 251, 249, 1);
}
 .color-dark {
     color: var(--black);
}
 .color-light {
     color: var(--white);
}
 .me-menu__btn {
     background: transparent;
}
 .me-menu__mode--dark {
     display: none;
}
 body.bg-light .me-menu__mode--light {
     display: none;
}
 body.bg-light .me-menu__mode--dark {
     display: flex;
}
 .me-hero__img {
     width: 250px;
     height: 274px;
     position: relative;
     z-index: 1;
}
 .me-hero__img--light {
     display: none;
}
 body.bg-light .me-hero__img--dark {
     display: none;
}
 body.bg-light .me-hero__img--light {
     display: block;
}
 body.bg-light .color-light {
     color: var(--black);
}
/********************** Main Menu *********************/
 #me-menu {
     width: 100%;
     position: absolute;
     z-index: 99;
}
 .me-menu__wrapper {
     padding: 10px 0;
     display: flex;
     flex-wrap: wrap;
     justify-content: start;
     gap: 18px;
}
 .me-menu__btn {
     padding: 10px;
     border: 0;
}
 .bg-light .me-menu__qr svg path{
     stroke: #4F270E;
}
/********************** ME *********************/
 #me-main {
     position: relative;
}
 #me-hero:before {
     content: "";
     background: url(../images/pattern-me-dark.svg) no-repeat;
     background-position: center center;
     background-size: cover;
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     margin-top: 30px;
     width: 100%;
     height: 246px;
     opacity: 0.15;
}
 .bg-light #me-hero:before {
     background: url(../images/pattern-me-light.svg) no-repeat;
     opacity: 1;
     width: 300px;
     left: initial;
}
 .me-hero__wrapper {
     display: grid;
     grid-template-columns: 1fr;
     gap: 32px;
}
 .me-hero__col--right {
     order: 2;
}
 .me-hero__col--left {
     order: 1;
     text-align: center;
     display: flex;
     justify-content: center;
     position: relative;
}
 .me-hero__title {
     margin-bottom: 8px;
     font-family: var(--YekanBakh);
     font-variation-settings: var(--fontWeight500);
     font-weight: 500;
     font-size: 18px;
     line-height: 28px;
     text-align: center;
}
 .me-hero__subtitle {
     margin-bottom: 20px;
     font-family: var(--YekanBakh);
     font-variation-settings: var(--fontWeight400);
     font-weight: 400;
     font-size: 12px;
     line-height: 18px;
     text-align: center;
}
 .me-hero__content {
     margin-bottom: 20px;
     font-family: var(--YekanBakh);
     font-variation-settings: var(--fontWeight400);
     font-weight: 400;
     font-size: 14px;
     line-height: 26px;
     text-align: center;
}
.me-hero__content a{
    color: var(--secondary-color);
}
 .me-hero__text--toggle {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease;
}
 .me-hero__text--toggle.active {
     max-height: 500px;
}
 .me-hero__more {
     margin-top: 20px;
     padding: 5px 0 5px 20px;
     background: transparent;
     border: 0;
     font-family: var(--YekanBakh);
     font-variation-settings: var(--fontWeight500);
     font-weight: 500;
     font-size: 14px;
     line-height: 26px;
     text-align: center;
     position: relative;
}
 .me-hero__more:after {
     content: "";
     mask: url(../images/chevron-left.svg) no-repeat center / contain;
     -webkit-mask: url(../images/chevron-left.svg) no-repeat center / contain;
     background-color: var(--secondary-color);
     width: 11px;
     height: 11px;
     position: absolute;
     top: 50%;
     left: 0;
     transform: translate(0, -50%) rotate(-90deg);
     transition: 0.3s all;
}
 .me-hero__more.active:after {
     transform: translate(0, -50%) rotate(90deg);
}
 .bg-light .me-hero__more:after {
     background-color: var(--tertiary-color);
}
/********************** ME Footer *********************/
 #me-footer {
     padding: 20px 0;
     background: rgba(255, 255, 255, 0.01);
     backdrop-filter: blur(2px);
     position: fixed;
     right: 0;
     bottom: 0;
     left: 0;
     z-index: 1;
}
 .me-footer__wrapper {
     display: flex;
     flex-direction: column;
     gap: 20px;
}
 .me-footer__top {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 12px;
}
 .me-footer__top--btn {
     width: 151px;
     padding: 10px 24px 10px 24px;
     border-radius: 10px;
     font-family: var(--YekanBakh);
     font-variation-settings: var(--fontWeight500);
     font-weight: 500;
     font-size: 16px;
     line-height: 28px;
     text-align: center;
}
 .me-footer__top--btn:nth-child(1) {
     background: var(--secondary-color);
     color: var(--black);
}
 .bg-light .me-footer__top--btn:nth-child(1) {
     background: var(--tertiary-color);
     color: var(--white);
}
 .me-footer__top--btn:nth-child(2) {
     background: #041A30;
     color: var(--white);
}
 .me-footer__social {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 40px;
}
 .me-footer__social--btn svg path{
     fill: #C4CDD5;
     transition: 0.3s all;
}
 .me-footer__social--btn:hover svg path{
     fill: var(--white);
}
 .bg-light .me-footer__social--btn svg path{
     fill: #919EAB;
}
 .bg-light .me-footer__social--btn:hover svg path{
     fill: #4F270E;
}
/********************** QR Popup *********************/
 #me-popup {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     align-items: center;
     justify-content: center;
}
 #me-popup.active {
     display: flex;
}
 .me-popup__wrapper{
     width: 308px;
     background: #121212;
     display: flex;
     flex-direction: column;
     align-items: center;
     position: relative;
     overflow: hidden;
     border-radius: 8px;
}
 .bg-light .me-popup__wrapper{
     background: var(--white);
}
 .me-popup__close{
     width: 30px;
     min-width: 30px;
     height: 30px;
     background: #454F5B;
     border-radius: 50%;
     font-size: 26px;
     color: var(--white);
     text-align: center;
     position: absolute;
     top: 10px;
     left: 10px;
     z-index: 4;
     cursor: pointer;
}
 .me-popup__arrows {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none;
}
 .me-popup__arrows--one {
     width: 100%;
     height: 220px;
     position: absolute;
     background: #2d2d2d;
     clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
     z-index: 2;
}
 .me-popup__arrows--two {
     width: 100%;
     height: 220px;
     position: absolute;
     background: var(--secondary-color);
     clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
     z-index: 1;
}
 .bg-light .me-popup__arrows--two{
     background: var(--tertiary-color);
}
 .me-popup__top{
     padding: 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     z-index: 3;
}
 body.bg-light .me-popup__icon--dark{
     display: none;
}
 .me-popup__icon--light{
     display: none;
}
 body.bg-light .me-popup__icon--light{
     display: block;
}
 .me-popup__icon img{
     object-fit: contain;
}
 .me-popup__top--text{
     font-family: var(--YekanBakh);
     font-size: 14px;
     color: var(--white);
}
 .me-popup__qr{
     margin-top: 50px;
     aspect-ratio: 1/1;
}
/********************** Breakpoints *********************/
 @media only screen and (min-width: 576px) {
     .container {
         max-width: 540px;
    }
     #me-hero:before {
         background: none !important;
    }
}
 @media only screen and (min-width: 768px) {
     .container {
         max-width: 720px;
    }
}
 @media only screen and (min-width: 992px) {
     .container {
         max-width: 960px;
    }
     .me-body {
         min-height: 100vh;
    }
     #me-hero {
         padding: 200px 0 0;
    }
     .me-hero__wrapper {
         grid-template-columns: 1fr 1fr;
    }
     .me-hero__col--right {
         order: 1;
    }
     .me-hero__col--left {
         order: 2;
         text-align: left;
         justify-content: end;
    }
     .me-hero__img {
         width: 300px;
         height: 329px;
    }
     .me-footer__wrapper {
         display: flex;
         flex-direction: row;
         justify-content: space-between;
    }
     .me-hero__title {
         font-size: 32px;
         font-variation-settings: var(--fontWeight700);
         font-weight: 700;
         line-height: 60px;
         text-align: right;
    }
     .me-hero__subtitle {
         font-size: 22px;
         line-height: 36px;
         text-align: right;
    }
     .me-hero__content {
         font-size: 16px;
         line-height: 36px;
         text-align: right;
    }
}
 @media only screen and (min-width: 1200px) {
     :root {
         --title-huge: 42px;
         --title-big: 32px;
         --title-regular: 24px;
         --title-small: 22px;
         --paragraph-big: 18px;
         --paragraph-regular: 16px;
         --paragraph-small: 14px;
    }
     .container {
         max-width: 1140px;
    }
}
 @media only screen and (min-width: 1400px) {
     .container {
         max-width: 1340px;
    }
}
 @media only screen and (min-width: 1600px) {
     .container {
         max-width: 1540px;
    }
}