/* 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 */

@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 20px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 20px;
}

@media(max-width:767px){
  .dnd-section .dnd-column,
  .content-wrapper {
    padding-left:20px;
    padding-right:20px;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

@font-face {
  font-family: 'Atyp Text';
  src:url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypText-Regular.woff2') format('woff2'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypText-Regular.woff') format('woff'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Atyp Display';
  src:url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Regular.woff2') format('woff2'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Regular.woff') format('woff'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Atyp Display';
  src:url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Semibold.woff2') format('woff2'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Semibold.woff') format('woff'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Atyp Display';
  src:url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Bold.woff2') format('woff2'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Bold.woff') format('woff'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Bold.ttf') format('truetype');
  url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/AtypDisplay-Bold.eot') format('eot');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src:url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamLight.woff2') format('woff2'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamLight.eot') format('eot'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamLight.woff') format('woff'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamLight.ttf') format('truetype');
  font-weight:300;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src:
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBook.eot') format('eot'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBook.ttf') format('truetype'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBook.woff') format('woff'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBook.woff2') format('woff2');     
  font-weight:400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src:url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBold.woff2') format('woff2'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBold.woff') format('woff'),
    url('//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/GothamBold.ttf') format('truetype');
  font-weight:700;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src:url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamMedium.woff') format('woff'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamMedium.eot') format('eot'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamMedium.woff2') format('woff2'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamMedium.truetype') format('truetype');
  font-weight:500;
  font-style: normal;
} 
@font-face {
  font-family: 'Gotham';
  src:url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamBlack.woff') format('woff'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamBlack.eot') format('eot'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamBlack.woff2') format('woff2'),
    url('https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/New%20Gotham%20Font/GothamBlack.ttf') format('truetype');
  font-weight:900;
  font-style: normal;
} 


@font-face {
  font-family: "Teshrin";
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000117-f9e7f3015f4653324ad3ac39d8336ef6.eot");
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000117-f9e7f3015f4653324ad3ac39d8336ef6.eot?#iefix") format("embedded-opentype"),
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000117-f9e7f3015f4653324ad3ac39d8336ef6.woff2") format("woff2"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000117-f9e7f3015f4653324ad3ac39d8336ef6.woff") format("woff"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000117-f9e7f3015f4653324ad3ac39d8336ef6.svg#typotheque_webfonts_service") format("svg");
    font-weight:200;
}

@font-face {
  font-family: "Teshrin";
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000118-f1825864821a4898fb622d955aa62ed3.eot");
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000118-f1825864821a4898fb622d955aa62ed3.eot?#iefix") format("embedded-opentype"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000118-f1825864821a4898fb622d955aa62ed3.woff2") format("woff2"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000118-f1825864821a4898fb622d955aa62ed3.woff") format("woff"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000118-f1825864821a4898fb622d955aa62ed3.svg#typotheque_webfonts_service") format("svg");
   font-weight:300;
}

@font-face {
  font-family: "Teshrin";
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000121-5718c81d514b94612c11ffc5d21b736b.eot");
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000121-5718c81d514b94612c11ffc5d21b736b.eot?#iefix") format("embedded-opentype"),
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000121-5718c81d514b94612c11ffc5d21b736b.woff2") format("woff2"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000121-5718c81d514b94612c11ffc5d21b736b.woff") format("woff"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000121-5718c81d514b94612c11ffc5d21b736b.svg#typotheque_webfonts_service") format("svg");
  font-weight:400;
}
@font-face {
  font-family: "Teshrin";
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000122-6cfc29cf04288121eed313169993e72c.eot");
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000122-6cfc29cf04288121eed313169993e72c.eot?#iefix") format("embedded-opentype"),
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000122-6cfc29cf04288121eed313169993e72c.woff2") format("woff2"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000122-6cfc29cf04288121eed313169993e72c.woff") format("woff"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000122-6cfc29cf04288121eed313169993e72c.svg#typotheque_webfonts_service") format("svg");
  font-weight:500;
}
@font-face {
  font-family: "Teshrin";
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000123-7f91966994e96f4fafda956e12541b6f.eot");
  src: url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000123-7f91966994e96f4fafda956e12541b6f.eot?#iefix") format("embedded-opentype"),
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000123-7f91966994e96f4fafda956e12541b6f.woff2") format("woff2"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000123-7f91966994e96f4fafda956e12541b6f.woff") format("woff"), 
    url("https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Fonts/Arabic%20Fonts/WF-000011-000038-000123-7f91966994e96f4fafda956e12541b6f.svg#typotheque_webfonts_service") format("svg");
  font-weight:700;
}



body {
  line-height:2.08333;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'Gotham',sans-serif;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  transition:all ease 0.3s;
  text-decoration:none;
}

/* Headings */

h1{
  line-height: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin:0 0 10px;
}
h2{
  line-height:1.1132;
}
h6 {
  color: #01667c;
  font-family: Atyp Display;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: normal;
  padding-bottom: 10px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}
h6:after {
  background: #060606;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 56px;
}
h6.center:after {
  margin-left: auto;
  margin-right: auto;
  display: block;
  left: 0;
  right: 0;
}
/* html[lang="ar"] h6:after{
left:auto;
right:0;
} */

/* Lists */

html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6 {
  font-family:Teshrin, sans-serif !important;
}


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;
}
img{
  max-width:100%;
  height:auto;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all ease 0.3s;
  white-space: normal;   
  line-height: normal;
  font-weight: 600 !important;;
  font-size:13px;
  font-family: Atyp Text,sans-serif !important;  
  text-transform: uppercase;
}
html[lang="ar"] button,
html[lang="ar"] .button,
html[lang="ar"] .hs-button {
  font-family:Teshrin, sans-serif !important;
}

a.hs-button.Green {
  background: #002B34;
  color: #fff;
  border-color: #002B34;
}
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;
  text-transform:uppercase;
  transition: none;
}
.button.btn-primary,
.hs-button.btn-primary {
  font-weight: 700;
  letter-spacing: 2.025px;
}

.button-item.purple a,
.button.purple,
.button-group.purple a{
  background:#7669d6;
  border:#7669d6;
  color: #e3dffe; 
}
.button.black,
.button-group.black a{
  background:#000;
  color:#fff;
}
.button.black,
.button-group.black a{
  background:#000;
  color:#fff;
}
a.button.Gray:hover, 
a.button.Gray {
  background: #F2F5F7;
  color: #131C26;
  border-color: #F2F5F7;
}
.button-group.gray a, .button.gray {
  background: #f2f5f7;
  color: #000;
  border-color: #f2f5f7;
}
a.button.gray:before {
  display: none;
}
.button.white,
.button-group.white a{
  background:transparent;
  border-color:#fff;
  color:#fff;
}
a.button.purple_border {
  background: transparent;
  color: #7669d6;
  border-color: #7669d6;
}
a.button.black_border {
  background: transparent;
  color: #000;
  border-color: #000;
}
a.button.link {
  background: transparent;
  color: #000;
  padding: 0;
  border: 0;
}
.button.black svg,
.button-group.black a svg,
.button.purple svg,
.button-group.purple a svg,
a.button.black_border svg,
a.button.purple_border svg{
  stroke:#fff;
}
.button-group svg {
  margin-left: 8px;
}
body .button-group.link a:hover svg,
body .button-group a.link:hover svg{
  stroke:#000;
}
.button-group a.default svg * {
  stroke: #fff !important;
}
.button-group .link-white {
  padding: 0;
}
a.button.link-white,
a.button.link_white {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
a.button.link-white:hover svg *,
a.button.link_white:hover svg * {
  stroke: red;
}
.button i {
  font-family: fontawesome;
  margin-left: 5px;
}

.read-more-link{
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.32px;
  display:inline-block;
}
.read-more-link i{
  margin-left:5px;
}
.cm-two-col-conntent a.button.default:hover,
.cm-two-col-conntent a.button.default:focus {
  background: #3850a3;
  color: #fff;
}
.button-item.small a{
  font-family: Inter,sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
}
.button-item.normal a {
}
.button-item.normal a svg {
  height: 14px;
  position: relative;
  top: -2px;
  vertical-align: middle;
  width: 12px;
}
.button-item.normal a i {
  font-size: 0.89rem;
  margin-left: 10px;
  margin-right: -5px;
}
.button-group a.large, 
.button-item.large a{
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.36px;
}
.button-item.navy_blue a {
  background: #3532DD;
  color: #fff;
  border-color: #3532DD;
}
.button-item.gray a {
  color: #131C26;
  background: #F2F5F7;
  border-color: #F2F5F7;
}
.button-item.large a {
  padding: 14px 32px;
}
a.black:before,
a.purple:before,
a.Gray:before {
  display: none;
}
.button-item.normal a:hover svg , .cm-two-col-conntent .button-wrap a.button svg:hover {
    color: #bed0ff;
    fill: #bed0ff;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size:16px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 0.35rem;
}

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

html[lang="ar"] .hs-form-field > label {
  padding-right: 9px;
}
html[lang="ar"] .hs-form-checkbox input {
  margin-left: 10px;
  margin-right: 4px;
}
html[lang="ar"] ul.no-list.hs-error-msgs.inputs-list {
  padding-right: 8px;
}
.hs-form-field>label {
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Gotham',sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}
.form-title:empty{
  display:none;
}

/* 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:16px;
  padding: 12px 15px;
  width: 100%;
}
textarea {
  min-height: 110px;
}
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;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.hs-input.invalid.error {
  border-color: #D12F2F;
  outline: 1px solid #D12F2F;
}

/* 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;
}


  /* 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 DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
header.header {
  background: #002B35;
  left: 0;
  margin: 0 auto;
  padding: 31px 0 17px;
  position: absolute;
  right: 0;
  transition: all .3s ease;
  z-index: 999;;
}
header.header .content-wrapper {
  display: flex;
}
.custom-logo img {
  max-width: 100%!important;
  width: 209px!important;
}
.custom-menu-primary a {
  text-decoration: none;
  vertical-align: middle;
  color: #FFF;
  text-align: center;
  font-family: Atyp Text, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 0.26px;
  text-transform: uppercase;
}
/* .header-right-links a:not(.button):hover,
.custom-menu-primary a:hover{
opacity:0.7;
} */
.custom-menu-primary .hs-menu-wrapper > ul> li {
  padding: 0 12px;
}
header.header .header-left-side {
  display: flex;
  align-items: center;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children > a {
  padding-right: 30px;
}
.custom-menu-primary {
  margin-left: 14px;
  margin-right: 0;
  padding-bottom: 14px;
  padding-left: 0;
}
.has-banner header.header.scroll .custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a,
.custom-menu-primary .hs-menu-wrapper>ul>li.active-branch > a,
.custom-menu-primary .hs-menu-wrapper>ul>li.active > a{
  color:#6C94CD !important;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.active> a {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children> a > svg {
  margin-left: 6px;
}
.has-banner .custom-menu-primary a {
  color:#fff;
}
.has-banner .custom-menu-primary a svg path {
  fill: #fff;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a>svg {
  position: absolute;
  right: 2px;
  top: 0px;
}
body.no-banner .header-right-links li:first-child a.button {
  background: #fff;
}

html[lang="ar"] .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a>svg {
  margin-right: 6px;
  margin-left: 0;
}
html[lang=ar] .header-right-side {
  margin-left: 0;
  margin-right: auto;
  padding-right: 0;
  padding-left: 78px;
}
.header__language-switcher {
  top: 19px;
  position: absolute;
  padding: 0;
  right: 0;
}
.header__language-switcher .globe_class {
  background: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0;
}
.header__language-switcher .lang_list_class:before, 
.header__language-switcher .lang_list_class:after {
  display: none;
}
.header__language-switcher .lang_list_class {
  display: block !important;
  border: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  background: transparent !important;
  position: static;
  min-width: auto;
  transform: none;
}
.header__language-switcher .lang_list_class li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.header__language-switcher .lang_list_class a {
  color: #fff !important;
}
.header__language-switcher .lang_list_class li:first-child {
  display: none;
}
html[lang=ar] .header-right-side .header__language-switcher {
  left: 12px;
  right: auto;
}
header-right-side .globe_class {
  width: 200px;
}
.header-right-side .globe_class {
  background: transparent;
  width: auto;
  height: auto;
  position: absolute;
  right: -59px;
  border-radius: 0;
  top: -14px;
}
.header-right-side .globe_class ul.lang_list_class {
  position: static;
  opacity: 1;
  visibility: visible;
  display: block;
  background: transparent;
  padding: 0;
  width: auto;
  transform: none;
  top: auto;
  bottom: auto;
  left: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.header-right-side .globe_class ul.lang_list_class:before {
  display: none;
}
.header-right-side .globe_class ul.lang_list_class li:first-child {
  display: none;
}
.header-right-side .globe_class ul.lang_list_class li {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0; 
}
.header-right-side .globe_class ul.lang_list_class:after {
  display: none;
}
.header-right-side .globe_class ul.lang_list_class li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  line-height: 14px;
  letter-spacing: 0.2px;
}
.header-right-side .globe_class ul.lang_list_class li a:hover{
  color: #6C94CD;
}
html[lang="ar"] .header-right-side .globe_class {
  left: 0;
  right: 10px;
  white-space: nowrap;
  top: -18px;
}
.floating-whatsapp-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 151px;  
  z-index:999;
}

.floating-whatsapp {
  background: #060606;
  border-radius:20px 20px 0 0;
  color: #fff;
  font-family: Atyp Display,sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 61px;
  letter-spacing: 4.34px;
  opacity: .6;
  padding: 10px;
  right: 0;
  text-transform: uppercase;
  transform: rotate(-90deg);
  white-space: nowrap;
  width: 243px;
  display: block;
}
.floating-whatsapp:focus,
.floating-whatsapp:hover {
  background: #002B35;
  opacity: 1;
  color: #fff;
}
.floating-whatsapp svg {
  vertical-align: middle;
}
html[lang="ar"] .floating-whatsapp svg {
  margin-left: 15px;
}


@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



.hs-search-field__form {
  position: relative;
}

.header__search .hs-search-field__label {
  flex-basis: auto;
}



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



.header__search .hs-search-field__button {
  padding: 0;
  fill: #000;
  background-color: transparent;
  border: none;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.header__search .hs-search-field__button svg {
  height: 25px;
}


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}
.custom-logo .dark-logo{
  display:none;
}

.header-nav__trigger {
  display: none;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  z-index: 12;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
}
.header-nav__trigger:focus {
  outline: none; 
}

.header-nav__trigger span {
  background-color: #fff;
  display: block;
  height: 2px;
  margin-left: 2px;
  margin-top: 12px;
  position: relative;
  width: 26px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
}

.header-nav__trigger span:before, 
.header-nav__trigger span:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 26px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
}
.header-nav__trigger span:before {
  top: -8px; 
}
.header-nav__trigger span:after {
  top: 8px; 
}
.header-nav__trigger.is-open span {
  background-color: transparent !important;  
}
.header-nav__trigger.is-open span:before, 
.header-nav__trigger.is-open span:after {
  background-color: #fff;
  height: 2px;
  width: 26px;
  top: 0; 
}
.header-nav__trigger.is-open span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); 
}
.header-nav__trigger.is-open span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); 
}
.custom-menu-primary .mobile-menu{
  display:none;
}
.header-right-side {
  align-items: center;
  display: flex;
  margin-left: auto;
  padding-right: 0;
  position: relative;
}
header.header.scroll {
  position: fixed;
  transform: translateY(-100%);
  transition:none;
}
header.header.scroll.default {
  transform: translateY(0);
  transition: transform .3s ease;
  box-shadow: 1px -1px 2px #000;
  padding: 12px 0 4px;
}
header.header .content-wrapper {
  max-width: 1530px;
}
.hs-blog-listing .content-wrapper center {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 992px) {  
  html[lang="ar"] .floating-whatsapp {
    letter-spacing: 0;
    font-family: 'Teshrin', sans-serif;
  }
  html[lang="ar"] .floating-whatsapp {
    letter-spacing: 0;
    font-family: 'Teshrin', sans-serif;
    width: 173px;
    height: 128px;
  }
  html[lang=ar] body .floating-whatsapp-wrap{
    right:-90px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.PropertyInvestment.active > a {
    color: #fff !important;
  }
  .header-right-side.mobile-show ,
  .custom-menu-primary .header-right-links{
    display:none;
  }  
  header.header.active-menu {
    background: #fff;
  }
  body.has-banner header.header.scroll.default .header-right-links ul li:first-child a {
    background: transparent;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:hover > a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > a{
    color: #6C94CD;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > a *{
    transition:all ease 0.3s;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > a svg *{
    fill:#6C94CD;
  }
  header.header.active-menu::before {
    display: none;
  }
  .active-menu .custom-logo .dark-logo{
    display:block;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper {
    background: #002B35;
    border-bottom: 1px solid rgba(182,183,207,.4);
    border-top: 1px solid #ebebeb;
    padding: 0;
    top: 55px!important;
    transition: opacity .3s ease;
    width: 100%;
    margin-top: 12px;
    min-width: 240px;
    display:block;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:after {
    content: "";
    height: 50px;
    position: absolute;
    width: 90px;
    display: block;   
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover:after {
    border-color:#000;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper a {
    color: #fff;
    display: block;
    padding-right: 33px;
    text-align: left;
    width: 100%;
    font-family: Atyp Text, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    text-transform: uppercase;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>ul>li>a{
    color: #fff;
    margin: 0 0 6px;
    padding-left: 31px;
    white-space: normal;
    font-size:16px;
    font-weight:normal;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children > ul.hs-menu-children-wrapper > li > ul > li > a:hover{
    color: #9395D3;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li > ul > li > ul > li a:hover {
    color: #9395D3;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li > ul > li > ul {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li:first-child > ul > li > a {
    padding-left: 0;
  }
  body header.header.active-menu .header-right-links ul li a svg * {
    stroke: #000;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > ul {
    position: absolute;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > ul {
    left: 0;
    opacity: 0;
    padding-left: 0;
    position: absolute;
    top: 74px;
    visibility: hidden;
    width: 100%;
    background: #fff;
    display: flex !important;
    justify-content: center;
    padding: 14px;
    border-top:1px solid rgba(182,183,207,.4);
  }
  header.header.scroll.default .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper {
    top: 42px !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li {
    padding-right: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(182,183,207,.4);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li {
    margin-bottom: 0;
    text-align: center;
    width: 33.3333%;
    border-right: 1px solid rgba(182,183,207,.4);
    padding: 6px 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > ul > li > a {
    color: #000;
    font-family: Montserrat,sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 36.5px;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    white-space: normal !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li:hover>a {
    color: #6C94CD;
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a {
    letter-spacing: 0;
    position: relative;
    padding-left: 20px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>a > svg {
    position: absolute;
    left: 0;
  }
  body .header-right-side .globe_class { 
    right: -50px;
  }
  body .header-right-side { 
    padding-right: 70px; 
  }
}


@media (max-width: 767px) {
   body .header-right-side .globe_class { 
    z-index:999;
  }
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }
  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}
html[lang="ar"] .header-nav__trigger {
  left: 20px;
  right: auto;
}
html[lang="ar"] .child-trigger {
  left: 0;
  right: auto;
}

html[lang="ar"] .child-trigger svg {
  transform: rotate(180deg);
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
  header.header .content-wrapper {
    flex-direction: column;
    padding: 0;
  }
  header.header .header-left-side {
    flex-direction: column;
  }
  .header-right-side {
    flex-direction: column;
  }
  .custom-logo {
    width: 100%;
    padding: 0px 15px;
  }
  .custom-menu-primary {
    padding: 0;
    width: 100%;
    display:none;
  }
  .header-right-side {
    margin-left: 0;
    width: 100%;
    display:none;
  }
  .header-right-side > div {
    width: 100%;
    padding:0;
  }
  html[lang="ar"] body .footer-left-container .footer-right-container {
    padding-right: 0;
    padding-left: 0;
  }
}


/* Landing Page Header */

.landing-page-header {
  background: #000;
  padding: 24px 0;
}
.lp-header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.landing-page-header .content-wrapper {
  padding: 0 20px;
}
.lp-header-logo {
  width: 198px;
}
.lp-header-logo * {
  width: 100%;
  display: inline-block;
}
.lp-header-logo img.hs-image-widget {
  width: 100% !important;
}
.landing-page-navigation {
  position: fixed;
  width: 30vw;
  height: 100vh;
  background: #000;
  z-index: 2;
  top: 0;
  padding: 40px 100px;
  left:-30vw;
  opacity:0;
  transition:0.5s ease all;
  visibility:hidden;
  min-width:350px;
}
a.lp-close {
  width: 20px;
  display: inline-block;
  margin-bottom: 50px;
}
a.lp-close img {
  width: 100%;
}
.lp-navigation-wrapper ul {
  display: inline-block !important;
}
.lp-navigation-wrapper ul li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 15px 0;
  display: inline-block;
}

.lp-header-call {
  position: relative;
  z-index: 3;
}

.landing-page-navigation.active {
  left: 0;
  opacity: 1;
  visibility:visible;
}
.lp-header-call a:hover {
  opacity: 0.65;
}
.custom-menu-primary  .mobile-menu{
  display:none;
}

.child-trigger{
  display:none;
}
html[lang="ar"] .custom-menu-primary {
  padding-left: 0;
}
/* li.hs-menu-item.hs-menu-depth-4.hs-item-has-children ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-5 a {
cursor: context-menu;
} 
li.hs-menu-item.hs-menu-depth-4.hs-item-has-children.active-branch ul.hs-menu-children-wrapper.active-branch li a {
cursor: pointer;
}
li.hs-menu-item.hs-menu-depth-4.hs-item-has-children ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-5 a:hover {
color:#000;
}
*/

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li svg {
  height: 25px;
  width: 25px;
  float: left;
  margin-right: 11px;
  margin-top: 12px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper svg * {
  fill: transparent;
}
.mac .header-right-links a.whatsapp svg{
  top:5px;
}


@media(max-width:1500px){
  .custom-menu-primary .hs-menu-wrapper>ul>li.Howwe.hs-item-has-children>ul.hs-menu-children-wrapper {
    min-width: 805px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.Howwe.hs-item-has-children>ul.hs-menu-children-wrapper>li.hs-item-has-children>a:before {
    right: 5px;
  }
}
@media(max-width:1380px){
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding: 0 10px;
  }
}
@media(max-width:1280px){
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding: 0 5px;
  }
  body .header-right-links ul li a.button {
    padding-left: 20px;
    padding-right: 20px;
  }
  body .header-right-side ul li {
    padding: 0 7px;
  }
  .custom-logo img {
    width: 190px!important;
  }
  header.header {
    padding: 26px 0 19px;
  }

}

@media (min-width: 992px) and (max-width: 1180px) {
  body .header-right-links ul li a {
    padding-left: 5px !important;
    padding-right: 3px !important;
    font-size: 10px !important;
  }
  body .header-right-links ul {
    margin: 0;
  }
  body .header-right-links a.whatsapp {
    padding-left: 20px !important;
  }
  .custom-menu-primary a {
    font-size: 11px;
    letter-spacing: 0;
  }
  .custom-logo img {
    width: 160px!important;
  }
  body .header-right-side ul li {
    padding: 0 4px;
  }
}



@media (max-width: 991px) {
  body .header-right-side .globe_class {
    right: 34px;
  }
  header.header.scroll.default .globe_class{
    top: -27px;
  }
  body.mac .header-right-links a.whatsapp svg{
    top:-2px;
  }
  header.header.scroll.default .custom-menu-primary {
    top: 68px;
  }
  .menu-open.has-banner .custom-menu-primary a {
    color: #012b34;
  }
  .custom-logo {
    position: relative;
    z-index: 8;
  }
  .has-banner .header-nav__trigger span, .has-banner .header-nav__trigger span:after, .has-banner .header-nav__trigger span:before {
    background: #fff;
  }  
  .custom-menu-primary .hs-menu-wrapper a:hover {
    color: #000;
    opacity:0.7;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    display:none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul {
    position: relative;
    overflow: hidden;
    padding-top: 0;  
    padding:0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger {
    top: 0;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger svg {
    position: relative;
    top: -7px;
  }
  .child-trigger {
    cursor: pointer;
    height: 30px;
    padding: 3px;
    position: absolute;
    text-align: center;
    z-index: 9;
    left: auto;
    right: 20px;
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    top: 7px;
  }
  .child-trigger svg {
    height: 10px;
    transition: all .3s ease;
    width: 10px;
    position: absolute;
    right: 0;
    top: 13px;
    transform: rotate(90deg);
  }
  .child-trigger.is-open svg {
    transform: rotate(0);
    fill: #9395D3;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children {
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper > li {
    margin: 10px 0;
    padding-left: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul >li > ul > li {
    margin: 16px 0;
    padding: 18px 16px 4px;
    border-top: 1px solid rgba(182,183,207,.4);
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper {
    display:none;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper li a {
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul >li > ul > li li {
    padding: 7px 16px;
    margin:0 !important;
  }
  .custom-menu-primary .hs-menu-wrapper > ul >li > ul > li li:last-child {
    margin: 0;
    padding-bottom: 0;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper > li:last-child {
    margin-bottom: 0;
  }
  .custom-menu-primary  .desktop-menu{
    display:none;
  }
  .custom-menu-primary .mobile-menu{
    display:block;
  }
  body .header-right-side,
  .custom-menu-primary {
    display: none;
  }
  .header-nav__trigger{
    display:block;
    cursor:pointer;
    top:30px;
  }
  header.header.scroll.default .header-nav__trigger {
    top: 20px;
  }
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }
  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
  .custom-menu-primary {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    right: 0;
    top: 87px;
    padding-left:0;
    padding-right:0;
    overflow-y: auto !important;
    max-height: 100vh;
  }
  .mobile-logo img {
    width: 150px !important;
    margin: 0px auto;
    display: block;
  }
  .mobile-logo {
    padding: 20px 0px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul {
    flex-direction: column;
  }
  .custom-menu-primary .hs-menu-wrapper a {
    color: #000;
    padding:0 15px;
  }
  body .header-right-links a,
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 15px;
    display:block;
    text-transform: uppercase;
    padding: 15px;
    font-weight:600;
    font-family: Atyp Text, sans-serif;
  }
  body .header-right-links ul li a {
    border: 1px solid #002b35 !important;
    line-height: normal !important;
    padding: 10px !important;
    font-size: 13px !important;
  }
  body .header-right-links ul li a:focus,
  body .header-right-links ul li a:hover {
    background:#002b35 !important;
    color:#fff !important;
  }
  body .header-right-links a.whatsapp svg * {
    fill: #012b34 !important;
    transition:all ease 0.3s;
  }
  body .header-right-links a.whatsapp svg {
    position: relative;
    top: -2px;
    margin-right: 10px;
  }
  body .header-right-links a.whatsapp:hover svg * {
    fill: #fff !important;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding:0;
  }
  .custom-menu-primary .mobile-menu .header-right-side ul a svg,
  .custom-menu-primary .mobile-menu .header-right-side ul a svg path {
    width: 17px;
    height: 20px;
    fill: #000;
  }
  .custom-menu-primary .mobile-menu .header-right-side {
    display: block;    
    border-bottom: 1px solid rgba(182,183,207,.4);
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul {
    display: flex;
    justify-content: center;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul a {
    color: #000;
    font-size: 13px;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li {
    padding: 19px 13px 15px;
    width: 50%;
    border-right: 1px solid rgba(182,183,207,.4);
    text-align: center;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li svg {
    width: 20px;
    height: 18px;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child {
    border: 0;
    left: 7px;
    position: absolute;
    top: 2px;
    width: auto;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child svg {
    height: 23px;
    width: 25px;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child svg *{
    stroke:#000;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child a {
    font-size: 0;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li > ul > li {
    padding-left: 15px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li {
    border:0;
    margin: 0;
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a > svg {
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a,
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li>a {
    color: #02081E;
    border-radius: 8px;
    padding: 17px 14px !important;
    display: block !important;
    font-size: 16px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li {
    padding: 0 15px 0 !important;
  }
  .custom-menu-primary .header-right-links ul {
    list-style: none;
    margin: 0;
    padding: 0 10px;
  }
  .custom-menu-primary .header-right-side {
    display: block;
    width: 100%;
    justify-content: center;
    border-top: 1px solid #F2F5F7;
    padding: 16px 0px;
  }
  .custom-menu-primary .header-right-side li {
    width: 100%;
    margin: 0;
  }
  .custom-menu-primary .header-right-side li a {
    width: 100%;
    display: block;
    margin: 0;
    color:#002b35 ;
  }
  .has-banner header.header.scroll .custom-menu-primary .header-right-side a,
  .custom-menu-primary .header-right-side li a:hover {
    color: #000;
  }
  .header-right-side.mobile-show {
    display: block;
    position: absolute;
    right: 36px;
    top: 36px;
    left: auto;
    width: auto;
  }
  body.menu-open .header-right-side.mobile-show {
    z-index: 99;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li svg{
    left: 13px;
    margin: 0;
    position: absolute;
    top: 13px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper > li > a {
    position: relative;
    font-size: 15px;
    display: block;
    text-transform: uppercase;
    padding: 15px;
    font-weight: 600;
    font-family: Atyp Text, sans-serif;
    padding: 5px 14px !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li .child-trigger svg {
    position: absolute;
    right: 0;
    left: auto;
    fill: #000;
    z-index: 9;
    height: 10px;
    position: absolute;
    right: 23px;
    top: 13px;
    transition: all .3s ease;
    width: 10px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger svg * {
    fill: #000;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper ul {
    padding-left: 22px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper ul li > a:before {
    content: "-";
    margin-right: 11px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li>a, 
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 15px;
  }
  header.header{
    padding:19px 0;
  }
  .floating-whatsapp {
    font-size: 0;
    background: transparent;
    transform: none;
    height: 47px;
    width: 46px;
    padding: 0;
  }
  .floating-whatsapp-wrap {
    bottom: 30px;
    top: auto;
    width: auto;
    right: 20px;
    transform: none;
  }
  .custom-menu-primary{
    margin-left:0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children{
    text-align:center;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children > a {
    position: relative;
    display: inline-block;
    padding: 9px 0;
  }
  .hs-blog-post .header-nav__trigger span,
  .hs-blog-post .header-nav__trigger span:before, 
  .hs-blog-post .header-nav__trigger span:after {
    background: #fff;
  }
  .hs-blog-post .custom-menu-primary .header-right-side li a {
    color: #000;
  }
  .header-right-links a:not(.button):hover, .custom-menu-primary a:hover{
    opacity:1;
  }
  html[lang=ar] body .header-right-side {
    left: 51px;
    right: auto;
  }
  html[lang="ar"] .custom-menu-primary .header-right-side {
    padding-left: 0;
    left: 0;
  }
}

@media (max-width: 600px) {
  .header-right-side>div {
    padding-top: 0;
    margin-top: 0;
  }
}

@media (max-width: 500px) {
  .custom-menu-primary .header-right-links ul {
    flex-direction: column;
  }
  .custom-menu-primary .header-right-links ul li {
    margin-bottom: 5px;
    margin-top: 5px;
  }
}

@media (max-width: 479px) {
  header.header {
    min-height: 92px;
  }
  .custom-logo img {
    width: 160px !important;
    position: relative;
    top: 5px;
  }
}
footer.footer {
  padding: 80px 0 20px;
  font-family: Gotham , sans-serif;
}
footer.footer .footer-right {
  width: 51%;
}
.footer-logo img {
  max-width: 279px !important;
  margin-top: 0;
}
.footer-left-inner-wrap .hs-menu-wrapper > ul a {
  color: #727272;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}
.footer-left-inner-wrap .hs-menu-wrapper > ul a:hover{
  color: #fff;
}
footer.footer .copyrights {
  margin-top: 72px;
  padding: 0;
  border-top: 1px solid #333;
}
footer.footer .copyrights .content-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  padding: 40px 40px 17px;
  text-align: center;
}
footer.footer .copyrights .content-wrapper ul li a,
footer.footer .copyrights p{
  text-align: left;
  color: #7D7D7D;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2px;
  margin:0;
  text-transform: uppercase;
}
footer.footer .footer-right p a:hover,
footer.footer .footer-right p a:hover span {
  color: #fff;
  transition:all ease 0.3s;
}
footer.footer .copyrights .content-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.footer .copyrights .content-wrapper ul li {
  display: inline-block;
  margin-left: 17px;
  position: relative;
}
footer.footer .copyrights .content-wrapper ul li a:hover {
  color: #fff;
}
footer.footer .copyrights .content-wrapper ul li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  left: -10px;
  top: 5px;
  opacity: 0.7;
  background: rgba(125, 125, 125, 0.80);
}
footer.footer .copyrights .content-wrapper ul li:first-child:before {
  display: none;
}
.footer-subs-inner form {
  position: relative;
}
.footer-subs-inner form .hs-submit .hs-button {
  background-color: transparent!important;
  background-image: url(//143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Images/submit-btn.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  font-size: 0;
  background-position: top;
  font-weight: 400;
  height: 44px;
  padding: 19px 13px;
  transition: all .4s ease;
}
.footer-left-inner-wrap {
  display: flex;
}
.footer-left-inner-wrap .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-left-inner-wrap .hs-menu-wrapper > ul > li {
  width: 50%;
  margin-bottom: 12px;
}
.footer-subs-inner form .hs-submit {
  position: absolute;
  right: 0;
  bottom: 6px;
}
.footer-subs-inner form .hs-form-field ul.no-list.hs-error-msgs.inputs-list {
  display: none!important;
}
.footer-subs-inner .hs-input {
  border: 0;
  border-bottom: 1px solid #7d7d7d;
  color: hsla(0,0%,49%,.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .5px;
  line-height: 20px;
  padding: 20px 0 27px;
  font-family: gotham, sans-serif;
  outline:none !important;
}
.footer-subs-inner .hs-input:focus{
  color: hsla(0,0%,49%,1);
}
footer.footer h3 span,
footer.footer h3 {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2.34px;
  text-transform: uppercase;
}
.footer-subs-inner .hs-form-field>label {
  color: hsla(0,0%,100%,.8);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2.34px;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 13px;
  margin-bottom: 12px;
  margin-top: -10px;
  padding-top: 4px;
}
.footer-subs-inner .hs-form-field>label span{
  color: hsla(0,0%,100%,.8);
}
footer.footer .footer-right p,
.footer-right p {
  margin: 0  0 11px;
  padding: 0;
  color: #727272;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.6px;
}
footer.footer .footer-right p span{
  color: #727272;
}
.footer-subs-inner h3 {
  margin-bottom: 33px;
}
.footer-right p a {
  color: #727272;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.6px;
}
footer.footer .footer-right h5 {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.07px;
}
.footer-left-container {
  display: flex;
}
.footer-left-container .footer-inner-wrap {
  width: 67%;
}
.footer-left-container .footer-right-container {
  width: 33%;
  position:relative;
  padding-left: 93px;
}
.footer-right-container:before {
  content: "";
  background: #C5C5C5;
  height: 138px;
  width: 1px;
  position: absolute;
  left: 0;
  opacity: 0.3;
}
footer.footer > .content-wrapper {
  padding-left: 30px;
  padding-right: 10px;
}
.footer-logo {
  margin-bottom: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer.footer > .content-wrapper {
  padding-left: 30px;
  padding-right: 10px;
}
#hs_cos_wrapper_footer_links h3:after {
  content: "";
  width: 100%;
  opacity: 0.3;
  background: #C5C5C5;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 83px;
}
#hs_cos_wrapper_footer_links h3 {
  position: relative;
  max-width: 270px;
  overflow: hidden;
  margin-bottom:20px;
}
.footer-logo .social-links__icon {
  background: transparent;
  padding: 0;
  border-radius: 0;
  width: 28px;
}
.footer-logo .social-links__icon svg {
  height: 17px;
  width: 18px;
  transition:all ease 0.3s;
}
.footer-logo .social-links__icon:focus, 
.footer-logo .social-links__icon:hover {
  background-color: transparent;
}
.footer-logo .social-links__icon:hover svg {
  fill: #01667c;
}

/*************AR CSS***************/

html[lang="ar"] footer.footer h6 {
    text-align: right;
}
html[lang="ar"] .footer-left-container .footer-right-container {   
    padding-right: 93px;
    padding-left: 0;
}
html[lang="ar"] .footer-right-container:before {    
    right: 0;
    opacity: 0.3;
}

html[lang="ar"] .footer-left-inner-wrap .hs-menu-wrapper > ul {   
    padding: 0;
}
html[lang="ar"] #hs_cos_wrapper_footer_links h3:after {    
    left: -65px;
}
html[lang="ar"] .footer-subs-inner form .hs-submit {
    position: absolute;
    left: 0;
    bottom: inherit;
    top: 35px;
}
html[lang="ar"] .footer-subs-inner form .hs-submit {
    position: absolute;
    left: 0;
    bottom: inherit;
    top: 50px;
    right: inherit;
}
html[lang="ar"] footer.footer .copyrights .content-wrapper ul {    
  display: flex;
  flex-direction: row-reverse;
}
html[lang="ar"] footer.footer * {
  letter-spacing: 0 !important;
}


@media(min-width:768px) and (max-width:1024px){
  .footer-left-container .footer-right-container {
    padding-left: 20px;
  }
  .footer-left-inner-wrap .hs-menu-wrapper > ul a {
    font-size: 12px;
  }
  .footer-left-inner-wrap .footer-left {
    padding-right: 20px;
  }
}
@media(max-width:900px){
  footer.footer .content-wrapper {
    flex-wrap: wrap;
  }
  footer.footer .footer-right .hs-menu-wrapper>ul {
    margin: 0;
  }
  footer.footer .footer-logo,
  footer.footer .footer-right {
    width: 100%;
    padding-right:0;
  }
  footer.footer .footer-logo {
    margin-bottom: 40px;
  }
  footer.footer .footer-right .hs-menu-wrapper {
    max-width: 100%;
  }
  footer.footer .footer-logo #hs_cos_wrapper_footer_left {
    margin: 0px;
  }
  .footer-logo.mobile {
    display: block !important;
  }
  footer.footer .footer-logo.mobile {
    margin: 0;    
  }
}


@media(max-width:767px){
  footer.footer{
    padding-bottom:0;
  }
  footer.footer .copyrights .content-wrapper {
    padding: 20px;
    justify-content: center;
  }
  footer.footer .copyrights p{
    text-align:center;
  }
  .footer-left-container {
    flex-direction: column;
  }
  .footer-left-container .footer-inner-wrap, .footer-left-container .footer-right-container {
    width: 100%;
    padding: 0;
  }
  .footer-right-container:before {
    display: none;
  }
  #hs_cos_wrapper_footer_links h3{
    max-width:100%;
  }
  footer.footer>.content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-left-inner-wrap {
    flex-direction: column;
  }
  .footer-left-inner-wrap .footer-left, .footer-left-inner-wrap .footer-right {
    margin-bottom: 40px;
  }
  footer.footer .copyrights .content-wrapper ul li a, footer.footer .copyrights p{
    font-size:11px;
  }
  footer.footer .copyrights .content-wrapper ul li:first-child {
    margin: 0;
  }
}

@media(max-width:500px){
  .footer-logo img {
    max-width: 190px !important;
    margin-top: 0;
  }
  footer.footer .footer-logo {
    flex-direction: column;
    text-align: left;
  }
  html[lang="ar"] footer.footer .footer-logo > div {
    text-align: right;
  }
  footer.footer .footer-logo > div {
    width: 100%;
  }
  footer.footer .social-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}


@media(max-width:400px){
  html[lang="ar"] footer.footer .copyrights .content-wrapper ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* Menu and simple menu */

.container-fluid.banner-area .dnd-section {
  padding: 0 !important;
}
.dnd-section,
.dnd-section[class*=force-full-width-section] {
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=force-full-width-section] {
  padding-left: 0!important;
  padding-right: 0!important
}
.dnd-section[class*=force-full-width-section]>.row-fluid>.span12 {
  padding-left: 0;
  padding-right: 0
}


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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* 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;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
  z-index:99;
}
.hs_cos_wrapper_type_rich_text h5 {
  margin: 0 0 6px;
  line-height: 1.6;
}
.cursor-dot {  
  width: 8px;
  height: 8px;
  background-color: #3850A3 ;
}
body .body-wrapper .hs-fieldtype-intl-phone.hs-input select.hs-input {
  padding-right: 40px !important;  
}
html[lang="ar"] body .body-wrapper .hs-fieldtype-intl-phone.hs-input .hs-input {
  text-align:left;
  direction:ltr;
}
html[lang="ar"] body .body-wrapper .hs-fieldtype-intl-phone.hs-input select.hs-input {
  padding-left: 40px !important;
  padding-right: 5px !important;
}
.cursor-dot-outline {
  width: 20px;
  height:20px;
  background-color: rgba(0, 161, 218,0.3);
}
.hs_cos_gallery .slick-dots li button {
  padding: 10px;
}
.hs_cos_gallery .slick-dots li button:before {
  font-size: 20px;
  width: 10px;
  height: 10px;
}
.hs_cos_gallery .slick-dots li button {
  display: none;
}
.hs_cos_gallery .slick-dots li {
  background: #000;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  opacity: 0.2;
  margin: 0 11px;
}
.hs_cos_gallery .slick-dots li.slick-active {
  opacity: 1;
}
.hs_cos_gallery ul.slick-dots {
  bottom: -40px;
}
.slick-list *{
  outline:none;
}
.cm-form-group .inputs-list .hs-input {
  margin-right: 0;
  margin-left: 6px;
}
/* .home-section-two .dnd-section {
background: linear-gradient(182deg, rgba(171, 94, 249, 0.04) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.home-section-three .dnd-section {
background: linear-gradient(180deg, rgba(242, 245, 247, 0.00) 0%, #F2F5F7 48.44%, rgba(242, 245, 247, 0.00) 100%);
}
.home-section-six .dnd-section {
background: linear-gradient(358deg, rgba(139, 255, 212, 0.10) 0%, rgba(255, 255, 255, 0.00) 100%), #FFF;
} 
.products-section-two .dnd-section {
background: linear-gradient(178deg, rgba(255, 255, 255, 0.00) 0%, rgba(190, 208, 255, 0.20) 100%, rgba(190, 208, 255, 0.13) 100%), #FFF;
}
*/
.products-section-two .cards-group h4 {
  font-weight: 600;
  margin-bottom: 0;
}
.cm-usecase-layout .products-section-one h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.24px;
}
.cm-usecase-layout .products-section-one p + h4{
  margin-top: 36px;
}
.hs_cos_wrapper_type_rich_text h5 {
  margin: 0 0 6px;
}
.cm-careers-two .cards-group .card-box .content {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #3B3F4E;
}
.cm-careers-two .cards-group .card-box {
  padding-top: 23px;
  padding-bottom: 23px;
}
.cm-careers-two .cards-group.Left .card-box .card-img {
  margin-bottom: 18px;
}
.cm-careers-two .section-title-text {
  margin-bottom: 46px;
}
.cm-careers-layout .cm-hero-banner-wrap .button-group {
  margin-top: 0;
}
.cm-careers-layout .cm-hero-banner-wrap .button-group .button-item {
  margin-top: 0;
}

.popup-form .form-inner-wrap {
  max-width: 630px;
  margin: 30px auto;
  padding: 50px 36px;
  background: #fff;
  left: 0;
  right: 0;
  position: relative
}
.popup-form {
  position: fixed;
  background: rgba(0,0,0,.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -99;
  transition: all ease .4s;
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden
}
.popup-form h3.form-title {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  background:transparent;
  margin-bottom: 17px;
  text-transform: capitalize
}
.popup-form h3.form-title:empty {
  display:none;
}
.popup-form.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999
}
html[lang="ar"] .button-group .button-item {
  margin-left: 20px;
  margin-right: 0;
}
.popup-form .form-inner-wrap .close-icon {
  float: right;
  font-size: 28px;
  position: absolute;
  right: 15px;
  top: 9px;
  cursor: pointer
}

.cm-careers-layout .cards-group h4 {
  font-size: 16px;
  letter-spacing: -0.32px;
  font-family: Inter ,sa;
  font-weight: bold;
}
.cm-careers-layout .hs_cos_wrapper_type_rich_text > ul {
  padding: 8px 0 0px 24px;
}
.cm-careers-layout .hs_cos_wrapper_type_rich_text h5 {
  margin: 0 0 14px;
  letter-spacing: -0.24px;
}



html[lang="ar"] .cm-banner-group .button-group a svg {
  transform: rotate(180deg);
}
html[lang="ar"] .button-group svg {
  margin-right: 8px;
  margin-left: 0;
}
html[lang="ar"] .read-more-link i {
  margin-right: 5px;
  margin-left: 0;
  transform: rotate(180deg);
}
html[lang="ar"] .button i {
  margin-right: 5px;
  margin-left: 0;
  transform: rotate(180deg);
}
html[lang="ar"] .cm-talk-to-us-wrap .button-group .button-item {
  margin-right: 0;
  margin-left: 20px;
}

html[lang="ar"] .cm-form-group {
  text-align: right;
}
.body-wrapper{
  position:relative;
  overflow-x:hidden;
}
.contact-layout .actions {
  text-align: center;
}
.contact-layout .cm-form-group .legal-consent-container {
  color: #9fa3a6;
  font-family: Test Founders Grotesk;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  bottom: 0;
}
.contact-layout .hs-form-field {
  margin-bottom: 10px;
}
.contact-layout .cm-form-group form {
  position: relative;
  padding-bottom: 70px;
}
.contact-layout .cm-form-group .legal-consent-container a {
  color: #9FA3A6;
  text-decoration: underline;
}
.contact-layout .cm-form-group textarea.hs-input {
  min-height: 129px;
}
.contact-layout .hs-form-field > label {
  display: inline-block;
  font-size: 16px;
}
/* New style */
h6.top-prop.center {
  color: #012B34;
  font-family: Atyp Display; 
  font-weight: 700;
  margin-bottom: 0;
}
.accordion-content-inner {
  padding-top: 10px;
}
.cm-connect-us-left{
  margin-bottom: 4rem;
}
.cm-two-col-content .right h2 {
  margin-bottom: 10px;
}
.team-inner-item .name {
  margin-bottom: 0;
}
.hero-banner h1 {
  text-align: center;
}
.popup-form .form-inner-wrap .hs-fieldtype-intl-phone.hs-input {
  display: flex !important;
}

/**************Ar page**************/

html[lang="ar"] .slick-list, html[lang="ar"] .slick-track {
  direction: rtl;
}
html[lang="ar"] .cm-recents-blog-group .byline .post-date {
  direction: rtl;
}
html[lang="ar"] .submitted-message,
html[lang="ar"] form,
html[lang="ar"] .cm-connect-us-group .hs-input,
html[lang="ar"] .hs-form-field > label ,
html[lang="ar"] .two-col-product-slider.img_cont .content-box p,
html[lang="ar"] .our-properties-item .features-bar ul li,
html[lang="ar"] .our-properties-inner ul.filter li a,
html[lang="ar"] body,
html[lang="ar"] .property-list .property-box .property-title a,
html[lang="ar"] .accordion-header,html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6, html[lang="ar"] a, html[lang="ar"] p,
html[lang="ar"] span, html[lang="ar"] div ,
.header-right-side .globe_class ul.lang_list_class li a
{
  font-family: Teshrin, sans-serif !important;
}
html[lang="ar"] .cm-connect-us-group .hs_recaptcha.hs-recaptcha.field.hs-form-field {
  float: right;
  margin-right: 0;
  margin-left: 25px;
}
html[lang="ar"] .cm-connect-us-group .hs_submit.hs-submit {
  float: right;
}
html[lang="ar"] .header-right-links a,
html[lang="ar"] .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper a,
html[lang="ar"] .custom-menu-primary a,
html[lang="ar"] footer.footer .copyrights .content-wrapper ul li a,
html[lang="ar"] footer.footer .copyrights p,
html[lang="ar"] .footer-subs-inner .hs-input,
html[lang="ar"] footer.footer{
  font-family: Teshrin, sans-serif !important;
}
html[lang="ar"] .contact-us-sec .contact-info ul li a span,
html[lang="ar"] footer.footer a[href*="tel"] {
  font-style: normal;
  direction: ltr;
  unicode-bidi: embed;
}
.header-right-links a.whatsapp svg * {
  fill: #49c95a;
}

html[lang="ar"] body,
html[lang="ar"] {
  font-size: 13px;
}
html[lang="ar"] .team-group .bio-group {
  text-align: right;
}
html[lang="ar"] .mission-vision-item h2,
html[lang="ar"] main h6 {
  letter-spacing: 0 !important;
}
html[lang="ar"] .cm-connect-us-group li.hs-form-booleancheckbox {
  position: relative;
}
html[lang="ar"] .cm-connect-us-group li.hs-form-booleancheckbox input+span {
  padding-right: 28px;
  padding-left: 0;
  margin-right: 0;
}
html[lang="ar"] .cm-connect-us-group li.hs-form-booleancheckbox input {
  right: 0;
  left: auto;
  position: absolute;
  margin-right: 0;
}
.submitted-message {
  font-size: 20px;
}
html[lang="ar"] .contact-us-sec .form-content select.hs-input, 
html[lang="ar"] .cm-connect-us-group select.hs-input,
html[lang="ar"] form fieldset select.hs-input {
  background-position: 4px 50% !important;
}
html .submitted-message, form {
    font-family: Gotham, sans-serif;
    padding: 0;
  font-size: 16px;
}

html[lang="ar"] .blog-post__navigation span {
  letter-spacing: 0;
}
.our-properties-inner ul.filter li a,
body .our-properties-item .title-bar a,
body .blog-post__navigation a span,
body .blog-post__navigation a svg *,
body .property-list .property-box .property-title a svg {
  transition:all ease 0.3s;
}
body .contact-us-sec .contact-info ul li a:hover,
body .banner-brd li.hs-breadcrumb-menu-item a:hover,
body .our-properties-cards ul.filter li a:hover,
body .our-properties-cards .our-properties-item .title-bar a:hover,
body .our-properties-inner ul.filter li a:hover,
body .our-properties-item .title-bar a:hover,
body .our-properties-item .title-bar a:focus,
body .property-list .property-box .property-title a:hover,
body .property-list .property-box .property-title a:focus,
body .cm-recents-blog-group .recent-post-content h4 a:hover,
body .cm-recents-blog-group a.link:hover,
body .blog-post__navigation a:hover span,
body .our-communities-sec ul li a:hover{
  color: #6c94cd;
}
body .blog-post__navigation a:hover svg *{
  fill:#6c94cd;
}
body .property-list .property-box .property-title a:hover svg *,
body .property-list .property-box .property-title a:focus svg *{
  stroke: #6c94cd;
}
body .cm-recents-blog-group .recent-post-content h4 {
  position: relative;
  z-index: 21;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  body .cm-about-us-section .milestone-group .button-group .button-item a {
    padding:13px 9px;
  }
  .popup-form select.hs-input{
    background: url(https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Images/arrow-black.png) no-repeat calc(100% - 10px) 50% !important;
    background-size:18px !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .contact-us-sec .form-content select.hs-input,
  .cm-connect-us-group select.hs-input {
    background: url(https://143712601.fs1.hubspotusercontent-eu1.net/hubfs/143712601/WinterValley_2023/Images/arrow-down.png) no-repeat calc(100% - 10px) 50% !important;
    background-size:18px !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 5px;
  }
  @media(min-width:1080px){
    body .cm-about-us-section .milestone-group .button-group .button-item a {
      white-space:nowrap;
    }
  }
}

@media (min-width: 992px){
  .cm-connect-us-group fieldset.form-columns-2, 
  .cm-connect-us-group fieldset.form-columns-3 {
    display: flex;
  }
}

@media(max-width:767px){
  .cm-section-header.Style1 {
    margin-bottom: 40px !important;
  }
  .popup-form .form-inner-wrap {
    max-width: calc(100% - 20px) !important;
  }
}



@media(max-width:400px){
  body form .hs-input.hs-fieldtype-intl-phone {
    flex-direction: column;
    display: flex;
  }
  body form .hs-fieldtype-intl-phone.hs-input > select {
    margin-bottom: 10px !important;
  }
  body form .hs-fieldtype-intl-phone.hs-input > * {
    width: 100% !important;
  }
}