@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200&display=swap");
html {
  font-size: 10px;
}

*,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  background: #000000;
  color: #ffffff;
  font-size: 1.6rem;
  background: #000000;
}

body.menuOpen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home {
  background: url("../images/s2_bg.png") no-repeat;
  background-position: 0 108rem;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  color: #ffffff;
  outline: inherit;
}

button {
  border: none;
  outline: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #C39F55;
}

::-moz-selection {
  background: #C39F55;
  color: #000000;
}

::selection {
  background: #C39F55;
  color: #000000;
}

img {
  max-width: 100%;
}

ul li {
  list-style: none;
}

main {
  overflow: hidden;
}

main > section:nth-child(2) {
  padding-top: 25rem;
}

@media screen and (max-width: 768px) {
  main > section:nth-child(2) {
    padding-top: 15rem;
  }
}

.fluid-container {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 120rem;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0px 1rem;
  }
}

.innerPage .logo.d--mobile {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.text-left {
  text-align: left;
}

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

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

.d-flex, .btn, #header nav .mobile--icon, .about--s2 #management .item, .about--s2 #teams .item, .services--hightlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: -ms-grid;
  display: grid;
}

.d--desktop-inline {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .d--desktop-inline {
    display: none;
  }
}

.d--desktop {
  display: block;
}

@media screen and (max-width: 768px) {
  .d--desktop {
    display: none;
  }
}

.d--mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .d--mobile {
    display: block;
  }
}

.mx-auto, #header nav, .section--one__content, .about--s2 .heading, .about--s2 #management, .about--s2 #teams, .services--s1 .container, .services--s2 .heading, .contact, #footer p {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.m-auto {
  margin: auto;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.column-gap-1 {
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.column-gap-2 {
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
}

.column-gap-3 {
  -webkit-column-gap: 3rem;
          column-gap: 3rem;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.row-gap-3 {
  row-gap: 3rem;
}

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

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

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

.justify-content-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-content-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.align-items-center, .btn, .about--s2 #management .item, .about--s2 #teams .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.btn {
  cursor: pointer;
  width: 169.7px;
  height: 50px;
  font-family: "Source Sans Pro";
  font-weight: 200;
  font-size: 2.5rem;
  line-height: 31px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

@media screen and (max-width: 768px) {
  .btn {
    width: 13rem;
    height: 3.83rem;
    font-size: 1.8rem;
    line-height: 23px;
  }
}

.btn--solid {
  background: #C39F55;
  color: #ffffff;
}

.transition, #header nav ul li a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 100;
}

#header.scroll-up {
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 100%);
  top: 0rem;
}

#header.scroll-down {
  top: -110%;
}

#header nav {
  max-width: 1022.39px;
  margin-top: 5.4rem;
  height: 9.8rem;
  margin-bottom: 5.4rem;
}

@media screen and (max-width: 768px) {
  #header nav {
    margin-top: 2.5rem;
    height: 45.21px;
    margin-bottom: 123.7px;
  }
}

#header nav .mobile--icon {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}

#header nav .mobile--icon span {
  width: 23px;
  height: 2px;
  background: #C39F55;
}

#header nav .logo img {
  height: 98px;
}

#header nav ul {
  -webkit-column-gap: 3.9rem;
          column-gap: 3.9rem;
}

#header nav ul li a {
  font-size: 24px;
  line-height: 29.26px;
}

#header nav ul li:hover a {
  color: #C39F55;
}

#header nav ul li.active a {
  color: #C39F55;
}

@media screen and (max-width: 768px) {
  #header nav {
    max-width: 299px;
  }
  #header nav .logo img {
    max-width: 5rem;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  #header nav .logo img {
    height: 4.521rem;
  }
}

@media screen and (max-width: 768px) {
  #header nav ul {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    row-gap: 10vh;
    z-index: 50;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.8);
  }
  #header nav ul .d--mobile {
    position: absolute;
    top: 3.7rem;
    left: 3rem;
    width: 23px;
    height: 20px;
  }
  #header nav ul .d--mobile span {
    position: absolute;
    width: 23px;
    height: 2px;
    background: #C39F55;
  }
  #header nav ul .d--mobile span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header nav ul .d--mobile span:nth-child(2) {
    top: 10px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.section--one {
  background: url("../images/s1_bg.jpeg") no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
  height: 108rem;
}

.section--one__content {
  max-width: 1022.39px;
}

.section--one__content .image {
  max-width: 148.2px;
  height: 134px;
  margin-left: 2rem;
  margin-bottom: 4.1rem;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.section--one__content .heading {
  max-width: 38rem;
  margin-bottom: 1.6rem;
}

.section--one__content .heading h1, .section--one__content .heading h2, .section--one__content .heading h3, .section--one__content .heading h4, .section--one__content .heading h5, .section--one__content .heading h6 {
  font-weight: 500;
  font-size: 38px;
  line-height: 46px;
  text-transform: uppercase;
  color: #C39F55;
}

.section--one__content .body {
  max-width: 83.5rem;
  font-size: 20px;
  line-height: 25px;
}

@media screen and (max-width: 768px) {
  .section--one {
    background-size: 983px 553px;
    background-position: -8rem bottom;
    height: 70.6rem;
  }
  .section--one__content {
    max-width: 27.7rem;
  }
  .section--one__content .heading {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .section--one__content .heading h1, .section--one__content .heading h2, .section--one__content .heading h3, .section--one__content .heading h4, .section--one__content .heading h5, .section--one__content .heading h6 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .section--one__content .body {
    max-width: 276px;
    font-size: 14px;
    line-height: 18px;
    text-align: justify;
  }
}

.section--two {
  padding-top: 10.4rem;
}

.section--two__content {
  position: relative;
  min-height: 993.13px;
}

.section--two__content .item {
  position: absolute;
  height: 383px;
}

.section--two__content .item--3, .section--two__content .item--4, .section--two__content .item--5 {
  height: 385.02px;
}

.section--two__content .item--content {
  position: relative;
  z-index: 10;
}

.section--two__content .item::before {
  content: "";
  position: absolute;
  width: 358.53px;
  height: 383px;
}

.section--two__content .item--heading h1, .section--two__content .item--heading h2, .section--two__content .item--heading h3, .section--two__content .item--heading h4, .section--two__content .item--heading h5, .section--two__content .item--heading h6 {
  font-weight: 300;
  font-size: 2.7rem;
  line-height: 33px;
  margin-bottom: 1.2rem;
}

.section--two__content .item--body {
  max-width: 449px;
  font-family: "Source Sans Pro";
  font-weight: 200;
  font-size: 1.8rem;
  line-height: 23px;
  margin: 0;
}

.section--two__content .item:nth-child(1) {
  width: 540.27px;
  top: 0;
  left: 0;
}

.section--two__content .item:nth-child(1)::before {
  background: url("../images/s2-icon-1.svg") no-repeat;
  top: 0px;
  right: 0px;
}

.section--two__content .item:nth-child(1) .item--content {
  padding-top: 111px;
}

.section--two__content .item:nth-child(2) {
  width: 530.27px;
  top: 0;
  right: 0;
}

.section--two__content .item:nth-child(2) .item--body {
  max-width: 414px;
}

.section--two__content .item:nth-child(2)::before {
  background: url("../images/s2-icon-2.svg") no-repeat;
  top: 0px;
  left: 0px;
}

.section--two__content .item:nth-child(2) .item--content {
  padding-left: 115px;
  padding-top: 149px;
}

.section--two__content .item:nth-child(3) {
  width: 604px;
  top: 299px;
  left: 385px;
}

.section--two__content .item:nth-child(3) .item--body {
  max-width: 534px;
}

.section--two__content .item:nth-child(3)::before {
  background: url("../images/s2-icon-3.svg") no-repeat;
}

.section--two__content .item:nth-child(3) .item--content {
  padding-top: 114px;
  padding-left: 69px;
}

.section--two__content .item:nth-child(4) {
  width: 534.27px;
  top: 604px;
  left: 0;
}

.section--two__content .item:nth-child(4) .item--body {
  max-width: 444px;
}

.section--two__content .item:nth-child(4)::before {
  background: url("../images/s2-icon-4.svg") no-repeat;
  top: 0px;
  right: 0px;
}

.section--two__content .item:nth-child(4) .item--content {
  padding-top: 100px;
}

.section--two__content .item:nth-child(4) .item--content h1, .section--two__content .item:nth-child(4) .item--content h2, .section--two__content .item:nth-child(4) .item--content h3, .section--two__content .item:nth-child(4) .item--content h4, .section--two__content .item:nth-child(4) .item--content h5, .section--two__content .item:nth-child(4) .item--content h6 {
  padding-left: 265px;
}

.section--two__content .item:nth-child(5) {
  width: 529.27px;
  top: 604px;
  right: 0;
}

.section--two__content .item:nth-child(5) .item--body {
  max-width: 414px;
}

.section--two__content .item:nth-child(5)::before {
  background: url("../images/s2-icon-5.svg") no-repeat;
  top: 0px;
  left: 0px;
}

.section--two__content .item:nth-child(5) .item--content {
  padding-left: 79px;
  padding-top: 111px;
}

@media screen and (max-width: 768px) {
  .section--two__content {
    min-height: 1326px;
  }
  .section--two__content .item {
    position: relative;
    height: auto;
    min-height: 17.8rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.8rem;
  }
  .section--two__content .item::before {
    width: 163.59px;
    height: 174.76px;
  }
  .section--two__content .item:nth-child(1)::before, .section--two__content .item:nth-child(2)::before, .section--two__content .item:nth-child(3)::before, .section--two__content .item:nth-child(4)::before, .section--two__content .item:nth-child(5)::before {
    background: none;
  }
  .section--two__content .item:nth-child(1n)::before {
    background: url("../images/s2_mobile_icon_right.svg") no-repeat;
  }
  .section--two__content .item:nth-child(2n)::before {
    background: url("../images/s2_mobile_icon_left.svg") no-repeat;
  }
  .section--two__content .item--heading h1, .section--two__content .item--heading h2, .section--two__content .item--heading h3, .section--two__content .item--heading h4, .section--two__content .item--heading h5, .section--two__content .item--heading h6 {
    max-width: 17.5rem;
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 4px;
  }
  .section--two__content .item--body {
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
    max-width: 21.9rem;
  }
  .section--two__content .item:nth-child(1) {
    width: 304.06px;
  }
  .section--two__content .item:nth-child(1)::before {
    top: 0px;
    right: 0px;
  }
  .section--two__content .item:nth-child(1) .item--content {
    padding-top: 59px;
  }
  .section--two__content .item:nth-child(2) {
    width: 300px;
    top: 0;
    right: 0;
  }
  .section--two__content .item:nth-child(2) .item--body {
    max-width: 219px;
  }
  .section--two__content .item:nth-child(2)::before {
    top: 0px;
    left: 0px;
  }
  .section--two__content .item:nth-child(2) .item--content {
    margin: 0;
  }
  .section--two__content .item:nth-child(2) .item--content {
    padding-top: 54px;
    padding-left: 81px;
  }
  .section--two__content .item:nth-child(3) {
    width: 304.06px;
    top: 0px;
    left: 0px;
  }
  .section--two__content .item:nth-child(3) .item--body {
    max-width: 219;
  }
  .section--two__content .item:nth-child(3)::before {
    right: 0;
  }
  .section--two__content .item:nth-child(3) .item--content {
    padding-right: 85px;
    padding-top: 59px;
    padding-left: 0px;
  }
  .section--two__content .item:nth-child(4) {
    width: 312px;
    top: 0px;
    left: 0;
  }
  .section--two__content .item:nth-child(4) .item--body {
    max-width: 219px;
  }
  .section--two__content .item:nth-child(4)::before {
    top: 0px;
    left: 0px;
  }
  .section--two__content .item:nth-child(4) .item--content {
    padding-left: 93px;
    padding-top: 54px;
  }
  .section--two__content .item:nth-child(4) .item--content h1, .section--two__content .item:nth-child(4) .item--content h2, .section--two__content .item:nth-child(4) .item--content h3, .section--two__content .item:nth-child(4) .item--content h4, .section--two__content .item:nth-child(4) .item--content h5, .section--two__content .item:nth-child(4) .item--content h6 {
    padding-left: 0;
  }
  .section--two__content .item:nth-child(5) {
    width: 304.06px;
    top: 0px;
    right: 0;
  }
  .section--two__content .item:nth-child(5) .item--body {
    max-width: 219px;
  }
  .section--two__content .item:nth-child(5)::before {
    top: 0px;
    right: 0px;
    left: initial;
  }
  .section--two__content .item:nth-child(5) .item--content {
    padding-top: 58px;
    padding-left: 0;
  }
}

.about {
  background: url("../images/about-s2__bg.png") no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: 0 1240px;
  object-fit: cover;
}

.about--s1 {
  background: url("../images/about-s1__bg.png") no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center bottom;
}

.about--s1__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 383px;
  position: relative;
  max-width: 932px;
  padding-left: 97px;
}

.about--s1__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 358.53px;
  height: inherit;
  background: url("../images/about-s1__icon.svg") no-repeat;
}

.about--s1__content .heading h1, .about--s1__content .heading h2, .about--s1__content .heading h3, .about--s1__content .heading h4, .about--s1__content .heading h5, .about--s1__content .heading h6 {
  font-family: "Source Sans Pro";
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 40px;
}

.about--s1__content .body {
  max-width: 835px;
  font-weight: 300;
}

.about--s2 .heading {
  position: relative;
  width: 329px;
  height: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 39px;
}

.about--s2 .heading h1, .about--s2 .heading h2, .about--s2 .heading h3, .about--s2 .heading h4, .about--s2 .heading h5, .about--s2 .heading h6 {
  font-weight: 300;
  font-size: 38px;
  line-height: 46px;
  text-transform: uppercase;
  margin: auto;
}

.about--s2 .heading::before {
  position: absolute;
  content: "";
  background: url("../images/about-s2__icon.svg") no-repeat;
  background-size: cover;
  width: 173.18px;
  height: 185px;
  top: 0;
  left: 0;
}

.about--s2 .heading.reverse {
  padding-right: 39px;
}

.about--s2 .heading.reverse::before {
  left: auto;
  right: 0;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.about--s2 #management {
  margin-top: 34px;
  margin-bottom: 105px;
  max-width: 964px;
}

.about--s2 #management .item--body {
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about--s2 #management .item--title {
  margin-bottom: 2.7rem;
}

.about--s2 #management .item--title h1, .about--s2 #management .item--title h2, .about--s2 #management .item--title h3, .about--s2 #management .item--title h4, .about--s2 #management .item--title h5, .about--s2 #management .item--title h6 {
  font-weight: 500;
  font-size: 27px;
  line-height: 33px;
}

.about--s2 #management .item--image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 26rem;
      flex-basis: 26rem;
  margin-right: 2rem;
}

.about--s2 #management .item--desc__short {
  color: #C39F55;
}

.about--s2 #management .item--desc__long {
  margin-top: 2.2rem;
  display: none;
}

.about--s2 #management .item--desc__long p {
  margin-bottom: 1rem;
}

.about--s2 #management .item--accordion {
  display: inline-block;
  text-align: center;
  margin-top: 33px;
}

.about--s2 #management .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about--s2 #management .item:nth-child(2n) .item--image {
  margin-left: 2rem;
}

.about--s2 #teams {
  width: 1018px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10rem;
}

.about--s2 #teams .item {
  position: relative;
  width: 100%;
  -webkit-column-gap: 28px;
          column-gap: 28px;
  row-gap: 46px;
  border-bottom: 1px solid #C39F55;
  margin: 24px auto;
  padding-left: 51px;
  padding-right: 51px;
  padding-bottom: 46px;
}

.about--s2 #teams .item:nth-child(1) {
  margin-top: 0;
}

.about--s2 #teams .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.about--s2 #teams .item--image {
  width: 130px;
  height: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.about--s2 #teams .item--title h1, .about--s2 #teams .item--title h2, .about--s2 #teams .item--title h3, .about--s2 #teams .item--title h4, .about--s2 #teams .item--title h5, .about--s2 #teams .item--title h6 {
  font-weight: 500;
  font-size: 27px;
  line-height: 33px;
}

.about--s2 #teams .item--subHeading {
  margin-bottom: 7px;
}

.about--s2 #teams .item--subHeading p {
  color: #C39F55;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 27px;
}

.about--s2 #teams .item--desc p {
  font-weight: 200;
  font-size: 18px;
  line-height: 23px;
}

.about--s2 #teams .item--accordion {
  position: absolute;
  top: 50%;
  right: 51px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .about--s1 {
    background-size: 773px 435px;
    height: 600px;
  }
  .about--s1__content {
    height: 194px;
    padding-top: 56px;
    padding-left: 98px;
    max-width: 360px;
    padding-left: 97px;
  }
  .about--s1__content::before {
    top: 0;
    left: 0;
    width: 165.06px;
    height: 176.77px;
    background: url("../images/about--s1--mobile--icon.svg") no-repeat;
  }
  .about--s1__content .heading {
    margin-bottom: 0;
  }
  .about--s1__content .heading h1, .about--s1__content .heading h2, .about--s1__content .heading h3, .about--s1__content .heading h4, .about--s1__content .heading h5, .about--s1__content .heading h6 {
    font-size: 26px;
    line-height: 33px;
  }
  .about--s1__content .body {
    max-width: 262px;
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
  }
  .about--s2 .heading {
    width: 162px;
    height: 77px;
    padding-left: 19px;
  }
  .about--s2 .heading h1, .about--s2 .heading h2, .about--s2 .heading h3, .about--s2 .heading h4, .about--s2 .heading h5, .about--s2 .heading h6 {
    font-size: 18px;
    line-height: 22px;
  }
  .about--s2 .heading::before {
    width: 72.08px;
    height: 77px;
  }
  .about--s2 .heading.reverse {
    padding-right: 39px;
    width: 100px;
    padding-left: 0;
  }
  .about--s2 .heading.reverse::before {
    left: auto;
    right: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  .about--s2 #management {
    margin-top: 34px;
    margin-bottom: 105px;
    max-width: 964px;
  }
  .about--s2 #management .item {
    margin-bottom: 4.1rem;
    min-height: 147px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about--s2 #management .item--body {
    width: 20rem;
  }
  .about--s2 #management .item--title {
    margin-bottom: 0;
  }
  .about--s2 #management .item--title h1, .about--s2 #management .item--title h2, .about--s2 #management .item--title h3, .about--s2 #management .item--title h4, .about--s2 #management .item--title h5, .about--s2 #management .item--title h6 {
    font-size: 18px;
    line-height: 22px;
  }
  .about--s2 #management .item--image {
    -ms-flex-preferred-size: 11.7rem;
        flex-basis: 11.7rem;
    margin-right: 1.4rem;
  }
  .about--s2 #management .item--desc__long {
    margin-top: 1rem;
  }
  .about--s2 #management .item--accordion {
    margin-top: 23px;
  }
  .about--s2 #management .item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .about--s2 #management .item:nth-child(2n) .item--image {
    margin-left: 0rem;
  }
  .about--s2 #teams {
    width: 100%;
    max-width: 347px;
    margin-top: 3.1rem;
  }
  .about--s2 #teams .item {
    -webkit-column-gap: 12px;
            column-gap: 12px;
    row-gap: 11px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0px 41px 16px;
  }
  .about--s2 #teams .item--image {
    width: 65px;
    height: 75px;
  }
  .about--s2 #teams .item--title {
    max-width: 135px;
  }
  .about--s2 #teams .item--title h1, .about--s2 #teams .item--title h2, .about--s2 #teams .item--title h3, .about--s2 #teams .item--title h4, .about--s2 #teams .item--title h5, .about--s2 #teams .item--title h6 {
    font-size: 16px;
    line-height: 20px;
  }
  .about--s2 #teams .item--subHeading p {
    font-size: 12px;
    line-height: 15px;
  }
  .about--s2 #teams .item--desc br {
    display: none;
  }
  .about--s2 #teams .item--desc p {
    font-weight: 200;
    font-size: 18px;
    line-height: 23px;
  }
  .about--s2 #teams .item--accordion {
    right: 1rem;
  }
  .about--s2 #teams .item--accordion img {
    width: 48.93px;
    height: 14.83px;
  }
}

.services--s1 {
  height: 1277px;
  background: url("../images/services--bg.png") no-repeat;
  background-position: center bottom;
  background-size: cover;
  margin-top: -16rem;
}

.services--s1:nth-child(2) {
  margin-top: 0;
}

.services--s1__NoBg {
  background: none;
  height: auto;
}

.services--s1 .container {
  width: 90.3rem;
  padding: 0;
}

.services--content h1, .services--content h2, .services--content h3, .services--content h4, .services--content h5, .services--content h6 {
  font-weight: 300;
  font-size: 64px;
  line-height: 78px;
  margin-bottom: 2.1rem;
}

.services--content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 25px;
}

.services--hightlight {
  position: relative;
  margin-top: 70px;
  padding-top: 4.3rem;
  padding-left: 9.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services--hightlight::before {
  content: "";
  width: 118.33px;
  height: 126.85px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/services--highlight__icon.svg") no-repeat;
  background-size: cover;
}

.services--hightlight h1, .services--hightlight h2, .services--hightlight h3, .services--hightlight h4, .services--hightlight h5, .services--hightlight h6 {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
}

.services--hightlight p {
  max-width: 706px;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
}

.services .due-diligence {
  margin-top: 50px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .services--s1 {
    background-size: 674px 379px;
    background-position: center bottom;
    margin-top: 0rem;
    height: 70rem;
  }
  .services--s1 .container {
    width: 329px;
  }
  .services--s1__NoBg {
    background: none;
    height: auto;
  }
  .services--content {
    margin-left: auto;
    margin-right: auto;
  }
  .services--content h1, .services--content h2, .services--content h3, .services--content h4, .services--content h5, .services--content h6 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 0.7rem;
  }
  .services--content p {
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
  }
  .services--hightlight {
    width: 324px;
    margin-top: 2.8rem;
    padding-top: 2.9rem;
    padding-left: 5.5rem;
  }
  .services--hightlight::before {
    content: "";
    width: 74.25px;
    height: 79.76px;
  }
  .services--hightlight h1, .services--hightlight h2, .services--hightlight h3, .services--hightlight h4, .services--hightlight h5, .services--hightlight h6 {
    ffont-size: 12px;
    line-height: 15px;
    text-align: justify;
  }
  .services--hightlight p {
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
  }
  .services .due-diligence {
    margin-top: 20px;
    font-size: 13px;
  }
}

.services--content .heading-2 {
  font-size: 38px;
  line-height: normal;
  margin-bottom: 20px;
  font-weight: 500;
}

.services--s2 .heading {
  position: relative;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}

.services--s2 .heading h1, .services--s2 .heading h2, .services--s2 .heading h3, .services--s2 .heading h4, .services--s2 .heading h5, .services--s2 .heading h6 {
  font-weight: 300;
  font-size: 38px;
  line-height: 46px;
  margin-left: 80px;
  margin-top: 88px;
  text-transform: uppercase;
}

.services--s2 .whatWeDoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 0px;
}

.services--s2 .whatWeDoBox .item {
  width: calc(100% / 3);
  position: relative;
  padding: 0 65px;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
}

.services--s2 .whatWeDoBox .item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  border: 0.5px solid #C39F55;
  height: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services--s2 .whatWeDoBox .item:last-child::after, .services--s2 .whatWeDoBox .item:nth-child(3)::after {
  border-color: transparent;
}

.services--s2 .whatWeDoBox .item img {
  margin-bottom: 15px;
}

.services--s2 .whatWeDoBox2 {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 40px;
}

.services--s2 .whatWeDoBox2 .item {
  padding: 0px 28px;
}

.services--s2 .whatWeDoBox2 .item::after {
  border: none;
}

.services--s2 .whatWeDoBox2 .line {
  position: relative;
}

.services--s2 .whatWeDoBox2 .line:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  border: 0.5px solid #C39F55;
  height: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .services--s2 .heading {
    margin: 32px;
  }
  .services--s2 .heading h2 {
    font-size: 23px;
    margin-left: 0px;
    margin-top: 0px;
  }
  .services--s2 .whatWeDoBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services--s2 .whatWeDoBox .item {
    width: 85%;
    font-size: 14px;
  }
  .services--s2 .whatWeDoBox .item::after {
    border: none;
  }
  .services--s2 .line {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .services--content h1 {
    font-size: 25px;
  }
  .services--content .heading-2 {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .section--two__content {
    min-height: auto;
    margin-bottom: 50px;
  }
}

.contactPage {
  background: url(../images/s2_bg.png) no-repeat;
  background-position: center top;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact {
  max-width: 76.5rem;
  margin-top: 13.6rem;
}

.contact a:hover {
  color: #C39F55;
}

@media screen and (max-width: 768px) {
  .contact {
    max-width: 372px;
  }
  .contact .container > div {
    padding-left: 34px;
  }
}

.contact .heading.first {
  margin-bottom: 1.58rem;
}

@media screen and (max-width: 768px) {
  .contact .heading.first {
    margin-bottom: 0.8rem;
  }
}

.contact .heading.second {
  margin-bottom: 3.3rem;
}

@media screen and (max-width: 768px) {
  .contact .heading.second {
    margin-bottom: 2rem;
  }
}

.contact .heading h1, .contact .heading h2, .contact .heading h3, .contact .heading h4, .contact .heading h5, .contact .heading h6 {
  font-weight: 300;
  font-size: 3.8rem;
  line-height: 46px;
}

@media screen and (max-width: 768px) {
  .contact .heading h1, .contact .heading h2, .contact .heading h3, .contact .heading h4, .contact .heading h5, .contact .heading h6 {
    font-size: 23px;
    line-height: 28px;
  }
}

.contact .heading--sub {
  max-width: 35rem;
  font-family: "Source Sans Pro";
  font-weight: 200;
  font-size: 2.2rem;
  line-height: 28px;
  margin-bottom: 12rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .contact .heading--sub {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 7.3rem;
  }
}

.contact--form {
  font-size: 2.2rem;
  color: #C39F55;
}

.contact--form input {
  margin-bottom: 1.9rem;
}

@media screen and (max-width: 768px) {
  .contact--form input {
    height: 27px;
  }
}

.contact--form button {
  margin-top: 4.6rem;
}

@media screen and (max-width: 768px) {
  .contact--form button {
    margin: auto;
    margin-top: 2.2rem;
  }
}

.contact--form textarea {
  height: 24.7rem;
  min-height: 24.7rem;
  max-height: 24.7rem;
}

@media screen and (max-width: 768px) {
  .contact--form textarea {
    height: 12rem;
    min-height: 12rem;
    max-height: 12rem;
  }
}

.contact--form input,
.contact--form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  color: inherit;
  padding: 11px 25px 14px 25px;
  background: transparent;
  border: none;
  border-width: 1px;
  border-style: solid;
  -o-border-image: linear-gradient(to bottom, #C39F55, rgba(195, 159, 85, 0.1)) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, from(#C39F55), to(rgba(195, 159, 85, 0.1))) 1;
     border-image: linear-gradient(to bottom, #C39F55, rgba(195, 159, 85, 0.1)) 1;
  font-family: "Source Sans Pro";
  font-weight: 200;
  font-size: 2.2rem;
  line-height: 28px;
  color: rgba(195, 159, 85, 0.7);
}

@media screen and (max-width: 768px) {
  .contact--form input,
  .contact--form textarea {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 12px 10px 12px;
  }
}

.contact--form input::-webkit-input-placeholder,
.contact--form textarea::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(195, 159, 85, 0.7);
  font-family: "Source Sans Pro";
  font-weight: 200;
  opacity: 1;
  /* Firefox */
}

.contact--form input:-ms-input-placeholder,
.contact--form textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(195, 159, 85, 0.7);
  font-family: "Source Sans Pro";
  font-weight: 200;
  opacity: 1;
  /* Firefox */
}

.contact--form input::-ms-input-placeholder,
.contact--form textarea::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(195, 159, 85, 0.7);
  font-family: "Source Sans Pro";
  font-weight: 200;
  opacity: 1;
  /* Firefox */
}

.contact--form input::placeholder,
.contact--form textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(195, 159, 85, 0.7);
  font-family: "Source Sans Pro";
  font-weight: 200;
  opacity: 1;
  /* Firefox */
}

.contact--form input:-ms-input-placeholder,
.contact--form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(195, 159, 85, 0.7);
  font-family: "Source Sans Pro";
  font-weight: 200;
}

.contact--form input::-ms-input-placeholder,
.contact--form textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(195, 159, 85, 0.7);
  font-family: "Source Sans Pro";
  font-weight: 200;
}

.contactPage #contact {
  padding-top: 11.4rem;
}

.services--s1.thankyou-wrapper {
  background-position-y: 162px;
}

.thankyou {
  width: 937px;
  height: 530px;
  background-color: #464545;
  margin: auto;
  position: relative;
  top: 307px;
}

.thank-icon {
  position: relative;
  top: 70px;
}

.text-para {
  margin-top: 32px;
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C39F55;
  line-height: 39.01px;
}

.okay-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 76px;
}

@media screen and (max-width: 768px) {
  .services--s1.thankyou-wrapper {
    background-position-y: 437px;
    overflow: visible;
    height: 100vh;
  }
  .thankyou {
    width: 339px;
    height: 530px;
    position: relative;
    top: 108px;
  }
  .thankyou-icon {
    width: 111px;
    height: 111px;
  }
  .text-para {
    font-size: 23px;
    line-height: 28px;
    margin-top: 5.4rem;
  }
  .okay-btn {
    margin-top: 49px;
  }
}

#footer {
  height: 47.8rem;
}

#footer img {
  margin-top: 19.8rem;
  margin-bottom: 3.3rem;
}

#footer p {
  max-width: 67.7rem;
  font-size: 2.2rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 768px) {
  #footer {
    height: auto;
    padding-bottom: 2rem;
  }
  #footer img {
    margin-top: 12.4rem;
    max-width: 100px;
    max-height: 90.42px;
  }
  #footer p {
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
/*# sourceMappingURL=main.css.map */