.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
/* width */
::-webkit-scrollbar {
  width: 7px;
  background: #D4D4CA;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #DACFC0; 
  border-radius: 0px;  
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #2e2e2c; 
  border-radius: 3px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b24018;   
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

body {
  font-family: Montserrat, sans-serif;
  color: #1a1b1f;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  line-height: 62px;
  font-weight: 400;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 46px;
  font-weight: 400;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
}

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

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

p {
  margin-bottom: 10px;
}

a {
  display: block;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #1a1b1f;
  text-decoration: underline;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

blockquote {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  border-left: 5px solid #e2e2e2;
  font-size: 20px;
  line-height: 34px;
}

figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

figcaption {
  margin-top: 5px;
  opacity: 0.6;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

.divider {
  height: 1px;
  background-color: #eee;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  margin-right: 0px;
  margin-left: 0px;
  background-color: #2e2e2c;
}

.section.cc-cta {
  padding-right: 80px;
  padding-left: 80px;
  background-color: #f4f4f4;
}

.section.cc-store-home-wrap {
  position: static;
  display: inline;
  -o-object-fit: fill;
  object-fit: fill;
}

.styleguide-block {
  display: block;
  margin-top: 80px;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

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

.paragraph-tiny {
  font-size: 12px;
  line-height: 20px;
}

.paragraph-bigger {
  margin-top: 0px;
  margin-bottom: 10px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  font-family: 'Dubai Bold', sans-serif;
  color: #0c190c;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
}

.paragraph-bigger.cc-bigger-light {
  opacity: 0.6;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: 0.6;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  font-size: 70px;
  font-weight: 400;
}

.button {
  padding: 12px 25px;
  border-radius: 0px;
  background-color: #1a1b1f;
  -webkit-transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
  transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  background-color: #32343a;
  color: #fff;
}

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

.button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-jumbo-button.cc-jumbo-white {
  background-color: #fff;
  color: #000;
}

.button.cc-jumbo-button.cc-jumbo-white:hover {
  background-color: #f1f1f1;
}

.button.cc-jumbo-button.cc-jumbo-white:active {
  background-color: #e1e1e1;
}

.button.cc-contact-us {
  position: relative;
  z-index: 5;
}

.button.cc-white-button {
  padding: 16px 35px;
  background-color: #fff;
  color: #202020;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-white-button:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.button.cc-white-button:active {
  background-color: hsla(0, 0%, 100%, 0.9);
}

.label {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.label.cc-styleguide-label {
  margin-bottom: 25px;
}

.label.cc-light {
  opacity: 0.6;
}

.label.cc-blog-date {
  margin-top: 20px;
  opacity: 0.6;
}

.heading-jumbo-tiny {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.rich-text {
  width: 70%;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
}

.rich-text p {
  margin-top: 15px;
  margin-bottom: 25px;
  opacity: 0.6;
}

.paragraph-light {
  opacity: 0.6;
}

.heading-jumbo {
  margin-top: 30px;
  margin-bottom: 90px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  font-family: 'Dubai Bold', sans-serif;
  color: #b24018;
  font-size: 180px;
  line-height: 80px;
  text-transform: none;
}

.heading-jumbo.cc-white-heading-jumbo {
  color: #fff;
}

.heading-jumbo-small {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  text-transform: none;
}

.styleguide-button-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}

.styleguide-header-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 460px;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1a1b1f;
  color: #fff;
  text-align: center;
}

.paragraph-small {
  font-size: 14px;
  line-height: 26px;
}

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-link:active {
  opacity: 0.7;
}

.menu {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.navigation-item {
  padding-top: 9px;
  padding-bottom: 9px;
  opacity: 0.6;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navigation-item:hover {
  opacity: 0.9;
}

.navigation-item:active {
  opacity: 0.8;
}

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: 0.8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: 0.7;
  color: #32343a;
}

.logo-image {
  display: block;
}

.navigation-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 70px;
  padding-bottom: 70px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.webflow-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.5;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  text-decoration: none;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: 0.8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.cta-text {
  width: 70%;
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
}

.cta-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 110px;
  padding-bottom: 120px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.intro-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 1050px;
  margin-top: 0px;
  margin-bottom: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f4f4;
  background-image: url('../images/yayayha_header.jpg');
  background-position: 0px 0px;
  background-size: cover;
  color: #fff;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.intro-header.cc-subpage {
  height: 480px;
  background-color: #000;
  background-image: none;
  color: #fff;
}

.intro-content {
  width: 70%;
  max-width: 1140px;
  text-align: center;
}

.intro-content.cc-homepage {
  margin-top: 560px;
  margin-bottom: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.motto-wrap {
  width: 80%;
  margin-right: auto;
  margin-bottom: 85px;
  margin-left: auto;
  padding-right: 60px;
  padding-left: 60px;
  text-align: center;
}

.about-story-wrap {
  width: 80%;
  margin: 80px auto;
  text-align: center;
}

.our-services-grid {
  margin-bottom: 120px;
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  -ms-grid-rows: auto 60px auto;
  grid-template-areas: ". . ."
    ". . .";
  -ms-grid-columns: 1fr 80px 1fr 80px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.section-heading-wrap {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.service-icon {
  margin-bottom: 30px;
}

.status-message {
  padding: 9px 30px;
  background-color: #202020;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

.status-message.cc-success-message {
  background-color: #12b878;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.status-message.cc-no-data {
  display: block;
  width: 70%;
  margin: 100px auto;
}

.contact-form-wrap {
  padding: 45px 50px 50px;
  border-style: solid;
  border-width: 1px;
  border-color: #eee;
}

.contact-form-grid {
  margin-top: 100px;
  margin-bottom: 100px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template-areas: ". .";
  -ms-grid-columns: 2.5fr 80px 1fr;
  grid-template-columns: 2.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.details-wrap {
  margin-bottom: 30px;
}

.get-in-touch-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-field {
  margin-bottom: 18px;
  padding: 21px 20px;
  border: 1px solid #e4e4e4;
  border-radius: 0px;
  -webkit-transition: border-color 400ms ease;
  transition: border-color 400ms ease;
  font-size: 14px;
  line-height: 26px;
}

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

.text-field:active {
  border-color: #43464d;
}

.text-field:focus {
  border-color: #43464d;
}

.text-field::-webkit-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field:-ms-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field::-ms-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field::placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field.cc-contact-field {
  margin-bottom: 25px;
}

.text-field.cc-textarea {
  height: 200px;
  padding-top: 12px;
}

.contact-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.contact-form-heading-wrap {
  margin-bottom: 40px;
}

.contact-heading {
  margin-top: 0px;
  margin-bottom: 15px;
  font-weight: 400;
}

.map {
  height: 460px;
  margin-bottom: 100px;
  line-height: 20px;
}

.contact-team-name-wrap {
  margin-bottom: 30px;
}

.our-contacts {
  margin-bottom: 120px;
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  grid-template-areas: ". . .";
  -ms-grid-columns: 1fr 80px 1fr 80px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}

.contact-team-details-wrap {
  margin-top: 30px;
}

.contact-team-pic {
  height: 150px;
  margin-bottom: 30px;
  background-color: #f4f4f4;
}

.team-pic {
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
  background-color: #f4f4f4;
}

.team-members {
  margin-bottom: 60px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-rows: auto 30px auto;
  grid-template-areas: ". . ."
    ". . .";
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.team-member-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.team-member-name {
  margin-bottom: 5px;
  opacity: 1;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}

.projects-grid {
  margin-bottom: 60px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-areas: "."
    "."
    ".";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto 30px auto 30px auto;
  grid-template-rows: auto auto auto;
}

.project-name-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.project-name-link {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  text-decoration: none;
}

.project-name-link:hover {
  opacity: 0.8;
}

.project-name-link:active {
  opacity: 0.7;
}

.project-cover-link {
  margin-bottom: 40px;
}

.project-cover-link:hover {
  opacity: 0.8;
}

.project-cover-link:active {
  opacity: 0.7;
}

.project-overview-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 620px;
  margin-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f4f4;
  background-image: url('../images/portfolio-1---wide.svg');
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
}

.project-overview-header.cc-project-2-header {
  background-image: url('../images/portfolio-2---wide.svg');
  background-position: 50% 50%;
}

.project-overview-header.cc-project-3-header {
  background-image: url('../images/portfolio-3---wide.svg');
  background-size: cover;
}

.project-details-grid {
  margin-top: 100px;
  margin-bottom: 100px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template-areas: ". .";
  -ms-grid-columns: 1fr 80px 2fr;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.project-pics {
  margin-bottom: 120px;
}

.detail-image {
  width: 100%;
  margin-bottom: 30px;
}

.blog-detail-header-wrap {
  width: 70%;
  margin: 60px auto;
}

.detail-header-image {
  display: block;
  width: 100%;
  height: 620px;
  margin-bottom: 60px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px;
  background-size: cover;
}

.detail-header-image.w--current {
  margin-bottom: 60px;
}

.blog-list-wrap {
  margin-bottom: 100px;
}

.blog-item {
  display: block;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.blog-preview-image {
  display: block;
  width: 100%;
  height: 620px;
  margin-bottom: 45px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px;
  background-size: cover;
  -webkit-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}

.blog-preview-image:hover {
  opacity: 0.8;
}

.blog-preview-image:active {
  opacity: 0.7;
}

.blog-summary-wrap {
  width: 70%;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  text-align: left;
}

.blog-heading-link {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 46px;
  font-weight: 400;
  text-decoration: none;
}

.blog-heading-link:hover {
  opacity: 0.8;
}

.blog-heading-link:active {
  opacity: 0.7;
}

.contact-email-link {
  margin-bottom: 5px;
  opacity: 0.6;
}

.contact-email-link:hover {
  opacity: 1;
}

.contact-email-link:active {
  opacity: 0.8;
}

.protected-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.protected-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 90px;
  padding-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.protected-heading {
  margin-bottom: 30px;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  padding: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

._404-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1a1b1f;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.home-content-wrap {
  display: block;
  margin-top: 80px;
  margin-bottom: 70px;
}

.home-section-wrap {
  margin-bottom: 30px;
}

.section-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-grid {
  display: block;
  margin-right: 90px;
  margin-bottom: 100px;
  margin-left: 90px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-template-areas: ". .";
  -ms-grid-columns: 1.75fr 1.75fr;
  grid-template-columns: 1.75fr 1.75fr;
  -ms-grid-rows: minmax(200px, 1fr);
  grid-template-rows: minmax(200px, 1fr);
}
#newspacing.about-grid {padding-top: 100px !important;}
.about-grid.cc-about-2 {
  grid-template-areas: ". .";
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}

.intro-text {
  width: 80%;
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
}

.collection-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.work-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.blog-heading {
  margin-bottom: 60px;
  text-align: center;
}

.blog-preview-wrap {
  width: 33.33%;
  padding-right: 45px;
  padding-bottom: 30px;
  padding-left: 15px;
}

.collection-list-wrapper {
  margin-bottom: 120px;
}

.business-article-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  text-decoration: none;
}

.business-article-heading:hover {
  opacity: 0.8;
}

.business-article-heading:active {
  opacity: 0.7;
}

.heading {
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  font-family: 'Dubai Medium', sans-serif;
  color: #0c190c;
  font-size: 20px;
  line-height: 16px;
  font-weight: 400;
}

.body {
  background-image: url('../images/yayayha_background.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

.paragraph {
  margin-bottom: 20px;
  direction: rtl;
  font-family: 'Dubai Medium', sans-serif;
  color: #2e2e2c;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;  
}

.div-block {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-areas: ".";
  -ms-grid-columns: 0.75fr 16px 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.paragraph-2 {
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: justify;
}

.columns {
  display: block;
}

.image {
  display: block;
  margin-right: auto;
  margin-left: auto; 
  opacity: 0;
  -webkit-transition: opacity 6s linear; 
  transition: opacity 6s linear;
  -o-object-fit: fill;
  object-fit: fill;
}
	
.column {
  padding-right: 0px;
  padding-left: 0px;
}

.paragraph-3 {
  direction: rtl;
}

.paragraph-4 {
  margin-right: 20px;
  margin-left: 20px;
  -webkit-transition: opacity 2s ease, transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;  
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}

.column-2 {
  padding-right: 0px;
  padding-left: 0px;
}

.heading-2 {
  margin-top: 35px;
  margin-bottom: 45px;
  margin-left: -42px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'SF Mada Bold', sans-serif;
  color: #2e2e2c;
  font-size: 75px;
  line-height: 47px;
  text-align: justify;
}

.paragraph-5 {
  margin-right: 5px;
  margin-left: 0px;
  padding-right: 0px;  
  direction: rtl;
  font-family: 'Dubai Regular', sans-serif;
  color: #2e2e2c;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;  
}
#justified.paragraph-5  {
  text-align: justify !important;
}
#quoted.paragraph-5  {
  text-align: center !important;
  font-size: 26px;
  font-family: 'Dubai Bold', sans-serif !important;
  line-height: 32px;
  padding-right: 50px;
  padding-left: 50px;
}	
	
#parag-ref { 
  font-size: 14px !important;
  line-height: 18px !important;  
  
}

.carousel-photo-caption {
  font-family: 'Dubai Regular', sans-serif;
  color: #2e2e2c;	
  font-size: 14px;
  direction: rtl;
  line-height: 16px;
  padding-top: 8px;
  text-align: center;
}

.parag-block {
  margin-right: 60px;
  margin-left: 60px; 
  direction: rtl;
  font-family: 'Dubai Regular', sans-serif;
  color: #cfcfc5;
  font-size: 16px;
  line-height: 20px;
  text-align: justify;
 
}
.parag-block p {
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s; 	
}

.photo-caption p {
  font-family: 'Dubai Regular', sans-serif;
  color: #2e2e2c;	
  font-size: 14px;
  direction: rtl;
  line-height: 16px;
  padding-top: 8px;
  margin-bottom: 60px;
  text-align: center;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;  
}

.heading-3 {
  font-family: 'Dubai Bold', sans-serif;
  color: #2e2e2c;
  font-size: 75px;
  direction: rtl;
  padding-top: 50px;
  margin-bottom: 45px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  line-height: 72px;
}

.heading-4 {
  margin-bottom: 35px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  font-size: 50px;
  text-align: center;
}

.paragraph-6 {
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}

.paragraph-7 {
  margin-right: 60px;
  margin-bottom: 20px;
  margin-left: 60px;
  padding-right: 0px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}

.grid {
  grid-auto-flow: column;
}

.div-block-2 {
  margin-top: 100px;
}

.div-block-3 {
  display: -ms-grid;
  display: grid;
  margin-top: 100px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -o-object-fit: fill;
  object-fit: fill;
}

.heading-5 {
  direction: rtl;
}

.heading-6 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  font-size: 50px;
}

.column-3 {
  padding-right: 0px;
  text-align: right;
}

.heading-7 {
  margin: 0px -70px 0px 0px;
  padding-left: 0px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  font-size: 50px;
  text-align: right;
}

.column-4 {
  padding-right: 0px;
  padding-left: 0px;
}

.column-5 {
  padding-right: 0px;
  padding-left: 15px;
}

.columns-2 {
  margin-bottom: 20px;
}

.paragraph-8 {
  margin-right: -10px;
  margin-bottom: 20px;
  padding-right: 0px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}

.column-6 {
  display: block;
  padding-right: 0px;
  padding-left: 90px;
}

.div-block-4 {
  margin-top: 100px;
  margin-right: 90px;
  margin-left: 90px;
}

.heading-8 {
  margin: 20px 0px 35px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  font-size: 50px;
  text-align: center;
}

.paragraph-9 {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: 14px;
}

.paragraph-10 {
  margin-right: 60px;
  margin-bottom: 20px;
  margin-left: 60px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}

.section-2 {
  display: block;
  padding-bottom: 20px;
}

.container-2 {
  display: block;
  margin-bottom: 70px;
}

.heading-9 {
  margin-bottom: 0px;
  padding-right: 15px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  text-align: right;
}

.paragraph-11 {
  margin-top: 55px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Bygonest rustic', sans-serif;
  color: #2e2e2c;
  font-size: 170px;
  text-align: right;
}

.columns-3 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.column-7 {
  padding-right: 0px;
  padding-left: 0px;
}

.heading-10 {
  margin-top: 25px;
  margin-right: -35px;
  margin-bottom: 0px;
  padding-right: 0px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  font-size: 60px;
  line-height: 58px;
  text-align: right;
}
  #mobHeader {
	  margin-top: 0 !important;
  }

.bold-text {
  display: block;
}

.paragraph-12 {
  display: block;
  margin-right: 25px;
  margin-left: -90px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}
@media screen and (min-width: 768px) {
	.paragraph-12 {
		  margin-top: 50px;
	}
}
.column-8 {
  padding-right: 0px;
  padding-left: 0px;
}

.columns-4 {
  margin-right: 0px;
  margin-left: 0px;
}

.button-2 {
  display: block;
  width: 120px;
  margin-left: 25px;
  padding-right: 0px;
  padding-left: 0px;
  border: 1px solid #2e2e2c;
  background-color: #2e2e2c;
  color: #fff;
  text-align: center;
}

.div-block-5 {
  margin-top: 50px;
}

.image-1 {
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  bottom: auto;
  display: block;
  width: 65%;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;	
}
.image-2 {
  padding-right: 0px;
  padding-left: 50px;
  opacity: 0;
  -webkit-transition: opacity 6s linear; 
  transition: opacity 6s linear;
}

.column-9 {
  display: block;
}

.columns-5 {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container-3 {
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container-4 {
  padding-left: 25px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container-5 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-block-6 {
  margin-top: 10px;
  margin-right: 40px;
  margin-left: 25px;
}

.columns-6 {
  margin-right: 0px;
  margin-left: 0px;
}

.paragraph-13 {
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #ece3d7;
  font-size: 15px;
  line-height: 21px;
  text-align: right;
  margin-bottom: 50px;
}

.text-span {
  white-space: normal;
  cursor: pointer;
}

.paragraph-14 {
  text-align: right;
}

.paragraph-15 {
  margin-right: -25px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #ece3d7;
  font-size: 15px;
  line-height: 21px;
  text-align: right;
}

.paragraph-16 {
  margin-right: -60px;
  margin-left: 10px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #ece3d7;
  font-size: 15px;
  line-height: 21px;
  text-align: right;
}

.paragraph-17 {
  display: block;
  margin-right: -60px;
  margin-left: -20px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #ece3d7;
  font-size: 10px;
  line-height: 14px;
  text-align: right;
}

.link {
  display: inline-block;
  color: #cfcfc5;
  text-align: right;
}
.link:hover {
  color: #ece3d7;	
}

.italic-text {
  font-style: normal;
}

.italic-text-2 {
  font-style: normal;
}

.italic-text-3 {
  font-style: normal;
}

.italic-text-4 {
  font-style: normal;
}

.italic-text-5 {
  font-style: normal;
}

.italic-text-6 {
  display: inline;
  direction: rtl;
  font-style: normal;
}

.bold-text-2 {
  color: #ece3d7;
  font-weight: 400;
  text-decoration: underline;
}

.bold-text-3 {
  color: #ece3d7;
  font-weight: 400;
  text-decoration: underline;
}

.link-2 {
  color: #ece3d7;
}

.bold-text-4 {
  color: #ece3d7;
  font-weight: 400;
  text-decoration: underline;
}

.bold-text-5 {
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #ece3d7;
  font-weight: 400;
  text-decoration: underline;
}

.bold-text-6 {
  color: #ece3d7;
  font-weight: 400;
  text-decoration: underline;
}

.bold-text-7 {
  font-weight: 400;
}

.column-10 {
  padding-right: 0px;
  padding-left: 0px;
}

.column-11 {
  padding-right: 0px;
  padding-left: 0px;
}

.column-12 {
  padding-right: 0px;
  padding-left: 95px;
}

.image-3 {
  position: static;
  display: block;
  max-width: 100px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 130px;
  direction: rtl;
  text-align: right;
  -o-object-fit: fill;
  object-fit: fill;
}

.image-4 {
  max-width: 100px;
  margin-left: 130px;
}

.link-block {
  margin-right: 0px;
  padding-right: 0px;
}

.link-3 {
  display: inline-block;
  color: #ece3d7;
}

.link-4 {
  display: inline;
  color: #ece3d7;
}

.div-block-10 {
  display: block;
  margin-top: 70px;
}

.container-6 {
  display: block;
}

.div-block-11 {
  display: block;
}

.column-14 {
  padding-right: 0px;
  padding-left: 0px;
  margin-top: 50px;
}

.image-5 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transition: opacity 6s linear; 
  transition: opacity 6s linear;
  text-align: center;
  width: 50%; 
}
.image-5-2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transition: opacity 6s linear; 
  transition: opacity 6s linear;
  text-align: center;
  width: 70%;	
}
.image-5-3 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transition: opacity 6s linear; 
  transition: opacity 6s linear;
  text-align: center;
  width: 60%;	
}

.text-block {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  margin-top: 0px;
  margin-left: -60px;
  padding-bottom: 95px;
  padding-left: 0px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Bygonest rustic', sans-serif;
  color: #2e2e2c;
  font-size: 155px;
  text-align: right;
}
.text-block2 {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  margin-top: 0px;
  margin-left: -35px;
  padding-bottom: 37px;
  padding-left: 0px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Bygonest rustic', sans-serif;
  color: #2e2e2c;
  font-size: 90px;
  text-align: right; line-height: 70px;
}

.div-block-12 {
  margin-bottom: 70px;
}

.columns-7 {
  margin-left: -250px;
}

.heading-11 {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 240px;
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn linear 2s;
  -moz-animation: fadeIn linear 2s;
  -o-animation: fadeIn linear 2s;
  -ms-animation: fadeIn linear 2s;
  direction: rtl;
  font-family: 'Hacen Sahafa', sans-serif;
  color: #2e2e2c;
  font-size: 60px;
  line-height: 58px;
  text-align: right;
}

.paragraph-18 {
  margin-top: 50px;
  margin-left: 240px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

.paragraph-19 {
  margin-left: 240px;
  direction: rtl;
  font-family: 'Neo Sans Arabic', sans-serif;
  color: #2e2e2c;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

.column-15 {
  padding-right: 100px;
  padding-left: 100px;
  margin-top: 100px;
}

.div-block-13 {
  margin-top: 50px;
  margin-left: 65px;
}

.brand {
  position: relative;
}

.image-6 {
  position: absolute;
  left: auto;
  top: 5%;
  right: 1%;
  bottom: auto;
  display: block;
  max-width: 120px;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.image-7 {
  float: right;
  max-width: 50px;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;	
}
.image-8 {
  float: left;
  max-width: 50px;
  margin-top: -40px;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  position: relative;  
}
.image-9 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transition: opacity 6s linear; 
  transition: opacity 6s linear;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .section.cc-cta {
    padding-right: 0px;
    padding-left: 0px;
  }

  .styleguide-block {
    text-align: center;
  }

  .paragraph-bigger {
    font-size: 16px;
    line-height: 14px;
  }
  
  .heading-jumbo {
	margin-bottom: 30px;
  }
  
  .heading {
	  font-size: 14px;
  }
  
  .image-1 {
	  width: 50%;
  }

  .button {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button.cc-contact-us {
    display: none;
  }

  .heading-jumbo {
    font-size: 56px;
    line-height: 30px;
  }

  .logo-link.w--current {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .menu-icon {
    display: block;
  }

  .menu {
    position: static;
    margin-left: 30px;
  }

  .navigation-wrap {
    background-color: #fff;
  }

  .navigation {
    padding: 25px 30px;
  }

  .navigation-item {
    padding: 15px 30px;
    -webkit-transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    text-align: center;
  }

  .navigation-item:hover {
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .menu-button {
    padding: 0px;
  }

  .menu-button.w--open {
    background-color: transparent;
  }

  .navigation-items {
    background-color: #fff;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    width: auto;
    padding: 80px 50px 90px;
  }

  .intro-header {
    height: 500px;
  }

  .intro-content.cc-homepage {
    margin-top: 250px;
  }

  .motto-wrap {
    padding-right: 10px;
    padding-left: 10px;
  }

  .our-services-grid {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    grid-template-areas: ". ."
      ". ."
      ". .";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    text-align: center;
  }

  .service-icon {
    display: inline-block;
  }

  .contact-form-grid {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    grid-row-gap: 50px;
    grid-template-areas: "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 50px auto;
    grid-template-rows: auto auto;
    text-align: center;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .our-contacts {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    grid-template-areas: "."
      "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .team-members {
    grid-template-areas: ". ."
      ". ."
      ". .";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .team-member-title-wrap {
    margin-bottom: 30px;
  }

  .project-details-grid {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    grid-row-gap: 50px;
    grid-template-areas: "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 50px auto;
    grid-template-rows: auto auto;
    text-align: center;
  }

  .blog-detail-header-wrap {
    width: 70%;
  }

  .detail-header-image {
    height: 460px;
  }

  .blog-item {
    width: 80%;
  }

  .blog-preview-image {
    height: 460px;
  }

  .blog-summary-wrap {
    width: 100%;
  }

  .about-grid {
    margin-right: 30px;
    margin-left: 30px;
    grid-row-gap: 50px;
    grid-template-areas: "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 50px auto;
    grid-template-rows: auto auto;
    text-align: center;
  }

  .about-grid.cc-about-2 {
    grid-template-areas: "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .intro-text {
    width: auto;
  }

  .collection-wrap {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .blog-preview-wrap {
    width: 80%;
    padding-right: 15px;
    text-align: center;
  }

  .paragraph-4 {
    margin-right: 0px;
    margin-left: 0px;
  }

  .heading-2 {
    margin-left: 0px;
    text-align: right;
	font-size: 50px;
  }

  .heading-3 {
	font-size: 50px;
  }

  .paragraph-5 {
    margin-right: 0px;
    /*margin-left: -295px;*/
  }

  .heading-7 {
    margin-right: -120px;
    margin-left: -70px;
  }

  .paragraph-8 {
    margin-right: -140px;
  }

  .column-6 {
    padding-right: 0px;
  }

  .div-block-4 {
    margin-right: 30px;
    margin-left: 30px;
  }

  .paragraph-11 {
    font-size: 90px;
  }

  .columns-3 {
    margin-bottom: 40px;
  }

  .heading-10 {
    font-size: 38px;
  }

  .paragraph-12 {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
  }

  .button-2 {
    margin-left: 0px;
  }

  .image-2 {
    padding-left: 170px;
  }

  .div-block-6 {
    margin-left: 25px;
    padding-right: 25px;
  }

  .paragraph-15 {
    margin-right: 10px;
  }

  .image-4 {
    margin-right: 0px;
    margin-left: 20px;
    padding-left: 0px;
  }

  .div-block-7 {
    margin-right: 70px;
    margin-left: 70px;
  }

  .column-13 {
    display: block;
    overflow: visible;
  }

  .div-block-8 {
    margin-right: 60px;
    margin-left: 60px;
  }

  .image-6 {
    max-width: 110px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-right: 0px;
    margin-left: 0px;
  }

  .section.cc-cta {
    padding: 15px;
  }

  .section.cc-home-wrap {
    margin-right: 15px;
    margin-left: 15px;
  }

  .section.cc-store-home-wrap {
    display: inline;
    margin-right: 15px;
    margin-left: 15px;
  }

  .container {
    display: block;
    margin-top: 0px;
    text-align: center;
  }

  .paragraph-bigger {
    font-size: 15px;
    line-height: 28px;
	 margin-bottom: 0;
  }

  .image-1 {
	  width: 45%;
  }

  .rich-text {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

  .heading-jumbo {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 50px;
    line-height: 64px;
  }

  .heading-jumbo-small {
    font-size: 30px;
    line-height: 52px;
  }

  .logo-link {
    padding-left: 0px;
  }

  .navigation {
    padding: 20px 30px;
  }

  .cta-wrap {
    padding-right: 30px;
    padding-left: 30px;
  }

  .intro-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 300px;
    margin-top: -30px;
    margin-bottom: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .intro-content {
    width: 80%;
  }

  .intro-content.cc-homepage {
    margin-top: 100px;
    margin-bottom: 20px;
  }

  .motto-wrap {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .our-services-grid {
    grid-row-gap: 60px;
    grid-template-areas: "."
      "."
      "."
      "."
      "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 60px auto 60px auto 60px auto 60px auto 60px auto;
    grid-template-rows: auto auto auto auto auto auto;
  }

  .status-message.cc-no-data {
    width: 80%;
    max-width: 470px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .text-field.cc-contact-field {
    text-align: left;
  }

  .text-field.cc-textarea {
    text-align: left;
  }

  .team-pic {
    height: 300px;
    margin-bottom: 30px;
  }

  .team-member-name {
    font-size: 16px;
    line-height: 28px;
  }

  .project-name-wrap {
    margin-bottom: 30px;
  }

  .project-name-link {
    font-size: 16px;
    line-height: 28px;
  }

  .detail-image {
    margin-bottom: 15px;
  }

  .blog-detail-header-wrap {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

  .blog-item {
    width: 90%;
    max-width: 470px;
  }

  .blog-summary-wrap {
    text-align: center;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .home-content-wrap {
    margin-bottom: 80px;
  }

  .about-grid {
    margin-right: 0px;
    margin-left: 0px;
	margin-bottom: 0px;
  }

  .intro-text {
    margin-bottom: 40px;
  }

  .heading {
    display: block;
    margin-top: 0px;
    margin-bottom: 15px;
    padding-bottom: 0px;
    font-size: 13px;
    line-height: 26px;
  }

  .body {
    display: block;
  }

  .paragraph {
    margin-top: 0px;
    padding-top: 0px;
  }

  .paragraph-5 {
    /*margin-left: -160px;*/
  }

  .heading-4 {
    margin-top: 0px;
    font-size: 40px;
  }

  .paragraph-7 {
    margin-right: 0px;
    margin-left: 0px;
  }

  .div-block-2 {
    margin-top: 80px;
    margin-right: 70px;
    margin-left: 70px;
  }

  .heading-7 {
    display: block;
    margin-right: 70px;
    margin-left: 0px;
    padding-left: 0px;
    font-size: 40px;
    text-align: center;
  }

  .column-4 {
    display: block;
  }

  .column-5 {
    padding-left: 40px;
  }

  .columns-2 {
    display: block;
  }

  .paragraph-8 {
    margin-right: -110px;
  }

  .column-6 {
    padding-left: 0px;
  }

  .div-block-4 {
    margin-right: 70px;
    margin-left: 70px;
  }

  .heading-8 {
    font-size: 40px;
  }

  .paragraph-10 {
    margin-right: 0px;
    margin-left: 0px;
  }

  .heading-9 {
    margin-top: 0px;
  }

  .paragraph-11 {
    font-size: 150px;
    text-align: center;
  }

  .heading-10 {
    margin-top: 50px;
    margin-right: 0px;
    font-size: 50px;
    text-align: center;
  }
  #mobHeader {
	  margin-top: 70px !important;
  }

  .paragraph-12 {
    margin-top: 10px;
    margin-left: -105px;
  }
  #mbparag.paragraph-12 {
    margin-top: -20px;
    margin-left: -105px;
  }  

  .image-2 {
    margin-right: 0px;
    padding-left: 100px;
  }

  .div-block-6 {
    margin-top: 0px;
    margin-right: 80px;
    margin-left: 80px;
    padding-right: 0px;
  }

  .paragraph-13 {
    text-align: center;
  }

  .paragraph-15 {
    text-align: center;
  }

  .paragraph-16 {
    margin-right: 0px;
    text-align: center;
  }

  .paragraph-17 {
    margin-right: 0px;
    text-align: center;
  }

  .column-11 {
    margin-bottom: 30px;
  }

  .column-12 {
    margin-bottom: 30px;
    padding-left: 0px;
  }

  .image-4 {
    margin-left: 0px;
  }

  .div-block-7 {
    margin-right: 70px;
    margin-left: 70px;
  }
  
  .div-block-8 {
    margin-right: 60px;
    margin-left: 0px;
  }

  .div-block-9 {
    margin-right: 0px;
    margin-left: 55px;
  }

  .image-5, .image-5-2 {
    display: block;
    margin-left: auto;
    padding-left: 0;
    text-align: center;
  }

  .text-block {
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    margin-right: 140px;
    margin-left: 0px;
    padding-bottom: 80px;
    font-size: 150px;
  }
  .text-block2 {
    left: auto;
    top: auto;
    right: 27%;
    bottom: 0%;
    padding-bottom: 32px;
    font-size: 80px;
	line-height: 60px;
  }  

  .columns-7 {
    margin-left: 0px;
  }

  .heading-11 {
    margin-left: 0px;
	font-size: 50px;
	margin-top: -15px;
  }
   #mbparag.heading-11 {
    margin-left: 0px;
	font-size: 40px;
	line-height: 40px;
	margin-top: -25px;	   
   }

  .paragraph-18 {
    margin-left: 0px;
	margin-top: 10px;
  }

  .paragraph-19 {
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .column-14 {
	  margin-top: 0px;
  }
  .column-15 {
    padding-right: 70px;
    padding-left: 70px;
	margin-top: 40px;
  }

  .image-6 {
    top: 3%;
    max-width: 80px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 52px;
  }

  .paragraph-bigger {
    font-size: 10px;
	margin-bottom: 0;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .heading-jumbo {
    margin-bottom: 0px;
    font-size: 38px;
    line-height: 48px;
  }

  .menu {
    margin-left: 15px;
  }

  .navigation {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-button {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .menu-button.w--open {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .cta-wrap {
    padding-right: 15px;
    padding-left: 15px;
  }

  .intro-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    margin-top: -30px;
  }

  .intro-content.cc-homepage {
    margin-top: 200px;
  }
  
  .image-1 {
	  width: 55%;
  }

  .status-message.cc-no-data {
    width: 100%;
  }

  .contact-form-grid {
    width: 100%;
  }

  .our-contacts {
    width: 90%;
  }

  .team-members {
    grid-template-areas: "."
      "."
      "."
      "."
      "."
      ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
  }

  .project-details-grid {
    width: 100%;
  }

  .blog-detail-header-wrap {
    width: 100%;
    max-width: none;
  }

  .blog-item {
    width: 100%;
    max-width: none;
  }

  .heading {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 9px;
    line-height: 22px;
	margin-top: -10px;
  }

  .column {
    padding-right: 0px;
  }

  .heading-2 {
    margin-top: 60px;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
  }
  
  .heading-3 {
	font-size: 30px;
	padding-top: 0px;
	text-align: center;
  }

  .paragraph-5 {
    margin-left: 0px;
  }
  
  #quoted.paragraph-5 {
	font-size: 20px;
	line-height: 26px;
  }

  .heading-4 {
    color: #2e2e2c;
    font-size: 30px;
    line-height: 32px;
  }

  .div-block-2 {
    margin-right: 40px;
    margin-left: 40px;
  }

  .heading-7 {
    margin-right: 0px;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
  }

  .column-5 {
    padding-left: 0px;
  }

  .paragraph-8 {
    margin-right: 0px;
  }

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

  .heading-8 {
    font-size: 28px;
  }

  .heading-9 {
    font-size: 26px;
  }

  .paragraph-11 {
    font-size: 90px;
  }

  .heading-10 {
    display: block;
    font-size: 40px;
    line-height: 40px;
  }

  .paragraph-12 {
    margin-left: -60px;
  }

  .image-2 {
    padding-left: 0px;
  }

  .div-block-6 {
    margin-right: 30px;
    margin-left: 30px;
  }

  .div-block-7 {
    margin-right: 40px;
    margin-left: 40px;
  }

  .div-block-8 {
    margin-right: 40px;
    margin-left: 40px;
  }

  .div-block-9 {
    margin-right: 40px;
    margin-left: 40px;
  }

  .column-14 {
    padding-right: 50px;
    padding-left: 50px;
  }

  .text-block {
    margin-left: 0px;
    padding-bottom: 50px;
    padding-left: 15px;
    font-size: 90px;
  }

  .columns-7 {
    margin-left: 0px;
  }

  .heading-11 {
    margin-left: 0px;
    font-size: 40px;
    line-height: 40px;
  }

  .paragraph-18 {
    margin-left: 0px;
  }

  .paragraph-19 {
    margin-left: 0px;
  }

  .column-15 {
    padding-right: 50px;
    padding-left: 50px;
  }

  .image-6 {
    top: 2%;
    right: 2%;
    max-width: 50px;
  }
}

#goTotop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #BC4A22;
  color: #cfcfc5; 
  font-family: FontAwesome;
  cursor: pointer;
  padding: 20px;
  border-radius: 4px;
  animation: fadeIn linear 1s;
  -webkit-animation: fadeIn linear 1s;
  -moz-animation: fadeIn linear 1s;
  -o-animation: fadeIn linear 1s;
  -ms-animation: fadeIn linear 1s;    
}
#goTotop:before {
  content: "\f077"; 
  position:absolute;
  top: 3px; right: 0; left: 0;
  font-size: 0.8em;
}
#goTotop:hover {
  background-color: #555;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118e6-21b995fa {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118ec-21b995fa {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118f2-21b995fa {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118f8-21b995fa {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118fe-21b995fa {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b11905-21b995fa {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be705858e-ffb995fc {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-ffb995fc {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb08-ffb995fc {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb15-ffb995fc {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb22-ffb995fc {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-0bb995fe {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-0bb995fe {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-e5b995ff {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-e5b995ff {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-2fb99600 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-2fb99600 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_2878ffd7-26fe-9471-3c4e-7763e2d38cdc-1fb99601 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_2878ffd7-26fe-9471-3c4e-7763e2d38ce3-1fb99601 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-_2878ffd7-26fe-9471-3c4e-7763e2d38cea-1fb99601 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce9803c-05b99603 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce98043-05b99603 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce9804a-05b99603 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce98051-05b99603 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce98058-05b99603 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce9805f-05b99603 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 991px) {
  #w-node-ca1212d8-4247-8b87-bc90-543393b118f2-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f8-21b995fa {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118fe-21b995fa {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b11905-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  #w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-ffb995fc {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb15-ffb995fc {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb22-ffb995fc {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  #w-node-_421df62a-c217-12af-eee8-27f88a387928-0bb995fe {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-_421df62a-c217-12af-eee8-27f88a387928-e5b995ff {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-_421df62a-c217-12af-eee8-27f88a387928-2fb99600 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9804a-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98051-05b99603 {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98058-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9805f-05b99603 {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ca1212d8-4247-8b87-bc90-543393b118ec-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f2-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f8-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118fe-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b11905-21b995fa {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

@media screen and (max-width: 479px) {
  #w-node-c28cc763-f708-1e61-f196-6bd9fce98043-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9804a-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98051-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98058-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9805f-05b99603 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }
}

@font-face {
	font-family: 'Dubai Regular';
	font-style: normal;
	font-weight: 400;
	src: local('Dubai Regular'), url('Dubai-Regular.woff') format('woff'), url('../fonts/Dubai-Regular.ttf') format('truetype'), url('../fonts/Dubai-Regular.otf') format('opentype');
}
@font-face {
	font-family: 'Dubai Light';
	font-style: normal;
	font-weight: 300;
	src: local('Dubai Light'), url('Dubai-Light.woff') format('woff'), url('../fonts/Dubai-Light.ttf') format('truetype'), url('../fonts/Dubai-Light.otf') format('opentype');
}
@font-face {
    font-family: 'Dubai Medium';
    font-style: normal;
    font-weight: 500;
    src: local('Dubai Medium'), url('Dubai-Medium.woff') format('woff'), url('../fonts/Dubai-Medium.ttf') format('truetype'), url('../fonts/Dubai-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'Dubai Bold';
    font-style: normal;
    font-weight: 700;
    src: local('Dubai Bold'), url('Dubai-Bold.woff') format('woff'), url('../fonts/Dubai-Bold.ttf') format('truetype'), url('../fonts/Dubai-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'SF Mada Bold';
    font-style: normal;
    font-weight: 700;
    src: local('SF Mada Bold'), url('../fonts/SF-Mada-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Bygonest rustic';
  src: url('../fonts/Bygonest-Rustic-Thin.woff') format('woff'), url('../fonts/Bygonest-Rustic-Thin.ttf') format('truetype'), url('../fonts/Bygonest-Rustic-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bygonest rustic';
  src: url('../fonts/Bygonest-Rustic-Regular.woff') format('woff'), url('../fonts/Bygonest-Rustic-Regular.ttf') format('truetype'), url('../fonts/Bygonest-Rustic-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bygonest rustic';
  src: url('../fonts/Bygonest-Rustic-Bold.woff') format('woff'), url('../fonts/Bygonest-Rustic-Bold.ttf') format('truetype'), url('../fonts/Bygonest-Rustic-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hacen Sahafa';
  src: url('../fonts/Hacen-Sahafa.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabicLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabicMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabicBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabicBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}