@font-face {
  font-family: 'ClintonBold';
  src: url("../fonts/Clinton/ClintonBold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ClintonSemibold';
  src: url("../fonts/Clinton/Clinton semibold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'ApercuBold';
  src: url("../fonts/ApercuFontFamily/Apercu Bold.otf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ApercuRegular';
  src: url("../fonts/ApercuFontFamily/Apercu Regular.otf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ApercuMedium';
  src: url("../fonts/ApercuFontFamily/Apercu Medium.otf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'ApercuLight';
  src: url("../fonts/ApercuFontFamily/Apercu Light.otf");
  font-weight: 300;
  font-style: normal;
}

/* ########### Breakpoints ########## */
* {
  padding: 0;
  margin: 0;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-color: #000;
}

.bg-image::after, .bg-image::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
}

@media (max-width: 767.98px) {
  .bg-image::after, .bg-image::before {
    width: 900px;
    height: 77%;
    left: -79%;
  }
}

.bg-image::after {
  background-image: url("./../images/exportbg1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}

.bg-image::before {
  background: #080709;
  opacity: 0;
  z-index: 4;
  -webkit-animation: backgroundColorAnimation 3s ease-out;
          animation: backgroundColorAnimation 3s ease-out;
}

.bg-image .inner-bush {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}

.bg-image .inner-bush::before {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: 45%;
  width: 35%;
  height: 35%;
  background-image: url("./../images/backgroundbush.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

@media (max-width: 767.98px) {
  .bg-image .inner-bush::before {
    bottom: 71px;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
  }
}

@-webkit-keyframes backgroundColorAnimation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes backgroundColorAnimation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.pg-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  min-height: 100vh;
  width: 100%;
  z-index: 5;
}

@media (max-width: 575.98px) {
  .pg-container {
    overflow: hidden;
    min-height: 92vh;
    height: 92vh;
  }
}

.home {
  width: 60%;
  margin: auto;
  position: relative;
}

@media (max-width: 1199.98px) {
  .home {
    width: 70%;
  }
}

@media (max-width: 991.98px) {
  .home {
    width: 90%;
  }
}

@media (max-width: 767.98px) {
  .home {
    width: 95%;
  }
}

.home .title {
  border-top: 1px solid #362715;
  height: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: heightAnimation 1s ease-in-out, opacity 1s ease-in-out;
          animation: heightAnimation 1s ease-in-out, opacity 1s ease-in-out;
  overflow: hidden;
}

@-webkit-keyframes heightAnimation {
  0% {
    height: 0px;
  }
  100% {
    height: 225px;
  }
}

@keyframes heightAnimation {
  0% {
    height: 0px;
  }
  100% {
    height: 225px;
  }
}

@-webkit-keyframes opacity {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@keyframes opacity {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .home .title {
    height: 107px;
    -webkit-animation: heightAnimation2 1s ease-in-out,opacity 1s ease-in-out;
            animation: heightAnimation2 1s ease-in-out,opacity 1s ease-in-out;
  }
  @-webkit-keyframes heightAnimation2 {
    from {
      height: 0;
    }
    to {
      height: 107px;
    }
  }
  @keyframes heightAnimation2 {
    from {
      height: 0;
    }
    to {
      height: 107px;
    }
  }
}

.home .title h1 {
  overflow: hidden;
  margin: auto;
  -webkit-animation: textAnimation 1s ease-in 200ms;
          animation: textAnimation 1s ease-in 200ms;
  font-size: 68px;
  line-height: 150%;
  font-weight: 600;
  font-family: "ClintonSemibold", sans-serif !important;
  color: #FFF;
  text-align: center;
}

@-webkit-keyframes textAnimation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  65% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes textAnimation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  65% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .home .title h1 {
    font-size: 31px;
  }
}

.home .title h1 span {
  font-family: "ClintonBold", sans-serif !important;
  font-weight: 700;
}

.home .main-content {
  border-top: 1px solid #362715;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .home .main-content {
    width: 60%;
  }
}

@media (max-width: 1399.98px) {
  .home .main-content {
    width: 70%;
  }
}

@media (max-width: 1199.98px) {
  .home .main-content {
    width: 75%;
  }
}

@media (max-width: 991.98px) {
  .home .main-content {
    width: 80%;
  }
}

.home .main-content .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 !important;
  margin-bottom: 80px;
}

@media (max-width: 767.98px) {
  .home .main-content .navbar {
    margin-bottom: 76px;
  }
}

.home .main-content .navbar .nav-item {
  list-style: none;
  padding: 0 !important;
  position: relative;
  border-right: 1px solid #362715;
}

.home .main-content .navbar .nav-item:last-child {
  border-right: none;
}

.home .main-content .navbar .nav-item .nav-link {
  padding: 0 !important;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  font-family: "ApercuRegular", sans-serif;
  padding: 13px 41px 13px 38px !important;
  background: transparent;
  border: 0;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
}

.home .main-content .navbar .nav-item .nav-link:hover {
  color: #6D5942;
}

@media (max-width: 767.98px) {
  .home .main-content .navbar .nav-item .nav-link {
    padding: 7px 14px 7px 15px !important;
    font-size: 13px;
  }
}

.home .main-content .content-wrap .content {
  text-align: center;
  width: 348px;
  margin: 0 auto;
}

.home .main-content .content-wrap .content p {
  color: #CBCBCB;
  font-family: "ApercuRegular", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .home .main-content .content-wrap .content p {
    font-size: 12px;
  }
}

.home .main-content .content-wrap .content p span {
  font-family: "ApercuBold", sans-serif !important;
  font-weight: 700 !important;
}

@media (max-width: 767.98px) {
  .home .main-content .content-wrap .content {
    width: 100%;
  }
}

.modal-dialog.modal-wrap {
  position: relative;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

@media (max-width: 1399.98px) {
  .modal-dialog.modal-wrap {
    top: 51%;
  }
}

@media (max-width: 767.98px) {
  .modal-dialog.modal-wrap {
    top: 50%;
  }
}

@media (max-width: 767.98px) {
  .modal-dialog.modal-wrap {
    max-width: 455px !important;
  }
}

@media (max-width: 575.98px) {
  .modal-dialog.modal-wrap {
    max-width: 90% !important;
  }
}

@media (min-width: 768px) {
  .modal-dialog.modal-wrap {
    max-width: 685px !important;
  }
}

@media (min-width: 992px) {
  .modal-dialog.modal-wrap {
    max-width: 734px !important;
  }
}

@media (min-width: 1200px) {
  .modal-dialog.modal-wrap {
    max-width: 732px !important;
  }
}

@media (min-width: 1400px) {
  .modal-dialog.modal-wrap {
    max-width: 746px !important;
  }
}

.modal-body-wrap {
  height: 490px;
  overflow-y: scroll;
}

.modal-body-wrap::-webkit-scrollbar {
  width: 0px;
  border-radius: 5px;
  background: #080709;
}

.modal-body-wrap::-webkit-scrollbar-thumb {
  background: #9E9E9E;
  border-radius: 5px;
}

@media (max-width: 1399.98px) {
  .modal-body-wrap {
    height: 450px;
  }
}

@media (max-width: 767.98px) {
  .modal-body-wrap {
    height: auto;
  }
}

@media (min-width: 1400px) {
  .modal-body-wrap {
    height: 520px;
  }
}

.modal-content {
  background-color: #080709 !important;
}

.modal-header {
  padding: 0;
  padding-top: 25px;
  padding-left: 51px;
  padding-right: 38px;
}

@media (max-width: 767.98px) {
  .modal-header {
    padding-top: 12px;
    padding-left: 35px;
    padding-right: 11px;
  }
}

.modal-header .cross-btn {
  color: #FFF;
  font-family: "ClintonBold", sans-serif;
  font-size: 54px;
  color: #6D5942;
}

@media (max-width: 767.98px) {
  .modal-header .cross-btn {
    font-size: 32px;
  }
}

.modal-title {
  color: #FFF;
  font-size: 68px;
  font-family: "ClintonBold", sans-serif;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .modal-title {
    font-size: 36px;
  }
}

.modal-body {
  padding: 30px 28px 35px 35px;
}

@media (min-width: 768px) {
  .modal-body {
    padding: 30px 51px;
    padding-bottom: 71px;
  }
}

.modal-body .sub-title {
  font-size: 15px;
  color: #6D5942;
  font-family: "ApercuBold", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .modal-body .sub-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.modal-body .desc {
  padding: 0 !important;
  padding-bottom: 28px !important;
  margin-bottom: 44px;
  border-bottom: 1px solid #2E2418;
}

.modal-body .desc p {
  font-family: "ApercuLight", sans-serif;
  font-weight: 300;
  color: #9E9E9E;
  font-size: 15px;
}

@media (min-width: 768px) {
  .modal-body .desc p {
    font-size: 16px;
  }
}

.modal-body .desc + .sub-title {
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .modal-body .desc + .sub-title {
    margin-bottom: 27px;
  }
}

.modal-body .invest-list {
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #2E2418;
}

@media (min-width: 768px) {
  .modal-body .invest-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.modal-body .invest-item {
  list-style: none;
  border-bottom: 1px solid #2E2418;
  color: #9E9E9E;
  font-family: "ApercuLight", sans-serif;
  font-weight: 300;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1em;
  font-size: 15px;
}

@media (min-width: 768px) {
  .modal-body .invest-item {
    font-size: 20px;
    padding: 15px 13px 13px 10px;
    border-right: 1px solid #2E2418;
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .modal-body .invest-item {
    padding: 15px 19px 13px 19px;
  }
}

.modal-body .invest-item:last-child {
  border: none;
}

.modal-body .contact-form .form-control {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  color: #9E9E9E;
  font-family: "ApercuRegular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  border-bottom: 1px solid #2E2418;
  padding-top: 24px;
  margin-bottom: 23px;
}

.modal-body .contact-form .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.modal-body .contact-form .buttons .btn {
  padding: 17px 30px 17px 27px;
  font-size: 16px;
  color: #FFF;
  font-family: "ApercuLight", sans-serif;
  border: none;
}

.modal-body .contact-form .buttons .btn-primary {
  background: #6D5942;
  margin-right: 34px;
}

@media (max-width: 575.98px) {
  .modal-body .contact-form .buttons .btn-primary {
    margin-right: 5px;
  }
}

.modal-body .contact-form .buttons .btn-secondary {
  background: #23190D;
}

.modal-body .row {
  margin: 0;
}

.modal-body .row .desc {
  padding: 0 !important;
  margin: 0;
}

.modal-body .row .desc p {
  margin: 0;
  font-size: 15px;
}

.modal-body .row > div {
  padding: 0;
  padding: 0 15px;
}

.modal-body .row > div:first-child {
  padding-left: 0 !important;
}

@media (max-width: 767.98px) {
  .modal-body .row > div {
    padding-left: 0;
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .modal-body .row > div {
    border-right: 1px solid #2E2418;
  }
  .modal-body .row > div:last-child {
    border-right: 0;
  }
}

.modal-image {
  height: 396px;
  width: 100%;
}

.modal-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767.98px) {
  .modal-image {
    display: none;
  }
}

.footer p {
  font-size: 13px;
  color: #6D5942;
  font-family: "ApercuLight", sans-serif;
}
/*# sourceMappingURL=index.css.map */