:root {
  --content-size: 16px;
  --side-spacing: 1.5rem;
  --standard-container-width: 100%;
  --page-padding: .75rem;
  --inner-dashboard-content-x-padding: 0.75rem;

  --body-text: #172F47;
  --gold: #D4B785;
  --blue-bg: #274569;
  --grey-bg: #585858;
  --white: #fff;
  --primary: #172F47;
  --grey-text: #505D68;

  --regular-font: "Montserrat", sans-serif;;
  --regular-font-size: 1rem;
  --regular-line-height: 1.5;
  
  --header-font-size: 1.55rem;
  --header-line-height: 1.25;
  --header-font-size-desktop: 2.22rem;
  --header-font-weight: 600;
  --h1-font-size: 3.5rem;
  --h1-font-size-mobile: 2rem;
  --h2-font-size: 2.25rem;
  --h2-font-size-mobile: 1.5rem;
  --h3-font-size: 1.78rem;
  --h3-font-size-mobile: 1.33rem;
  --h4-font-size: 1.25rem;
  --h4-font-size-mobile: 1.25rem;
  --h5-font-size: 1.22rem;
  --h5-font-size-mobile: 1.12rem;
  --h6-font-size: 0.88rem;
  --h6-font-size-mobile: 0.8rem;

  --transition-timing: .5s;
}

@media (min-width: 768px) {
  :root {
    --content-size: 16px;
    --standard-container-width: 100%;
    --side-spacing: 2.5rem;
    --page-padding: 0;
    --inner-dashboard-content-x-padding: 2.75rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --content-size: 16px;
  }
}
@media (min-width: 1279px) {
  :root {
    --content-size: 16px;
    --standard-container-width: 100%;
  }
}
@media (min-width: 1340px) {
  :root {
    --standard-container-width: 1320px;
  }
}
@media (min-width: 1440px) {
  :root {
    --standard-container-width: 1320px;
  }
}
@media (min-width: 1920px) {
  :root {
    --standard-container-width: 1320px;
  }
}

.btn {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.2;
  padding: .8rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: var(--blue-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(212, 183, 133, 0.3);
  -moz-box-shadow: 0px 4px 8px 0px rgba(212, 183, 133, 0.3);
  box-shadow: 0px 4px 8px 0px rgba(212, 183, 133, 0.3);
}

.btn:hover {
  text-decoration: none;
  color: var(--gold);
  box-shadow: none;
}

html {
  height: 100%;
  font-size: var(--content-size);
  margin: 0 !important;
  box-sizing: border-box;
}
html * {
  box-sizing: border-box;
}
html::-webkit-scrollbar {
  display: none;
  width: 0;
}

body {
  background-color: #ffffff;
  min-height: 100vh;
  position: relative;
  font-family: var(--regular-font);
  font-size: var(--content-size);
  font-weight: var(--regular-font-weight);
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  color: var(--primary);
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

* {
  font-family: var(--regular-font), sans-serif;
  font-size: var(--regular-font-size);
}
@media (min-width: 1024px) {
  * {
    font-size: var(--regular-font-size-desktop);
  }
}
*::-webkit-scrollbar {
  display: none;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

strong {
  font-size: inherit;
  font-weight: 700;
}

.container {
  padding: 0 1rem;
  max-width: calc(1190px + 2rem);
  margin: auto;
}

.cookie-notice-visible .cn-text-container {
  text-align: left;
}

.wp-block-group__inner-container {
  width: 100%;
  padding: 0 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

section {
  overflow: hidden;
}

/* Headlines */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font), sans-serif;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: var(--header-font-size);
    font-weight: var(--header-font-weight);
    margin-top: 0;
    line-height: 1.3;
  }
  @media (min-width: 1024px) {
    h1, h2, h3, h4, h5, h6 {
      font-size: var(--header-font-size-desktop);
    }
  }

  h1 {
    font-size: var(--h1-font-size-mobile);
    margin-bottom: 2rem;
  }
  @media (min-width: 768px) {
    h1 {
      font-size: var(--h1-font-size);
    }
  }
  h1 span {
    font-size: inherit;
  }

  h2 {
    font-size: var(--h2-font-size-mobile);
    margin-bottom: 1rem;
  }
  @media (min-width: 768px) {
    h2 {
      font-size: var(--h2-font-size);
    }
  }
  h2 span {
    font-size: inherit;
  }

  h3 {
    font-size: var(--h3-font-size-mobile);
    margin-bottom: 1rem;
  }
  @media (min-width: 768px) {
    h3 {
      font-size: var(--h3-font-size);
    }
  }
  h3 span {
    font-size: inherit;
  }

  h4 {
    font-size: var(--h4-font-size-mobile);
    margin-bottom: 1rem;
  }
  @media (min-width: 768px) {
    h4 {
      font-size: var(--h4-font-size);
    }
  }
  h4 span {
    font-size: inherit;
  }

  h5 {
    font-size: var(--h5-font-size-mobile);
    margin-bottom: 1rem;
  }
  @media (min-width: 768px) {
    h5 {
      font-size: var(--h5-font-size);
    }
  }
  h5 span {
    font-size: inherit;
  }

  h6 {
    font-size: var(--h6-font-size-mobile);
    margin-bottom: 1rem;
  }
  @media (min-width: 768px) {
    h6 {
      font-size: var(--h6-font-size);
    }
  }

/* Header */
  .header {
    width: 100%;
    z-index: 10;
    padding: 1rem 0;
    background: var(--blue-bg);
    position: sticky;
    top: 0;
    left: 0;
    transition: 0.3s;
  }

  .header.sticky {
    background: var(--white);
    box-shadow: 0px 20px 30px 0px rgba(174, 185, 225, 0.2);
  }

  .header.sticky .header__logo {
    filter: none;
  }

  .header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo {
    max-width: 10rem;
    transition: 0.3s;
  }
  @media (min-width: 768px) {
    .header__logo {
      max-width: none;
    }
  }
  .header__logo a {
    display: block;
  }

  .header__wrap .buttons-side .mobile {
    display: none;
  }

  .header__wrap .buttons-side .mobile .btn {
    height: 44px;
    width: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .header__wrap .buttons-side {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .header-menu-primary .nav-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #fff;
  }

  .header-menu-primary .nav-menu li {
    position: relative;
  }

  .header-menu-primary .nav-menu li:not(:last-child):after {
    content: '';
    width: 1px;
    height: 1rem;
    position: absolute;
    right: -1rem;
    top: 50%;
    background: #fff;
    transform: translateY(-50%);
  }

  html[lang='ar'] .header-menu-primary .nav-menu li:not(:last-child):after {
    right: auto;
    left: -1rem;
  }

  .sticky .header-menu-primary .nav-menu {
    color: var(--primary);
  }

  .sticky .header-menu-primary .nav-menu li:not(:last-child):after {
    background: var(--primary);
  }

  @media screen and (max-width: 991px) {
    .header__wrap .buttons-side .desktop {
      display: none;
    }

    .header__wrap .buttons-side .mobile {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
  }

/* Footer */
  .footer {
    background: var(--grey-bg);
    color: var(--white);
  }

  .footer-top {
    padding: 6rem 0;
  }

  .footer-top__wrap {
    display: flex;
    gap: 2rem;
  }

  .footer-top h4 {
    font-weight: 500;
  }

  .footer-top .logo-column {
    width: 24%;
    padding-right: 2rem;
  }

  .footer-top .logo-column .logo {
    margin-bottom: 2rem;
  }

  .footer-top .info-column {
    width: 30%;
  }

  .footer-top .services-column {
    width: 30%;
  }

  .footer-top .company-column {
    width: 16%;
  }

  .footer-top .info-column .item {
    position: relative;
    padding-left: 3rem;
  }

  .footer-top .info-column .item:not(:last-child) {
    margin-bottom: 1.1rem;
  }

  .footer-top .info-column .item svg {
    position: absolute;
    top: -4px;
    left: 0;
  }

  .footer-top .footer-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }

  .footer-top .footer-menu li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    border-top: 1px solid var(--white);
    padding: 2rem 0;
  }

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

  .footer-bottom__wrap ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
  }

  .footer-bottom__wrap li {
    margin: 0 1rem;
    position: relative;
  }

  .footer-bottom__wrap li:not(:last-child):before {
    content: '';
    height: 100%;
    width: 1px;
    background: var(--white);
    top: 0;
    right: -1rem;
    position: absolute;
  }

  html[lang='ar'] .footer-bottom__wrap li:not(:last-child):before {
    right: auto;
    left: -1rem;
  }

  .footer-bottom__wrap li:last-child {
    margin-right: 0;
  }

  html[lang='ar'] .footer-bottom__wrap li:last-child {
    margin-left: 0;
    margin-right: 1rem;
  }

  @media screen and (max-width: 991px) {
    .footer-top {
      padding: 4rem 0;
    }

    .footer-top__wrap {
      flex-wrap: wrap;
    }

    .footer-top .logo-column {
      width: 100%;
      margin-bottom: 2rem;
    }

    .footer-top .info-column,
    .footer-top .services-column,
    .footer-top .company-column {
      width: calc(33% - 1.5rem);
    }
  }

  @media screen and (max-width: 767px) {
    .footer-top .logo-column,
    .footer-top .info-column,
    .footer-top .services-column,
    .footer-top .company-column {
      width: calc(50% - 1rem);
    }

    .footer-top .logo-column {
      order: 0;
    }

    .footer-top .company-column {
      order: 1;
    }

    .footer-top .info-column {
      order: 2;
    }

    .footer-top .services-column {
      order: 3;
    }

    .footer-top .footer-menu li {
      margin-bottom: 0.5rem;
    }
  }

  @media screen and (max-width: 575px) {
    .footer-top__wrap {
      flex-direction: column-reverse;
      gap: 0;
    }

    .footer-top .logo-column,
    .footer-top .info-column,
    .footer-top .services-column,
    .footer-top .company-column {
      width: 100%;
      order: unset;
      border-bottom: 1px solid;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
    }

    .footer-top .logo-column {
      text-align: center;
      padding-right: 0;
    }

    .footer-descr {
      max-width: 15rem;
      margin: 0 auto;
    }

    .footer-bottom__wrap {
      flex-direction: column;
      gap: 1rem;
    }

    .footer-top {
      padding-bottom: 0;
    }

    .footer-bottom {
      border: none;
      padding-top: 0;
    }
  }

/* Brand general */
  .brand-section-name {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: .7rem;
    display: inline-block;
  }

  .brand-title {
    color: var(--primary);
    line-height: 1.4;
  }

  .brand-title span {
    color: var(--gold);
  }

/* Form */
  .form-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .b-input-block {
    padding: 0 1rem;
    margin-bottom: 3.5rem;
  }

  .b-input-block.one-third {
    width: 33.33%;
  }

  .b-input-block.full {
    width: 100%;
  }

  .b-input-block.submit-block {
    width: 100%;
    text-align: right;
  }

  .b-input-block.submit-block .btn {
    min-width: 156px;
  }

  .b-input {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid;
    padding: .6rem 0;
  }

  .b-input:focus {
    border-color: var(--gold);
  }

  textarea.b-input {
    resize: none;
    max-height: 3.6rem;
  }

  @media screen and (max-width: 575px) {
    .b-input-block.one-third {
      width: 100%;
    }
  }