/* ---------------------------------- Reset --------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

/* ---------------------------------- Fonts --------------------------------- */
/*Fonts*/
@font-face {
  font-family: "DomaineTextMedium";
  src: url("../fonts/DomaineText/DomaineTextMedium.eot");
  src: url("../fonts/DomaineText/DomaineTextMedium.woff") format("woff"), url("../fonts/DomaineText/DomaineTextMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DomaineTextLight";
  src: url("../fonts/DomaineText/DomaineTextLight.eot");
  src: url("../fonts/DomaineText/DomaineTextLight.woff") format("woff"), url("../fonts/DomaineText/DomaineTextLight.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Revisal";
  src: url("../fonts/Revisal/Revisal-Light.woff2") format("woff2"), url("../fonts/Revisal/Revisal-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Revisal";
  src: url("../fonts/Revisal/Revisal-Medium.woff2") format("woff2"), url("../fonts/Revisal/Revisal-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Revisal";
  src: url("../fonts/Revisal/Revisal-Bold.woff2") format("woff2"), url("../fonts/Revisal/Revisal-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* -------------------------------- Variables ------------------------------- */
/* --------------------------------- Mixins --------------------------------- */
/* ----------------------------- General styles ----------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "DomaineTextMedium";
  color: #00263d;
}

p {
  font-family: "Revisal";
  font-weight: lighter;
  color: #485869;
}

.container {
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
}
.container.lg {
  max-width: 1300px;
}
@media only screen and (max-width: 1000px) {
  .container {
    padding: 0 30px;
  }
}

.dflex {
  display: flex;
}
.dflex.wrap {
  flex-wrap: wrap;
}

.grid{
  display: grid;
}

.gap-x-20{
  column-gap: 20px; /* 20px */
}

.gap-x-10{
  column-gap: 10px; /* 20px */
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.w-50 {
  width: 50%;
}

.blue-bg {
  background-color: #002B45;
}

/* -------------------------------- Home page ------------------------------- */
/**Header**/
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.main-header .inner {
  padding: 0 47px;
}
@media only screen and (max-width: 500px) {
  .main-header .inner {
    padding: 0 20px;
  }

  .grid-cols-2{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
}
.main-header .logo {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 230px;
  height: 90px;
  transform: translate(-50%, 0);
}
.main-header .logo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 500px) {
  .main-header .logo {
    width: 165px;
    top: 40px;
    left: 20px;
    transform: translate(0);
  }
}

.page-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.page-header .inner {
  padding: 0 57px;
}
@media only screen and (max-width: 500px) {
  .page-header .inner {
    padding: 0 20px;
  }
}
.page-header .logo {
  position: absolute;
  top: 60px;
  left: 78px;
  width: 209px;
  height: 55px;
}
.page-header .logo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1000px) {
  .page-header .logo {
    top: 50px;
    left: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .page-header .logo {
    width: 165px;
    top: 35px;
    left: 20px;
  }
}

/* -------------------------------- Losa Nav -------------------------------- */
.toggle {
  float: right;
  margin-top: 53px;
  width: 74px;
  height: 74px;
  background: #002B45;
  border-radius: 40px;
  border: 0;
  position: relative;
  cursor: pointer;
}
.toggle .toggle-icon span {
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  margin-left: -12.5px;
  transition: 0.3 all;
  z-index: 1;
}
.toggle .toggle-icon span:nth-child(1) {
  width: 25px;
  margin-top: -6px;
}
.toggle .toggle-icon span:nth-child(2) {
  width: 25px;
}
.toggle .toggle-icon span:nth-child(3) {
  margin-top: 6px;
  width: 13px;
  transition: all 0.2s;
}
.toggle > span {
  position: absolute;
  left: -33px;
  top: 122px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 4.9px;
  transform: rotate(-90deg) translateX(-45%);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  width: 140px;
  text-align: left;
}
.toggle > span::after {
  content: "";
  width: 82px;
  height: 2px;
  background: #D8D8D8;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 0;
}
.toggle:hover > span {
  transform: rotate(-90deg) translateX(0);
  opacity: 1;
}
.toggle:hover .toggle-icon span:nth-child(3) {
  width: 25px;
}
.toggle:focus {
  outline: none;
}
@media only screen and (max-width: 500px) {
  .toggle {
    margin-top: 30px;
    width: 50px;
    height: 50px;
  }
  .toggle .toggle-icon span {
    margin-left: -11px;
  }
}

.losa-nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s;
  transition-timing-function: ease;
  transition-timing-function: cubic-bezier(0.84, 0, 0.22, 1);
}

.losa-nav.open {
  transform: translate3d(0, 0, 0);
}

.losa-nav nav {
  width: 100%;
  height: 100vh;
  float: left;
  background-color: #002b45;
  position: relative;
}

.losa-nav nav .inner {
  padding: 71px 100px 0;
}

.losa-nav nav .nav-logo {
  width: 92px;
  height: 92px;
  margin: 70px 0 49px 25px;
  display: inline-block;
}

nav .nav-logo img {
  width: 100%;
  height: auto;
}

nav .main-menu {
  padding: 0;
  overflow: hidden;
}

.main-menu li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.main-menu li a {
  color: #fff;
  font-size: 29px;
  font-family: "DomaineTextLight";
  margin-bottom: 45px;
  display: block;
  text-decoration: none;
}

.main-menu li a:hover {
  text-decoration: none;
}

.main-menu li.current_page_item::before, .main-menu li.current::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 3;
}
.main-menu li.current_page_item::after, .main-menu li.current::after  {
  content: "";
  background: #fff;
  width: 70%;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
}

.main-menu li:nth-child(1)::after, .main-menu li:nth-child(2)::after, .main-menu li:nth-child(6)::after {
  width: 82%;
}

.main-menu li.current_page_item a {
  font-family: "DomaineTextMedium";
  z-index: 1;
  position: relative;
  padding-right: 20px;
  display: block;
}

.losa-nav .menu-bg {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-template-foundation-page .menu-bg{
  background-position: right center;
}

.close-nav {
  position: absolute;
  right: 56px;
  top: 71px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  padding: 0;
  z-index: 3;
  cursor: pointer;
}

.close-nav:focus {
  outline: none;
}

.close-nav span {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.close-nav span:first-child {
  transform: rotate(45deg);
}

.close-nav span:last-child {
  transform: rotate(-45deg);
}

.menu-bg .overlay {
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(14, 38, 63, 0.81), rgba(81, 114, 154, 0.62));
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

@media only screen and (max-width: 1440px) {
  .main-menu li.current_page_item a::after {
    top: 17px;
  }

  .losa-nav nav .inner {
    padding: 42px 0 0 100px;
  }

  .main-menu li {
    margin: 0 0 33px;
  }

  .main-menu li a {
    font-size: 20px;
    line-height: 28px;
    padding: 0;
  }

  .losa-nav nav .nav-logo {
    width: 66px;
    height: 66px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1000px) {
  .main-header .logo {
    width: 150px;
    left: 30px;
    top: 40px;
    transform: translate(0);
  }

  header .logo img {
    width: 100%;
    height: auto;
  }

  .losa-nav nav {
    width: 100%;
  }

  .main-menu li a {
    font-size: 20px;
  }

  .main-menu li.current_page_item::after {
    display: none;
  }

  .main-menu li a br {
    display: none;
  }

  .close-nav {
    top: 42px;
    z-index: 5;
    right: 30px;
  }

  .menu-bg {
    display: none;
  }

  .losa-nav .nav-logo {
    margin: 43px 0 49px 25px !important;
  }
}
/**Footer**/
footer {
  position: relative;
  background: #ffffff;
  padding: 103px 0 120px;
}
@media only screen and (max-width: 1000px) {
  footer .container {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 500px) {
  footer .container {
    flex-direction: column;
  }
}
footer .widget h4 {
  font-size: 14px;
  color: #B3AA9B;
  margin-bottom: 17px;
}
footer .widget ul {
  padding: 0;
}
footer .widget ul li {
  list-style: none;
  line-height: 22px;
}
footer .widget ul li a {
  color: #002B45;
  font-size: 14px;
  text-decoration: none;
  font-family: "DomaineTextMedium";
  letter-spacing: 0.58px;
}
footer .widget ul li a br {
  display: none;
}
@media only screen and (max-width: 1000px) {
  footer .widget ul li a br {
    display: block;
  }
}
footer .widget.company-info p {
  margin-top: 16px;
  color: #A5AAAC;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.54;
}
@media only screen and (max-width: 1000px) {
  footer .widget.company-info {
    width: 150px;
  }
}
footer .widget .locations .location:nth-child(1) {
  margin-right: 140px;
}
@media only screen and (max-width: 1000px) {
  footer .widget .locations .location:nth-child(1) {
    margin-right: 40px;
    margin-bottom: 40px;
  }
}
footer .widget .locations .location h5 {
  font-size: 13px;
  margin-bottom: 20px;
}
footer .widget .locations .location p {
  font-size: 13px;
  color: #829BAA;
  letter-spacing: 0.54px;
  font-family: "Revisal";
  font-weight: normal;
}
footer .widget .locations .location p a {
  color: #829BAA;
  text-decoration: none;
}
footer .widget .locations .location p a:hover {
  color: #002B45;
}
@media only screen and (max-width: 500px) {
  footer .widget {
    padding: 0 20px;
  }
  footer .widget .locations {
    flex-direction: column;
  }
  footer .widget h4 {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 500px) {
  footer {
    padding: 50px 0;
  }
}

/********** HOME PAGE ******/
/*Hero Section*/
.losa-hero {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  height: 100vh;
}

.swiper-slide .overlay {
  position: absolute;
  background: url("../images/hero-mask.png") repeat-x top left;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  height: 100vh;
}

.txt-fixed {
  position: absolute;
  top: 33vh;
  left: 50%;
  font-size: 24px;
  width: 100%;
  z-index: 2;
  font-family: "Revisal";
  font-weight: lighter;
  color: #fff;
  max-width: 420px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 500px) {
  .txt-fixed {
    font-size: 18px;
  }
}

.swiper-slide {
  width: 100%;
  position: relative;
  text-align: center;
  height: 100vh;
}

.slide-content {
  margin-top: 45vh;
  position: relative;
}

.slide-content p {
  font-size: 44px;
  font-family: "DomaineTextLight";
  color: #fff;
}
@media only screen and (max-width: 500px) {
  .slide-content p {
    font-size: 24px;
  }
}

.slide-content p strong {
  font-family: "DomaineTextMedium";
}

.swiper-slide .slide-bg {
  position: absolute;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.slide-bullets {
  position: absolute;
  top: 50%;
  left: 80px !important;
  width: 10px !important;
  z-index: 2;
}
@media only screen and (max-width: 1000px) {
  .slide-bullets {
    top: 65%;
  }
}
@media only screen and (max-width: 500px) {
  .slide-bullets {
    top: initial;
    bottom: 20px;
    left: 20px !important;
  }
}

.slide-bullets span {
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  background: none;
  margin: 0 auto 15px auto !important;
  display: block;
  border-radius: 5px;
  opacity: 1;
  transition: all 0.3s;
  opacity: 0.45;
}

.slide-bullets .swiper-pagination-bullet-active {
  background: #fff;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.swiper-pagination {
  width: 10px;
}

.swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin: 5px 0 !important;
}

.slide-pagination {
  position: absolute;
  bottom: 20vh;
  left: 50%;
  transform: translate(-50%, 0);
  width: 400px;
  z-index: 5;
}
@media only screen and (max-width: 500px) {
  .slide-pagination {
    width: 250px;
  }
}

.arrow-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
}

.arrow-icon.white-btn {
  width: 34px;
  height: 34px;
  opacity: 0.46;
}

.arrow-icon.small-btn {
  width: 34px;
  height: 34px;
}

.arrow-icon.prev-btn:before {
  content: "PREV";
  font-size: 10px;
  position: absolute;
  right: -150%;
  top: 50%;
  margin-top: -7px;
  letter-spacing: 4.5px;
}

.arrow-icon.next-btn:after {
  content: "NEXT";
  font-size: 10px;
  position: absolute;
  left: 150%;
  transform: rotateY(180deg);
  top: 50%;
  margin-top: -7px;
  letter-spacing: 4.5px;
}

.arrow-icon.right {
  transform: rotateY(180deg);
  float: right;
}

.arrow-icon span {
  position: absolute;
  height: 1px;
  top: 50%;
  left: 0;
  background: #fff;
  transition: 0.3 all;
}

.arrow-icon.read-btn {
  border-color: #999;
}

.arrow-icon.read-btn span {
  background: #00263D;
  transform: rotate(180deg);
}

.arrow-icon.prev-btn {
  position: relative;
  float: left;
}

.arrow-icon span:nth-child(1) {
  width: 12px;
  transform: rotate(-45deg);
  margin-top: -4px;
  left: 30%;
}

.arrow-icon span:nth-child(2) {
  width: 100%;
  left: 34.5%;
}

.arrow-icon span:nth-child(3) {
  width: 12px;
  transform: rotate(45deg);
  margin-top: 4px;
  left: 30%;
}

/* -------------------------------- About Us -------------------------------- */
.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}
@media only screen and (max-width: 1000px) {
  .page-hero {
    padding: 0;
    min-height: auto;
    height: 75vh;
  }
}
.page-hero .inner {
  background-repeat: none;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: calc(100%);
}
.page-hero .inner .overlay {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: calc(100%);
  background: linear-gradient(91.32deg, rgba(0, 43, 69, 0.85) 0%, rgba(0, 43, 69, 0.19) 100%);
  z-index: 1;
}
.page-hero .inner .text-box {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 78px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.page-hero .inner .text-box h1 {
  color: #ffffff;
  font-size: 68px;
  margin-bottom: 14px;
}
.page-hero .inner .text-box h1 b {
  font-family: "DomaineTextLight";
}
.page-hero .inner .text-box p {
  font-size: 20px;
  color: #ffffff;
}
@media only screen and (max-width: 1440px) {
  .page-hero .inner .text-box {
    top: 48%;
  }
}
@media only screen and (max-width: 1000px) {
  .page-hero .inner .text-box {
    left: 25px;
  }
  .page-hero .inner .text-box h1 {
    font-size: 35px;
  }
}
.page-hero.hero-lg {
  height: calc(100vh + 100px);
  min-height: 1005px;
}
@media only screen and (max-width: 1440px) {
  .page-hero.hero-lg {
    height: calc(100vh + 350px);
    min-height: auto;
  }
  .page-hero.hero-lg .inner .text-box {
    top: 34%;
  }
  .page-hero.hero-lg .inner .text-box h1 {
    font-size: 55px !important;
  }
}
@media only screen and (max-width: 1200px) {
  .page-hero.hero-lg {
    height: 100vh;
  }
}
@media only screen and (max-width: 1000px) {
  .page-hero.hero-lg {
    height: 50vh;
  }
}

@media only screen and (max-width: 1000px) {
  .about-hero .inner .text-box {
    top: 55%;
  }
}

.page-content {
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .page-content {
    margin: 0;
  }
}

.family-continuity-st {
  padding: 100px 0 60px;
  margin-bottom: 90px;
}
.family-continuity-st .family-head {
  flex-wrap: wrap;
  width: 100%;
}
.family-continuity-st .family-head .title p {
  font-size: 54px;
  color: #ffffff;
  line-height: 50px;
  position: relative;
  padding-left: 44px;
  font-family: "DomaineTextLight";
}

.family-continuity-st .family-head .title{
  position: relative;
}

.family-continuity-st .family-head .title::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 0;
  width: 244px;
  height: 244px;
  background-color: #6E818C;
  border-radius: 50%;
  opacity: 0.2;
}
.family-continuity-st .family-head .title p strong {
  font-family: "DomaineTextMedium";
}
.family-continuity-st .family-head .content p {
  font-size: 18px;
  color: #ffffff;
  max-width: 670px;
  padding: 30px 0 80px;
  text-align: justify;
  line-height: 28px;
}
.family-continuity-st .family-items {
  margin-top: 65px;
}
.family-continuity-st .family-items .item {
  width: 50%;
  margin-bottom: 60px;
  position: relative;
}
.family-continuity-st .family-items .item .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 160px;
}
.family-continuity-st .family-items .item .icon img {
  width: 100%;
  height: auto;
}
.family-continuity-st .family-items .item .content {
  position: relative;
  padding: 50px 0 0 118px;
  z-index: 1;
}
.family-continuity-st .family-items .item .content h3 {
  font-size: 25px;
  color: white;
  font-family: "Revisal";
  margin-bottom: 30px;
  font-weight: lighter;
}
.family-continuity-st .family-items .item .content p {
  max-width: 350px;
  font-size: 18px;
  text-align: justify;
  margin-bottom: 28px;
  color: #98AFBD;
}
.family-continuity-st .family-items .item .content a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  font-family: "Revisal";
  line-height: 40px;
}
.family-continuity-st .family-items .item .content a img {
  margin-left: 10px;
}
@media only screen and (max-width: 1000px) {
  .family-continuity-st .family-head {
    flex-direction: column;
  }
  .family-continuity-st .family-head .title {
    top: -35px;
    font-size: 38px;
    margin: 60px 0;
    line-height: 1;
  }
  .family-continuity-st .family-head .title::before {
    width: 185px;
    height: 185px;
  }
  .family-continuity-st .family-items {
    flex-direction: column;
  }
  .family-continuity-st .family-items .item {
    width: 100%;
  }
  .family-continuity-st .family-items .item .icon {
    width: 100px;
  }
  .family-continuity-st .family-items .item .icon img {
    width: 100%;
  }
  .family-continuity-st .family-items .item .content {
    padding: 30px 0 0 75px;
  }
  .family-continuity-st .family-items .item .content p {
    max-width: 100%;
  }
}

/* ------------------------------- Contact us ------------------------------- */
.locations-contact {
  margin-top: 35px;
}
.locations-contact .location {
  margin-right: 70px;
}
.locations-contact .location h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
}
.locations-contact .location p {
  font-size: 18px;
}
.locations-contact .location p a {
  color: #ffffff;
  text-decoration: none;
}
@media only screen and (max-width: 1000px) {
  .locations-contact .location {
    margin-right: 35px;
  }
  .locations-contact .location:nth-child(2) {
    margin-right: 0;
  }
  .locations-contact .location p {
    font-size: 13px !important;
  }
}

.contact-st {
  padding: 71px 0 91px;
}
.contact-st .inner {
  padding: 0 10px;
}
@media only screen and (max-width: 1000px) {
  .contact-st .contact-form {
    padding: 0 10px;
    flex-direction: column;
  }
  .contact-st .contact-form .w-50 {
    width: 100%;
  }
}

.field_box {
  position: relative;
  margin-bottom: 13px;
  display: flex;
  flex-direction: column-reverse;
  flex-flow: wrap-reverse;
}

.field_box p{
  width: 100%;
}

.field_box label {
  margin: 0;
  background: #002B45;
  position: absolute;
  top: -9px;
  padding: 5px 7px 0;
  font-family: "Revisal";
  font-weight: lighter;
  font-size: 13px;
  color: #ffffff;
  margin-left: 20px;
  transition: all 0.3s ease;
}
.field_box label span {
  position: absolute;
  top: 20px;
  left: -56px;
  transform: rotate(-90deg);
  font-family: "DomaineTextLight";
  color: #FFf;
  opacity: 0.34;
  font-size: 17px;
}
.field_box input,
.field_box textarea {
  width: 100%;
  padding: 12px 0 10px 12px;
  border: 1px solid #6E818C;
  border-radius: 2px;
  transition: all 0.3s ease;
  resize: none;
  background-color: transparent;
  color: #ffffff;
}
.field_box input:focus, .field_box input:hover,
.field_box textarea:focus,
.field_box textarea:hover {
  outline: none;
}

.field_box textarea{
  height: 92px;
}

.contact-form form{
  display: flex;
  flex-wrap: wrap;
}
.contact-form form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-text-fill-color: #00263d !important;
}

.wpcf7-submit {
  float: right;
  background: url("../images/send-arrow.png") no-repeat, #ffffff;
  background-position-y: 48%;
  background-position-x: 90%;
  padding: 16px 70px 16px 31px;
  font-family: "Revisal-Light";
  color: #002B45;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
  border: none;
  margin-top: 15px;
  cursor: pointer;
}

.send-btn img {
  margin: -4px 0 0 10px;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: white !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: white !important;
}

.swal2-title {
  color: white !important;
  font-family: "DomaineTextMedium" !important;
  text-transform: uppercase !important;
}

.swal2-content {
  color: #ffffff !important;
  font-family: "Revisal" !important;
  font-size: 15px !important;
}

.swal2-styled.swal2-confirm {
  background: white !important;
  border: 0 !important;
  color: #002B45 !important;
}

/* ----------------------------- Foundation page ---------------------------- */
.foundation-content .first-st {
  padding: 85px 0;
}
.foundation-content .first-st p {
  font-size: 18px;
  color: #ffffff;
  text-align: justify;
  line-height: 28px;
  max-width: 476px;
}
.foundation-content .secondary-st {
  padding: 75px 0;
}
.foundation-content .secondary-st p {
  margin-top: 105px;
  font-size: 18px;
  color: #002B45;
  text-align: justify;
}
.foundation-content .secondary-st a {
  font-size: 14px;
  color: #9B8E79;
  text-transform: uppercase;
  background: url("../images/more-arrow.png") no-repeat right center;
  text-decoration: none;
  padding: 13px 50px 13px 0;
  margin-top: 45px;
  display: inline-block;
  font-family: "Revisal";
}
@media only screen and (max-width: 1000px) {
  .foundation-content .container {
    flex-direction: column;
  }
  .foundation-content .container .w-50 {
    width: 100%;
  }
  .foundation-content .container .w-50 img {
    width: 100%;
    height: auto;
  }
  .foundation-content .container .w-50 p {
    margin-top: 30px;
    max-width: 100%;
  }
}

/* -------------------------- Investment Portfolio -------------------------- */
.investment-content .first-st {
  padding: 85px 0 117px;
}
.investment-content .first-st P {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  max-width: 786px;
  line-height: 26px;
  margin: 0 auto;
  letter-spacing: 1px;
  padding: 0 20px;
}
.investment-content .second-st {
  background: url("../images/isotype-investment.png") no-repeat;
  background-position: top 120px right -30px;
}
.investment-content .second-st h2 {
  position: relative;
  padding: 90px 0 90px 105px;
  line-height: 1;
  margin: 20px 0 25px 88px;
  font-size: 54px;
  font-family: "DomaineTextMedium";
  color: #00263d;
}
.investment-content .second-st h2 span {
  font-size: 30px;
  font-family: "DomaineTextLight";
}
.investment-content .second-st h2::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  width: 244px;
  height: 244px;
  background-color: #F7F9F9;
  border-radius: 50%;
  z-index: -1;
}
.investment-content .second-st .assets-wrap {
  width: 100%;
}
.investment-content .second-st .assets-wrap .asset {
  position: relative;
  background-size: cover;
  width: 100%;
  margin-bottom: 10px;
  height: 400px;
}
.investment-content .second-st .assets-wrap .asset .inner {
  position: absolute;
  z-index: 2;
  bottom: 54px;
  left: 66px;
  width: calc(100% - 66px);
}
.investment-content .second-st .assets-wrap .asset .inner .icon {
  width: 40px;
  margin-right: 25px;
}
.investment-content .second-st .assets-wrap .asset .inner .icon img {
  width: 100%;
  height: auto;
}
.investment-content .second-st .assets-wrap .asset .inner h3 {
  color: #fff;
  font-size: 25px;
  line-height: 26px;
  font-family: "Revisal";
  font-weight: lighter;
}
@media only screen and (max-width: 670px) {
  .investment-content .second-st {
    background: none;
  }
  .investment-content .second-st .assets-wrap {
    flex-wrap: wrap;
  }
  .investment-content .second-st .assets-wrap .asset {
    width: calc(100%);
    height: 300px;
  }
  .investment-content .second-st .assets-wrap .asset .inner {
    flex-direction: column;
    left: 30px;
  }
  .investment-content .second-st .assets-wrap .asset .inner h3 {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .investment-content .second-st h2 {
    margin-left: 20px;
  }
  .investment-content .second-st .assets-wrap .asset div {
    left: 30px;
  }
}

/*Map Region*/
.map-section {
  position: relative;
  max-width: 1130px;
  height: 80vh;
  min-height: 500px;
  margin: 90px auto 0;
  overflow: hidden;
}
.map-section .map-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-section .map-container .map {
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/losa-map.gif") no-repeat top center;
  background-size: contain;
  width: 90%;
  height: 100%;
  white-space: nowrap;
}
@media only screen and (max-width: 1440px) {
  .map-section .map-container p {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .map-section .map-container {
    overflow-x: scroll;
  }
  .map-section .map-container .map {
    width: 90%;
    left: 5%;
    background-position: top 80px center;
  }
}
.map-section p {
  position: absolute;
  bottom: 170px;
  left: 0;
  max-width: 295px;
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
}

.map-section p b {
  font-family: "DomaineTextMedium";
}
@media only screen and (max-width: 1440px) {
  .map-section p {
    bottom: 65px;
  }
}
@media only screen and (max-width: 1000px) {
  .map-section {
    min-height: 300px;
    height: 425px;
    margin: 0 auto 0;
  }
  .map-section .map-container {
    overflow-x: auto;
  }
  .map-section P {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    bottom: 25px;
  }
}

.investment-list {
  padding: 0;
  margin-top: 80px;
  text-align: left;
}
.investment-list li {
  font-size: 18px;
  line-height: 28px;
  color: #829BAA;
  font-family: "Revisal";
  font-weight: lighter;
  padding-left: 35px;
  position: relative;
  list-style: none;
}
.investment-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #829BAA;
}
.investment-list li:first-child {
  padding: 0;
}
.investment-list li:first-child::before {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .investment-list {
    padding: 0;
  }
  .investment-list li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 670px) {
  .investment-list {
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
  }
  .investment-list li {
    padding: 0;
  }
  .investment-list li:first-child::before {
    display: block;
  }
}

/* ------------------------------ Core Business ----------------------------- */
.cmi-section {
  background: #002B45;
  margin-bottom: 90px;
}
.cmi-section .cmi-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 0;
}
.cmi-section .cmi-container .text-box p {
  font-size: 20px;
  color: #ffffff;
}
.cmi-section .cmi-container .text-box a {
  color: #ffffff;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: "Revisal";
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  padding: 16px 60px 16px 0;
  text-align: right;
  position: relative;
  margin-top: 16px;
}
.cmi-section .cmi-container .text-box a::after {
  position: absolute;
  background: url("../images/arrow-btn.png");
  content: "";
  width: 41px;
  height: 36px;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 670px) {
  .cmi-section .cmi-container {
    flex-direction: column;
    padding: 35px 60px;
  }
  .cmi-section .cmi-container img {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }
  .cmi-section .cmi-container .text-box {
    margin-top: 30px;
  }
  .cmi-section .cmi-container .text-box a {
    display: inline-block;
    text-align: left;
    margin-top: 5px;
  }
}

.cb-items-wrap {
  max-width: 1130px;
  margin: 0 auto;
}

.circle-item {
  position: relative;
  border: 1px solid #d8d8d8;
  display: table;
  border-radius: 50%;
}
.circle-item .inner {
  display: table-cell;
  vertical-align: middle;
}
.circle-item .inner h3 {
  font-size: 65px;
  line-height: 1;
  margin-bottom: 0;
}
.circle-item .inner h3 span {
  font-size: 30px;
}
.circle-item .inner p {
  font-size: 17px;
  line-height: 1;
  color: #838386;
}

.cb-items {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cb-items .cb-item {
  width: 177px;
  height: 177px;
  margin-bottom: 30px;
  margin: 0 10px 40px 10px;
  text-align: center;
}
.cb-items .cb-item .cb-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -10px);
}

.text-large p{
  font-size: 20px;
  line-height: 26px;
  color: #002B45;
  text-align: center;
}
.text-large.sm {
  max-width: 670px;
  margin: 20px auto 100px;
}
.text-large strong {
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .text-large {
    padding: 0 20px;
  }
}

.cmi-items {
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 80px;
}
.cmi-items .cmi-item {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 0 0 calc(100% / 3);
  height: 400px;
}
.cmi-items .cmi-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #002B45;
  opacity: 0.8;
  transition: all 300ms linear;
}
.cmi-items .cmi-item h4 {
  position: absolute;
  font-size: 25px;
  line-height: 28px;
  color: #ffffff;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.cmi-items .cmi-item:hover .overlay {
  opacity: 0.5;
}
@media only screen and (max-width: 1000px) {
  .cmi-items {
    margin: 0;
  }
  .cmi-items .cmi-item {
    flex: 0 0 calc(100% / 2);
    margin: 0;
  }
}
@media only screen and (max-width: 500px) {
  .cmi-items .cmi-item {
    flex: 0 0 100%;
  }
}

.about-content .text-large {
  max-width: 962px;
  margin: 68px auto 98px;
  line-height: 35px;
}
@media only screen and (max-width: 500px) {
  .about-content .text-large {
    font-size: 18px;
    line-height: 24px;
  }
}
.about-content .our-history {
  padding: 0 0 34px 0;
}
.about-content .our-history .text-box {
  width: 50%;
}
.about-content .our-history .text-box h2 {
  position: relative;
  font-size: 54px;
  line-height: 50px;
  font-family: "DomaineTextLight";
  margin-bottom: 36px;
}
.about-content .our-history .text-box h2:after {
  content: "";
  position: absolute;
  top: -60px;
  left: -44px;
  width: 244px;
  height: 244px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #F7F9F9;
  z-index: -1;
}
.about-content .our-history .text-box h2 strong {
  font-weight: 700;
}
.about-content .our-history .text-box p {
  font-size: 18px;
  line-height: 28px;
  max-width: 370px;
  text-align: justify;
  color: #002B45;
}
@media only screen and (max-width: 1000px) {
  .about-content .our-history .text-box p {
    font-size: 16px;
    padding-right: 40px;
  }
}
.about-content .our-history .image-box {
  width: 50%;
  position: relative;
}
.about-content .our-history .image-box img {
  width: 100%;
  height: auto;
}
.about-content .our-history .image-box::after {
  content: "";
  position: absolute;
  width: 70%;
  height: calc(100% + 68px);
  right: -34px;
  top: -34px;
  z-index: -1;
  background: #F7F9F9;
}
@media only screen and (max-width: 1000px) {
  .about-content .our-history .container .image-box {
    height: calc(79% + 68px);
  }
}
@media only screen and (max-width: 670px) {
  .about-content .our-history .container {
    flex-direction: column;
  }
  .about-content .our-history .container .text-box {
    width: 100%;
    margin-bottom: 80px;
  }
  .about-content .our-history .container .text-box p {
    padding: 0;
  }
  .about-content .our-history .container .image-box {
    width: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .about-content {
    margin: 0;
  }
  .about-content .our-history {
    padding: 0 35px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 500px) {
  .about-content .our-history {
    padding: 0 35px;
  }
  .about-content .our-history .text-box h2::after {
    width: 225px;
    height: 225px;
    top: -50px;
    left: -24px;
  }
  .about-content .our-history .image-box::after {
    right: -20px;
  }
}

/** Timeline Section **/
.clearfix {
  clear: both;
}

.timeline-wrap {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-bottom: 80px;
  margin-top: 95px;
}

.timeline_container {
  position: relative;
  padding-top: 0;
  margin-bottom: 80px;
}

.start-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #00263d;
  position: absolute;
  z-index: 1;
}

.start-icon.p-top {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-date {
  text-align: center;
  margin-bottom: 30px;
}

.main-date h3 {
  font-size: 65px;
  line-height: 1;
}

.wpcf7-response-output{
  background-color: #002B45;
  border-color: transparent !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.30);
  color: #ffffff;
  font-family: "Revisal";
  width: 100%;
  padding: 10px !important;
  border-radius: 10px;
}


@media only screen and (max-width: 1000px) {
  .main-date h3 {
    font-size: 40px;
  }
}

.main-date p {
  font-size: 19px;
  color: #838386;
}

.timeline_container::before {
  content: "";
  width: 2px;
  background-color: #00263d;
  height: 330px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.timeline_container::after {
  content: "";
  width: 2px;
  background-color: #8A8A8D;
  height: calc(100% - 70px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.timeline_container .date {
  width: 50%;
  position: relative;
  z-index: 1;
}

.timeline_container .date.left {
  float: left;
  text-align: right;
}

.timeline_container .date.right {
  float: right;
  text-align: left;
}

.date .dashed-line {
  width: 7vw;
  height: 1px;
  border: 1.5px dashed #9B8E79;
  position: absolute;
  opacity: 1;
  z-index: 1;
  top: 140px;
}
@media only screen and (max-width: 1000px) {
  .date .dashed-line {
    top: 85px;
  }
}
@media only screen and (max-width: 500px) {
  .date .dashed-line {
    top: 80px;
    width: 3vh;
  }
}

.date .dashed-line::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #002B45;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.timeline_container{
  padding-top: 70px;
}
.date.first .dashed-line {
  border-color: #9B8E79;
}

.date.first .dashed-line::before {
  border-color: #00263d;
  background-color: #00263d;
}

.date.left .dashed-line {
  right: 0;
}

.date.left .dashed-line::before {
  right: -10px;
}

.date.right .dashed-line {
  left: 0;
}

.date.right .dashed-line::before {
  left: -9px;
}

.date-box {
  display: block;
  position: relative;
}

.date.left .date-box {
  padding-right: 7.5vw;
  text-align: right;
}
@media only screen and (max-width: 500px) {
  .date.left .date-box {
    padding-left: 5.5vw;
  }
}

.date.right .date-box {
  padding-left: 7.5vw;
}
@media only screen and (max-width: 500px) {
  .date.right .date-box {
    padding-left: 5.5vw;
  }
}

.date-box .date-icon {
  margin-bottom: 10px;
}

.date-box h4 {
  font-size: 54px;
  line-height: 1;
  margin: 0;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .date-box h4 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .date-box h4 {
    font-size: 28px;
  }
}

.date-box [data-title]::before {
  content: attr(data-title);
  position: absolute;
  bottom: 10px;
  color: #FFF;
  opacity: 0.3;
  font-size: 104px;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  font-family: "DomaineTextMedium";
}
@media only screen and (max-width: 1000px) {
  .date-box [data-title]::before {
    font-size: 60px;
  }
}
@media only screen and (max-width: 500px) {
  .date-box [data-title]::before {
    font-size: 44px;
  }
}

.date.left .date-box h4::before {
  right: 18px;
}

.date.right .date-box h4::before {
  left: 18px;
}

.date-box p {
  font-size: 18px;
  color: #002B45;
  margin-top: 20px;
  z-index: 2;
  min-height: 72px;
}
@media only screen and (max-width: 1000px) {
  .date-box p {
    font-size: 15px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .date-box p {
    font-size: 13px;
    max-width: 130px;
  }
}

.txt-underline {
  text-decoration: underline;
}

.st-timeline, .main-date p {
  font-size: 18px;
  color: #002B45;
}

/*# sourceMappingURL=style.css.map */
