:root {
    --firebrick: #c70815;
    --black: black;
    --light-grey: #ced6e0;
    --dim-grey: #656565;
    --white: white;
    --white-smoke: #f1f2f6;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-checkbox:before {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-layout-hflex {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
}

.w-users-userformpagewrap {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    max-width: 340px;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.w-users-userloginformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.w-users-userformheader {
    text-align: center;
}

.w-users-userformbutton {
    text-align: center;
    width: 100%;
}

.w-users-userformfooter {
    justify-content: space-between;
    margin-top: 12px;
    display: flex;
}

.w-users-userformerrorstate {
    margin-left: 20px;
    margin-right: 20px;
    position: absolute;
    top: 100%;
    left: 0%;
    right: 0%;
}

.w-users-usersignupformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.w-users-userformsuccessstate {
    display: none;
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

.w-users-usersignupverificationmessage {
    display: none;
}

.w-users-userresetpasswordformwrapper,
.w-users-userupdatepasswordformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.w-users-useraccountwrapper {
    background-color: #f5f5f5;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

.w-users-blockheader {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 20px;
    display: flex;
}

.w-users-blockcontent {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding: 20px;
}

.w-users-useraccountformsavebutton {
    text-align: center;
    margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
    text-align: center;
    color: #333;
    background-color: #d3d3d3;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }
}

body {
    color: #333;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    direction: rtl;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    color: var(--firebrick);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 44px;
}

h2 {
    color: var(--black);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}

h3 {
    color: var(--firebrick);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    display: block;
}

h4 {
    color: var(--black);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}

p {
    color: var(--black);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

blockquote {
    border-right: 5px solid var(--light-grey);
    direction: rtl;
    color: var(--dim-grey);
    text-align: right;
    border-left: 5px #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
    line-height: 1.5;
}
.dropdown .dropbtn {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    background: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar-no-shadow {
    direction: ltr;
    max-width: none;
    height: 12vh;
}

.navbar-no-shadow.navbar-en {
    direction: ltr;
}

.navbar-no-shadow-container {
    z-index: 5;
    background-color: #0000;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-no-shadow-container.edu-navbar {
    max-width: 1300px;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.container.contains-slider {
    overflow: visible;
}

.container.navbar {
    max-width: 1200px;
}

.navbar-wrapper {
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex: none;
    margin-left: auto;
}

.navbar-brand.w--current {
    margin-left: 0;
}

.nav-menu-wrapper {
    flex: none;
    margin-right: auto;
}

.nav-menu-wrapper.en {
    margin-left: auto;
    margin-right: 0;
}

.nav-menu {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 60px;
    display: flex;
}

.nav-link {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
}

.nav-link:hover {
    color: #1a1b1fbf;
}

.nav-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.nav-link.w--current {
    color: var(--firebrick);
    font-weight: 700;
}

.nav-dropdown {
    direction: rtl;
    text-align: left;
    margin-left: 5px;
    margin-right: 5px;
}

.nav-dropdown-toggle {
    z-index: 999;
    letter-spacing: .25px;
    flex-direction: row;
    padding: 5px 15px 5px 0;
    font-size: 14px;
    line-height: 20px;
}

.nav-dropdown-toggle:hover {
    color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
    margin-right: 10px;
}

.nav-dropdown-list {
    background-color: #fff;
    border-radius: 12px;
}

.nav-dropdown-list.w--open {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
    z-index: 2147483647;
}

.nav-dropdown-link {
    color: var(--black);
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.nav-dropdown-link:hover {
    color: var(--firebrick);
}

.nav-dropdown-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-link.w--current {
    color: var(--firebrick);
    font-weight: 600;
}

.mobile-margin-top-10 {
    margin-right: 40px;
    display: none;
}

.mobile-margin-top-10.en {
    margin-left: 40px;
    margin-right: 0;
}

.mobile-margin-top-10.user,
.nav-button-wrapper.mobile {
    display: none;
}

.button-primary {
    color: #fff;
    text-align: center;
    background-color: #1a1b1f;
    border-radius: 50px;
    width: auto;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    transition: all .2s;
}

.button-primary:hover {
    background-color: var(--firebrick);
    color: #fff;
}

.button-primary:active {
    background-color: #43464d;
}

.button-primary.activities {
    width: 150px;
    font-size: 14px;
    font-weight: 600;
}

.button-primary.red {
    border: 1px solid var(--white);
    background-color: var(--firebrick);
    width: 116px;
    font-size: 14px;
    font-weight: 600;
}

.button-primary.red:hover {
    background-color: var(--white);
    color: var(--firebrick);
}

.button-primary.red.en {
    width: auto;
}

.body {
    direction: rtl;
    color: var(--white-smoke);
    font-family: Graphikarabic, sans-serif;
}

.body.en {
    direction: ltr;
    font-family: Montserrat, sans-serif;
}

.brand_logo {
    height: 64px;
}

.hero-section {
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.hero-section.about {
    height: auto;
}

.hero-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: .5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: center;
    display: grid;
}

.hero-split {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.hero-split.image-wrapper {
    border-radius: 1.25rem;
    max-width: none;
    position: relative;
    overflow: hidden;
}

.hero-paragraph {
    text-align: center;
    width: 65%;
    margin-bottom: 24px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.shadow-two {
    object-fit: fill;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px #96a3b514;
}

.hero-h1 {
    line-height: 1.5;
}

.hero-h1.centered {
    text-align: center;
}

.hero-h1.centered.huge {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hero-h1.centered.huge.adam-dream {
    color: var(--white);
}

.black-overlay {
    background-color: #0006;
    border-radius: 1.25rem;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.play-btn {
    z-index: 1;
    background-image: url('../images/Play.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 4rem 4rem;
    position: absolute;
    inset: 0%;
}

.stakeholders {
    grid-column-gap: 1rem;
    grid-row-gap: 0rem;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: .5rem;
    display: flex;
}

.image {
    height: 3rem;
    display: block;
    position: relative;
}

.image._2 {
    object-fit: contain;
    height: 5rem;
}

.backdrop_1 {
    z-index: -1;
    background-image: url('../images/hero-backdrop.png');
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 32.8125rem;
    height: 41rem;
    position: absolute;
    inset: 0% auto auto 0%;
}

.services-section {
    padding: 80px 30px;
    position: relative;
}

.grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr 1fr;
    margin-bottom: 1rem;
}

.grid._2 {
    grid-template-columns: 1fr 1fr 1fr;
}

.services-heading {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.875rem;
}

.services-heading.news {
    display: inline-block;
}

.services-heading.kids {
    font-size: 3rem;
    line-height: 1.2;
}

.service_card {
    border-radius: 1.25rem;
    padding: 2rem;
}

.service_card.red {
    background-color: var(--firebrick);
    justify-content: flex-start;
    display: flex;
}

.service_card.black {
    background-color: var(--black);
}

.service_card.grey {
    background-color: var(--light-grey);
}

.service-h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.5;
}

.service-h3.red {
    color: var(--firebrick);
}

.service-h3.white {
    color: var(--white);
}

.service-p {
    color: var(--light-grey);
}

.service-p.black {
    color: var(--black);
}

.social-media-links {
    grid-column-gap: .8rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    width: 1.5rem;
    display: flex;
    position: absolute;
    inset: 12% auto auto -3.5%;
}

.social-text {
    direction: rtl;
    color: #656565;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.socials-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    flex: 0 auto;
    margin-top: 1rem;
    display: flex;
}

.social-img {
    display: block;
    transform: rotate(90deg);
}

.global-styles {
    display: none;
}

.tab {
    flex-direction: column-reverse;
    width: 100%;
    display: flex;
}

.section {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    display: block;
    position: relative;
    overflow: hidden;
}

.section.red {
    background-color: var(--white);
    padding-top: 0;
    padding-bottom: 104px;
}

.section.red.about {
    padding-bottom: 0;
}

.section.red.lg-pd-bt {
    padding-bottom: 160px;
}

.section.news {
    padding-top: 40px;
}

.tab-link {
    opacity: .5;
    color: #096ad0;
    text-align: center;
    background-color: #0000;
    border-radius: 20px;
    flex: 1;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 8rem;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
}

.tab-link.w--current {
    opacity: 1;
    background-color: #0000;
    font-weight: 700;
}

.tab-link._1 {
    opacity: 1;
    filter: saturate(50%);
    background-image: linear-gradient(#00000080, #00000080), url('../images/program_1.png');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
}

.tab-link._1.w--current {
    filter: saturate(150%);
    color: var(--white);
    width: 100%;
}

.tab-link._1.home {
    background-image: url('../images/Group-20.png');
    background-position: 50%;
    background-size: cover;
}

.tab-link._2 {
    opacity: 1;
    filter: saturate(50%);
    background-image: linear-gradient(#00000080, #00000080), url('../images/program_2.png');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    display: flex;
}

.tab-link._2.w--current {
    filter: saturate(150%);
}

.tab-link._2.home {
    background-image: url('../images/Group-21.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.tab-link._2.en {
    padding-left: 8px;
    padding-right: 8px;
}

.tab-link._3 {
    opacity: 1;
    filter: saturate(50%);
    background-image: linear-gradient(#00000080, #00000080), url('../images/program_3.png');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
}

.tab-link._3.w--current {
    filter: saturate(150%);
}

.tab-link._3.home {
    background-image: url('../images/Group-22.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.tab-link._3.en {
    padding-left: 8px;
    padding-right: 8px;
}

.tab-link._4 {
    opacity: 1;
    background-image: linear-gradient(#00000080, #00000080), url('../images/program_4.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
}

.tab-link._4.w--current {
    filter: brightness(150%) saturate(150%);
}

.tab-link._5 {
    opacity: 1;
    background-image: linear-gradient(#00000080, #00000080), url('../images/program_5.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
}

.tab-link._5.w--current {
    filter: saturate(150%) brightness(150%);
}

.tabs-menu {
    grid-column-gap: 1rem;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 80%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    position: absolute;
    inset: auto 0% -50%;
}

.tabs-menu.home {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-self: center;
}

/* .tab-content {
    grid-column-gap: 2rem;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
} */

.tab-paragraph {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.825rem;
    font-weight: 600;
    line-height: 1.6;
}

.tab-paragraph.black {
    color: var(--black);
}

.tab-paragraph.en {
    font-size: 1.2rem;
    line-height: 1.6;
}

.flex-h {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.flex-h._2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}

.flex-h.events {
    justify-content: flex-start;
    align-items: center;
}

.flex-h.events.en {
    align-items: center;
}

.text-block {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.text-block.tab {
    color: var(--white);
    text-align: right;
    font-size: 14px;
}

.text-block.tab.lg {
    font-size: 16px;
    line-height: 1.6;
}

.text-block.tab.lg.en {
    font-size: 12px;
}

.text-block.tab.en {
    text-align: left;
}

.text-block.black {
    color: var(--dim-grey);
}

.text-block.en {
    font-size: 14px;
}

.image-2 {
    height: 48px;
    position: relative;
}

.content-wrapper {
    background-color: var(--firebrick);
    width: 100vw;
    padding: 40px 60px 88px;
    position: relative;
}

.content-wrapper.programs {
    background-color: #0000;
}

.news-section {
    padding: 64px 30px 80px;
}

.f-testimonial-right-a {
    background-color: var(--white);
    color: var(--firebrick);
    border: 1px solid #e4e6f1;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: all .3s;
    display: flex;
    inset: auto auto -90px 0%;
}

.f-testimonial-right-a:hover {
    border-color: var(--light-grey);
    background-color: var(--firebrick);
    color: #fff;
}

.news-slider {
    direction: ltr;
    transform-style: preserve-3d;
    background-color: #fff;
    height: auto;
    transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.news-slider.en {
    transform: none;
}

.f-testimonial-left-a {
    border: 1px solid var(--white-smoke);
    background-color: var(--firebrick);
    color: var(--white);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: all .3s;
    display: flex;
    inset: auto auto -90px 60px;
}

.f-testimonial-left-a:hover {
    background-color: var(--firebrick);
    color: #fff;
}

.f-slide-nav-hidden {
    display: none;
    bottom: -50px;
}

.f-testimonial-slider-grid-large {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    transform-style: preserve-3d;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.f-testimonial-slider-grid-large.en {
    transform: none;
}

.f-icon-regular {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    transition: color .2s;
    display: flex;
}

.mask {
    direction: ltr;
    max-width: 24vw;
    min-height: 20.1rem;
    margin-left: 0;
    margin-right: 1rem;
    overflow: visible;
}

.mask._2 {
    max-width: 100%;
    overflow: hidden;
}

.news-post {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--white-smoke);
    border-radius: 20px;
    grid-template-rows: 11.3125rem auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    height: 20.1rem;
    display: grid;
    position: relative;
}

.post-img {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 11.3125rem;
    display: block;
}

.news-post-details {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 8.81rem;
    padding: 16px 24px;
    display: flex;
}

.news-heading {
    direction: rtl;
    text-align: right;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.news-heading.en {
    text-align: left;
    font-size: .8rem;
}

.news-row {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    display: flex;
}

.image-3 {
    object-fit: cover;
    width: 26px;
    min-width: 26px;
    max-width: none;
    height: 26px;
    min-height: 26px;
    position: relative;
}

.news-date {
    direction: rtl;
    color: var(--dim-grey);
    text-align: right;
    font-weight: 500;
}

.text-block-2 {
    float: left;
    color: var(--firebrick);
    font-size: 1rem;
    font-weight: 700;
    line-height: 36px;
    display: inline-block;
}

.text-block-2.en {
    float: right;
}

.see-all-news {
    float: left;
    height: 36px;
}

.see-all-news.en {
    float: right;
}

.backdrop_2 {
    z-index: 0;
    background-image: url('../images/backdrop-tabs-2.png');
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 18rem;
    height: 40rem;
    position: absolute;
    inset: -2.5rem 0% auto auto;
}

.backdrop_2.contact {
    background-image: url('../images/backdrop-tabs.png');
    background-position: 100% 0;
    background-size: cover;
    height: 16rem;
    inset: 0% auto auto 0%;
    transform: rotate(180deg);
}

.backdrop_2.contact.en {
    transform-style: preserve-3d;
    left: auto;
    right: 0%;
    transform: rotateX(0)rotateY(180deg)rotateZ(180deg);
}

.backdrop_2.about {
    transform-style: preserve-3d;
    left: 0;
    right: auto;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.backdrop_2.about.en {
    left: auto;
    right: 0;
    transform: rotate(0);
}

.activities-section {
    padding-bottom: 80px;
    position: relative;
}

.activities-section.hide {
    display: none;
}

.activity-slide-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: row-reverse;
    flex: 0 auto;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    display: grid;
}

.activity-slide-content.en {
    align-items: start;
}

.activity-details {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
}

.frame-32 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.frame-28 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.frame-24 {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.frame-24.en {
    grid-row-gap: 0rem;
}

.target-divisions {
    color: #c70815;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
}

.frame-26 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.fs_cmsnest_category {
    background-color: #ced6e0;
    border-radius: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    text-decoration: none;
    display: flex;
}

.menu-4 {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.frame-31 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    display: flex;
}

.frame-30 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.event-date {
    color: #000;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
}

.event-date.en {
    text-align: left;
}

.activity-image {
    object-fit: cover;
    background-color: #c708154d;
    border-radius: 20px;
}

.slider {
    background-color: #0000;
    min-height: 26rem;
}

.mask-2 {
    overflow: visible;
}

.slide-nav {
    display: none;
}

.tab-link-2 {
    border: 1px solid var(--white-smoke);
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    border-radius: 50px;
    margin-right: 20px;
    padding: 12px 32px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}

.tab-link-2:hover {
    background-color: var(--black);
    color: #fff;
    border-color: #0000;
}

.tab-link-2.w--current {
    background-color: var(--black);
    color: #fff;
    border-color: #0000;
    font-weight: 700;
}

.tabs-menu-2 {
    background-color: var(--firebrick);
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-width: 100vw;
    height: 9rem;
    margin-bottom: 80px;
    display: flex;
}

.backdrop-3 {
    background-image: url('../images/backdrop-3.png');
    background-position: 100% 0;
    background-size: cover;
    width: 4rem;
    height: 8.25rem;
    position: absolute;
    inset: -2.56rem 0% auto auto;
}

.tabs {
    margin-top: 64px;
}

.activities-heading {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 3rem;
    font-size: 30px;
    position: static;
    inset: 3.31rem 7vw auto auto;
}

.activities-heading.en {
    margin-left: 0;
    margin-right: 3rem;
}

.activity-title {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.5;
}

.activity-title.en {
    font-size: 1.2rem;
}

.activity-paragraph {
    text-align: right;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.activity-paragraph.en {
    text-align: left;
}

.arrow {
    object-fit: cover;
    width: 40px;
    height: 40px;
    display: block;
}

.arrow.right {
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    inset: 0% 0% 0% auto;
}

.arrow.left {
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    inset: 0% auto 0% 0%;
}

.left-arrow {
    overflow: visible;
    transform: translate(-2rem);
}

.icon {
    display: none;
}

.right-arrow-2 {
    transform: translate(2rem);
}

.footer {
    background-color: var(--black);
    width: 100vw;
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
}

.col-1 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    direction: rtl;
    flex-direction: column;
    align-items: flex-start;
    width: 359.188px;
    display: flex;
}

.col-1.en {
    direction: ltr;
    align-items: flex-start;
}

.image-4 {
    height: 104px;
}

.footer-paragraph {
    color: var(--white);
    text-align: right;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.6;
}

.footer-paragraph.en {
    text-align: left;
}

.grid-2 {
    grid-column-gap: 4rem;
    direction: ltr;
    grid-template-columns: 1fr .6fr;
}

.grid-2.en {
    grid-template-columns: .6fr 1fr;
}

.image-5 {
    height: 56px;
}

.image-5._2 {
    height: 104px;
}

.social-links-footer {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.social-link {
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
}

.social-link.youtube {
    display: none;
}

.col-2 {
    direction: rtl;
}

.col-2.en {
    direction: ltr;
}

.important-links {
    padding-left: 8rem;
}

.important-links.en {
    padding-left: 0;
}

.footer-h4 {
    color: var(--white);
    text-align: right;
    margin-top: 92px;
    margin-bottom: 0;
    font-size: 22px;
}

.footer-h4._2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-h4._2.en,
.footer-h4.en {
    text-align: left;
}

.grid-3 {
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    direction: ltr;
    grid-template-rows: auto;
    margin-top: 1rem;
}

.col {
    grid-row-gap: 4px;
    flex-direction: column;
    display: flex;
}

.link {
    color: #a3a3a3;
    text-align: right;
    font-weight: 500;
    text-decoration: none;
}

.link.en {
    text-align: left;
    margin-bottom: 4px;
}

.text-field-wrapper {
    flex-direction: column;
    align-items: flex-start;
}

.text-field {
    color: #a3a3a3;
    background-color: #0000;
    border: 1px solid #e4e6f1;
    border-radius: 24px;
    min-height: 48px;
    margin-bottom: 0;
    padding: 12px 16px;
    font-size: 14px;
    transition: all .2s;
}

.text-field:hover {
    border-color: #e4e6f1;
}

.text-field:focus {
    color: var(--firebrick);
    border-style: none;
}

.text-field::placeholder {
    color: #a3a3a3;
}

.flex-h-form {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    display: flex;
}

.backdrop-footer {
    transform-style: preserve-3d;
    background-image: url('../images/backdrop-footer.png');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 8.31rem;
    height: 100%;
    position: absolute;
    inset: 0% auto auto 0%;
}

.login-section {
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow: visible;
}

.login-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--light-grey);
    border-radius: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 80%;
    max-width: 1140px;
    height: 90vh;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    overflow: hidden;
}

.image-7 {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    max-width: none;
    height: 90vh;
}

.image-7.post {
    border-radius: 1.25rem;
    width: 100%;
    height: 30rem;
}

.image-7.post.normal {
    object-position: 50% 0%;
    width: 100%;
    height: 25.8rem;
}

.login-col {
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    display: flex;
}

.eeic-logo {
    height: 120px;
    display: block;
}

.a-button-primary {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    letter-spacing: -.02em;
    border-radius: 8px;
    flex-direction: row;
    flex: none;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    margin-top: 1rem;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: all .5s cubic-bezier(.6, .6, 0, 1);
}

.a-button-primary:hover,
.a-button-primary:active {
    background-color: var(--firebrick);
}

.input-field-login {
    background-color: var(--white);
    border: 1px solid #dedfe3;
    border-radius: 8px;
    height: 56px;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.input-field-login:focus {
    border-color: #c7081580;
}

.input-field-login::placeholder {
    background-color: var(--white);
    color: var(--dim-grey);
}

.input-field-login.text-area {
    min-width: 100%;
    max-width: 100%;
    min-height: 140px;
    max-height: 240px;
}

.form {
    flex-direction: column;
    align-items: stretch;
    width: 20rem;
    display: flex;
}

.form.contact {
    width: 100%;
}

.text-block-3 {
    color: var(--firebrick);
    text-align: left;
    margin-top: 4px;
    font-weight: 500;
}

.text-block-3.error {
    color: #8c000a;
    text-align: right;
    margin-top: 0;
    display: none;
}

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

.text-block-4 {
    color: var(--dim-grey);
    text-align: center;
    margin-top: 3rem;
    font-weight: 600;
}

.success-message {
    background-color: var(--black);
    border-radius: 16px;
}

.error-message {
    text-align: center;
    background-color: #8c000a;
    border-radius: 16px;
    width: 100%;
    max-width: 20rem;
}

.error-message.fullw {
    max-width: none;
}

.collection-hidden {
    display: block;
}

.collection-hidden.activity {
    margin-top: 2rem;
    display: none;
}

.collection-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    display: flex;
}

.collection-list._2 {
    flex-direction: column;
}

.news-post-link {
    border-radius: 1.25rem;
    height: 20.1rem;
    text-decoration: none;
    overflow: hidden;
}

.red-overlay {
    background-color: #c7081566;
    border-radius: 1.25rem 1.25rem 0 0;
    width: 100%;
    height: 11.3125rem;
    position: absolute;
    inset: 0% 0% auto;
}

.slide {
    margin-right: 1rem;
}

.featured-post {
    grid-column-gap: 4rem;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.col-post {
    flex-flow: column;
    justify-content: space-between;
    height: 17vh;
    display: flex;
}

.col-post.normal {
    width: 100%;
}

.featured-post-paragraph {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.featured-post-heading {
    font-size: 2.4rem;
    line-height: 1.5;
}

.read-post-link {
    float: left;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: var(--firebrick);
    align-self: flex-end;
    align-items: center;
    margin-top: auto;
    font-weight: 600;
    text-decoration: none;
    display: flex;
}

.read-post-link.normal {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    margin-top: 1rem;
}

.html-embed {
    color: var(--dim-grey);
    width: 24px;
    height: 24px;
    display: block;
}

.html-embed.en {
    transform-style: preserve-3d;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.text-block-5 {
    font-size: 1rem;
    line-height: 24px;
    display: block;
}

.grid-4 {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 6rem;
    display: grid;
}

.normal-post {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    display: flex;
}

.normal-post-heading {
    font-size: 1.5rem;
}

.normal-post-heading.en {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

.normal-post-paragraph {
    line-height: 1.8;
    display: none;
}

.slider-wrapper {
    height: 28rem;
    display: block;
}

.icon-2 {
    display: none;
}

.banner {
    background-color: var(--firebrick);
    border-radius: 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 16rem;
    padding: 48px;
    display: flex;
    position: relative;
}

.contact-heading {
    color: var(--white);
}

.contact-sub-heading {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-sub-heading.black {
    color: var(--black);
}

.contact-sub-heading.en {
    width: 640px;
}

.grid-5 {
    grid-row-gap: 0px;
    grid-template-rows: auto;
    margin-top: 3rem;
}

.contact-h3 {
    color: var(--firebrick);
    text-align: right;
    font-size: 1.5rem;
}

.contact-h3.en {
    text-align: left;
}

.contact-flex-h {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    display: block;
}

.events-banner {
    background-color: var(--firebrick);
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 9rem;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    position: relative;
}

.radio-button-label {
    font-weight: 600;
}

.fs-checkbox_field-4 {
    color: #000;
    cursor: pointer;
    background-color: #fff;
    border: 2px #000;
    border-radius: 50px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all .3s;
    display: flex;
    position: relative;
}

.fs-checkbox_field-4:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: #696969;
}

.fs-checkbox_button-4 {
    border: 1px #000;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
    display: block;
    position: absolute;
    inset: 0%;
    box-shadow: 1px 1px 3px #0000;
}

.fs-checkbox_button-4.w--redirected-checked {
    border: 2px solid var(--black);
    background-color: var(--light-grey);
    background-image: none;
    border-radius: 50px;
}

.fs-checkbox_button-4.w--redirected-focus {
    box-shadow: 0 0 3px 1px var(--black);
    border-style: none;
    border-radius: 50px;
}

.fs-checkbox_button-4.w--redirected-focus-visible {
    box-shadow: none;
    outline-color: var(--light-grey);
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid;
}

.fs-checkbox_label-4 {
    z-index: 1;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
}

.form-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: center;
    display: flex;
}

.text-block-6 {
    color: var(--black);
    font-weight: 600;
}

.hide {
    display: none;
}

.fs_cmsnest_wrapper {
    display: block;
}

.fs_cmsnest_list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.fs_cmsnest_label {
    color: var(--black);
    font-weight: 600;
}

.collection-list-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
}

.link-block {
    text-decoration: none;
}

.fs_cmsnest_link {
    color: #fff;
    display: none;
}

.link-block-2 {
    width: 100%;
    text-decoration: none;
}

.post_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.example_content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.fs_cmsfilter_form {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    display: grid;
}

.fs_cmsfilter_search {
    width: 100%;
    position: relative;
}

.fs_cmsfilter_form-block {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.fs_cmsfilter_reset {
    color: #fff;
    background-color: #000;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.fs_cmsfilter_reset:hover {
    background-color: #0a0a0a;
}

.fs_cmsfilter_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    display: flex;
}

.fs_cmsfilter_field-icon {
    opacity: .5;
    width: 1.75rem;
}

.fs_cmsfilter_field {
    color: #fff;
    background-color: #0000;
    border: 1px #000;
    border-bottom: 1px solid #a8a8a8;
    min-height: 4rem;
    margin-bottom: 0;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    font-size: 1.25rem;
}

.fs_cmsfilter_field::placeholder {
    color: #a8a8a8;
}

.fs_cmsfilter_field-block {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem 1rem 0;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 0%;
}

.fs_cmsfilter_empty {
    background-color: #272727;
    margin-top: 4rem;
    padding: 3rem;
    font-size: 1.25rem;
}

.example_layout {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.thumbnail-slider-buttons-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
}

.thumb-swiper {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    overflow: visible;
}

.gallery-swiper {
    width: 100%;
    margin-bottom: 42px;
    overflow: hidden;
}

.slider-button-right {
    background-color: var(--firebrick);
    color: var(--white);
    text-align: center;
    cursor: pointer;
    border: 1px #f1f2f6;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: -24px;
    font-size: 0;
    font-weight: 400;
    line-height: 1em;
    display: flex;
}

.slider-button-right:active {
    background-color: #000;
}

.slider-button-right.absolute-right {
    position: absolute;
    inset: 210px -100px auto auto;
}

.slider-button-right.centered {
    margin-right: 0;
}

.thumb-swiper-wrapper {
    width: 450px;
    padding: 5px;
}

.thunmbnail-sliders-holder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.slider-button-left {
    text-align: center;
    cursor: pointer;
    background-color: #c70815;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: -24px;
    font-size: 0;
    font-weight: 400;
    line-height: 1em;
    display: flex;
}

.slider-button-left:active {
    background-color: #000;
}

.slider-button-left.absolute-left {
    position: absolute;
    inset: 210px auto auto -100px;
}

.swiper-wrapper {
    flex: none;
    display: block;
}

.swiper-wrapper.thumbnails-list {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    overflow: visible;
}

.swiper-wrapper.gallery-list,
.swiper-wrapper.basic-slider-list {
    align-items: center;
    display: flex;
}

.swiper-slide {
    flex: none;
}

.swiper-slide.thumbnail-item {
    cursor: pointer;
    border: 4px solid #0000;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    transition: transform .4s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: scale(.95);
    box-shadow: 0 0 0 5.5px #0000;
}

.swiper-slide.gallery-item {
    width: 100%;
    height: 510px;
}

.swiper-slide.basic-swiperr-item {
    width: 100%;
    display: flex;
    overflow: visible;
}

.swiper-arrow-wrapper {
    flex-direction: row-reverse;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    position: absolute;
    top: 40%;
}

.swiper-arrow-wrapper.en {
    flex-direction: row;
}

.basic-swiper {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.image-9 {
    z-index: 1;
    position: relative;
}

.space {
    display: none;
}

.f-margin-bottom-16 {
    margin-bottom: 16px;
}

.f-h3-heading {
    color: var(--black);
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 1.2;
}

.f-h3-heading.small {
    font-size: 32px;
    line-height: 1.5;
}

.f-blog-header-grid-small {
    grid-column-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1.75fr 1fr;
}

.f-container-x-small {
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.f-margin-bottom-08 {
    margin-bottom: 8px;
}

.f-h5-heading {
    color: #160042;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1.4;
}

.f-blog-thumbnail {
    border-radius: 8px;
    height: 320px;
    margin-bottom: 24px;
    overflow: hidden;
}

.f-button-neutral {
    color: #fff;
    text-align: center;
    letter-spacing: -.02em;
    background-color: #160042;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .3s;
    display: flex;
}

.f-button-neutral:hover {
    background-color: #282556;
}

.f-paragraph-regular {
    letter-spacing: -.02em;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
}

.f-line-large {
    background-color: #e4e6f1;
    height: 1px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.f-image-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.f-heading-detail-small {
    color: var(--dim-grey);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.f-section-large {
    padding: 92px 5%;
    position: relative;
}

.rich-text-block {
    direction: rtl;
    color: var(--black);
    text-align: right;
}

.rich-text-block.en {
    direction: ltr;
    text-align: left;
}

.f-icon-small {
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    display: flex;
}

.f-container-regular {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.f-sub-heading-large {
    color: #160042;
    letter-spacing: -.02em;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.f-h3-heading-2 {
    color: #160042;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 1.2;
}

.f-blog-heading-grid {
    grid-column-gap: 72px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1.35fr 1fr;
}

.f-heading-detail-regular {
    color: #6b7094;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: normal;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.f-blog-date {
    grid-column-gap: 12px;
    align-items: center;
    margin-bottom: 72px;
    display: flex;
}

.f-blog-social-link {
    color: var(--firebrick);
    background-color: #f1f2f680;
    border-radius: 32px;
    justify-content: center;
    align-items: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    transition: all .3s;
    display: flex;
}

.f-blog-social-link:hover {
    color: var(--black);
}

.f-blog-social-grid {
    grid-column-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 216px;
}

.f-blog-title-wrapper-left {
    z-index: 5;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 640px;
    margin-bottom: 48px;
    display: flex;
    position: relative;
}

.f-margin-bottom-56 {
    margin-bottom: 56px;
}

.f-blog-image-large {
    border-radius: 8px;
    height: 380px;
    margin-bottom: 24px;
    overflow: hidden;
}

.h6-heading {
    color: #000;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.4;
}

.paragraph-small {
    letter-spacing: -.02em;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.8;
}

.wrap-h-small {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
    display: flex;
}

.video-lightbox {
    z-index: 50;
    background-color: #fff;
    border-radius: 99px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    display: flex;
    position: relative;
    box-shadow: 0 8px 32px #1313150a;
}

.video-block-s {
    background-color: #f4f4f5;
    background-image: url('../images/Dr-Sherifa-Thumbnail.jpg');
    background-position: 50%;
    background-size: cover;
    border: 1.5px #131315;
    border-radius: 1.25rem;
    justify-content: center;
    align-items: center;
    max-width: 550px;
    height: 396px;
    display: none;
    position: relative;
}

.video-block-s.about {
    background-image: url('../images/Dr-Heba-Thumbnail.jpg');
    background-position: 0%;
}

.feature-icon-b {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: flex;
}

.feature-icon-b.icon {
    color: #d7c970;
}

.feature-icon-b.red {
    color: #d77070;
}

.feature-icon-b.purple {
    color: #8870d7;
}

.feature-icon-b.green {
    color: #70d789;
}

.play-icon {
    z-index: 50;
    width: 48px;
    height: 48px;
    position: relative;
}

.grid-two-column {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.wrap-v-regular {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    display: flex;
}

.icon-large {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: flex;
}

.section-large {
    padding: 120px 5%;
    position: relative;
}

.container-large {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.b-button-plain-icon-right {
    grid-column-gap: 8px;
    color: #5e53a2;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
}

.b-button-plain-icon-right:hover {
    color: #3e376d;
    background-color: #f3f4f6;
}

.b-h3-heading {
    color: #3e376d;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
}

.b-span-red {
    color: #e57361;
}

.b-feature-banner {
    border-top: 1px solid var(--light-grey);
    color: #454f5f;
    margin-top: 64px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.b-feature-icon {
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
}

.b-feature-icon._1 {
    color: var(--light-grey);
}

.b-feature-icon._3 {
    color: var(--white);
}

.b-paragraph-small {
    letter-spacing: -.02em;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.icon-small {
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    display: flex;
    transform: rotate(0);
}

.b-badge {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    align-items: center;
    margin-bottom: 12px;
    display: flex;
}

.b-container-regular {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.margin-bottom-08 {
    margin-bottom: 8px;
}

.margin-bottom-32 {
    color: var(--firebrick);
    margin-bottom: 16px;
}

.b-paragraph-regular {
    letter-spacing: -.02em;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.b-feature-heading-content {
    width: 100%;
    max-width: 620px;
}

.b-span-primary {
    color: #e57361;
}

.b-heading-wrapper {
    grid-column-gap: 44px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 64px;
    display: flex;
}

.b-badge-caption {
    letter-spacing: .01em;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
}

.b-badge-icon {
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    display: flex;
}

.b-paragraph-large {
    letter-spacing: -.02em;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
}

.b-paragraph-large.b-text-weight-semibold {
    font-weight: 600;
}

.b-section-regular {
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    overflow: hidden;
}

.b-feature-grid-large {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 64px;
}

.grid-6 {
    grid-row-gap: 16px;
    grid-template-rows: auto;
    padding-bottom: 5rem;
}

.div-block {
    margin-bottom: 40px;
}

.grid-7 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-left: 16rem;
}

.grid-7.about.en {
    padding-left: 0;
}

.div-block-2 {
    grid-column-gap: 1rem;
    border-radius: 20px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px;
    display: flex;
}

.heading {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.8;
}

.div-block-3 {
    border: 1px solid var(--light-grey);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    padding: 5px;
}

.video-box {
    z-index: 1;
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 60%;
    position: relative;
}

.lottie-animation {
    height: 200px;
}

.heading-2 {
    text-align: center;
}

.paragraph {
    text-align: right;
}

.heading-3,
.paragraph-2 {
    text-align: center;
}

.heading-4 {
    text-align: right;
}

.heading-4.center {
    text-align: center;
}

.heading-4.center.red {
    color: var(--firebrick);
}

.heading-4.en {
    text-align: left;
}

.section-2.margin-top {
    margin-top: 64px;
}

.goal-box {
    background-color: var(--light-grey);
    border-radius: 20px;
    padding: 24px;
}

.goal-box._1 {
    background-color: var(--firebrick);
}

.goal-box._2 {
    background-color: var(--black);
}

.paragraph-3 {
    color: var(--light-grey);
}

.paragraph-4 {
    color: var(--white);
}

.targeted-wrapper {
    background-color: var(--firebrick);
    margin-bottom: 5rem;
    padding: 24px 5vw;
}

.heading-5 {
    color: var(--white);
}

.div-block-4 {
    margin-bottom: 40px;
}

.heading-6 {
    margin-top: 0;
    margin-bottom: 32px;
    line-height: 1.4;
}

.red-dot {
    color: var(--firebrick);
    font-size: 1.2rem;
}

.right-arrow-3,
.left-arrow-2 {
    justify-content: center;
    align-items: center;
    display: flex;
}

.slider-2 {
    background-color: #0000;
}

.slide-nav-2 {
    background-color: var(--black);
    height: 28px;
    font-size: 8px;
    line-height: 1;
    bottom: -28px;
}

.tab-link-tab-2 {
    background-color: var(--black);
    color: var(--white);
}

.tab-link-tab-2.w--current {
    background-color: var(--firebrick);
}

.text-block-7 {
    color: var(--dim-grey);
}

.div-block-5 {
    padding-bottom: 160px;
    display: none;
}

.empty-state {
    background-color: var(--white);
}

.black-span {
    color: var(--black);
    display: block;
}

.text-block-8 {
    color: var(--dim-grey);
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.div-block-6 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    display: flex;
}

.statement-p {
    width: 480px;
}

.image-10 {
    object-fit: contain;
    height: 80px;
}

.youtube {
    display: none;
}

.button-primary {
    font-size: 14px;
}

.wg-button-2-text-lang1 {
    align-items: center;
    height: 2rem;
    display: flex;
}

.wg-button-2-text-lang1.front-link {
    letter-spacing: 0;
}

.language-toggle {
    justify-content: center;
    align-items: center;
    margin-right: 4rem;
    transition: background-color .2s;
    display: flex;
    position: relative;
}

.language-toggle:hover {
    background-color: #0000;
}

.language-toggle.en {
    margin-left: 2rem;
    margin-right: 0;
}

.wg-button-2-text-lang2 {
    align-items: center;
    height: 34px;
    display: flex;
    position: absolute;
    top: 2rem;
}

.wg-button-2-text-lang2.back-link.ar {
    letter-spacing: 0;
}

.wg-button-2-lang-wrapper {
    justify-content: center;
    display: flex;
}

.wg-button-2 {
    border: 1px solid var(--light-grey);
    color: var(--black);
    letter-spacing: .1em;
    background-color: #0000;
    border-radius: 17px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 34px;
    text-decoration: none;
    transition: box-shadow .1s, background-color .1s, color .1s;
    display: flex;
    position: relative;
    overflow: hidden;
}

.wg-button-2:hover {
    color: var(--firebrick);
    background-color: #0000;
    font-weight: 400;
}

.wg-element-wrapper {
    align-items: center;
    display: flex;
    position: relative;
}

.wg-element-wrapper.sw13 {
    display: block;
}

.wg-element-wrapper.sw13:hover {
    background-color: #0000;
}

.html-embed-2 {
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
    display: flex;
}

.html-embed-2.ar {
    margin-left: .5rem;
    margin-right: 0;
}

.wg-button-2-2 {
    border: 1px solid var(--light-grey);
    color: var(--black);
    letter-spacing: .1em;
    background-color: #0000;
    border-radius: 17px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 34px;
    text-decoration: none;
    transition: box-shadow .1s, background-color .1s, color .1s;
    display: flex;
    position: relative;
    overflow: hidden;
}

.wg-button-2-2:hover {
    color: var(--firebrick);
    background-color: #0000;
    font-weight: 400;
}

.p-e {
    height: 300px;
    overflow: auto;
}

.en-q {
    text-align: left;
}

.c-en {
    margin-top: 10px;
}

.container-large-2 {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.video-all-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.video-button-all {
    color: #fff;
    text-align: center;
    background-color: #1c2122;
    border-radius: 99px;
    flex: none;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    display: flex;
}

.video-card-column {
    grid-column-gap: 24px;
    align-items: center;
    display: flex;
}

.caption-medium {
    color: #1c2122;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.caption-medium.text-color-gray-600 {
    color: #607276;
}

.heading-detail-small {
    color: #1c2122;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.heading-detail-small.text-color-gray-500 {
    color: #788d91;
}

.button-small {
    outline-offset: 0px;
    color: #323c3e;
    text-transform: uppercase;
    background-color: #0000;
    border-radius: 99px;
    outline: 1px solid #ccd4d6;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
}

.button-small:hover {
    background-color: var(--firebrick);
    outline-color: var(--firebrick);
    color: #fff;
}

.video-control-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.image-cover {
    object-fit: contain;
    height: 120px;
}

.grid-two-column-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.grid-two-column-2.margin-bottom-64 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.video-card-detail {
    width: 100%;
}

.video-heading-grid {
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 72px;
}

.video-play-time {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.section-large-2 {
    padding-bottom: 120px;
    padding-left: 3%;
    padding-right: 3%;
}

.section-large-2.en {
    direction: ltr;
}

.video-button-wrap {
    align-self: flex-end;
}

.caption-regular {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.paragraph-regular {
    color: #323c3e;
    letter-spacing: -.02em;
    max-width: 800px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}

.video-caption {
    color: #607276;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.video-time {
    grid-column-gap: 4px;
    color: #607276;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: flex;
}

.video-line {
    background-color: #e9eced;
    width: 100%;
    height: 1px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.video-play-icon {
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    display: flex;
}

.video-title-link {
    color: var(--white);
    letter-spacing: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
    text-decoration: none;
    transition: all .3s;
}

.video-title-link:hover {
    color: var(--light-grey);
}

.video-heading {
    color: var(--firebrick);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 86px;
}

.paragraph-detail-medium {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.paragraph-detail-medium.text-color-gray-600 {
    color: #607276;
}

.video-tumb-wrapper {
    background-color: #e9eced;
    border-radius: 24px;
    max-width: 290px;
    height: 120px;
    overflow: hidden;
}

.div-block-7 {
    max-width: 640px;
}

.margin-top-40px {
    margin-top: 40px;
}

.tab-link-eeic {
    border: 1px solid var(--light-grey);
    background-color: #0000;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 500;
    transition: all .3s;
    display: flex;
}

.tab-link-eeic:hover {
    background-color: var(--light-grey);
    border-style: solid;
    border-color: #0000;
    border-radius: 16px;
}

.tab-link-eeic.w--current {
    background-color: var(--firebrick);
    color: var(--white);
    border-style: solid;
    border-color: #0000;
    border-radius: 16px;
}

.tab-link-eeic.adam-dream {
    color: #e1b274;
    background-color: #366265;
}

.tab-link-eeic.adam-dream.w--current {
    color: #366265;
    background-color: #e1b274;
}

.tab-link-eeic.start-future {
    color: #edd35e;
    background-color: #4877cd;
}

.tab-link-eeic.start-future.w--current {
    color: #e24b4a;
    background-color: #edd35e;
}

.tabs-menu-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    display: flex;
}

.tabs-content {
    overflow: visible;
}

.video-button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    color: #fff;
    text-align: center;
    background-color: #e24b4a;
    border-radius: 99px;
    flex-flow: row;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 160px;
    min-height: 40px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
}

.video-button:hover {
    transform: scale(1.1);
}

.video-button.overlay {
    position: absolute;
}

.video-card {
    color: #1c2122;
    text-decoration: none;
}

.video-content-wrap {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px;
    display: flex;
}

.section-large-3 {
    color: var(--white-smoke);
    justify-content: center;
    align-items: center;
    padding: 40px 5% 80px;
    display: flex;
    position: relative;
}

.video-button-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    display: flex;
    position: relative;
}

.container-x-small {
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.video-description {
    color: #607276;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.video-button-secondary {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: var(--black);
    color: var(--light-grey);
    text-align: center;
    border: 1px #ccd4d6;
    border-radius: 99px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 160px;
    min-height: 40px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
}

.video-button-secondary:hover {
    color: var(--white);
    transform: scale(1.1);
}

.video-wrapper-large {
    background-color: #e9eced;
    border-radius: 24px;
    margin-bottom: 16px;
    overflow: hidden;
}

.video-wrapper-large.kids {
    border: 24px solid #0097bc;
}

.heading-wrapper {
    text-align: center;
    max-width: 620px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.heading-detail {
    color: var(--light-grey);
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: normal;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.heading-detail.all-eps {
    margin-bottom: 0;
    margin-left: 16px;
    transition: all .3s;
}

.heading-detail.all-eps:hover {
    color: var(--black);
}

.link-block-3 {
    text-decoration: none;
    display: none;
}

.nav-user {
    color: #1a1b1f;
    letter-spacing: .25px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    display: inline-block;
}

.nav-user:hover {
    color: #1a1b1fbf;
}

.nav-user:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.nav-user[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.nav-user.w--current {
    color: var(--firebrick);
    font-weight: 700;
}

.nav-user.name {
    padding-right: 4px;
}

.nav-user.name.en {
    padding-left: 4px;
    padding-right: 0;
}

.nav-user.log-out {
    color: var(--firebrick);
    display: block;
}

.loading-overlay {
    z-index: 2147483647;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
}

.lottie-animation-2 {
    width: 40px;
    height: 40px;
}

.lottie-animation-3 {
    width: 80px;
}

.link-2 {
    color: var(--firebrick);
}

.backdrop-full-1 {
    z-index: -1;
    opacity: .2;
    background-image: url('../images/kids-bg.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 0%;
}

.backdrop-full-1.start {
    background-image: url('../images/start-future-bg.png');
    background-position: 50%;
    background-size: cover;
}

.backdrop-full-1.video-pg {
    opacity: 1;
    background-image: url('../images/2.jpg');
    display: none;
}

.backdrop-full-1.video-pg.black {
    background-color: var(--black);
    opacity: .7;
    background-image: none;
    display: block;
}

.backdrop-full-1.video-pg.start-future {
    background-image: url('../images/3_1.png');
    display: block;
}

.backdrop-full-1.video-pg.dream {
    display: block;
}

.text-span {
    color: #4877cd;
}

.text-span-2 {
    color: #e24b4a;
}

.tab-kid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    border: 2px #edd35e;
    border-radius: 40px;
    align-items: center;
    width: auto;
    padding: 40px;
    transition: all .2s;
    display: flex;
}

.tab-kid:hover {
    transform: scale(1.1);
}

.div-block-9 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.text-block-9 {
    color: #e24b4a;
    text-align: right;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.text-block-9.green {
    color: #2cd273;
}

.text-block-10 {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

.tab-link-tab-1 {
    background-color: #0000;
    border-radius: 48px;
    padding: 0;
}

.tab-link-tab-1.w--current {
    background-color: #fff;
    padding: 0;
}

.image-11 {
    border-radius: 50%;
}

.image-12 {
    border-radius: 50%;
    max-width: 45%;
}

.image-13 {
    width: 400px;
    transition: all .2s;
    position: absolute;
    inset: 4% auto auto -4%;
}

.image-13:hover {
    transform: translate(0, -8px);
}

.image-13.another {
    inset: auto -4% 0% auto;
}

.image-13.another.dream {
    inset: auto 8% 8% auto;
}

.image-13.dream {
    width: 100px;
    top: 31%;
    left: 25%;
}

.image-14 {
    width: 150px;
    position: absolute;
    inset: 40% 0% auto auto;
}

.heading-7 {
    color: #e24b4a;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 40px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.heading-7.green {
    color: #2cd273;
}

.flex-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 24px;
}

.text-block-11 {
    color: var(--white);
}

.cms-source {
    display: none;
}

.video-link {
    text-decoration: none;
}

.collection-list-3 {
    display: block;
}

.episode-title {
    color: var(--white);
}

.text-block-12 {
    color: var(--black);
    font-weight: 600;
}

.episode-link {
    text-decoration: none;
}

.link-3 {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
}

.back-to-learn-center {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: center;
    width: 280px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    display: flex;
}

.next-arrow {
    width: 24px;
    height: 24px;
}

.prev-arrow {
    transform-style: preserve-3d;
    order: 1;
    width: 24px;
    height: 24px;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.div-block-10 {
    position: absolute;
    inset: 0%;
}

.body-en {
    direction: ltr;
    color: var(--white-smoke);
    font-family: Graphikarabic, sans-serif;
}

.body-en.en {
    direction: ltr;
    font-family: Montserrat, sans-serif;
}

.reports-block {
    direction: ltr;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: .25fr .25fr auto auto;
    grid-auto-columns: 1fr;
    max-width: 98%;
    display: flex;
    overflow: scroll;
}

.report-hero-section {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    padding-top: 2em;
    padding-bottom: 2em;
    display: flex;
}

.report-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
}

.report-title.centered {
    text-align: center;
}

.report-title.centered.huge {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.report-title.centered.huge.adam-dream {
    color: var(--white);
}

.report-tabs-menu {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: center;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 2em;
    display: flex;
}

.rebort-tab-1 {
    background-color: var(--white);
    border: 1px solid #000;
    border-radius: 3.3em;
    padding: .8em 2em;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.7;
}

.rebort-tab-1.w--current {
    background-color: var(--firebrick);
    color: var(--white);
    padding: .8em 2em;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.7;
}

.report-content-block {
    border: 1px solid #000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 2em;
    padding-bottom: 2em;
    display: flex;
}

.report-table-titles {
    color: var(--black);
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.3em;
    line-height: 1.2;
}

.report-table-titles._2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.report-table-titles._2.en,
.report-table-titles.en {
    text-align: left;
}

.table_cell {
    text-align: center;
    border: 1px solid #000;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.4;
}

.table_header {
    border: 1px solid #000;
    width: auto;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.2;
}

.table_component {
    color: var(--black);
    width: 100%;
    font-weight: 400;
    display: none;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
}

.utility-page-form {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.serach-bar {
    max-width: 98%;
    margin: 1em;
    display: none;
}

.search-button {
    background-color: var(--firebrick);
    padding: 1em 2em;
    font-size: 1em;
    line-height: 1.2;
}

.search-button:hover {
    background-color: var(--black);
}

.search-link {
    color: var(--firebrick);
}

.glossary-cards-section {
    grid-column-gap: 2.5rem;
    direction: rtl;
    justify-content: center;
    align-items: center;
    height: 50vh;
    padding-left: 4rem;
    padding-right: 4rem;
    display: flex;
}

.glossary-cards-section._1 {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.glossary-cards-section._2 {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: none;
}

.d-31-card-wrapper {
    perspective: 1000px;
}

.d-31-card {
    width: 250px;
    height: 330px;
    position: relative;
}

.d-31-card-front {
    border: 2px solid var(--firebrick);
    background-color: var(--white);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 1rem;
    display: flex;
    position: absolute;
    inset: 0%;
}

.category-icon-div {
    direction: ltr;
    align-self: flex-end;
}

.glossary-text {
    color: var(--firebrick);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.glossary-text.red {
    color: var(--firebrick);
}

.glossary-text.white {
    color: var(--white);
}

.d-31-ar-card-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    background-color: #000;
    border-radius: 15px;
    flex-flow: column;
    justify-content: space-between;
    padding: 1em;
    display: flex;
    position: absolute;
    inset: 0%;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.glossary-definition-ar {
    color: #fcff62;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
}

.glossary-definition-ar.red {
    color: var(--firebrick);
}

.glossary-definition-ar.white {
    color: var(--white);
}

.ar-button-div {
    align-self: flex-end;
}

.ar-glossary-button {
    background-color: var(--firebrick);
    border-radius: 8px;
    padding: .9rem .4rem;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: .4;
    transition: color .2s, background-color .2s;
}

.ar-glossary-button:hover {
    background-color: var(--white);
    color: var(--black);
}

.d-31-en-card-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    background-color: #000;
    border-radius: 15px;
    flex-flow: column;
    justify-content: space-between;
    padding: 1em;
    display: none;
    position: absolute;
    inset: 0%;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.glossary-definition-en {
    direction: ltr;
    color: #fcff62;
    text-align: left;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.4;
}

.glossary-definition-en.red {
    color: var(--firebrick);
}

.glossary-definition-en.white {
    color: var(--white);
}

.en-button-div {
    align-self: flex-end;
}

.en-glossary-button {
    background-color: var(--firebrick);
    direction: ltr;
    border-radius: 8px;
    padding: .9rem .4rem;
    font-family: Graphikarabic, sans-serif;
    font-size: .9rem;
    font-weight: 500;
    line-height: .4;
    transition: color .2s, background-color .2s;
}

.en-glossary-button:hover {
    background-color: var(--white);
    color: var(--black);
}

.see-more-glossary {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    letter-spacing: -.02em;
    border-radius: 8px;
    flex-direction: row;
    flex: none;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 83rem;
    min-height: 48px;
    margin-top: 1rem;
    padding: 1.5rem 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: all .5s cubic-bezier(.6, .6, 0, 1);
}

.see-more-glossary:hover,
.see-more-glossary:active {
    background-color: var(--firebrick);
}

.card-icon {
    max-width: 4rem;
}

.educational-hero-container {
    border-radius: 1.25rem;
    padding: 2rem;
}

.educational-hero-container.red {
    background-color: var(--firebrick);
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1300px;
    padding: 0;
    display: flex;
    position: relative;
    overflow: hidden;
}

.educational-hero-container.black {
    background-color: var(--black);
}

.educational-hero-container.grey {
    background-color: var(--light-grey);
}

.educational-hero-section {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    direction: ltr;
}

.edu-card-details {
    padding: 6rem 3rem;
}

.hero-image {
    transform-style: preserve-3d;
    width: 30%;
    max-width: 30%;
    position: absolute;
    inset: -7% auto 0% 0%;
    transform: rotateX(180deg) rotateZ(0);
    left: 70%;
    -webkit-transform: rotateX(180deg) rotateZ(0);
    -moz-transform: rotateX(180deg) rotateZ(0);
    -ms-transform: rotateX(180deg) rotateZ(0);
    -o-transform: rotateX(180deg) rotateZ(0);
}

.hero-p {
    color: var(--light-grey);
    width: 41%;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-p.black {
    color: var(--black);
}

.hero-title {
    font-family: Graphikarabic, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
}

.hero-title.red {
    color: var(--firebrick);
}

.hero-title.white {
    color: var(--white);
    font-family: Graphikarabic, sans-serif;
    font-size: 2.7rem;
    line-height: 1.6;
}

.hero-title.align-mid {
    text-align: center;
}

.insights-block {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    display: grid;
}

.insights-card {
    border-radius: 1.25rem;
    padding: 2rem;
}

.insights-card.red {
    background-color: var(--firebrick);
    justify-content: flex-start;
    display: flex;
}

.insights-card.black {
    background-color: var(--black);
}

.insights-card.grey {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-color: var(--light-grey);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 3rem 4rem;
    display: flex;
}

.insights-title {
    font-family: Graphikarabic, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
}

.insights-title.red {
    color: var(--firebrick);
}

.insights-title.white {
    color: var(--white);
    font-family: Graphikarabic, sans-serif;
    font-size: 1.825rem;
    line-height: 1.6;
}

.insights-title.align-mid {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.4rem;
    line-height: 1;
}

.insights-p {
    color: var(--black);
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.insights-p.black {
    color: var(--black);
}

.edu-navbar-container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.edu-navbar-container.contains-slider {
    overflow: visible;
}

.edu-navbar-container.navbar {
    max-width: 1300px;
}

.edu-nav-menu {
    flex: 1;
    margin-left: auto;
}

.edu-nav-menu.en {
    margin-left: auto;
    margin-right: 0;
}

.edu-nav-link {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
}

.edu-nav-link:hover {
    color: #1a1b1fbf;
}

.edu-nav-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.edu-nav-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.edu-nav-link.w--current {
    color: var(--firebrick);
    font-weight: 700;
}

.edu-lang-list-item {
    flex: 1;
}

.edu-lang-toggle {
    justify-content: flex-end;
    align-items: center;
    margin-right: 4rem;
    transition: background-color .2s;
    display: flex;
    position: relative;
}

.edu-lang-toggle:hover {
    background-color: #0000;
}

.edu-lang-toggle.en {
    margin-left: 2rem;
    margin-right: 0;
}

.courses-cards-section {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: space-between;
    padding-top: 2rem;
    padding-left: 5.5rem;
    padding-right: 5.5rem;
    font-family: Graphikarabic, sans-serif;
    display: flex;
    direction: ltr;
}

.courses-category-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.course-category-card {
    grid-column-gap: 1.7rem;
    grid-row-gap: 1.7rem;
    background-color: #ffecec;
    border-radius: 1.25rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2.5rem 1rem;
    display: flex;
}

.course-card-icon {
    max-width: 30%;
}

.category-title {
    color: var(--black);
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.category-title.black {
    color: var(--black);
}

.tab-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    direction: ltr;
    justify-content: center;
    align-items: center;
    display: flex;
}

.tab-link-tab-1-2 {
    border-radius: 25px;
    width: 20rem;
    padding: .5rem .5rem;
    font-family: Graphikarabic, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.tab-link-tab-1-2.w--current {
    background-color: var(--firebrick);
    color: var(--white);
    border-radius: 25px;
    width: 20rem;
    padding: .5rem .5rem;
    font-family: Graphikarabic, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.tab-link-tab-1-2._2,
.tab-link-tab-1-2._3 {
    width: 13.7rem;
}

.tabs-icon {
    max-width: 2.3rem;
}

.all-courses-tabs {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
}

.courses-category-section {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: space-between;
    padding-top: 2rem;
    font-family: Graphikarabic, sans-serif;
    display: flex;
    direction: ltr;
}

.tab-courses-grid {
    grid-column-gap: 1.9rem;
    grid-row-gap: 1.9rem;
    direction: ltr;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: grid;
}

.tab-course-card {
    border-radius: 1.25rem;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.tab-coures-image {
    object-fit: cover;
    border-radius: 1.25rem 1.25rem 0 0;
    width: 100%;
    height: 21rem;
}

.tab-course-info {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
    direction: rtl;
    background-color: #f6f6f6;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    padding: 1.5rem 1.3rem;
    display: flex;
}

.tab-course-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
}

.tab-course-title.centered {
    text-align: center;
}

.tab-course-title.centered.huge {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.tab-course-title.centered.huge.adam-dream {
    color: var(--white);
}

.tab-course-owner {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    direction: rtl;
    background-color: #e8e8e8;
    border-bottom-right-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
    padding: .8rem 1.3rem;
    display: flex;
}

.tab-course-p {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.tab-course-p.black {
    color: var(--black);
}

.owner-image {
    border-radius: 50%;
    width: 5rem;
}

.course-owner-name {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.course-owner-name.black {
    color: var(--black);
}

.div-block-11 {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    flex-flow: column;
    justify-content: center;
    display: flex;
}

.course-owner-title {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Graphikarabic, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.course-owner-title.black {
    color: var(--black);
}

.see-more-courses-button {
    background-color: var(--firebrick);
    text-align: center;
    border-radius: 50px;
    width: 50%;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2;
    transition: color .2s, background-color .2s;
    position: relative;
    margin-left: 25%;
    margin-bottom: 20px;
}

.see-more-courses-button:hover {
    background-color: var(--black);
}

.edu-container {
    align-self: center;
    width: 100%;
    max-width: 1300px;
}

.edu-navbar-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

@media screen and (max-width: 991px) {
    .container {
        width: 90%;
    }

    .container.navbar {
        width: 100%;
    }

    .navbar-wrapper {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .navbar-brand.en {
        margin-left: 0;
        margin-right: auto;
    }

    .nav-menu-wrapper {
        background-color: #0000;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-menu {
        background-color: #fff;
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: center;
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 0;
        display: flex;
    }

    .nav-link {
        padding-left: 5px;
        padding-right: 5px;
        display: block;
    }

    .nav-link.text {
        margin-bottom: 0;
    }

    .nav-dropdown-list.shadow-three.w--open {
        position: absolute;
    }

    .mobile-margin-top-10 {
        margin-right: 0;
    }

    .nav-button-wrapper.mobile {
        margin-left: 1.5rem;
    }

    .menu-button {
        color: var(--black);
        border-radius: 50%;
        padding: 12px;
    }

    .menu-button.w--open {
        color: #fff;
        background-color: #c70815;
        padding: 12px;
        transition: all .3s;
    }

    .hero-section {
        height: auto;
        padding-top: 0;
    }

    .hero-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: -40px;
    }

    .hero-split {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-split.image-wrapper {
        margin-bottom: 0;
    }

    .hero-paragraph {
        width: 80%;
    }

    .stakeholders {
        justify-content: center;
        width: 100%;
        padding-top: 0;
    }

    .backdrop_1 {
        background-position: 100%;
        background-size: cover;
        width: 16rem;
        top: 0%;
        overflow: hidden;
        transform: rotate(0);
    }

    .backdrop_1.en {
        display: none;
    }

    .grid {
        width: 96%;
    }

    .grid.en {
        grid-template-columns: 1fr;
    }

    .service_card.red.en {
        flex-direction: column;
    }

    .social-media-links {
        left: -2%;
    }

    .social-media-links.en {
        left: auto;
        right: -2px;
    }

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

    .tabs-menu {
        width: 100%;
        bottom: -75%;
    }

    .tabs-menu.home.en {
        bottom: -45%;
    }

    .tabs-menu.about {
        grid-row-gap: 1rem;
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
        position: static;
        bottom: -44%;
    }

    .tab-content.en {
        grid-template-columns: 1fr;
    }

    .tab-paragraph {
        font-size: 1.2rem;
    }

    .text-block {
        font-size: .8rem;
    }

    .text-block.tab.en {
        font-size: 12px;
    }

    .image-2 {
        height: 40px;
    }

    .f-testimonial-right-a {
        color: var(--firebrick);
        background-color: #0000;
    }

    .news-slider {
        transform: rotateX(0)rotateY(-180deg)rotateZ(0);
    }

    .f-testimonial-left-a {
        background-color: var(--firebrick);
        color: var(--white);
    }

    .f-testimonial-slider-grid-large {
        grid-template-columns: 1fr;
        transform: rotateX(0)rotateY(-180deg)rotateZ(0);
    }

    .mask {
        max-width: 45vw;
        min-height: 20.1rem;
    }

    .backdrop_2 {
        right: -18%;
    }

    .backdrop_2.contact {
        width: 12rem;
        height: 10rem;
    }

    .activity-slide-content {
        align-items: start;
    }

    .activity-slide-content.en {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .backdrop-3 {
        display: none;
    }

    .activities-heading {
        margin-left: 1rem;
    }

    .activity-title {
        font-size: 1.5rem;
    }

    .activity-paragraph {
        font-size: 1rem;
    }

    .footer {
        overflow: hidden;
    }

    .col-1.en {
        width: 100%;
    }

    .image-4 {
        height: 80px;
    }

    .grid-2.en {
        grid-column-gap: 1rem;
        grid-template-columns: 1fr;
        justify-content: center;
        justify-items: center;
    }

    .social-links-footer {
        height: 120px;
    }

    .important-links {
        padding-left: 0;
    }

    .footer-h4._2 {
        line-height: 1.5;
    }

    .col {
        grid-row-gap: 1rem;
    }

    .flex-h-form.inside-footer {
        flex-direction: column;
    }

    .backdrop-footer {
        background-image: url('../images/backdrop-footer.png');
        background-repeat: no-repeat;
        background-size: cover;
        inset: auto 24% -41% auto;
        transform: rotateX(180deg)rotateY(0)rotateZ(90deg);
    }

    .backdrop-footer.en {
        display: none;
    }

    .login-wrapper {
        width: 90%;
    }

    .image-7 {
        object-position: 100% 50%;
    }

    .image-7.post {
        height: 24rem;
    }

    .image-7.post.normal {
        height: 20rem;
    }

    .eeic-logo {
        height: 80px;
    }

    .a-button-primary {
        display: flex;
    }

    .input-field-login.text-area {
        min-width: 100%;
        max-width: 100%;
    }

    .form {
        width: 18rem;
    }

    .collection-hidden {
        display: block;
    }

    .news-post-link {
        transform: none;
    }

    .slide {
        transform: rotate(0);
    }

    .contact-sub-heading {
        width: 80%;
    }

    .contact-sub-heading.en {
        width: 480px;
        font-size: 1.2rem;
    }

    .grid-5 {
        grid-template-columns: 1fr;
    }

    .contact-col._2 {
        margin-top: 2rem;
    }

    .events-banner.en {
        height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .fs-checkbox_field-4 {
        white-space: nowrap;
        border-radius: 32px;
        justify-content: center;
        align-items: center;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .hide {
        display: none;
    }

    .collection-list-2 {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        align-items: center;
    }

    .collection-list-2.en {
        flex-wrap: wrap;
    }

    .post_list {
        grid-template-columns: 1fr 1fr;
    }

    .fs_cmsfilter_list {
        grid-column-gap: 2rem;
        grid-row-gap: 1rem;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        justify-content: start;
        justify-items: start;
        display: grid;
    }

    .slider-button-right:hover {
        background-position: 50%;
    }

    .slider-button-right.absolute-right {
        top: 130px;
        right: -70px;
    }

    .slider-button-left:hover {
        background-position: 50%;
    }

    .slider-button-left.absolute-left {
        top: 130px;
        left: -70px;
    }

    .swiper-slide.thumbnail-item {
        cursor: pointer;
    }

    .swiper-slide.gallery-item {
        height: 300px;
    }

    .swiper-arrow-wrapper {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }

    .basic-swiper {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .icon-3 {
        font-size: 32px;
        line-height: 1;
    }

    .image-8.en {
        height: 160px;
    }

    .form-block-2 {
        margin-bottom: 0;
    }

    .list-item {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: column;
        margin-bottom: 1rem;
        display: flex;
    }

    .image-9.en {
        height: 200px;
    }

    .f-blog-thumbnail {
        margin-bottom: 16px;
    }

    .f-blog-heading-grid {
        grid-template-columns: 1.35fr;
    }

    .f-blog-image-large {
        margin-bottom: 16px;
    }

    .video-block-s {
        width: 100%;
        max-width: none;
    }

    .grid-two-column {
        grid-template-columns: 1fr;
    }

    .b-section-regular {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .b-feature-grid-large {
        grid-template-columns: 1fr 1fr;
    }

    .video-box {
        width: 100%;
        position: relative;
    }

    .text-block-8 {
        width: 100%;
    }

    .statement-p {
        width: auto;
    }

    .language-toggle {
        width: 50%;
    }

    .language-toggle.en {
        margin-left: 0;
    }

    .language-toggle.en.mobile-off {
        display: block;
    }

    .wg-button-2 {
        min-width: 120px;
    }

    .html-embed-2 {
        justify-content: center;
        align-items: center;
        margin-right: .5rem;
        line-height: 1;
        display: flex;
    }

    .wg-button-2-2 {
        min-width: 120px;
    }

    .video-card-column {
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }

    .image-cover {
        object-fit: fill;
        width: 80px;
        height: auto;
    }

    .grid-two-column-2 {
        grid-template-columns: 1fr;
    }

    .grid-two-column-2.margin-bottom-64 {
        grid-template-columns: 1fr 1fr;
    }

    .video-heading-grid {
        grid-template-columns: 1fr;
    }

    .video-line {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .section-large-3 {
        background-size: auto 200%;
        align-items: flex-start;
        margin-top: 0;
        padding-top: 10vh;
    }

    .link-block-3 {
        display: none;
    }

    .nav-user {
        padding-left: 5px;
        padding-right: 5px;
        display: block;
    }

    .nav-user.text {
        margin-bottom: 0;
    }

    .backdrop-full-1 {
        background-position: 0%;
        background-size: cover;
    }

    .backdrop-full-1.start {
        background-position: 0%;
    }

    .backdrop-full-1.video-pg.start-future {
        background-position: 50%;
    }

    .tab-kid {
        flex-direction: column;
    }

    .image-12 {
        height: 120px;
    }

    .image-13,
    .image-13.another.dream,
    .image-13.dream,
    .image-14 {
        display: none;
    }

    .report-tabs-menu {
        padding-left: 1em;
        padding-right: 1em;
    }

    .rebort-tab-1 {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 1em;
    }

    .rebort-tab-1.w--current {
        padding-left: 1em;
        padding-right: 1em;
    }

    .report-table-titles._2 {
        line-height: 1.5;
    }

    .table_cell {
        padding-top: .5em;
        padding-bottom: .5em;
        font-size: 1em;
    }

    .table_header {
        font-size: 1.1em;
    }

    .see-more-glossary {
        display: flex;
    }

    .educational-hero-container.red.en {
        flex-direction: column;
    }

    .educational-hero-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-image.en {
        height: 160px;
    }

    .hero-p {
        width: 100%;
        font-size: 1rem;
    }

    .insights-block {
        grid-column-gap: .6rem;
        grid-row-gap: .6rem;
    }

    .insights-card.red.en {
        flex-direction: column;
    }

    .insights-card.grey {
        padding: 1.5rem;
    }

    .insights-title.align-mid {
        font-size: 2rem;
    }

    .insights-p {
        font-size: 1.1rem;
    }

    .edu-navbar-container {
        width: 90%;
    }

    .edu-navbar-container.navbar {
        width: 100%;
    }

    .edu-nav-menu {
        background-color: #0000;
        margin-left: auto;
        margin-right: auto;
    }

    .edu-nav-link {
        padding-left: 5px;
        padding-right: 5px;
        display: block;
    }

    .edu-nav-link.text {
        margin-bottom: 0;
    }

    .edu-lang-list-item {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: column;
        margin-bottom: 1rem;
        display: flex;
    }

    .edu-lang-toggle {
        width: 50%;
    }

    .edu-lang-toggle.en {
        margin-left: 0;
    }

    .edu-lang-toggle.en.mobile-off {
        display: block;
    }

    .courses-cards-section {
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .courses-category-block {
        grid-column-gap: .6rem;
        grid-row-gap: .6rem;
    }

    .course-category-card {
        justify-content: space-between;
    }

    .course-card-icon {
        max-width: 33%;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .tab-block {
        grid-column-gap: .8rem;
        grid-row-gap: .8rem;
    }

    .tab-link-tab-1-2 {
        width: 12.9rem;
        font-size: 1rem;
    }

    .tab-link-tab-1-2.w--current,
    .tab-link-tab-1-2._3.w--current {
        font-size: 1rem;
    }

    .tabs-icon {
        max-width: 2rem;
    }

    .courses-category-section {
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tab-courses-grid {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        grid-template-columns: 1fr 1fr;
        padding-top: 1rem;
    }

    .tab-coures-image {
        height: 14rem;
    }

    .tab-course-title {
        font-size: 1.3rem;
    }

    .tab-course-owner {
        padding-top: .6rem;
        padding-bottom: .6rem;
    }

    .tab-course-p {
        font-size: 1rem;
    }

    .owner-image {
        width: 4rem;
    }

    .course-owner-name,
    .course-owner-title {
        font-size: 1rem;
    }

    .see-more-courses-button {
        font-size: 1.3rem;
    }

    .edu-navbar-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand {
        padding-left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding-bottom: 30px;
        padding-left: 0;
    }

    .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-block;
    }

    .nav-link.hide {
        display: none;
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: center;
        display: flex;
    }

    .nav-dropdown-toggle {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-dropdown-list.shadow-three {
        box-shadow: 0 8px 50px #0000000d;
    }

    .nav-dropdown-list.shadow-three.w--open {
        position: relative;
    }

    .nav-dropdown-list.shadow-three.mobile-shadow-hide {
        box-shadow: none;
    }

    .mobile-margin-top-10 {
        margin-top: 10px;
    }

    .mobile-margin-top-10.en {
        margin-left: 0;
    }

    .button-primary.red {
        width: auto;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .backdrop_1 {
        display: none;
    }

    .grid,
    .grid._2 {
        grid-template-columns: 1fr;
    }

    .services-heading.kids {
        font-size: 2rem;
        line-height: 1.4;
    }

    .service-h3,
    .service-h3.red {
        margin-top: 0;
    }

    .social-media-links {
        top: 8%;
        left: -6%;
    }

    .tab-link._2 {
        align-items: flex-end;
        height: 8rem;
    }

    .tabs-menu {
        grid-column-gap: .5rem;
        width: 100%;
        bottom: -50%;
    }

    .tabs-menu.home {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .tabs-menu.about {
        grid-template-columns: 1fr 1fr;
    }

    .tab-content {
        grid-template-columns: 1fr;
    }

    .tab-paragraph {
        font-size: 1rem;
    }

    .flex-h.events {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .text-block.tab {
        font-size: .7rem;
    }

    .f-testimonial-right-a,
    .f-testimonial-left-a {
        display: flex;
    }

    .backdrop_2 {
        display: none;
    }

    .backdrop_2.contact {
        width: 10rem;
        display: block;
    }

    .activity-slide-content {
        grid-column-gap: 16px;
        grid-row-gap: 0px;
    }

    .tab-link-2 {
        margin-bottom: 20px;
    }

    .tabs-menu-2 {
        margin-bottom: 40px;
    }

    .col-1 {
        width: 100%;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .image-5 {
        height: 48px;
    }

    .image-5._2 {
        height: 80px;
    }

    .social-links-footer {
        height: auto;
    }

    .col-2 {
        margin-top: 1rem;
    }

    .footer-h4 {
        margin-top: 0;
    }

    .backdrop-footer {
        z-index: 0;
        display: none;
    }

    .login-section {
        height: auto;
        margin-top: 4rem;
    }

    .login-wrapper {
        flex-direction: column;
        height: auto;
        display: flex;
    }

    .image-7 {
        object-position: 50% 0%;
        height: 300px;
    }

    .image-7.post {
        height: 24rem;
    }

    .image-7.post.normal {
        height: 16rem;
    }

    .login-col {
        padding-top: 2rem;
    }

    .eeic-logo {
        height: 72px;
    }

    .form-block,
    .text-block-4 {
        margin-top: 1rem;
    }

    .featured-post {
        grid-column-gap: 1rem;
    }

    .featured-post-heading {
        font-size: 1.5rem;
    }

    .grid-4 {
        grid-column-gap: 1rem;
        grid-row-gap: 2rem;
    }

    .normal-post-heading {
        font-size: 1.4rem;
    }

    .banner {
        height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .contact-sub-heading {
        font-size: 1.2rem;
    }

    .contact-sub-heading.en {
        width: 300px;
    }

    .events-banner {
        padding-left: 0;
        padding-right: 0;
    }

    .fs-checkbox_field-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .fs-checkbox_label-4 {
        font-size: 12px;
    }

    .post_list {
        grid-template-columns: 1fr;
    }

    .fs_cmsfilter_list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .thumbnail-slider-buttons-wrapper {
        grid-column-gap: 70px;
        grid-row-gap: 70px;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }

    .thumb-swiper {
        max-width: none;
        margin-bottom: 16px;
    }

    .slider-button-right {
        background-image: none;
        width: 40px;
        height: 40px;
    }

    .slider-button-right.absolute-right {
        position: static;
    }

    .slider-button-left {
        background-image: none;
        width: 40px;
        height: 40px;
    }

    .slider-button-left.absolute-left {
        position: static;
    }

    .swiper-wrapper.thumbnails-list {
        justify-content: center;
    }

    .swiper-slide.thumbnail-item {
        cursor: pointer;
        width: 52px;
        height: 52px;
    }

    .swiper-arrow-wrapper {
        width: 100%;
    }

    .basic-swiper {
        width: 100%;
        margin-bottom: 32px;
    }

    .image-9 {
        object-fit: cover;
        object-position: 50% 0%;
        border-radius: 16px;
        width: 100%;
        height: 200px;
    }

    .space {
        height: 4rem;
        display: block;
    }

    .f-h3-heading {
        font-size: 40px;
    }

    .f-heading-detail-small.noletterspacing {
        letter-spacing: 0;
    }

    .f-section-large {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .f-h3-heading-2 {
        font-size: 40px;
    }

    .grid-two-column {
        grid-template-columns: 1fr;
    }

    .section-large {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .b-h3-heading {
        font-size: 40px;
    }

    .b-badge-caption {
        margin-right: 8px;
        display: inline;
    }

    .language-toggle {
        width: 100%;
        margin-right: 0;
    }

    .video-control-wrap {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        flex-direction: column-reverse;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        align-items: center;
        display: flex;
    }

    .grid-two-column-2,
    .video-heading-grid {
        grid-template-columns: 1fr;
    }

    .section-large-2 {
        margin-top: -40px;
        padding-top: 0;
        padding-bottom: 72px;
    }

    .video-heading {
        font-size: 50px;
        line-height: 56px;
    }

    .section-large-3 {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .video-button-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .heading-wrapper {
        margin-bottom: 44px;
    }

    .heading-detail.all-eps,
    .link-block-3 {
        display: none;
    }

    .nav-user {
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-block;
    }

    .nav-user.hide {
        display: none;
    }

    .report-title {
        font-size: 1.4rem;
    }

    .report-tabs-menu {
        grid-column-gap: .6em;
        grid-row-gap: .6em;
        flex-flow: wrap;
        padding-bottom: 1.5em;
        padding-left: 2em;
        padding-right: 2em;
    }

    .rebort-tab-1,
    .rebort-tab-1.w--current {
        padding-left: 1em;
        padding-right: 1em;
        font-size: .9em;
    }

    .report-table-titles {
        margin-top: 0;
    }

    .table_cell {
        padding-top: .8em;
        padding-bottom: .8em;
        font-size: .9em;
    }

    .table_header {
        font-size: 1em;
    }

    .glossary-text,
    .glossary-text.red,
    .glossary-definition-ar,
    .glossary-definition-ar.red,
    .glossary-definition-en,
    .glossary-definition-en.red {
        margin-top: 0;
    }

    .educational-hero-section {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .hero-title,
    .hero-title.red {
        margin-top: 0;
    }

    .insights-block {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
    }

    .insights-card.grey {
        justify-content: space-between;
    }

    .insights-title,
    .insights-title.red {
        margin-top: 0;
    }

    .edu-nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-block;
    }

    .edu-nav-link.hide {
        display: none;
    }

    .edu-lang-toggle {
        width: 100%;
        margin-right: 0;
    }

    .courses-cards-section {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .courses-category-block {
        grid-template-columns: 1fr 1fr;
    }

    .tab-link-tab-1-2,
    .tab-link-tab-1-2.w--current,
    .tab-link-tab-1-2._2,
    .tab-link-tab-1-2._3 {
        width: 13rem;
    }

    .all-courses-tabs {
        grid-column-gap: .5rem;
        grid-row-gap: .4rem;
        flex-flow: wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .courses-category-section {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .tab-courses-grid {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        padding-bottom: 1rem;
    }

    .tab-coures-image {
        height: 12.3rem;
    }

    .tab-course-info {
        grid-column-gap: .9rem;
        grid-row-gap: .9rem;
        padding: 1.1rem 1rem;
    }

    .tab-course-owner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 479px) {
    .container._1 {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        height: 100vh;
        padding-right: 0;
    }

    .nav-dropdown-toggle {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-button-wrapper {
        width: auto;
    }

    .brand_logo {
        height: 48px;
    }

    .hero-section {
        padding-top: 0;
    }

    .hero-split {
        margin-bottom: 0;
    }

    .hero-paragraph {
        text-align: right;
        width: 100%;
        font-size: 1rem;
    }

    .hero-paragraph.en {
        text-align: left;
    }

    .hero-h1,
    .hero-h1.centered.huge {
        font-size: 1.5rem;
    }

    .image {
        height: 2.4rem;
    }

    .backdrop_1 {
        display: none;
    }

    .services-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .grid {
        width: 100%;
    }

    .services-heading.kids {
        font-size: 2rem;
        line-height: 1.6;
    }

    .service_card.red {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: column;
    }

    .service-h3 {
        font-size: 1.2rem;
    }

    .service-p {
        font-size: .8rem;
    }

    .service-p.black.learn {
        font-size: 1rem;
    }

    .social-media-links {
        display: none;
        left: -14%;
    }

    .section.red.lg-pd-bt {
        padding-bottom: 0;
    }

    .tab-link {
        padding-left: 10px;
        padding-right: 10px;
    }

    .tab-link._1 {
        background-position: 50% 0;
    }

    .tabs-menu.home.en {
        margin-top: 0;
        margin-bottom: 0;
        position: relative;
        top: 60px;
        bottom: auto;
    }

    .tab-paragraph.en {
        font-size: 1rem;
        font-weight: 400;
    }

    .flex-h {
        align-items: flex-end;
    }

    .text-block,
    .text-block.tab {
        font-size: .6rem;
    }

    .image-2 {
        height: 32px;
    }

    .content-wrapper {
        padding-bottom: 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .news-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .f-testimonial-right-a,
    .f-testimonial-left-a {
        display: flex;
    }

    .mask {
        max-width: 80vw;
    }

    .backdrop_2.contact {
        width: 6rem;
        height: 6rem;
        display: block;
    }

    .backdrop_2.contact.en {
        display: none;
    }

    .activity-slide-content {
        grid-row-gap: 16px;
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
    }

    .frame-31 {
        width: 80%;
    }

    .activity-image {
        height: 240px;
    }

    .tab-link-2 {
        margin-right: 0;
    }

    .activity-title {
        font-size: 1.2rem;
    }

    .activity-paragraph.en {
        text-align: left;
    }

    .image-4 {
        height: 64px;
    }

    .grid-3.en {
        grid-template-columns: 1fr;
    }

    .login-section {
        margin-top: 1rem;
    }

    .image-7.post {
        height: 16rem;
    }

    .a-button-primary {
        width: 100%;
    }

    .form {
        width: 80vw;
    }

    .collection-hidden {
        display: none;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .col-post.featured {
        border-bottom: 1px solid var(--black);
        padding-bottom: 3rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .banner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-heading {
        margin-top: 0;
    }

    .contact-sub-heading.en {
        width: auto;
    }

    .events-banner {
        height: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .collection-list-2 {
        flex-flow: wrap;
    }

    .fs_cmsfilter_list {
        grid-column-gap: 1rem;
        grid-template-columns: 1fr 1fr;
    }

    .slider-button-right {
        background-color: var(--white);
        color: var(--firebrick);
        border-style: solid;
        border-color: #e4e6f1;
        margin-right: 0;
    }

    .slider-button-right:hover {
        background-color: var(--firebrick);
        color: var(--white);
        border-style: none;
    }

    .slider-button-left {
        margin-left: 0;
    }

    .swiper-slide.gallery-item {
        height: 170px;
    }

    .swiper-arrow-wrapper {
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        justify-content: flex-end;
        width: 100%;
        height: 40px;
        padding-right: 16px;
        display: flex;
        position: static;
        inset: auto 0% 0%;
        overflow: hidden;
    }

    .image-8 {
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .list-item {
        margin-bottom: .5rem;
    }

    .space {
        height: 1rem;
        padding-bottom: 0;
        padding-right: 0;
    }

    .f-h3-heading {
        font-size: 32px;
    }

    .f-blog-header-grid-small {
        grid-template-columns: 1.75fr;
    }

    .f-blog-thumbnail {
        height: 240px;
    }

    .f-image-cover {
        border-radius: 20px;
    }

    .h6-heading {
        white-space: pre-wrap;
    }

    .wrap-h-small {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-lightbox {
        width: 48px;
        height: 48px;
    }

    .video-block-s {
        height: 260px;
    }

    .b-feature-grid-large,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    .grid-7.about {
        padding-left: 0;
    }

    .heading.en {
        font-size: 16px;
        font-weight: 500;
    }

    .div-block-3 {
        flex: none;
    }

    .tab-link-tab-2.w--current {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tabs-menu-3 {
        justify-content: flex-start;
        display: flex;
    }

    .text-block-8 {
        font-size: 12px;
    }

    .wg-button-2 {
        min-width: 100px;
    }

    .wg-button-2.w--current {
        min-width: 80px;
    }

    /* .html-embed-2,
    .html-embed-2.ar {
        display: none;
    } */

    .wg-button-2-2 {
        min-width: 100px;
    }

    .wg-button-2-2.w--current {
        min-width: 80px;
    }

    .video-card-column {
        flex-direction: column;
        align-items: center;
    }

    .video-control-wrap {
        flex-flow: row;
    }

    .video-heading-grid {
        margin-bottom: 40px;
    }

    .video-play-time {
        flex-wrap: wrap;
    }

    .section-large-2 {
        margin-top: -40px;
        padding-top: 0;
    }

    .video-tumb-wrapper {
        width: 100%;
        margin-bottom: 14px;
    }

    .tab-link-eeic {
        width: auto;
    }

    .tabs-menu-4 {
        flex-direction: row;
    }

    .tabs-content {
        margin-top: 32px;
    }

    .video-button {
        flex-direction: row-reverse;
        width: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    .video-content-wrap {
        align-items: center;
        padding-right: 0;
    }

    .section-large-3 {
        height: 100px;
    }

    .video-button-wrapper {
        flex-direction: column-reverse;
    }

    .video-button-secondary {
        width: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    .video-wrapper-large.kids {
        border-width: 8px;
    }

    .tab-kid {
        padding: 24px 16px;
    }

    .div-block-9 {
        align-items: center;
    }

    .text-block-9 {
        font-size: 16px;
    }

    .text-block-10 {
        text-align: center;
        font-size: 12px;
    }

    .image-12 {
        height: auto;
    }

    .heading-7 {
        font-size: 1.5rem;
    }

    .text-block-12 {
        text-align: center;
    }

    .report-title {
        font-size: 1.2rem;
    }

    .report-title.centered.huge {
        font-size: 1.5rem;
    }

    .report-tabs-menu {
        padding-left: .5em;
        padding-right: .5em;
    }

    .rebort-tab-1,
    .rebort-tab-1.w--current {
        font-size: .8em;
    }

    .table_cell {
        padding-top: 1em;
        padding-bottom: 1em;
    }

    .table_component {
        width: 215%;
    }

    .glossary-text,
    .glossary-definition-ar,
    .glossary-definition-en {
        font-size: 1.2rem;
    }

    .see-more-glossary {
        width: 100%;
    }

    .educational-hero-container.red {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: column;
    }

    .edu-card-details {
        padding: 3rem 1rem 1.1rem;
    }

    .hero-image {
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-p {
        font-size: .7rem;
    }

    .hero-p.black.learn {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-title.white {
        font-size: 1.3rem;
    }

    .insights-block {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
    }

    .insights-card.red {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: column;
    }

    .insights-title {
        font-size: 1.2rem;
    }

    .insights-p {
        font-size: .8rem;
    }

    .insights-p.black.learn {
        font-size: 1rem;
    }

    .edu-navbar-container._1 {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }

    .edu-lang-list-item {
        margin-bottom: .5rem;
    }

    .courses-category-block {
        grid-template-rows: auto auto auto auto auto auto auto auto;
        grid-template-columns: 1fr;
    }

    .course-category-card {
        grid-column-gap: 1.6rem;
        grid-row-gap: 1.6rem;
    }

    .course-card-icon {
        max-width: 24%;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-title.black.learn {
        font-size: 1rem;
    }

    .tab-block {
        grid-column-gap: 0rem;
        grid-row-gap: 0rem;
        justify-content: space-around;
        align-items: center;
        padding-left: 2em;
        padding-right: 2em;
    }

    .tab-link-tab-1-2 {
        width: 100%;
        font-size: 1.2rem;
    }

    .tab-link-tab-1-2.w--current {
        width: 100%;
        padding-left: .5rem;
        padding-right: .5rem;
        font-size: 1.2rem;
    }

    .tab-link-tab-1-2._2 {
        width: 100%;
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .tab-link-tab-1-2._3 {
        width: 100%;
    }

    .tabs-icon {
        max-width: 1.9rem;
    }

    .all-courses-tabs {
        flex-flow: wrap;
    }

    .tab-courses-grid {
        flex-flow: column;
        grid-template-rows: auto;
        grid-template-columns: 1fr;
        display: flex;
    }

    .tab-course-title,
    .tab-course-title.centered.huge {
        font-size: 1.5rem;
    }

    .tab-course-p,
    .tab-course-p.black.learn {
        font-size: 1rem;
    }

    .owner-image {
        width: 4.3rem;
    }

    .course-owner-name,
    .course-owner-name.black.learn,
    .course-owner-title,
    .course-owner-title.black.learn {
        font-size: 1rem;
    }

    .see-more-courses-button {
        font-size: 1.1rem;
    }

    .edu-navbar-wrapper {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

#w-node-_9cd6f49c-8c50-6918-1e98-8849ecb4c67a-fc6af321,
#w-node-_62be7d56-9f3d-b67c-75a4-7f707c18b416-fc6af321,
#w-node-_64112d65-32d9-1734-fc98-a8db0d8d0ecc-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_195c426d-02c8-de8f-f52f-e954e719699a-fc6af321 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c95e648-6b8a-458a-e6d2-65f2f655efbd-fc6af321,
#w-node-_5226009f-8a1f-c0ed-17e3-9d59ca3ed378-fc6af321,
#w-node-_54ada2de-83ae-2789-a703-cf5c0bf10d9a-fc6af321,
#w-node-aab1f7b5-68fb-6c0e-b40e-ec1898bb4f52-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c0357b9f-ad15-f3e3-cdc4-b5482af9f4a9-fc6af321 {
    justify-self: center;
}

#w-node-c0357b9f-ad15-f3e3-cdc4-b5482af9f4ac-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
}

#w-node-_60615c1a-e714-5af7-039e-83efbcd29f6c-fc6af321 {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_60615c1a-e714-5af7-039e-83efbcd29f6d-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
}

#w-node-_60615c1a-e714-5af7-039e-83efbcd29f6f-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_73cfdeef-0795-eb72-49bc-437348624032-fc6af321 {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_73cfdeef-0795-eb72-49bc-437348624033-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
}

#w-node-_73cfdeef-0795-eb72-49bc-437348624035-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_69633214-8890-0762-a827-dc52cc0a1517-fc6af321,
#w-node-_7a3838a3-cdde-1f11-f62b-2ecb4734fda0-fc6af321,
#w-node-_69633214-8890-0762-a827-dc52cc0a1518-fc6af321 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_08e88671-4366-8a89-5816-568f99efb44f-99efb44c {
    grid-area: 1 / 2 / 3 / 3;
    justify-self: end;
}

#w-node-_08e88671-4366-8a89-5816-568f99efb469-99efb44c {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_08e88671-4366-8a89-5816-568f99efb46e-99efb44c,
#w-node-_08e88671-4366-8a89-5816-568f99efb479-99efb44c,
#w-node-_3a90617a-36c2-e1c7-04c9-d21cfe4ab58d-fc6af322 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d92fe92-e7b4-444e-4336-ac11f9ced9a1-fc6af322 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_085ffc1e-0013-8fe5-c57e-9c758574da86-fc6af324 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#facebookShare.w-node-_085ffc1e-0013-8fe5-c57e-9c758574da91-fc6af324,
#twitterShare.w-node-_085ffc1e-0013-8fe5-c57e-9c758574da93-fc6af324 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db41829d-c2fc-450d-d96a-1c20e23f7541-fc6af325 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#facebookShare.w-node-db41829d-c2fc-450d-d96a-1c20e23f754a-fc6af325,
#twitterShare.w-node-db41829d-c2fc-450d-d96a-1c20e23f754c-fc6af325,
#w-node-_4d1a6d5b-5bbd-deff-3f50-623b46e67193-7a55f15b,
#w-node-db45030f-66ff-b819-c913-c2e188d507b3-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5b80375d-abb2-ea14-7b9a-b16e10186251-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
}

#w-node-_2627705c-0de1-db73-51f8-df38824cc47e-7a55f15b,
#w-node-_6c377567-8a13-1c71-0dee-e4b29b1bc5c4-7a55f15b,
#w-node-aa1a153c-1ddb-828d-42a0-e91888a67145-7a55f15b,
#w-node-fc200919-41c4-b1f3-79ed-e6317e3a523d-7a55f15b,
#w-node-_9fb5fa27-cefa-7159-e6fe-90afe095fe97-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1eb8c3ab-1260-0347-0384-bfa5e347118a-7a55f15b {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aca0fb7d-ca60-aa42-933a-4e93cd4c1945-7a55f15b,
#w-node-_3ee778d8-c989-de00-5098-bf1049c93225-7a55f15b,
#w-node-ec8e0e86-6853-b84b-c585-6ad9c042e478-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce6b-7a55f15b,
#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce70-7a55f15b,
#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce75-7a55f15b,
#w-node-_6b3bccfc-0531-8493-f1b6-24ea885fcf56-7a55f15b,
#w-node-dc8d539e-64ab-25b3-6c2a-7858002d3ecf-7a55f15b {
    justify-self: center;
}

#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce7d-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cab221da-6908-2a26-9139-922be593957d-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-cab221da-6908-2a26-9139-922be593957e-7a55f15b,
#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce88-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4b54f82-3405-45d8-fb51-696677b6987c-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-fb77e03b-f614-e3dd-fb98-a6c4ea9a8bac-7a55f15b,
#w-node-_1f10a429-6d50-6a55-c333-f445a3b8d1d7-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f10a429-6d50-6a55-c333-f445a3b8d1d8-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_1f10a429-6d50-6a55-c333-f445a3b8d1d9-7a55f15b,
#w-node-e2a9a28a-c876-7b88-dbe1-767700f746ab-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2a9a28a-c876-7b88-dbe1-767700f746ac-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-e2a9a28a-c876-7b88-dbe1-767700f746ad-7a55f15b,
#w-node-_2e89917a-b07b-76c4-5785-a0e947591280-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e89917a-b07b-76c4-5785-a0e947591281-7a55f15b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_2e89917a-b07b-76c4-5785-a0e947591282-7a55f15b,
#w-node-_9cd6f49c-8c50-6918-1e98-8849ecb4c67a-7939437d,
#w-node-_62be7d56-9f3d-b67c-75a4-7f707c18b416-7939437d,
#w-node-_64112d65-32d9-1734-fc98-a8db0d8d0ecc-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_195c426d-02c8-de8f-f52f-e954e719699a-7939437d {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c95e648-6b8a-458a-e6d2-65f2f655efbd-7939437d,
#w-node-_5226009f-8a1f-c0ed-17e3-9d59ca3ed378-7939437d,
#w-node-_54ada2de-83ae-2789-a703-cf5c0bf10d9a-7939437d,
#w-node-aab1f7b5-68fb-6c0e-b40e-ec1898bb4f52-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c0357b9f-ad15-f3e3-cdc4-b5482af9f4a9-7939437d,
#w-node-c0357b9f-ad15-f3e3-cdc4-b5482af9f4ac-7939437d {
    justify-self: center;
}

#w-node-_60615c1a-e714-5af7-039e-83efbcd29f6c-7939437d {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_60615c1a-e714-5af7-039e-83efbcd29f6d-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
}

#w-node-_60615c1a-e714-5af7-039e-83efbcd29f6f-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_73cfdeef-0795-eb72-49bc-437348624032-7939437d {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_73cfdeef-0795-eb72-49bc-437348624033-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
}

#w-node-_73cfdeef-0795-eb72-49bc-437348624035-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_69633214-8890-0762-a827-dc52cc0a1517-7939437d,
#w-node-_7a3838a3-cdde-1f11-f62b-2ecb4734fda0-7939437d,
#w-node-_69633214-8890-0762-a827-dc52cc0a1518-7939437d {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b2ea889-4851-8521-b006-74a1f18c3229-f18c3226 {
    grid-area: 1 / 1 / 3 / 2;
    justify-self: end;
}

#w-node-_3b2ea889-4851-8521-b006-74a1f18c323b-f18c3226 {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_3b2ea889-4851-8521-b006-74a1f18c3240-f18c3226,
#w-node-_3b2ea889-4851-8521-b006-74a1f18c324b-f18c3226,
#w-node-_4d1a6d5b-5bbd-deff-3f50-623b46e67193-e17aa085,
#w-node-db45030f-66ff-b819-c913-c2e188d507b3-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5b80375d-abb2-ea14-7b9a-b16e10186251-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
}

#w-node-_2627705c-0de1-db73-51f8-df38824cc47e-e17aa085,
#w-node-_6c377567-8a13-1c71-0dee-e4b29b1bc5c4-e17aa085,
#w-node-aa1a153c-1ddb-828d-42a0-e91888a67145-e17aa085,
#w-node-fc200919-41c4-b1f3-79ed-e6317e3a523d-e17aa085,
#w-node-_9fb5fa27-cefa-7159-e6fe-90afe095fe97-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1eb8c3ab-1260-0347-0384-bfa5e347118a-e17aa085 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aca0fb7d-ca60-aa42-933a-4e93cd4c1945-e17aa085,
#w-node-_3ee778d8-c989-de00-5098-bf1049c93225-e17aa085,
#w-node-ec8e0e86-6853-b84b-c585-6ad9c042e478-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce6b-e17aa085,
#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce70-e17aa085,
#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce75-e17aa085,
#w-node-_6b3bccfc-0531-8493-f1b6-24ea885fcf56-e17aa085,
#w-node-dc8d539e-64ab-25b3-6c2a-7858002d3ecf-e17aa085 {
    justify-self: center;
}

#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce7d-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cab221da-6908-2a26-9139-922be593957d-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-cab221da-6908-2a26-9139-922be593957e-e17aa085,
#w-node-cfb9b45d-8c76-e545-e730-ed98a401ce88-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4b54f82-3405-45d8-fb51-696677b6987c-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-fb77e03b-f614-e3dd-fb98-a6c4ea9a8bac-e17aa085,
#w-node-_1f10a429-6d50-6a55-c333-f445a3b8d1d7-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f10a429-6d50-6a55-c333-f445a3b8d1d8-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_1f10a429-6d50-6a55-c333-f445a3b8d1d9-e17aa085,
#w-node-e2a9a28a-c876-7b88-dbe1-767700f746ab-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2a9a28a-c876-7b88-dbe1-767700f746ac-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-e2a9a28a-c876-7b88-dbe1-767700f746ad-e17aa085,
#w-node-_2e89917a-b07b-76c4-5785-a0e947591280-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e89917a-b07b-76c4-5785-a0e947591281-e17aa085 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_2e89917a-b07b-76c4-5785-a0e947591282-e17aa085,
#w-node-_3a90617a-36c2-e1c7-04c9-d21cfe4ab58d-fd2d8f6c {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d92fe92-e7b4-444e-4336-ac11f9ced9a1-fd2d8f6c {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_98add429-66f9-bc6b-cd31-4ad9f8078c4a-92fd9b09,
#w-node-aa7e1995-5990-066c-7669-9287ac4c260c-92fd9b09 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fbee9f25-0557-9965-5ba1-962c33053133-9e8ee1d0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#facebookShare.w-node-fbee9f25-0557-9965-5ba1-962c3305313e-9e8ee1d0,
#twitterShare.w-node-fbee9f25-0557-9965-5ba1-962c33053140-9e8ee1d0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b984d8d5-b00a-4733-e1a4-151938589fc0-e56ca950 {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#facebookShare.w-node-b984d8d5-b00a-4733-e1a4-151938589fcb-e56ca950,
#twitterShare.w-node-b984d8d5-b00a-4733-e1a4-151938589fcd-e56ca950 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_160ce551-3650-5eec-7d46-cff35f2f8f25-71d89a20,
#w-node-_160ce551-3650-5eec-7d46-cff35f2f8f25-fe11a54a {
    grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cb7d718b-f8dd-f31d-31c0-78fe0a37707f-38069318,
#w-node-f8491256-059a-9d58-d9f3-474b648a599e-38069318,
#w-node-_9290ad55-5eb3-f997-de7e-d3af9f5e401b-38069318,
#w-node-_687e9110-645d-6985-695e-a1d4a572b588-38069318,
#w-node-_042939d4-d77f-e2db-f805-4c404e12a0c6-38069318,
#w-node-_37781d72-32a6-8c3c-994b-61ac579e349c-38069318,
#w-node-eba52e5e-22e9-f761-0c78-32986de14d24-38069318,
#w-node-_97fc1113-60fa-0eb2-3687-9450679018e1-38069318 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_73037246-5201-21e9-5ab1-54ff1e488b48-38069318,
#w-node-fa527fb8-c9a4-21ea-dd52-aa670456e883-38069318,
#w-node-_8975200b-e7e3-7511-5f81-3774300a9237-38069318,
#w-node-cff96012-e1af-5639-0201-0bf9cb3599fd-38069318 {
    grid-area: 3 / 2 / 4 / 3;
}

@media screen and (max-width: 991px) {

    #w-node-_64112d65-32d9-1734-fc98-a8db0d8d0ecc-fc6af321,
    #w-node-_4d1a6d5b-5bbd-deff-3f50-623b46e67193-7a55f15b {
        grid-column: span 2 / span 2;
    }

    #w-node-cfb9b45d-8c76-e545-e730-ed98a401ce75-7a55f15b {
        grid-area: span 1 / span 2 / span 1 / span 2;
        justify-self: center;
    }

    #w-node-_64112d65-32d9-1734-fc98-a8db0d8d0ecc-7939437d {
        grid-column: span 2 / span 2;
    }

    #w-node-_195c426d-02c8-de8f-f52f-e954e719699a-7939437d {
        grid-column: span 1 / span 1;
    }

    #w-node-_3b2ea889-4851-8521-b006-74a1f18c3229-f18c3226 {
        grid-row-end: 2;
        justify-self: center;
    }

    #w-node-_3b2ea889-4851-8521-b006-74a1f18c323b-f18c3226 {
        grid-row: span 1 / span 1;
    }

    #w-node-_4d1a6d5b-5bbd-deff-3f50-623b46e67193-e17aa085 {
        grid-column: span 2 / span 2;
    }

    #w-node-cfb9b45d-8c76-e545-e730-ed98a401ce75-e17aa085 {
        grid-area: span 1 / span 2 / span 1 / span 2;
        justify-self: center;
    }

    #w-node-_58a0a801-9e85-300d-e7f5-61fd29ed6a45-71d89a20,
    #w-node-a21f1693-c967-53aa-7793-f78eea6bede9-71d89a20,
    #w-node-a21f1693-c967-53aa-7793-f78eea6bede9-fe11a54a {
        place-self: center;
    }

    #w-node-_73037246-5201-21e9-5ab1-54ff1e488b48-38069318 {
        grid-area: 4 / 1 / 5 / 3;
    }
}

@media screen and (max-width: 767px) {
    #w-node-_195c426d-02c8-de8f-f52f-e954e719699a-fc6af321 {
        grid-column: span 1 / span 1;
    }

    #w-node-_08e88671-4366-8a89-5816-568f99efb44f-99efb44c {
        grid-area: span 2 / span 1 / span 2 / span 1;
    }

    #w-node-_08e88671-4366-8a89-5816-568f99efb469-99efb44c {
        grid-row: span 1 / span 1;
    }

    #w-node-cfb9b45d-8c76-e545-e730-ed98a401ce75-7a55f15b {
        grid-area: span 1 / span 2 / span 1 / span 2;
        justify-self: center;
    }

    #w-node-_195c426d-02c8-de8f-f52f-e954e719699a-7939437d {
        grid-column: span 1 / span 1;
    }

    #w-node-_3b2ea889-4851-8521-b006-74a1f18c3229-f18c3226 {
        grid-area: span 2 / span 1 / span 2 / span 1;
    }

    #w-node-_3b2ea889-4851-8521-b006-74a1f18c323b-f18c3226 {
        grid-row: span 1 / span 1;
    }

    #w-node-cfb9b45d-8c76-e545-e730-ed98a401ce75-e17aa085 {
        grid-area: span 1 / span 2 / span 1 / span 2;
        justify-self: center;
    }

    #w-node-_49e6935f-8142-310a-1f5a-eed12adfcdef-c1240b76,
    #w-node-_49e6935f-8142-310a-1f5a-eed12adfcdf5-c1240b76,
    #w-node-_72df15a9-5b02-eede-0a8f-cea06ebce82a-51c0108b,
    #w-node-_7522bd5f-b791-a0a8-a1ae-15f2494aa923-ce656dc0,
    #w-node-_7522bd5f-b791-a0a8-a1ae-15f2494aa925-ce656dc0 {
        grid-area: span 1 / span 2 / span 1 / span 2;
    }
}

@media screen and (max-width: 479px) {
    #w-node-db45030f-66ff-b819-c913-c2e188d507b3-7a55f15b {
        grid-area: 2 / 1 / 3 / 2;
    }

    #w-node-_1eb8c3ab-1260-0347-0384-bfa5e347118a-7a55f15b {
        grid-column: span 1 / span 1;
    }

    #w-node-db45030f-66ff-b819-c913-c2e188d507b3-e17aa085 {
        grid-area: 2 / 1 / 3 / 2;
    }

    #w-node-_1eb8c3ab-1260-0347-0384-bfa5e347118a-e17aa085 {
        grid-column: span 1 / span 1;
    }

    #w-node-d0636bbc-0e38-343d-081e-bc47e131b165-38069318 {
        grid-area: span 1 / span 1 / span 1 / span 1;
    }
}


@font-face {
    font-family: 'Graphikarabic Super';
    src: url('../fonts/GraphikArabic-Super.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphikarabic';
    src: url('../fonts/GraphikArabic-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
