/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */
img{
  max-width: 100%; 
}

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
  .row-fluid .span1 {
    width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span2 {
    width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span3 {
    width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span5 {
    width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span6 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span7 {
    width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span8 {
    width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span9 {
    width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span10 {
    width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span11 {
    width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
  }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.dnd-section .dnd-column {
  padding: 0 15px;
}
.position-relative{
  position:relative ;
}
a.item_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
[class*="force-full-width-section"]>.row-fluid {
  padding-left: 0;
  padding-right: 0;
}
  
/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

@font-face {
  font-family: 'Effra';
  src: url('https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/fonts/646345b47d6da7fdaaedf684_Effra-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400; 
    font-display: swap; 
    }


@font-face {
  font-family: 'Effra';
  src: url('https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/fonts/646345b352ad093eec77d8f1_Effra-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700; 
    font-display: swap; 
    }


body {
  line-height: 1.5;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

@media screen and (max-width: 1240px){
  html {
    font-size: calc(0.5012550200803213rem + 0.4016064257028112vw);
  }
}

@media screen and (max-width: 991px){
  html {
    font-size: 1rem;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}
ul.no-list.hs-error-msgs.inputs-list li label {
  color: red;
}
/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

header.header_wrapper {
    left: 0;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 55;
    background-color: #fdfdfd;
}
.header_row {
    display: flex;
    /*   flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
}
.header_logo img {
    max-width: 59px !important;
    height: auto;
    width: 100% !important;
    display: block;
}
.header_wrapper .content-wrapper {
    width: 100%;
    max-width: 90rem;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-left: 0%;
    padding-right: 0%;
}
.header_wrapper {
    padding-left: 5%;
    padding-right: 5%;
}
.navbar_menu-button-relative {
    display: none;
}
.header_button_wrapper .button_col.col_primary a:hover {
    color: #0c0830;
    border-color: #e7e6ea;
    background-color: #e9eefe;
}
.header_button_wrapper .button_col.col_secoundary a:hover {
    background-color: #426dff!important;
}
.header_button_wrapper .button_col a {
    transition: border-color .2s, background-color .2s, color .2s!important;
}

@media (max-width: 1240px){
    .header_logo img {
        max-width: 3.75rem!important;
        width: 100%!important;
    } 
}



.ar-lang {
    text-align: right;
}

.update-blog-post.ar-lang .header_wrapper .content-wrapper {
    flex-direction: unset;
}

.ar-lang .header_wrapper .content-wrapper {
    flex-direction: row-reverse;
}
.header_wrapper .content-wrapper .cst-logo {
    color: #2353f5;
    transition: border-color .2s, background-color .2s, color .2s;
    float: left;
    text-decoration: none;
    position: relative;
}
.header_wrapper .content-wrapper .cst-logo img.hs-image-widget {
    display: none;
}
.navbar_logo {
    width: 3.75rem;
    justify-content: center;
    align-items: center;
    display: flex;
}
.w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.cst-mob-logo {
    display: none;
}

.cst-nav-grp {
    float: right;
    position: relative;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.header_wrapper .content-wrapper .is-navbar-mobile {
    display: none;
}
.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
}
.w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}
.w-nav:before, .w-nav:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}
.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
}
.navbar_menu-mobile-top {
    display: none;
}
.wg-element {
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: background-color .2s;
    display: flex;
    position: relative;
}
.cst-mob-btn {
    display: none;
}
.navbar_menu-flex {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: none;
    position: relative;
}
.ar-lang .cst-nav-grp {
    flex-direction: row-reverse;
}

.header_logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}

.header_logo .text-link {
    padding-right: 20px;
    display:none;
}
.want-text .header_logo .text-link {
    display:block;
}

.cst-nav-grp .custom-menu-primary {
    margin-left: auto;
    margin-right: auto;
}

.cst-lang-switcher .lang-dropdown-list {
    min-width: 100%;
    background: #ddd;
    display: none;
    position: absolute;
    background-color: #fff;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 -13px 50px 3px rgba(17, 23, 156, .07);
}
.cst-lang-switcher .lang-dropdown-list .navbar_dropdown-lang-content {
    grid-row-gap: 0.5rem;
    background-color: #fff;
    border-radius: 1rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    display: flex;
    position: relative;
    box-shadow: 0 2px 24px rgba(8, 8, 52, .5);
}
.cst-lang-switcher .lang-dropdown-list .navbar_dropdown-lang-content a.wg-dropdown-1-link.w-dropdown-link:hover {
    color: #fff;
    background-color: #4049ff;
}
.cst-lang-switcher .lang-dropdown-list .navbar_dropdown-lang-content a.wg-dropdown-1-link.w-dropdown-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    position: relative;
    color: #222;
    padding: 10px 20px;
    display: block;
    color: #0c0830;
    background-color: rgba(35, 83, 245, .1);
    border-radius: 0.5rem;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: background-color .1s;
    color: inherit;
    text-decoration: inherit;
    font-size: inherit;
}
.cst-lang-switcher {
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: background-color .2s;
    display: flex;
    position: relative;
}
.cst-lang-switcher .wg-element-wrapper.sw5 {
    align-items: center;
    display: flex;
    position: relative;
}
.cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative;
    width: auto;
    text-transform: uppercase;
    flex-direction: column;
    align-items: stretch;
    font-weight: 700;
}
.cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown .wg-dd-1-togle {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 40px;
    display: inline-block;
    transition: border-color .2s, background-color .2s, color .2s;
    z-index: 1;
    width: 100%;
    grid-column-gap: 0.625rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 0.5rem 1rem;
    display: flex;
    color: inherit;
    text-decoration: inherit;
    font-size: inherit;
    color: #0c0830;
}
.cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown .wg-dd-1-togle .arrow {
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all .2s ease;
    transform-style: preserve-3d;
}
.cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown .wg-dd-1-togle .arrow {
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all .5s ease;
    transform: rotate(180deg);
}
.cst-lang-switcher:hover .wg-element-wrapper.sw5 .w-dropdown .wg-dd-1-togle .arrow {
    transform: rotate(0deg);
}
.cst-lang-switcher:hover .lang-dropdown-list {
    box-shadow: none;
    color: #0c0830;
    background-color: rgba(0, 0, 0, 0);
    top: 100%;
    bottom: auto;
    left: auto;
    right: 0%;
    overflow: visible;
}
.cst-nav-grp a.btn.secoundary:hover {
    background-color: #426dff;
}
.cst-nav-grp a.btn.secoundary {
    line-height: inherit;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    text-align: center;
    border-radius: 10rem;
    justify-content: space-between;
    align-items: center;
    margin-left: 1rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    display: flex;
    transition: border-color .2s, background-color .2s, color .2s;
    margin-right: 1rem;
    color: #fff;
    background-color: #2353f5;
}
.cst-nav-grp a.btn.primary:hover {
    color: #0c0830;
    border-color: #e7e6ea;
    background-color: #e9eefe;
}
.cst-nav-grp a.btn.primary {
    line-height: inherit;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10rem;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    display: flex;
    transition: border-color .2s, background-color .2s, color .2s;
    color: #0c0830;
    border-color: #e7e6ea;
}
div#header_wrapper {
    min-height: 64px;
}
.custom-menu-primary .menu>li.menu_item.col_red .navbar_dropdown-title:hover {
    background-color: #FFE7E4;
    background-position: 5% 50%;
}
.custom-menu-primary .menu>li.menu_item.col_red .navbar_dropdown-title {
    direction: rtl;
    background-image: url(https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/images/64595ac2d74a1069861f1e82_ar%20arrow-resources.svg);
    background-position: -50%;
    background-repeat: no-repeat;
    background-size: auto;
}
.custom-menu-primary .menu>li.menu_item.col_purple .navbar_dropdown-title:hover {
    background-color: #E9EEFE;
    background-position: 5% 50%;
}
.custom-menu-primary .menu>li.menu_item.col_purple .navbar_dropdown-title {
    direction: rtl;
    background-image: url(https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/images/black-arrow.svg);
    background-position: -50%;
    background-repeat: no-repeat;
    background-size: auto;
}
.custom-menu-primary .menu>li.menu_item.col_yellow .navbar_dropdown-title:hover {
    background-color: #FFF9ED;
    background-position: 5% 50%;
}
.custom-menu-primary .menu>li.menu_item.col_yellow .navbar_dropdown-title {
    direction: rtl;
    background-image: url(https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/images/yellow-arrow.svg);
    background-position: -50%;
    background-repeat: no-repeat;
    background-size: auto;
}
.custom-menu-primary .menu>li.menu_item.col_grenn .navbar_dropdown-title:hover {
    background-color: #e4f0eb;
    background-position: 5% 50%;
}
.custom-menu-primary .menu>li.menu_item.col_grenn .navbar_dropdown-title {
    direction: rtl;
    background-image: url(https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/images/green-arrow.svg);
    background-position: 150%;
    background-repeat: no-repeat;
    background-size: auto;
}
.custom-menu-primary .menu>li.menu_item.col_blue .navbar_dropdown-title:hover,
.w-nav-overlay ul.menu > li.col_blue > ul.submenu .submenu_wrapper .submenu_inner_wrapper > li .navbar_dropdown-title:hover{
    background-color: #E9EEFE;
    background-position: 5% 50%;
}
.custom-menu-primary .menu>li.menu_item.col_blue .navbar_dropdown-title,
.w-nav-overlay ul.menu > li.col_blue > ul.submenu .submenu_wrapper .submenu_inner_wrapper > li .navbar_dropdown-title{
    direction: rtl;
    background-image: url(https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/images/blue-arrow.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 150%;
}
@media (min-width:992px){
    .cst-lang-switcher:hover .lang-dropdown-list {
        display: block;
    }
}
@media (max-width: 991px){
    .v2 .header_wrapper  .navbar_menu-1x.nav-int.int-show {
        background-color: #FFF;
    }
    .header_wrapper  .content-wrapper {
        height: 5rem;
    }
    .button.is-navbar-mobile {
        z-index: 2;
        margin-left: auto;
        padding: 0.5rem 1rem;
        font-size: .875rem;
        display: block;
        padding-right: 1.5rem!important;
        padding-left: 3rem!important;
    }
    .button.is-navbar-mobile.nav-int {
        margin-left: 1rem;
        margin-right: auto;
    }
    .header_wrapper .content-wrapper .is-navbar-mobile {
        display: block;
    }
    .header_wrapper .content-wrapper .is-navbar-mobile:hover {
        opacity: .8;
    }
    .header_wrapper .content-wrapper .is-navbar-mobile {
        border: 0;
        line-height: inherit;
        cursor: pointer;
        position: relative;
        grid-column-gap: 1rem;
        color: #2353f5;
        text-align: center;
        background-color: #fff;
        border-radius: 10rem;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        font-size: .875rem;
        display: block;
        z-index: 2;
        padding-right: 1.5rem!important;
        padding-left: 3rem!important;
        margin-left: 1rem;
        margin-right: auto;
        font-family: Effra, sans-serif;
        font-weight: 600;
    }
    .header_wrapper .content-wrapper .is-navbar-mobile {
        display: block;
    }

    .mobile-open .header_wrapper {
        padding-left: 1.25rem!important;
        padding-right: 1rem!important;
    }
    .cst-mob-menu-item-grp .cst-lang-switcher {
        justify-content: center;
        align-items: center;
        transition: background-color .2s;
        display: flex;
        position: relative;
        z-index: 2;
        width: 50%;
        color: #0c0830;
        margin: 2rem auto 8rem;
    }
    .cst-mob-menu-item-grp .cst-lang-switcher .wg-element-wrapper ,
    .cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown {
        width: 100%;
    }
    .cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown .wg-dd-1-togle {
        justify-content: center;
        padding-right: 1rem;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.45;
    }
    .cst-mob-menu-item-grp .cst-lang-switcher .lang-dropdown-list {
        position: relative;
        min-width: 100%;
        background: #ddd;
        box-shadow: none;
        color: #0c0830;
        background-color: transparent;
        top: 100%;
        bottom: auto;
        left: auto;
        right: 0%;
        overflow: visible;
    }
    .cst-mob-menu-item-grp .cst-lang-switcher .lang-dropdown-list .navbar_dropdown-lang-content {
        grid-column-gap: 0.5rem;
        grid-row-gap: 0rem;
        text-align: center;
        flex-direction: row;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        margin-top: 1rem;
        display: block;
        box-shadow: 0 2px 24px 2px rgba(8,8,52,.1);
    }
    .cst-mob-menu-item-grp .cst-lang-switcher .lang-dropdown-list .navbar_dropdown-lang-content a.wg-dropdown-1-link.w-dropdown-link {
        text-align: center;
        border-radius: 0.25rem;
    }
    .cst-lang-switcher .wg-element-wrapper.sw5 .w-dropdown .wg-dd-1-togle.activee .arrow {
        transform: rotate(0deg);
    }
    .cst-mob-menu-item-grp .cst-lang-switcher .lang-dropdown-list.activee {
        display: block;
    }
    .cst-mob-btn {
        z-index: 4;
        background-color: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        flex-direction: column;
        align-items: stretch;
        margin-top: auto;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        display: flex;
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
    }
    .cst-mob-btn .btn {
        color: #fff;
        line-height: inherit;
        cursor: pointer;
        background-color: #3898ec;
        border: 0;
        border-radius: 0;
        padding: 9px 15px;
        text-decoration: none;
        display: inline-block;
        grid-column-gap: 1rem;
        color: #2353f5;
        text-align: center;
        background-color: #fff;
        border-radius: 10rem;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 4rem 0.75rem 2rem;
        font-weight: 600;
        transition: opacity .2s;
        display: flex;
        position: relative;
    }
    .cst-mob-btn .btn.primary {
        color: #fff;
        background-color: #2353f5;
        margin-bottom: 0.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        padding-right: 2rem;
        display: block;
        padding-right: 1.5rem!important;
        padding-left: 3rem!important;
    }
    .cst-mob-btn .btn:hover {
        opacity: .8;
    }
    .cst-mob-btn .btn.secoundary:hover {
        opacity: 1;
    }
    .cst-mob-btn .btn.secoundary {
        padding: 0;
        color: rgba(12,8,48,.6);
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        display: block;
    }
}
@media(max-width:767px){
    .header_wrapper .content-wrapper .is-navbar-mobile:hover {
        opacity: .8;
    }
    .header_wrapper .content-wrapper .is-navbar-mobile {
        color: #fff;
        background-color: #2353f5;
    }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.footer_component.is-lang.is-ar {
    text-align: right;
}


.footer_component {
    background-image: linear-gradient(#2353f5, #6a8cff);
}

.footer_component .padding-global {
    padding-left: 5%;
    padding-right: 5%;
}

.footer_component .content-wrapper {
    width: 100%;
    max-width: 77rem;
    padding:0;
}

.footer_top {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    display: flex;
}

.footer_top h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3125;
    margin: 0;
}

.footer_top  a {
    grid-column-gap: 1rem;
    color: #2353f5;
    text-align: center;
    background-color: #fff;
    border-radius: 10rem;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 4rem 0.75rem 2rem;
    font-weight: 600;
    transition: opacity .2s;
    display: flex;
    position: relative;
    max-width: 100%;
    text-decoration: inherit;
    font-size: inherit;
}
.footer_top svg {
    width: 1rem;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    display: flex;
    position: absolute;
    right: 2rem;
}
.footer_social-wrapper.is-lang.is-ar{
    flex-direction: row-reverse;
}
.footer_social-wrapper {
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
    display: flex;
}
.footer_logo {
    max-width: 100%;
    display: inline-block;
    color: inherit;
    text-decoration: inherit;
    font-size: inherit;
}
.social_icon_wrapper .footer_social-right {
    grid-column-gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}
.social_icon_wrapper .footer_social-right a {
    color: #fff;
    transition: opacity .2s;
    max-width: 100%;
    display: inline-block;
    text-decoration: inherit;
    font-size: inherit;
}

.footer_social-icon svg {
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    display: flex;
}


.footer_middle .hs-menu-wrapper>ul {
    grid-column-gap: 3rem;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6rem;
    display: grid;
}

.footer_middle .hs-menu-wrapper>ul>li {
    width: 100%;
}

.footer_middle .hs-menu-wrapper>ul>li>a {
    margin-bottom: 1.5rem;
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    cursor: text;
    font-family: Effra, sans-serif;

}

.footer_logo img {
    display: block;
    max-width: 100%;
}

.social_icon_wrapper .footer_social-right a:hover {
    opacity: 0.6;
}

.footer_middle .hs-menu-wrapper>ul>li ul li a {
    opacity: .8;
    color: #fff;
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
    font-size: inherit;
    font-family: Effra, sans-serif;
}

.footer_middle .hs-menu-wrapper>ul>li>ul>li>ul {
    border-right: 1px solid hsla(0,0%,100%,.1);
    margin-bottom: 2rem;
    padding-right: 1rem;
}

.footer_bottom {
    border-bottom: 1px solid hsla(0,0%,100%,.2);
    color: #fff;
    font-size: 1rem;
    padding-bottom: 3rem;
}

.footer_bottom.is-lang.is-ar .privacy a {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row-reverse;
}
.footer_top a:hover {
    opacity: 0.8;
}

.footer_links ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}
.footer_links ul>li>a {
    color: #fff;
    opacity: .8;
}

.footer_links ul>li>a[target="_blank"] {
    background-image: url(https://25282016.fs1.hubspotusercontent-eu1.net/hubfs/25282016/raw_assets/public/Jisr_May2023%20Theme/images/footer-link-icon.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: center;
    text-decoration: none;
    display: flex;
    padding-right: 34px;
}
.footer_links ul>li {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row-reverse;
}
[dir="rtl"] .footer_top svg {
    left: 2rem;
    right: auto;
    transform: rotate(-90deg);
}
[dir="rtl"] .footer_top a {
    padding: 0.75rem 2rem 0.75rem 4rem;
}
[dir=rtl] .footer_top a:hover svg {
    left: 1.5rem;
}

[dir=rtl] .social_icon_wrapper .footer_social-right {
    flex-direction: row-reverse;
}
.dnd-section .dnd-column {
    padding: 0!important;
}
@media (max-width:991px){
    .footer_top.is-lang.is-ar svg {
        transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
        left: 1.5rem;
        right: auto;
    }
    .footer_top.is-lang.is-ar a {
        padding-right: 1.5rem!important;
        padding-left: 3rem!important;
    }
    .footer_top h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 0;
    }
}
@media (max-width:767px){

    .footer_middle.is-lang.is-ar {
        direction: rtl;
    }
    .footer_top {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .footer_middle .hs-menu-wrapper>ul {
        grid-column-gap: 0rem;
        grid-row-gap: 2rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        margin-bottom: 3rem;
        display: flex;
    }
    .footer_top svg {
        right: 1.5rem;
    }
    .footer_bottom {
        grid-row-gap: 1.5rem;
        flex-wrap: wrap;
        align-items: flex-start;
        display: flex;
    }

    .footer_social-wrapper {
        grid-row-gap: 2rem;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer_component .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .footer_logo img {
        width: 48px !important;
        max-width: 100%;
    }

    .footer_top {
        grid-row-gap: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 2rem;
        padding-top: 1.5rem;
    }

    .social_icon_wrapper .footer_social-right {
        grid-column-gap: 1.5rem;
    }

    .footer_top h1 {
        font-size: 1.5rem;
    }

    .footer_logo {
        width: 3rem;
    }

    .footer_middle .hs-menu-wrapper>ul>li>a {
        margin-bottom: 1.5rem;
        font-size: .875rem;
    }

    .footer_middle .hs-menu-wrapper>ul>li ul li a {
        font-size: .875rem;
    }

    .footer_middle.is-lang.is-ar .hs-menu-wrapper>ul>li>ul>li>ul {
        border-left-style: none;
        border-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .footer_links ul {
        justify-content: space-between;
        grid-row-gap: 1.5rem;
        flex-wrap: wrap;
        align-items: flex-start;
        display: flex;
    }
    .footer_links ul>li {
        flex-direction: row-reverse;
        align-items: center;
        text-decoration: none;
        display: flex;
        width: 50%;
    }
}

a:active, a:hover {
    outline: 0;
}

.ar-lang .cst-ftr-grp {
    text-align: right;
}
.cst-ftr-grp {
    background-image: linear-gradient(#2353f5,#6a8cff);
}

.cst-ftr-grp .padding-global {
    padding-left: 5%;
    padding-right: 5%;
}

.cst-ftr-grp .padding-global .container-medium {
    width: 100%;
    max-width: 77rem;
    margin-left: auto;
    margin-right: auto;
}
.ar-lang .cst-ftr-grp .padding-global .container-medium .footer_bottom {
    direction: rtl;
}
.cst-ftr-grp .padding-global .container-medium .footer_bottom {
    grid-column-gap: 3rem;
    grid-row-gap: 0px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.2);
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    font-size: 1rem;
    display: grid;
}
.cst-ftr-grp .padding-global .container-medium .footer_bottom .text-style-muted-80 {
    opacity: .8;
}
.ar-lang .cst-ftr-grp .padding-global .container-medium .footer_bottom a {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row-reverse;
}
.cst-ftr-grp .padding-global .container-medium .footer_bottom a {
    max-width: 100%;
    grid-column-gap: 0.625rem;
    grid-row-gap: 0.625rem;
    opacity: .8;
    color: #fff;
    align-items: center;
    text-decoration: none;
    display: flex;
}
.cst-ftr-grp .padding-global .container-medium .footer_bottom a .footer_external-icon {
    justify-content: center;
    align-items: center;
    display: flex;
}
.footer_middle .hs-menu-wrapper>ul {
    padding-left: 0;
    padding-right: 0;
}
.ar-lang .footer_middle .hs-menu-wrapper>ul {
    direction: rtl;
}
.hs-menu-wrapper ul {
    padding-right: 0;
}
.footer_middle .hs-menu-wrapper>ul>li:nth-child(2) > ul > li > ul > li:last-child > a {
    margin: 0;
}
.footer_middle .hs-menu-wrapper>ul>li:last-child > ul > li:last-child>a {
    margin-top: 1.5rem;
    display: block;
    opacity: 1;
}
.footer_middle .hs-menu-wrapper>ul>li:last-child > ul > li:nth-child(4)>a {
    opacity: 1;
}
.footer_middle .hs-menu-wrapper>ul>li:last-child > ul > li:nth-child(3)>a,
.footer_middle .hs-menu-wrapper>ul>li:last-child > ul > li:nth-child(4)>a {
    margin-bottom: 0;
}
.footer_middle .hs-menu-wrapper>ul>li:last-child > ul > li:nth-child(4) {
    margin-top: 3rem;
}
.ar-lang .footer_social-wrapper {
    flex-direction: row-reverse;
}
.footer_social-wrapper .footer_social-right {
    grid-column-gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}
.footer_social-wrapper .footer_social-right a {
    max-width: 100%;
    display: inline-block;
    color: #fff;
    transition: opacity .2s;
}
.footer_social-wrapper .footer_social-right a .footer_social-icon {
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    display: flex;
}
.footer_social-wrapper .footer_social-right a:hover {
    opacity: .6;
}
.footer_social-wrapper .cst-ftr-logo {
    max-width: 100%;
    display: inline-block;
}
img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}
.footer_social-wrapper .cst-ftr-logo img.hs-image-widget {
    width: 100%!important;
    display: inline-block;
    vertical-align: middle;
}
.ar-lang .footer_top {
    flex-direction: row-reverse;
}

.ar-lang .cst-ftr-grp {
    direction: ltr;
}
.footer_top .heading-style-h3.text-color-white {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3125;
    color: #fff;
}


.footer_top a.button.w-inline-block {
    grid-column-gap: 1rem;
    color: #2353f5;
    text-align: center;
    background-color: #fff;
    border-radius: 10rem;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 4rem 0.75rem 2rem;
    font-weight: 600;
    transition: opacity .2s;
    display: flex;
    position: relative;
    max-width: 100%;
}
.footer_top a.button.w-inline-block .button-arrow {
    width: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    right: 2rem;
    transition: transform 0.2s ease-in-out;
}
.footer_top a.button.w-inline-block .button-arrow svg {
    position: static;
    width: auto;
    transform: none;
}
.footer_top a.button.w-inline-block:hover {
    opacity: 1;
}
.footer_top a.button.w-inline-block:hover .button-arrow {
    transform: rotateX(0deg) rotateY(180deg) rotate(0deg) translate(6px);
}

@media(min-width:992px){
    .footer_top a.button.w-inline-block {
        padding-right: 2rem!important;
        padding-left: 4rem!important;
    }
    .footer_top a.button.w-inline-block .button-arrow {
        transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
        left: 2rem;
        right: auto;
    }
}
@media screen and (max-width: 991px){
    .cst-ftr-grp .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .footer_top .heading-style-h3.text-color-white {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .footer_top a.button.w-inline-block .button-arrow {
        transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
        left: 1.5rem;
        right: auto;
    }
    .footer_top a.button.w-inline-block:hover .button-arrow {
        transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg) translate(4px, 0px);
    }
    .footer_middle .hs-menu-wrapper>ul>li:last-child>ul>li:nth-child(4) {
        margin-top: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .cst-ftr-grp .padding-global .container-medium .footer_bottom {
        grid-row-gap: 1.5rem;
        flex-wrap: wrap;
        align-items: flex-start;
        display: flex;
    }
    .footer_middle .hs-menu-wrapper>ul {
        grid-column-gap: 0rem;
        grid-row-gap: 2rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        margin-bottom: 3rem;
        display: flex;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
        flex-direction: column;
    }
    .footer_middle .hs-menu-wrapper>ul>li:last-child > ul > li:last-child>a {
        margin-bottom: 0;
        margin-top: 1rem;
    }
    .footer_social-wrapper .cst-ftr-logo {
        width: 3rem;
    }
    .footer_social-wrapper .footer_social-right {
        grid-column-gap: 1.5rem;
    }
    .update-blog-post.ar-lang .footer_social-wrapper {
        justify-content: space-between;
    }
    .footer_top .heading-style-h3.text-color-white {
        padding-left: 40px;
    }

    .footer_social-wrapper .footer_social-right {
        padding-right: 40px;
    }

    .footer_social-wrapper,.footer_top{justify-content: space-between;align-items: center;}
}
@media screen and (max-width: 480px) {
    .footer_logo {
        width: 100%;
    }

    .footer_social-wrapper .footer_social-right {
        width: 100%;
    }
    .ar-lang .cst-ftr-grp .footer_logo span img, .en-lang .cst-ftr-grp .footer_logo span img{margin-left:auto;}
    .footer_social-wrapper .footer_social-right {
        padding-right: 0;
    }
    .ar-lang .footer_social-wrapper {
        flex-direction: column;
    }
}

.update-blog-post.ar-lang .footer_social-wrapper {flex-direction: row;}

/* Menu and simple menu */

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

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}