/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop


$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInUp {
  0% {
    opacity: 0;
    transform: translateY(-3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit; }

:root {
  --base-font-size: 62.5%; }

html {
  /* 10px / 16px = 0.625 = 62.5% */
  font-size: calc(var(--base-font-size));
  scroll-behavior: smooth;
  overflow-x: hidden; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 62.5em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 31.25em) {
    html {
      font-size: 43.75%; } }

body {
  box-sizing: border-box; }

::selection {
  background-color: #D6A463;
  color: #fff; }

.rtl {
  text-align: right;
  flex-direction: row-reverse; }
  @media only screen and (max-width: 56.25em) {
    .rtl {
      text-align: center !important; } }

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  color: #D6A463;
  overflow-x: hidden; }

.heading-primary {
  color: #D6A463;
  margin-bottom: 6rem;
  text-align: left;
  animation: moveInUp 1s ease-out .2s;
  animation-fill-mode: backwards; }
  @media only screen and (max-width: 56.25em) {
    .heading-primary {
      text-align: center; } }
  .heading-primary--main {
    font-size: 5.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-wrap: pretty; }
    @media only screen and (max-width: 56.25em) {
      .heading-primary--main {
        font-size: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 5rem; } }
  .heading-primary--sub {
    font-family: "Mannali", sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1.5;
    text-wrap: pretty; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        font-size: 2.8rem; } }

.rtl {
  text-align: right;
  flex-direction: row-reverse; }

.heading-secondary {
  font-size: 3.6rem;
  font-weight: 600;
  color: #182933;
  letter-spacing: 1px;
  transition: all 0.2s;
  line-height: 1.4;
  margin-bottom: 3rem;
  text-wrap: pretty; }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      text-align: center; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 4rem; } }
  .heading-secondary-white {
    color: #fff; }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .05rem; }
  @media only screen and (max-width: 56.25em) {
    .heading-tertiary {
      text-align: center; } }
  @media only screen and (max-width: 37.5em) {
    .heading-tertiary {
      font-size: 3rem; } }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 6rem !important; } }

.u-margin-bottom-biggest {
  margin-bottom: 8rem !important; }

.u-margin-top-small {
  margin-top: 2rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.btn {
  padding: 15px 30px;
  border: 2px solid #D6A463;
  color: #D6A463;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  animation: moveInBottom 1s ease-out; }
  .btn:not(:last-child) {
    margin-right: 2rem; }
  .btn__fill {
    border: 2px solid #fff;
    background-color: #D6A463;
    color: #182933; }
  .btn__outline {
    color: #fff;
    border: 2px solid #fff; }

.btn--animated {
  animation: moveInBottom .5s ease-out .2s;
  animation-fill-mode: backwards; }

.btn:hover::after {
  transform: scale(1); }

.btn:hover {
  border-color: #fff;
  color: #fff; }

.service__card {
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s; }
  @media only screen and (max-width: 56.25em) {
    .service__card {
      margin: 0 auto;
      width: 80%; } }
  .service__card-img {
    width: 100%;
    height: auto;
    display: block; }
    .service__card-img:hover {
      transform: scale(1); }
  .service__card-content {
    height: 22rem;
    padding: 1rem;
    background-color: #182933;
    position: relative;
    overflow: hidden; }
    @media only screen and (max-width: 31.25em) {
      .service__card-content {
        height: auto; } }
    .service__card-content-text {
      height: 12rem; }
      @media only screen and (max-width: 56.25em) {
        .service__card-content-text {
          height: auto; } }
    @media only screen and (max-width: 56.25em) {
      .service__card-content {
        height: auto; } }
    .service__card-content-heading {
      font-size: 1.6rem;
      margin-bottom: 1rem; }
      @media only screen and (max-width: 56.25em) {
        .service__card-content-heading {
          font-size: 3.2rem; } }
    .service__card-content-description {
      font-size: 1.3rem;
      color: #fff;
      line-height: 1.5;
      opacity: 1; }
      @media only screen and (max-width: 56.25em) {
        .service__card-content-description {
          font-size: 2rem;
          line-height: 1.3;
          padding: 1rem; } }
  .service__card-button {
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 34px;
    font-size: 14px;
    font-weight: 600;
    background-color: transparent;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #D6A463 50%);
    color: #fff;
    border: none;
    border-bottom: 3px solid #D6A463;
    box-shadow: 0 0px 20px rgba(247, 247, 246, 0.3);
    transition: all 0.5s;
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
    background-size: 220%; }
    .service__card-button:hover {
      color: #182933;
      background-position: 100%; }

.mySlides {
  display: none; }

img {
  vertical-align: middle; }

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto; }

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 1.5rem;
  padding: 0.8rem 1.2rem;
  position: absolute;
  bottom: 0.8rem;
  width: 100%;
  text-align: center; }

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 1.2rem;
  padding: 0.8rem 1.2rem;
  position: absolute;
  top: 0; }

/* The dots/bullets/indicators */
.dot {
  height: 1.5rem;
  width: 1.5rem;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease; }

.active {
  background-color: #717171; }

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s; }

@keyframes fade {
  from {
    opacity: 0.4; }
  to {
    opacity: 1; } }

/* On smaller screens, decrease text size */
@media only screen and (max-width: 18.75em) {
  .text {
    font-size: 1.1rem; } }

.why-content-border-top {
  height: 17rem; }

.why-content-border-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 17rem; }

.why-content__description {
  font-size: 1.8rem;
  color: #182933;
  font-weight: 500;
  line-height: 1.5; }
  @media only screen and (max-width: 56.25em) {
    .why-content__description {
      text-align: center;
      font-size: 2.4rem; } }

.why-content__list {
  display: flex;
  gap: 3rem;
  margin-top: 3rem; }
  .why-content__list-box {
    display: flex;
    align-items: flex-end; }
    .why-content__list-box-icon {
      height: 6rem; }
  .why-content__list-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .why-content__list-text-main {
      font-size: 2.4rem;
      font-weight: 400;
      margin-bottom: 1rem; }
      @media only screen and (max-width: 56.25em) {
        .why-content__list-text-main {
          font-size: 2.8rem; } }
    .why-content__list-text-sub {
      font-size: 1.4rem;
      color: #020d19;
      font-weight: 400; }
      @media only screen and (max-width: 56.25em) {
        .why-content__list-text-sub {
          font-size: 1.8rem; } }

.composition-why {
  position: relative; }
  .composition-why__photo {
    width: 80%;
    box-shadow: 0 1.5rem 4rem rgba(2, 13, 25, 0.4);
    border-radius: 12px;
    position: absolute;
    z-index: 10;
    transition: all .2s;
    outline-offset: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .composition-why__photo {
        float: left;
        position: relative;
        width: 50%;
        box-shadow: 0 1.5rem 3rem rgba(2, 13, 25, 0.2); } }
    .composition-why__photo--p1 {
      right: 0;
      top: -9rem; }
      @media only screen and (max-width: 56.25em) {
        .composition-why__photo--p1 {
          right: -4rem;
          top: -14rem;
          transform: scale(1.2); } }
    .composition-why__photo--p2 {
      left: 0;
      top: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .composition-why__photo--p2 {
          left: -4rem;
          top: -3rem;
          transform: scale(1.2);
          z-index: 100; } }
    .composition-why__photo:hover {
      outline: 1.5rem solid #D6A463;
      transform: scale(1.05) translateY(-0.5rem);
      box-shadow: 0 2.5rem 4rem rgba(2, 13, 25, 0.5);
      z-index: 20; }
      @media only screen and (max-width: 56.25em) {
        .composition-why__photo:hover {
          outline: 0.5rem solid #D6A463;
          box-shadow: 0 2rem 4rem rgba(2, 13, 25, 0.5);
          z-index: 20; } }
  .composition-why:hover .composition-why__photo:not(:hover) {
    transform: scale(0.95); }

.composition-about {
  position: relative; }
  .composition-about__photo {
    width: 70%;
    box-shadow: 0 1.5rem 4rem rgba(2, 13, 25, 0.4);
    border-radius: 12px;
    position: absolute;
    z-index: 10;
    transition: all .2s;
    outline-offset: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .composition-about__photo {
        float: left;
        position: relative;
        width: 50%;
        box-shadow: 0 1.5rem 3rem rgba(2, 13, 25, 0.2); } }
    .composition-about__photo--p1 {
      left: 0;
      top: 10rem; }
      @media only screen and (max-width: 56.25em) {
        .composition-about__photo--p1 {
          top: 1rem;
          left: 10%;
          transform: scale(1.3); } }
    .composition-about__photo--p2 {
      right: 4rem;
      top: 25rem; }
      @media only screen and (max-width: 56.25em) {
        .composition-about__photo--p2 {
          top: 8rem;
          left: -10%;
          transform: translate(-50%, 0);
          transform: scale(1.2);
          z-index: 100; } }
    .composition-about__photo:hover {
      outline: 1.5rem solid #D6A463;
      transform: scale(1.05) translateY(-0.5rem);
      box-shadow: 0 2.5rem 4rem rgba(2, 13, 25, 0.5);
      z-index: 20; }
  .composition-about:hover .composition-about__photo:not(:hover) {
    transform: scale(0.95); }

.about-content {
  height: 58rem; }
  @media only screen and (max-width: 56.25em) {
    .about-content {
      text-align: center;
      margin-top: 12rem;
      height: auto; } }
  .about-content__points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .about-content__points {
        grid-gap: 1rem; } }
  .about-content__point {
    display: flex;
    align-items: center;
    gap: 1rem; }
    @media only screen and (max-width: 56.25em) {
      .about-content__point {
        gap: .5rem; } }
    @media only screen and (max-width: 56.25em) {
      .about-content__point {
        column-gap: .2rem; } }
    .about-content__point__img {
      height: 2rem; }
    .about-content__point__description {
      font-size: 1.4rem;
      font-weight: 800; }
      @media only screen and (max-width: 31.25em) {
        .about-content__point__description {
          font-size: 1.3rem; } }
  .about-content__description {
    font-size: 1.8rem;
    color: #182933;
    font-weight: 500;
    line-height: 1.5; }
    @media only screen and (max-width: 37.5em) {
      .about-content__description {
        font-size: 2rem; } }

.about-detail {
  display: flex;
  align-items: flex-end;
  position: relative;
  margin: 0 auto;
  gap: 2rem;
  height: 100%; }
  @media only screen and (max-width: 56.25em) {
    .about-detail {
      justify-content: center; } }
  .about-detail-icon-img {
    width: 8rem;
    z-index: 2; }
  .about-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #182933; }
    @media only screen and (max-width: 56.25em) {
      .about-detail-content {
        width: 50%; } }
    .about-detail-content-main {
      font-size: 4rem; }
    .about-detail-content-sub {
      font-size: 3rem;
      margin-bottom: 0; }

.composition {
  position: relative;
  animation: moveInRight 1s ease-out .2s;
  animation-fill-mode: backwards; }
  @media only screen and (max-width: 56.25em) {
    .composition {
      animation: moveInBottom 1s ease-out .2s;
      animation-fill-mode: backwards; } }
  .composition__photo {
    width: 50%;
    box-shadow: 0 1.5rem 4rem rgba(2, 13, 25, 0.4);
    border-radius: 2px;
    position: absolute;
    z-index: 10;
    transition: all .2s;
    outline-offset: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .composition__photo {
        float: left;
        position: relative;
        width: 33%;
        box-shadow: 0 1.5rem 3rem rgba(2, 13, 25, 0.2); } }
    .composition__photo--p1 {
      left: 10%;
      top: 0; }
      @media only screen and (max-width: 56.25em) {
        .composition__photo--p1 {
          top: 0;
          left: 0;
          transform: scale(1.2);
          border-radius: 0; } }
    .composition__photo--p2 {
      right: 0;
      top: 12rem; }
      @media only screen and (max-width: 56.25em) {
        .composition__photo--p2 {
          top: -1rem;
          transform: scale(1.3);
          z-index: 100;
          border-radius: 0; } }
    .composition__photo--p3 {
      left: 9rem;
      top: 23rem; }
      @media only screen and (max-width: 56.25em) {
        .composition__photo--p3 {
          top: 0;
          left: 0;
          transform: scale(1.2);
          border-radius: 0px; } }
    .composition__photo:hover {
      outline: 1.5rem solid #D6A463;
      transform: scale(1.05) translateY(-0.5rem);
      box-shadow: 0 2.5rem 4rem rgba(2, 13, 25, 0.5);
      z-index: 20; }
  .composition:hover .composition__photo:not(:hover) {
    transform: scale(0.95); }

@media only screen and (max-width: 56.25em) {
  .work-box {
    width: 80%;
    margin: 0 auto; } }

.work-box-img-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
  border: 5px double #D6A463; }

.work-box-img {
  height: 5rem;
  display: block;
  transition: all 0.3s; }
  .work-box-img:hover {
    transform: scale(1.3); }

.work-box-text-main {
  font-size: 3rem; }
  @media only screen and (max-width: 56.25em) {
    .work-box-text-main {
      font-size: 4rem; } }

.work-box-text-sub {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400; }
  @media only screen and (max-width: 56.25em) {
    .work-box-text-sub {
      font-size: 2rem; } }

.header {
  background-color: #182933;
  padding: 16rem 2rem 18rem 2rem;
  position: relative; }
  @media only screen and (max-width: 75em) {
    .header {
      padding: 16rem 2rem 5rem 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .header {
      text-align: center;
      padding: 20rem 2rem; } }
  .header__logo-box {
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 2; }
  .header__logo {
    height: 6rem; }
  .header__text-box {
    color: #fff; }

.select {
  position: fixed;
  display: inline-block;
  top: 3rem;
  right: 3rem;
  z-index: 1000; }

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 10rem;
  padding: 12px;
  font-family: inherit;
  border: none;
  margin: 0;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 10px;
  background-color: #D6A463;
  color: #182933;
  outline: none; }
  @media only screen and (max-width: 56.25em) {
    .select select {
      font-size: 1.6rem; } }

.select::after {
  content: "\002304";
  position: absolute;
  top: 40%;
  right: 13px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.8rem;
  color: #333; }
  @media only screen and (max-width: 56.25em) {
    .select::after {
      font-size: 2rem; } }

.row {
  max-width: 114rem;
  margin: 0 auto;
  position: relative; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media only screen and (max-width: 75em) {
      .row:not(:last-child) {
        margin-bottom: 4rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 50rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem)/2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem)/3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem)/3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem)/4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem)/4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem)/4) + 2 * 6rem); }

@media only screen and (max-width: 56.25em) {
  .footer .row {
    max-width: 90%; } }

.footer {
  position: relative;
  background-color: #182933;
  padding: 10rem 0 0 0; }
  @media only screen and (max-width: 75em) {
    .footer {
      padding: 5rem 2rem 0 2rem; } }
  .footer__box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 240px; }
    @media only screen and (max-width: 62.5em) {
      .footer__box {
        height: 200px; } }
    @media only screen and (max-width: 56.25em) {
      .footer__box {
        height: 150px; } }
    @media only screen and (max-width: 56.25em) {
      .footer__box {
        height: auto; } }
  .footer__logo-box {
    display: flex;
    margin-bottom: 2rem;
    width: 80%; }
    @media only screen and (max-width: 37.5em) {
      .footer__logo-box {
        width: 100%; } }
  .footer__logo {
    display: block; }
  .footer__logo-image {
    height: 8rem; }
  .footer__logo-text {
    color: #fff;
    font-size: 1.4rem;
    width: 80%;
    text-wrap: pretty;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo-text {
        font-size: 1.8rem;
        width: 100%; } }
  .footer__col-heading {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.8rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__col-heading {
        font-size: 2.6rem; } }
  .footer__nav-col {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media only screen and (max-width: 62.5em) {
      .footer__nav-col {
        height: 200px; } }
    @media only screen and (max-width: 56.25em) {
      .footer__nav-col {
        height: 150px; } }
  .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem; }
  .footer-link:link, .footer-link:visited {
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.3s; }
    @media only screen and (max-width: 56.25em) {
      .footer-link:link, .footer-link:visited {
        font-size: 2rem; } }
  .footer-link:hover, .footer-link:active {
    color: #D6A463; }
  .footer-link-gap {
    font-size: 1.6rem;
    color: #fff; }
  .footer__social-icons {
    display: flex;
    gap: 1rem;
    width: 80%; }
    @media only screen and (max-width: 37.5em) {
      .footer__social-icons {
        width: 100%; } }
    .footer__social-icons-links {
      display: inline-block; }
  .footer__icon-box {
    height: 2.4rem;
    width: 2.4rem;
    color: #fff; }
    .footer__icon-box:hover {
      color: #D6A463; }
  .footer__address {
    display: flex;
    gap: 1rem; }
    .footer__address-text {
      color: #fff;
      font-size: 1.6rem;
      font-style: normal;
      line-height: 2;
      width: 80%;
      text-wrap: pretty; }
  .footer__contact-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 240px; }
    @media only screen and (max-width: 62.5em) {
      .footer__contact-box {
        height: 200px; } }
    @media only screen and (max-width: 56.25em) {
      .footer__contact-box {
        height: 150px; } }
  .footer__contact-us-box {
    display: flex;
    flex-direction: column;
    gap: 2rem; }
  .footer__contact {
    display: flex;
    align-items: center;
    gap: 1rem; }
    .footer__contact-icon {
      height: 1.5rem;
      width: 1.5rem;
      color: #182933;
      background-color: white;
      padding: 1rem;
      border-radius: 50%; }
  .footer__copyright {
    display: flex;
    justify-content: center;
    border-top: 1px solid #f3f4f6;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 1px;
    padding: 1rem 0 0 0;
    color: #fff; }
    @media only screen and (max-width: 37.5em) {
      .footer__copyright {
        flex-direction: column;
        gap: 1rem;
        font-size: 1.8rem; } }
    .footer__copyright-gap {
      margin: 0 0 1rem 0.5rem;
      font-size: 1.2rem;
      text-decoration: none !important; }
      @media only screen and (max-width: 37.5em) {
        .footer__copyright-gap {
          font-size: 1.8rem; } }
    .footer__copyright-link {
      color: #fff;
      display: inline-block;
      margin-bottom: 2rem;
      transition: all 0.3s; }
      @media only screen and (max-width: 37.5em) {
        .footer__copyright-link {
          font-size: 1.8rem; } }
      .footer__copyright-link:hover {
        color: #D6A463; }
  @media only screen and (max-width: 37.5em) {
    .footer__remove {
      display: none; } }

@media only screen and (max-width: 56.25em) {
  .footer .rtl {
    text-align: right !important; } }

.section-about {
  padding: 15rem 0 6rem 0;
  background-color: #f3f4f6; }
  @media only screen and (max-width: 75em) {
    .section-about {
      padding: 5rem 2rem 6rem 2rem; } }

.section-about .row .col-1-of-2-2 {
  float: right !important;
  width: 45%; }

.section-services {
  padding: 10rem 0; }
  @media only screen and (max-width: 75em) {
    .section-services {
      padding: 5rem 2rem; } }

.section-why-choose-us {
  position: relative;
  background-color: #f3f4f6;
  padding: 5rem 0; }
  @media only screen and (max-width: 75em) {
    .section-why-choose-us {
      padding: 5rem 2rem; } }

.section-work-process {
  padding: 10rem 0;
  background-size: cover;
  background-position: top;
  background-image: linear-gradient(to right bottom, rgba(24, 41, 51, 0.85), rgba(24, 41, 51, 0.85)), url(/img/work-progress.png); }
  @media only screen and (max-width: 75em) {
    .section-work-process {
      padding: 5rem 2rem; } }
