/******* GLOBAL STYLES *******/
html {
    scroll-behavior: smooth;
}

body {
    color: var(--color_grey_200);
    background-color: var(--color_grey_1000);
    font-family: var(--IBM-Sans);
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-header, .sidebar .widget, .site-main>* {
    margin-bottom: 0;
}

.grecaptcha-badge {
    display: none;
}

#page,
#page-wrapper {
    max-width: 100%;
    width: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

table, td, th {
    border: 1px solid var(--color_text_base);
}

body .hide {
    display: none;
}

.separate-containers .site-main {
    margin: 78px 0 0;
    padding: 0;
}

.full-width {
    max-width: 100%;
}

.max-width {

}

@media (min-width: 991px) {
    .tablet-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mob-only {
        display: none !important;
    }
}

@media (max-width: 767px) {

}


/***** Animated Background *****/
.background-container{
    position: relative;

    z-index: 0;
}

.stars {
    background: black url("/wp-content/uploads/2024/02/stars.png") repeat;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: -2;

    overflow: hidden;
}

.twinkling {
    width:10000px;
    height: 100%;
    background: transparent url("/wp-content/uploads/2024/02/twinkling.png") repeat;
    background-size: 1000px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;

    -moz-animation:move-background 35s linear infinite;
    -ms-animation:move-background 35s linear infinite;
    -o-animation:move-background 35s linear infinite;
    -webkit-animation:move-background 35s linear infinite;
    animation:move-background 35s linear infinite;
}


@keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}
@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-moz-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

/***** END of Animated Background *****/

img {
    height: auto;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p{
    margin-bottom: 0;
}

h1 {
    font-size: 86px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 58px;
}

h4 {
    font-size: 48px;
}


h5 {
    font-size: 40px;
}

.d-flex {
    display: flex;
}

.f-col{
    flex-direction: column;
}

.cta-btn {
    text-align: center;
    font-family: var(--IBM-Sans);
    font-size: 16px;
    line-height: 24px;
}

.cta-btn-small {
    text-align: center;
    font-family: var(--IBM-Sans);
    font-size: 13px;
    line-height: 20px;
}

.btn-big-fill {
    color: var(--color_white, #FFF);
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid var(--color_red_500, #FF4A4A);
    background: var(--color_red_700, #D32F2F);
    box-shadow: 0 0 16px 0 rgba(198, 40, 40, 0.48), 0 1px 1px 0 rgba(255, 255, 255, 0.16) inset, 0 -1px 1px 0 rgba(0, 0, 0, 0.08) inset;
    transition: all 0.2s;
}

.btn-big-fill:hover,
.btn-big-fill:focus {
    color: var(--color_white);
    background: var(--color_red_500);
    box-shadow: 0 0 32px 0 #C62828, 0 1px 1px 0 #FFFFFF29 inset, 0 -1px 1px 0 #00000014 inset;
}

.btn-big-fill:active {
    color: var(--color_white);
    background: var(--color_red_500);
    box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.10) inset, 0 3px 5px 0 rgba(0, 0, 0, 0.24) inset;
}

.btn-big-fill:disabled {
    color: var(--color_white);
    opacity: 0.5;
    background: var( --color_dark-red_400, rgba(239, 80, 80, 0.20));
}

.btn-big-big svg path {
    /*stroke: var(--color_white);*/
}

.btn-big-border {
    color: var(--color_red_100);
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid var(--color_dark-red_200);
    background: none;
    transition: all 0.2s;
}

.btn-big-border:hover,
.btn-big-border:focus {
    color: var(--color_red_100);
    border: 1px solid var(--color_dark-red_300);
    background: var(--color_dark-red_200);
}

.btn-big-border:active {
    color: var(--color_red_100);
    border: 1px solid var(--color_dark-red_300);
    background: var(--color_dark-red_300);
}

.btn-big-border:disabled {
    color: var(--color_red_100);
    border: 1px solid var(--color_dark-red_300);
    opacity: 0.2;
    background: var(--color_dark-red_300);
}

.btn-big-border svg path {
    /*stroke: var(--color_red_100);*/
}

.btn-big-text {
    color: var(--color_red_50);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: none;
    transition: all 0.2s;
}

.btn-big-text:hover,
.btn-big-text:active,
.btn-big-text:focus {
    color: var(--color_red_300, #E57373);
    background: none;
}

.btn-big-text:disabled {
    color: var(--color_red_300, #E57373);
    background: none;
    opacity: 0.2;
}

.btn-small-fill {
    color: var(--color_white, #FFF);
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--color_red_500, #FF4A4A);
    background: var(--color_red_700, #D32F2F);
    box-shadow: 0 0 16px 0 rgba(198, 40, 40, 0.48), 0 1px 1px 0 rgba(255, 255, 255, 0.16) inset, 0 -1px 1px 0 rgba(0, 0, 0, 0.08) inset;
    transition: all 0.2s;
}

.btn-small-fill:hover,
.btn-small-fill:focus {
    color: var(--color_white, #FFF);
    box-shadow: 0 0 32px 0 #C62828, 0 1px 1px 0 #FFFFFF29 inset, 0 -1px 1px 0 #00000014 inset;
}

.btn-small-fill:active {
    color: var(--color_white, #FFF);
    background: var(--color_red_500, #FF4A4A);
    box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.10) inset, 0 3px 5px 0 rgba(0, 0, 0, 0.24) inset;
}

.btn-small-fill:disabled {
    color: var(--color_white, #FFF);
    opacity: 0.5;
    background: var(--color_dark-red_400, rgba(239, 80, 80, 0.20));
}

.btn-small-border {
    color: var(--color_red_100, #FFCDD2);
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid var(--color_dark-red_200, rgba(239, 154, 154, 0.20));
    background: none;
    transition: all 0.2s;
}

.btn-small-border:hover,
.btn-small-border:focus {
    color: var(--color_red_100, #FFCDD2);
    border: 1px solid var(--color_dark-red_300, rgba(229, 115, 115, 0.20));
    background: var(--color_dark-red_200, rgba(239, 154, 154, 0.20));
}

.btn-small-border:active {
    color: var(--color_red_100, #FFCDD2);
    border-radius: 4px;
    border: 1px solid var(--color_dark-red_300, rgba(229, 115, 115, 0.20));
    background: var(--color_dark-red_300, rgba(229, 115, 115, 0.20));
}

.btn-small-border:disabled {
    color: var(--color_red_100, #FFCDD2);
    opacity: 0.2;
    border: 1px solid var(--color_dark-red_300, rgba(229, 115, 115, 0.20));
    background: var(--color_dark-red_300, rgba(229, 115, 115, 0.20));
}

.btn-small-text {
    color: var(--color_red_50, #FFEBEE);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: none;
    transition: all 0.2s;
}

.btn-small-text:hover,
.btn-small-text:focus,
.btn-small-text:active {
    color: var(--color_red_300, #E57373);
    background: none;
}

.btn-small-text:disabled {
    color: var(--color_red_300, #E57373);
    background: none;
    opacity: 0.2;
}

.title-super {
    color: var(--color_text_highlight, #FAFAFA);
    text-shadow: 0 0 16px rgba(255, 197, 197, 0.32);
    font-family: var(--IBM-Mono);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    text-transform: uppercase;
    margin-bottom: 8px;
    min-width: 135px;
}

/* 404 page */

.cairo-not-exist-page {
    height: calc(100vh - 78px);
    background: url("/wp-content/uploads/2024/03/404-Dune.png") no-repeat bottom;
    background-size: contain;
}

.not-exist-top {
    width: 70%;
    margin: 0 auto;
    align-items: flex-end;
    justify-content: space-between;
}

.not-exist-top-image {
    margin-right: 50px;
    transform: translateY(40px);
}

.not-exist-top-image img {
    max-width: 400px;
}

.not-exist-top .content {
    max-width: 290px;
    padding: 200px 0 25px;
}

.not-exist-top h3 {
    font-size: 39px;
    font-weight: 600;
    line-height: 48px;
    color: var(--color_text_highlight);
}

.not-exist-top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 16px 0 40px;
}

.footer-image img {
    width: 100%;
    height: auto;
}

.licenses-wrapper {
    max-width: 1072px;
    margin: 0 auto;
    padding: 80px 0;
}

@media(min-width: 991px) {

    .col50 {
        width: 50%;
    }

    .col30 {
        width: 33.33%;
    }

    .col25 {
        width: 25%;
    }

}

@media (max-width: 990px) {

    .btn-big-border,
    .btn-big-fill {
        padding: 10px 24px;
    }

    .cta-btn {
        font-size: 13px;
        line-height: 20px;
    }

    /* 404 page */
    .not-exist-top {
        width: 70%;
    }

    .cairo-not-exist-page {
        height: calc(100vh - 73px);
        background-size: auto 40vw;
        background-position: right bottom;
    }

    .footer-image img {
        height: 38vw;
        object-fit: cover;
        object-position: right;
    }

    .not-exist-top .content {
        padding: 165px 0 42px;
        z-index: 5;
        max-width: 250px;
    }

    .not-exist-top h3 {
        font-size: 31px;
        line-height: 40px;
    }

    .not-exist-top p {
        font-size: 14px;
        line-height: 20px;
    }

    .not-exist-top .content a {
        font-size: 16px;
        line-height: 24px;
    }

    .not-exist-top-image {
        position: absolute;
        right: 0;
        top: 90px;
        margin-right: 0;
        transform: translateY(40px);
    }

    .not-exist-top-image img {
        max-width: 62vw;
    }

    .licenses-wrapper {
        max-width: 92%;
        padding: 40px 0;
    }


}

/******* Top Menu *******/

header.site-header {
    position: sticky;
    top: 0;
    z-index: 555;
}

.site-header, .site-header * {
    background-color: var(--color_grey_1000);
}

.site-header > .grid-container {
    width: 100%;
    max-width: 100%;
    position: absolute;
    border-bottom: 1px solid var(--color_grey_950);
}

.inside-header {
    padding: 24px 64px;
}

.nav-float-right #site-navigation {
    width: 100%;
}

#primary-menu {
    margin-left: 64px;
}

.cairo-menu-socials {
    display: flex;
    column-gap: 32px;
    order: 2;
    max-height: 24px;
}

.cairo-menu-socials a {
   display: flex;
    align-items: center;
}

.main-navigation .main-nav>ul {
    column-gap: 32px;
}

.site-header .main-navigation .main-nav ul li a {
    color: var(--color_grey_200);
    text-align: center;
    font-family: var(--IBM-Sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 0;
    transition: all 0.3s;
}

.site-header .main-navigation .main-nav ul li.current-menu-item a{
    color: var(--color_red_500);
}

.site-header .main-navigation .main-nav ul li:hover > a,
.site-header .main-navigation .main-nav ul li:focus > a,
.site-header .main-navigation .main-nav ul li.sfHover > a,
.site-header .main-navigation .menu-bar-item:hover > a,
.site-header .main-navigation .menu-bar-item.sfHover > a {
    color: var(--color_red_500);
    text-shadow: 0 0 8px rgba(255, 102, 101, 0.32);
    transition: all 0.3s;
}

.ext-link a:before {
    content: url("../img/External-link.svg");
    position: absolute;
    top: 2px ;
    right: 0;
    opacity: 1;
    transition: all 0.3s;
}

.ext-link:hover a:before,
.ext-link:focus a:before,
.ext-link a:focus:before{
    opacity: 0;
}

.ext-link a:after {
    content: url("../img/External-link-red.svg");
    position: absolute;
    top: 2px ;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}

.ext-link:hover a:after,
.ext-link:focus a:after,
.ext-link a:focus:after {
    opacity: 1;
}

.main-navigation .main-nav ul li.ext-link a {
    padding-right: 24px;
}

.menu-social-icon:hover svg path ,
.menu-social-icon:focus svg path {
    fill: var(--color_red_500);
    filter: drop-shadow(0 0 2px rgba(255, 102, 101, 0.50));
    transition: all 0.3s;
}

@media (max-width: 1200px) {
    .main-navigation .main-nav>ul {
        column-gap: 26px;
    }
    #primary-menu {
        margin-left: 3vw;
    }
}

@media (max-width: 990px) {

    .site-header:after {
        content: '';
        width: 100%;
        position: absolute;
        height: 1px;
        background-color: var(--color_grey_950);
        right: 0;
        top: 72px;
        z-index: 555;
    }

    #primary-menu {
        margin-left: 0;
    }

    .inside-header {
        padding: 0 16px;
    }

    .site-header .header-image {
        width: 96px;
        overflow: hidden;
    }

    .main-navigation .menu-toggle .gp-icon svg {
        height: 24px;
        width: 24px;
        top: 5px;
        fill: #eee;
    }

    .has-inline-mobile-toggle .mobile-menu-control-wrapper {
        margin-top: 4px;
    }

    .main-navigation.toggled .cairo-menu-socials.d-flex {
        display: flex !important;
        order: 4;
        padding-bottom: 32px;
        align-self: flex-end;
        margin-bottom: 16px;
    }

    .site-header .main-navigation .main-nav ul li a {
        text-align: left;
        font-feature-settings: 'salt' on;
        font-size: 25px;
        font-style: normal;
        font-weight: 300;
        line-height: 36px; /* 144% */
    }

    .ext-link a:after {
        /*right: auto;*/
    }

    .main-navigation .inside-navigation.grid-container {
        height: calc(100vh - 72px);
        max-height: 100vh;
        margin-top: -100vh;
        transition: all 0.5s;
        align-items: flex-start;
    }

    .main-navigation.toggled .inside-navigation.grid-container {
        margin-top: 0;
    }

    .main-navigation .main-nav {
        height: max-content;
        width: 100%;
        overflow: hidden;
        transition: all 0.5s;
    }

    .main-navigation.toggled .main-nav{
        /*overflow-y: scroll;*/
    }

    .main-navigation #primary-menu.main-nav>ul {
        padding: 24px 0;
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        min-height: 100%;
        row-gap: 32px;
    }

    .main-navigation.toggled .main-nav>ul {
        /*display: block;*/
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        min-height: 100%;
    }

    .main-navigation .main-nav li {
        width: 100%;
        text-align: left;
    }

    #site-navigation {
        padding: 0 16px;
    }

    .has-inline-mobile-toggle #site-navigation,
    .has-inline-mobile-toggle #site-navigation.toggled {
        margin-top: 8px;
        /*overflow: hidden;*/
        overflow: auto;
    }
}

/********** Footer **********/

footer.site-footer {
    margin-top: auto;
}

.inside-site-info {
    padding: 0;
}

.copyright-bar {
    display: none;
}

.footer-widgets-container {
    padding: 74px 64px;
    max-width: 100%;
    background: rgba(38, 37, 39);
}

.inside-footer-widgets aside#nav_menu-3 {
    display: flex;
    justify-content: space-between;
}

ul#menu-top-menu-1,
ul#menu-footer-menu {
    display: flex;
    gap: 32px
}

.inside-footer-widgets ul li.ext-link a {
    padding-right: 24px;
}

.inside-footer-widgets ul li a {
    color: var(--color_grey_200);
    text-align: center;
    font-family: var(--IBM-Sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
}

.inside-footer-widgets ul li:hover a {
    color: var(--color_red_500);
    text-shadow: 0 0 8px rgba(255, 102, 101, 0.32);
}

#footer-widgets .widget ul li {
    margin-bottom: 0;
}

#footer-widgets.footer-widgets {
    background-color: transparent;
}

@media (max-width: 990px) {

    .inside-footer-widgets aside#nav_menu-3 {
        flex-direction: column;
        row-gap: 32px;
        align-items: center;
    }

    ul#menu-top-menu-1,
    ul#menu-footer-menu {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .inside-footer-widgets ul li:nth-child(4){
        margin-left: 20px;
    }

    .cairo-menu-socials {
        column-gap: 24px;
    }

    .footer-widgets-container {
        padding: 48px 32px;
    }

}

.top-announcement-bar {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
}

p.announcement-bar-title {
    color: var(--color_grey_1000);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-left: auto;
}

a.announcement-bar-cta {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--text-link);
}

button.top-ann-bar-close {
    background: none;
    margin-left: auto;
    padding: 10px 10px;
}

button.top-ann-bar-close svg path {
    stroke: var(--color_grey_900);
}


@media (max-width: 767px) {
    .top-announcement-bar {
        height: 64px;
        padding: 0 5px;
    }
}


/* Modal */
body.modal-opened {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.48);
}

.modal.hidden {
    display: none;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 64px 0;
    padding-bottom: 32px;
    background: #FBFBFC;
    border: 1px solid #EAEFEE;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.14) 0 4px 24px,
    rgba(0, 0, 0, 0.1) 0 2px 2px;
}

.modal-content-header {
    justify-content: flex-end;
    padding: 8px 12px 0 12px;
}

.modal-content-header .button-close-modal {
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border-radius: 8px;
}

.modal-content-header .button-close-modal:hover {
    background: #0000000F;
}

.modal-content-header .button-close-modal svg {
    width: 12px;
    height: 12px;
    color: #363636;
}

.modal-content-main {
    padding: 0 24px 8px;
}

.modal-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.modal-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Entry modal */
.provision-modal.modal {
    align-items: center;
}

.provision-modal .modal-background {
    position: relative;
}

.provision-modal .modal-background img {
    object-position: center;
}

.provision-modal .modal-content {
    display: flex;
    width: max-content;
    max-width: 90vw;
    margin: 0;
    padding-bottom: 0;
    overflow: hidden;
    border: 1px solid transparent;
    /*background: linear-gradient(313.46deg, #0C0C4F 0%, #3F8CFF 100.07%) border-box;*/
}

.provision-modal .modal-content-header,
.provision-modal .modal-content-main {
    position: absolute;
    z-index: 1;
    top: 0;
}

.provision-modal .modal-content-header {
    right: 0;
}

.provision-modal .modal-content-header .button-close-modal svg {
    color: #FFFFFF;
}

.provision-modal .modal-content-main {
    align-items: center;
    padding: 10px 4px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.provision-modal img {
    display: block;
}

.provision-modal .modal-title {
    font: 700 26px/1 var(--IBM-Sans);
    color: #EFEFEF;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 10px;
}

.provision-modal .button-wrap {
    width: 100%;
    padding: 0 20px;
}

.provision-modal .read-more-btn {
    gap: 12px;
    width: 100%;
    height: 48px;
    color: #16161D;
    background: #E8E8F7;
    max-width: 250px;
    margin: 0 auto;
}

.provision-modal .read-more-btn:hover {
    color: #8FBCFF;
    background: #F0F0FB;
}

@media (min-width: 767px) {
    .provision-modal .modal-content {
        max-width: 80vw;
    }

    .provision-modal .modal-title {
        font: 700 33px/1 var(--IBM-Sans);
        margin-bottom: 70px;
    }

    .provision-modal .modal-content-main {
        padding: 68px 4px 10px;
    }
}

@media (min-width: 991px) {
    .provision-modal .modal-content {
        max-width: 50vw;
        max-height: 60vh;
    }
}