*,
::after,
::before {
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:focus {
  transition: all ease 0.5s;
  outline: none;
}
a:hover,
button:hover {
  transition: 0.5s all ease-in-out;
  -webkit-transition: 0.5s all ease-in-out;
  -moz-transition: 0.5s all ease-in-out;
  -ms-transition: 0.5s all ease-in-out;
}
html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Nuew Hass Display";
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  font-family: "Nuew Hass Display";
  margin: 0;
  line-height: 32px;
  color: #00070d;
  font-size: 18px;
  letter-spacing: 0.1em;
}
a,
img {
  border: 0px;
}
img {
  max-width: 100%;
}
a,
ul,
li {
  text-decoration: none;
}
a {
  outline: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  display: inline-block;
}
a,
button {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
h1 {
  font-family: "Sabon-bold";
  padding: 0;
  margin: 0;
}
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: "Sabon-regular";
}
h2 {
  font-size: 56px;
  line-height: 64px;
  color: #00426a;
}
h3 {
  font-size: 32px;
  line-height: 40px;
  color: #003251;
}
@font-face {
  font-family: "Sabon-regular";
  src: url("../fonts/Sabon-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sabon-bold";
  src: url("../fonts/SabonBold.woff2") format("woff2"),
    url("../fonts/SabonBold.woff") format("woff"),
    url("../fonts/SabonBold.svg#SabonBold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Nuew Hass Display";
  src: url("../fonts/NeueHaasDisplay.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nuew Hass Display Bold";
  src: url("../fonts/NeueHaasDisplayBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
.subtitle {
  font-size: 14px;
  line-height: 32px;
  color: #00426a;
  font-family: "Sabon-bold";
  display: block;
  letter-spacing: 0.1em;
}
.symbol-icon {
  margin: 40px 0;
  position: relative;
  height: 80px;
}
.symbol-icon img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 30px;
  transition: all ease 1s;
}
.primary-btn {
  font-size: 14px;
  color: #b52e2a;
  font-family: "Sabon-bold";
  text-transform: uppercase;
  padding: 16px 40px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #d6d9cc;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  letter-spacing: 0.1em;
}
.primary-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #b52e2a;
  transition: all 0.3s;
  border-radius: 100px;
  z-index: -1;
}
.primary-btn:hover::before {
  width: 100%;
}
.primary-btn:hover {
  color: #ffffff;
}
.primary-btn img {
  margin-left: 20px;
}
.primary-btn:hover img {
  filter: brightness(0) invert(1);
}
.primary-link {
  font-size: 14px;
  color: #b52e2a;
  text-transform: uppercase;
  font-family: "Sabon-bold";
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  white-space: nowrap;
}
.primary-link img {
  margin-left: 10px;
  transition: all 0.3s;
}
.primary-link:hover {
  color: #b52e2a;
}
.primary-link:hover img {
  margin-left: 20px;
}
@font-face {
  font-family: "Oswald-bold";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2"),
    url("../fonts/Oswald-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Oswald-regular";
  src: url("../fonts/Oswald-Regular.woff2") format("woff2"),
    url("../fonts/Oswald-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  padding: 10px 0;
  transition: all ease 0.5s;
}
.header.sticky-header {
  background: #ffffff;
  border-bottom: 1px solid #b52e2a;
  top: 0;
}
.header .logo img {
  max-width: 186px;
  transition: all ease 0.5s;
}
.header.sticky-header .logo img {
  max-width: 150px;
}
.header .logo.homepage-logo {
  display: none;
}
.header.sticky-header .logo.homepage-logo {
  display: block;
}
.header.sticky-header .logo.white-logo {
  display: none;
}
.header .navbar {
  padding: 0;
}
.header.sticky-header .navbar .nav-item .nav-link {
  color: #003251 !important;
}
.header .navbar .navbar-collapse {
  justify-content: flex-end;
}
.header .navbar .nav-item .nav-link {
  font-size: 14px;
  font-family: "Sabon-bold";
  color: #ffffff;
  text-transform: uppercase;
  line-height: 32px;
  padding: 8px 20px;
  position: relative;
  letter-spacing: 0.1em;
}
.header .navbar .nav-item .nav-link:after {
  content: "";
  width: 0px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transition: all ease 0.5s;
  border: 0;
}
.header .navbar .nav-item .nav-link:hover:after {
  width: 50px;
}
.header-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.header-video:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 7, 13, 0.2);
  left: 0;
  top: 0;
}
.header-video video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
  display: flex;
}
.header-video .banner-detail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  padding: 0 140px;
  z-index: 9;
}
.header-video .banner-detail h1 {
  font-size: 72px;
  line-height: 88px;
  color: #ffffff;
  margin-bottom: 40px;
}
.header-video .banner-detail p {
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}
/* info slider css start */
.info-slider-wrapper {
  background: #00426a;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 9;
}
.info-slider-wrapper .carousel-inner {
  width: 80%;
  margin-left: 140px;
}
.info-slider-wrapper .carousel-item a {
  float: left;
}
.info-slider-wrapper .carousel-item p {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  letter-spacing: 0.1em;
  width: calc(100% - 60px);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  float: left;
}
.info-slider-wrapper .carousel-item img {
  max-width: 24px;
  margin-right: 24px;
  display: inline-block;
  vertical-align: top;
  float: left;
}
.info-slider-wrapper .carousel-control {
  position: absolute;
  right: 0;
  top: 5px;
  width: 75px;
}
.info-slider-wrapper .carousel-control a {
  width: 24px;
  height: 24px;
  display: inline-block;
  padding: 4px;
  margin-right: 10px;
  cursor: pointer;
  background-color: #b52e2a;
  border-radius: 100px;
  transition: all 0.2s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  opacity: 1;
}
.info-slider-wrapper .carousel-control .carousel-control-prev {
  background-image: url(../images/arrow_left.svg);
}
.info-slider-wrapper .carousel-control .carousel-control-next {
  background-image: url(../images/arrow_right.svg);
}
/* info slider css end */

/* performance section css start */
.performance-wrapper {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
}
.performance-wrapper .company-info span {
  font-size: 14px;
  line-height: 32px;
  color: #00426a;
  font-family: "Sabon-bold";
}
.performance-wrapper .company-info span {
  margin-bottom: 24px;
  opacity: 0;
}
.performance-wrapper .company-info h2 {
  font-size: 56px;
  line-height: 64px;
  color: #00426a;
  margin-bottom: 80px;
  opacity: 0;
}
.performance-wrapper .company-info p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1em;
  opacity: 0;
}
.performance-column {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.performance-column.border-none:before {
  display: none;
}
.performance-box {
  border-bottom: 1px solid #b52e2a;
  width: 40%;
  position: relative;
}
.performance-column .performance-box:nth-child(even):before {
  content: "";
  position: absolute;
  left: -70px;
  width: 1px;
  height: 100%;
  background: #d6d9cc;
}
.performance-box h6 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-family: "Sabon-bold";
  color: #b52e2a;
  letter-spacing: 0.1em;
  line-height: 32px;
}
.performance-box span {
  font-size: 72px;
  font-family: "Sabon-bold";
  color: #00426a;
  line-height: 88px;
  margin-bottom: 20px;
  display: inline-block;
  padding-top: 64px;
}
.performance-box span span {
  padding: 0;
  margin: 0;
}
.performance-box p {
  font-size: 14px;
  line-height: 24px;
  color: #00426a;
  padding-bottom: 10px;
  letter-spacing: 1px;
  opacity: 0;
}
.parallax-mountain {
  height: 100vh;
  width: 100%;
}
.parallax-mountain {
  height: 475px;
}
.parallax-mountain .images {
  width: 100%;
  height: 110%;
  position: relative;
  z-index: -1;
}
.parallax-mountain .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}
.parallax-mountain .image-wrapper img {
  width: 100%;
}

/* performance section css end */

/* About atar section css start */
.about-atar {
  background: #f5f6f2;
  padding: 170px 0 270px;
  -webkit-clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-top: -140px;
  position: relative;
  overflow-x: hidden;
}
.about-atar .about-desc {
  margin-bottom: 40px;
}
.slide-block {
  height: 392px;
  width: 392px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  max-width: 100%;
}
.slideimg1 {
  background-image: url("../images/about-slide.png");
}
.slideimg2 {
  background-image: url("../images/core-value.png");
}
.slideimg3 {
  background-image: url("../images/investment.png");
}
.slideimg4 {
  background-image: url("../images/our-team.png");
}
.slide-panel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  margin-top: 80px;
}
.slide-graphic {
  position: relative;
  width: 100%;
  height: 392px;
}
.slide-description-row {
  position: absolute;
  width: 100%;
  padding-top: 80px;
}
.slide-description-row .slide-description:nth-child(odd) {
  right: 0;
  width: 60%;
  position: absolute;
}
.slide-description-row .slide-description:nth-child(even) {
  left: 0;
  width: 60%;
  position: absolute;
}
.content1,
.content2,
.content3,
.content4 {
  opacity: 0;
}
.slide-description-row h2 {
  font-size: 72px;
  line-height: 88px;
  font-family: "Sabon-bold";
  margin-bottom: 50px;
}
.slide-description-row p {
  margin-bottom: 40px;
  width: 85%;
  font-size: 14px;
  line-height: 24px;
}
.slide-number {
  color: transparent;
  -webkit-text-stroke: 1px #d6d9cc;
  position: absolute;
  font-size: 320px;
  font-family: "Sabon-bold";
  position: absolute;
  line-height: 250px;
}
.slide-number::before,
.slide-number::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.5s;
  -webkit-text-stroke: 1px transparent;
}
.slide-description-row .slide-description:nth-child(odd) .slide-number {
  top: -140px;
  left: -160px;
}
.slide-description-row .slide-description:nth-child(even) .slide-number {
  top: -140px;
  right: -160px;
}
.responsive-block {
  position: relative;
  width: 100%;
  margin-top: 147px;
  display: none;
}
.responsive-block .responsive-block-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
.responsive-block .responsive-block-row:last-child {
  margin-bottom: 0;
}
.responsive-block .slide-block {
  visibility: visible;
  position: relative;
}
.responsive-block .slide-description {
  text-align: center;
  position: relative;
}
.responsive-block .slide-number {
  top: -150px;
  left: 0;
  right: 0;
}
.responsive-block .slide-description h2 {
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 56px;
  line-height: 64px;
  z-index: 9;
  position: relative;
}
.responsive-block .slide-description p {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 24px;
}
.inner-portfolio {
  padding: 104px 0 24px;
}
.inner-portfolio h2 {
  margin-bottom: 80px;
}
.inner-portfolio p {
  margin-bottom: 40px;
}
.inner-portfolio .portfolio-content {
  padding-left: 70px;
}
/* About atar section css end */

/* Portfolio section css start */
.portfolio-wrapper {
  position: relative;
  padding: 170px 0 170px;
  -webkit-clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-top: -140px;
  background: #ffffff;
}
.portfolio-wrapper .portfolio-row {
  margin-top: 40px;
}
.portfolio-box {
  height: 288px;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  margin-bottom: 30px;
}
.portfolio-box:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
.portfolio-box img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 80%;
  margin: 0 auto;
}
.portfolio-box .portfolio-detail {
  position: absolute;
  background: #00426a;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: all ease 0.5s;
  opacity: 0;
  color: #ffffff;
  text-align: center;
}
.portfolio-box:hover .portfolio-detail {
  opacity: 1;
}
.portfolio-box .portfolio-detail h4,
.portfolio-box .portfolio-detail h5 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 32px;
  font-family: "Sabon-bold";
  letter-spacing: 0.1em;
  color: #eff2e4;
}
.portfolio-box .portfolio-detail h5 {
  margin-top: 30px;
}
.portfolio-box .portfolio-detail span {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 32px;
  letter-spacing: 0.1em;
  display: block;
}
.portfolio-box .portfolio-detail p {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-wrapper .primary-btn {
  margin-top: 60px;
}
/* Portfolio section css end */

/* Building section css start */
#horizontal-slider {
  transition: top ease 0.8s;
  position: relative;
}
.building-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 750px;
}
/* .overlay{
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
} */
/* Building section css end */

/* News section css start */
.news-wrapper {
  position: relative;
  background: #f5f6f2;
  padding: 65px 0 150px;
  padding: 170px 0 140px;
  -webkit-clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-top: -100px;
}
.news-wrapper .news-row {
  margin-top: 40px;
}
.news-box {
  border: 1px solid #d6d9cc;
  padding: 40px;
  height: 360px;
  margin-bottom: 30px;
  transition: all ease 0.5s;
}
.news-box:hover {
  background: #eff2e4;
  border-color: #eff2e4;
}
.news-box .tag {
  color: #d6d9cc;
  font-size: 14px;
  font-family: "Sabon-bold";
  line-height: 32px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  display: block;
}
.news-box h5 {
  color: #00426a;
  font-size: 14px;
  font-family: "Sabon-bold";
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.news-box p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-box .primary-link {
  margin-top: 40px;
  opacity: 0;
}
.news-box:hover .primary-link {
  opacity: 1;
}
.news-wrapper .primary-btn {
  margin-top: 60px;
}
.newsletter-image img {
  max-width: 100%;
}
/* News section css end */

/* Newslettter section css start */
.newsletter-wrapper {
  background: #ffffff;
  padding: 170px 0 140px;
  -webkit-clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 100px, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-top: -100px;
}
.newsletter-wrapper h3 {
  color: #00426a;
  font-size: 56px;
  line-height: 64px;
  font-family: "Sabon-regular";
  margin-bottom: 40px;
}
.newsletter-wrapper.inner-newsletter {
  margin-top: 0;
  clip-path: inherit;
}
/* Newslettter section css end */

/* footer css start */
.footer {
  background: url("../images/footer-bg.jpg");
  background-size: cover !important;
  min-height: 383px;
  display: flex;
  align-items: center;
  position: relative;
}
.footer:before {
  content: "";
  width: 382px;
  height: 382px;
  background: url("../images/footer_watermark.png") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: 0.05;
}
.footer .footer-logo img {
  max-width: 185px;
}
.footer ul {
  text-align: right;
}
.footer ul li {
  display: inline-block;
}
.footer ul li a {
  font-size: 14px;
  font-family: "Sabon-bold";
  color: #ffffff;
  text-transform: uppercase;
  line-height: 32px;
  padding: 0px 12px;
  transition: all ease 0.5s;
  letter-spacing: 0.1em;
}
.footer ul li:last-child a {
  padding-right: 0;
}
.footer ul li a:hover {
  opacity: 0.6;
}
.footer p {
  font-size: 14px;
  color: #ffffff;
  font-family: "Nuew Hass Display Bold";
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: right;
  margin-top: 24px;
}
.footer h4 {
  font-size: 14px;
  color: #ffffff;
  font-family: "Oswald-regular";
  line-height: 24px;
  letter-spacing: 0.1em;
  margin-top: 35px;
  text-align: right;
}
.footer h4 span {
  font-family: "Oswald-bold";
}
/* footer css end */

/* About page css start */
.inner-header.header .navbar .nav-item .nav-link {
  color: #00070d;
}
.inner-header.header .navbar .nav-item .nav-link:after {
  background: #00070d;
}
.header.inner-header.sticky-header .navbar .nav-item .nav-link:after {
  background: #003251;
}
.inner-header.isHover .navbar .nav-item .nav-link {
  color: #ffffff;
}
.inner-header.isHover .navbar .nav-item .nav-link:after {
  background: #ffffff;
}
.inner-header .logo {
  display: none !important;
}
.inner-header .logo.innerlogo {
  display: block !important;
}
.inner-header.isHover .logo.innerlogo,
.header.sticky-header.inner-header .logo.innerlogo,
.header.sticky-header.inner-header .logo.white-logo {
  display: none !important;
}
.inner-header.isHover .logo.white-logo,
.header.sticky-header.inner-header .logo.home-logo {
  display: block !important;
}
.inner-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background: rgba(239, 242, 228, 0.3);
  overflow: hidden;
}
.inner-banner h1 {
  text-align: center;
  font-size: 72px;
  line-height: 88px;
  color: #003251;
  position: relative;
  z-index: 9;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
}
.breadcrumbs {
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: 40px;
}
.breadcrumbs ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0 7px;
}
.breadcrumbs ul li:not(:last-child):after {
  content: ">";
  position: absolute;
  right: -4px;
  top: -1px;
  color: #003251;
  font-size: 10px;
}
.breadcrumbs ul li,
.breadcrumbs ul li a {
  font-size: 8px;
  color: #003251;
}
.isHover .breadcrumbs {
  z-index: 9;
}
.isHover .breadcrumbs ul li,
.isHover .breadcrumbs ul li a,
.isHover .breadcrumbs ul li:not(:last-child):after {
  color: #ffffff;
}
.inner-banner-background {
  position: absolute;
  width: 800px;
  height: 448px;
  left: 0;
  right: 0;
  bottom: -224px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  z-index: 9;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  margin: 0 auto;
  max-width: 100%;
  background-position: center center !important;
}
.inner-banner-background:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 66, 106, 0.75),
    rgba(0, 66, 106, 0.75)
  );
  position: absolute;
  top: 0;
  left: 0;
}
.isHover .inner-banner-background {
  z-index: 0;
  bottom: 0;
  animation: scaleEffect 0.7s ease-in-out;
  width: 100%;
  height: 100%;
}
@keyframes scaleEffect {
  0% {
    width: 800px;
    height: 448px;
  }
  20% {
    width: 600px;
    height: 400px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
.isHover.inner-banner h1 {
  color: #ffffff;
  font-size: 160px;
  line-height: normal;
  font-family: "Sabon-regular";
  z-index: 11;
  position: relative;
  animation: scaleTextEffect 1s ease-in-out;
}
@keyframes scaleTextEffect {
  0% {
    font-size: 72px;
  }
  20% {
    font-size: 60px;
  }
  100% {
    font-size: 160px;
  }
}
.downarrow {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("../images/down-arrow.png");
  background-size: cover;
  transform: scale(2);
  position: absolute;
  left: 0;
  right: 0;
  transform: scale(2);
  z-index: 9;
  margin: 0 auto;
  bottom: 180px;
}
.grid-flex {
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  flex-direction: row;
  -webkit-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  height: 840px;
  justify-content: flex-start;
}
.col-left {
  -webkit-box-ordinal-group: -1;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.col-text {
  display: flex;
  align-items: center;
  width: 40%;
}
.col-text h2 {
  margin-bottom: 80px;
  opacity: 0;
}
.col-text p {
  margin-bottom: 40px;
  opacity: 0;
}
.col-image {
  background-size: cover;
  background-position: center center;
  height: 840px;
  position: absolute;
  right: 0;
  width: 50%;
}
.grid-flex:nth-child(even) {
  justify-content: flex-end;
}
.grid-flex:nth-child(even) .col-image {
  left: 0;
}
.upnext-slider {
  overflow: hidden;
  padding: 80px 0;
}
.slider-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 80px;
}
.slider-wrapper a {
  display: block;
}
.slider-wrapper a:hover .slide-title {
  color: #b52e2a;
}
.upnext-slider .container {
  position: relative;
}
.upnext-slider .container:after {
  content: "";
  width: 1920px;
  height: 1px;
  background: #d6d9cc;
  position: absolute;
  bottom: 80px;
  left: 15px;
}
.slider-wrapper .slide {
  padding: 0 15px;
  min-width: 800px;
}
.slide-image {
  height: 370px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.slide-image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 66, 106, 0.5),
    rgba(0, 66, 106, 0.5)
  );
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-title {
  color: #003251;
  font-size: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 40px 0;
  transition: all ease 0.5s;
}
.arrows {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-top: 40px;
}
.arrows .arrow {
  width: 40px;
  height: 40px;
  display: inline-block;
  padding: 4px;
  margin-right: 24px;
  cursor: pointer;
  background-color: #b52e2a;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: none;
}
.arrows .arrow.prev {
  background-image: url(../images/arrow_left.svg);
}
.arrows .arrow.next {
  background-image: url(../images/arrow_right.svg);
}
.flame-logo {
  width: 900px;
  height: 900px;
  background: url("../images/flame-logo.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}
/* About page css end */

/* Signup modal css start */
.mailpoet_form {
  padding: 0 !important;
}

.signupModal .modal-dialog {
  width: 1040px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.signupModal .modal-content {
  padding: 120px;
  border-radius: 0;
  border: 0px;
}
.signupModal .modal-content .close {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 24px;
  height: 24px;
  background: url("../images/close-icon.png") no-repeat;
  background-size: cover;
  opacity: 1;
  transform: rotate(0deg);
  transition: all ease 0.5s;
}
.signupModal .modal-content .close:hover {
  transform: rotate(360deg);
}
.signupModal form {
  margin-top: 80px;
}
.signupModal form .form-group,
.mailpoet_form_form .mailpoet_paragraph {
  margin-bottom: 40px !important;
}
.signupModal form .form-group:last-child,
.mailpoet_form_form .mailpoet_paragraph.last {
  margin-bottom: 0 !important;
}
.signupModal form .form-group .form-control,
.mailpoet_form_form .mailpoet_text {
  border: 1px solid #003251;
  border-radius: 0;
  height: 96px;
  font-size: 18px;
  padding: 30px 40px !important;
  background: #ffffff;
}
.signupModal form .form-group .form-control::-webkit-input-placeholder,
.mailpoet_form_form .mailpoet_text::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.25);
}
.signupModal form .form-group .form-control::-moz-placeholder,
.mailpoet_form_form .mailpoet_text::-webkit-input-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.25);
}
.signupModal form .form-group .form-control:-ms-input-placeholder,
.mailpoet_form_form .mailpoet_text::-webkit-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.25);
}
.signupModal form .form-group .form-control:-moz-placeholder,
.mailpoet_form_form .mailpoet_text::-webkit-input-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.25);
}
.signupModal form .primary-btn {
  background: transparent;
}
.mailpoet_form_form .primary-btn .mailpoet_submit {
  background: transparent;
  padding: 0 !important;
  margin: 0 !important;
  color: #b52e2a;
  font-family: "Sabon-bold";
  text-transform: uppercase;
  font-size: 14px;
}
.mailpoet_form_form .primary-btn {
  position: relative;
  width: 163px;
}
.mailpoet_form_form .primary-btn:after {
  content: "";
  width: 5px;
  height: 8px;
  background: url("../images/right-arrow.svg");
  position: absolute;
  right: 40px;
  top: 50%;
  display: inline-block;
  transform: translateY(-50%);
}
.mailpoet_form_form .primary-btn:hover:after {
  filter: brightness(0) invert(1);
}
.mailpoet_form_form .primary-btn:hover .mailpoet_submit {
  color: #ffffff;
  cursor: pointer;
}
/* Signup modal css end */
.our-core-value {
  background: url("../images/core-value-bg.jpg") no-repeat;
  background-size: cover !important;
  padding: 104px 0;
  text-align: left;
}
.our-core-value h2 {
  margin-bottom: 40px;
  color: #ffffff;
}
.our-core-value p,
.our-core-value .subtitle {
  color: #fff;
}
.our-core-value p {
  font-size: 14px;
}
.bubble-container {
  height: 600px;
  width: 600px;
  border-radius: 50%;
  border: 1px solid #d6d9cc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 104px auto;
}
.bubble {
  height: 104px;
  width: 104px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all ease 0.5s;
  border: 1px solid #eff2e4;
}
.bubble.center {
  background: #fff;
  width: 80px;
  height: 80px;
  left: 12px;
  transition: all ease 0.5s;
}
.bubble.center img {
  filter: brightness(1) invert(0);
}
.bubble img {
  max-width: 40px;
  filter: brightness(0) invert(1);
}
.bubble-inner {
  position: absolute;
  width: 104px;
  height: 104px;
}
.core-value-slider .core_slide {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 40px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.bubble-container .btn-row {
  position: absolute;
  bottom: 130px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.bubble-container .btn-row .arrow {
  margin: 0 13px;
  outline: none;
}
/* About page css end */

/* Investment page css start */
.inestement-section .grid-flex:nth-child(odd) {
  justify-content: flex-end;
}
.inestement-section .grid-flex:nth-child(odd) .col-image {
  right: auto;
  left: 0;
  width: 40%;
}
.inestement-section .grid-flex:nth-child(odd) .col-text {
  width: 50%;
}
.inestement-section .col-text h2 {
  margin-bottom: 40px;
}
.inestement-section .col-text p {
  color: #474747;
}
.investment-ul li {
  color: #003251;
  font-size: 14px;
  list-style: none;
  position: relative;
  padding-bottom: 24px;
  line-height: 24px;
  font-family: "Nuew Hass Display";
  font-weight: 400;
  padding-left: 24px;
  letter-spacing: 0.1em;
}
.investment-ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #b52e2a;
  transform: rotate(-45deg);
}
.inestement-section .grid-flex:nth-child(even) {
  justify-content: flex-start;
}
.inestement-section .grid-flex:nth-child(even) .col-image {
  right: 0;
  left: auto;
  width: 40%;
}
.inestement-section .grid-flex:nth-child(even) .col-text {
  width: 50%;
}
.inestement-section .grid-flex:nth-child(even) .col-image2 {
  right: auto;
  left: 0;
  width: 60%;
  z-index: -1;
  opacity: 1;
}
.inestement-section .grid-flex:nth-child(even) .col-image2::after {
  content: "";
  position: absolute;
  background: rgb(0 50 81 / 95%);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.inestement-section .grid-flex:nth-child(even) .col-text p,
.inestement-section .grid-flex:nth-child(even) .col-text h2,
.inestement-section .grid-flex:nth-child(even) .col-text .investment-ul li {
  color: #fff;
}
.ul_grid {
  display: flex;
}
.ul_grid ul {
  flex-grow: 1;
  width: 49%;
}
.ul_grid ul:first-child {
  padding-right: 25px;
}
.about-investment {
  padding: 104px 0;
  background-color: rgba(239, 242, 228, 0.3);
}
.about-investment p {
  color: #00070d;
  font-size: 18px;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 0.1em;
}
.investment-qoute-section {
  padding: 100px 0;
  background-color: rgba(239, 242, 228, 0.3);
}
.investment-qoute-text {
  position: relative;
  min-height: 535px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  text-align: center;
  padding: 110px 0;
}
.investment-qoute-text .row {
  position: relative;
  z-index: 1;
}
.investment-qoute-text h4 {
  font-size: 24px;
  color: #003251;
  text-transform: uppercase;
  line-height: 41px;
  letter-spacing: 0.15em;
  font-family: "Nuew Hass Display";
  padding: 65px 0 30px;
}
.investment-qoute-text h5 {
  padding-bottom: 30px;
  color: #003251;
  font-size: 14px;
  font-family: "Sabon-bold";
  letter-spacing: 1px;
}
.investment-qoute-text::after {
  content: "";
  background-image: url(../images/frame.png);
  background-position: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-size: 100% 100%;
  z-index: 0;
}
.isHover .inner-banner-background::after {
  background: transparent;
}
.grid-flex.corp-divestiture,
.grid-flex .corp-divestiture-image {
  height: 1200px;
}
/* Investment page css End */

/*Dropdown*/
.header .navbar-nav .dropdown-menu {
  padding: 24px;
  margin: 0;
  min-width: 208px;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 4px 14px 0px rgb(0 0 0 / 5%);
}
.header .dropdown-item {
  padding: 0 0 1px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 14px;
  color: #003251;
  font-family: Sabon LT Pro;
  font-size: 14px;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.header .dropdown.open span.caret,
.header .dropdown.show span.caret {
  transform: rotate(-180deg);
  transition: 0.5s;
}
.header .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid #ffffff;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: all ease 0.5s;
}
.header.inner-header.isHover .caret {
  border-top: 0.3em solid #ffffff;
}
.header.sticky-header .caret,
.header.inner-header .caret,
.header.inner-header.sticky-header .caret {
  border-top: 0.3em solid #b52e2a;
}
.header li:last-child .dropdown-item {
  margin-bottom: 0;
}
.header .dropdown-item:hover {
  background: transparent;
}
.mobile_logo,
.mobile_header_logo,
.social_icons {
  display: none;
}
.social_icons a {
  display: inline-block;
  padding-right: 15px;
}
.menu-open {
  overflow: hidden;
}
/*Dropdown*/

/* Our team page css start */
.team-info {
  margin-top: 120px;
}
.team-info h2 {
  padding-left: 100px;
}
.leadership-team {
  position: relative;
  padding: 120px 0;
  background: url("../images/core-value-bg.jpg");
}
.leadership-team .col-lg-6 {
  padding-left: 12px;
  padding-right: 12px;
}
.leadership-team h2 {
  text-align: center;
  color: #ffffff;
}
.team-profile {
  overflow: visible;
  margin-top: 105px;
  position: relative;
  margin-bottom: 62px;
  opacity: 0;
}
.team-profile .profile-img {
  height: 400px;
  overflow: hidden;
}
.team-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.5s;
  transform: scale(1);
}
.team-profile:hover .profile-img img {
  transform: scale(1.1);
}
.team-profile-detail {
  min-width: 328px;
  background: #ffffff;
  padding: 16px 24px;
  position: absolute;
  right: 0;
  bottom: -56px;
}
.team-profile-detail h3 {
  font-size: 32px;
  line-height: 40px;
  color: #003251;
}
.team-profile-detail p {
  padding: 4px 0;
}
.organization {
  width: 100%;
  margin-top: 100px;
}
.organization h2 {
  text-align: center;
}
.organization .col-lg-4 {
  padding-left: 12px;
  padding-right: 12px;
}
.organization .team-profile {
  margin-bottom: 0;
}
.organization .team-profile .profile-img {
  height: 280px;
}
.organization .team-profile-detail {
  position: relative;
  bottom: 0;
  padding: 25px 0 0;
}
.team-slider {
  padding: 80px 0 120px;
  overflow: hidden;
}
.team-slider .slider-wrapper .slide {
  min-width: 770px;
}
.team-slider .slide-image {
  height: 500px;
}
.team-slider .slide-image:after {
  display: none;
}
.team-slider .slide-image img {
  width: 100%;
  height: auto;
  object-fit: initial;
}
.profileModal {
  padding: 0 !important;
}
.profileModal .modal-dialog {
  width: 100%;
  max-width: 100%;
  padding: 0px;
  margin: 0 auto;
}
.profileModal .modal-content {
  padding: 0px;
  border-radius: 0;
  border: 0px;
  height: 100vh;
}
.profileModal .modal-content .close {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 24px;
  height: 24px;
  background: url("../images/left-arrow.svg") no-repeat;
  background-size: cover;
  opacity: 1;
}
.profileModal .profile-row {
  display: flex;
  height: 100%;
}
.profileModal .profile-row .profile-pic {
  width: 50%;
  height: 100%;
}
.profileModal .profile-row .profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profileModal .profile-row .profile-detail {
  width: 50%;
  padding: 96px 108px 72px 108px;
  overflow: auto;
}
.profileModal .profile-row .profile-detail span {
  font-size: 18px;
  line-height: 32px;
  padding: 24px 0 26px 0;
  display: block;
  letter-spacing: 0.1em;
  color: #00070d;
}
.profileModal .profile-row .profile-detail p {
  padding-top: 30px;
  font-size: 14px;
  line-height: 24px;
}
.senior-advisory {
  background-color: rgba(239, 242, 228, 0.3);
  padding: 104px 0;
  margin-top: 104px;
}
.senior-advisory .advisory-info h2 {
  text-align: center;
  margin-bottom: 80px;
}
.senior-advisory .advisory-info p {
  margin-bottom: 30px;
  padding: 0 100px;
}
.senior-advisory-row .advisory-grp {
  width: 100%;
  margin-top: 95px;
}
.senior-advisory-row .advisory-grp span {
  width: 100%;
  display: block;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #003251;
  text-transform: uppercase;
  line-height: 40px;
  border-bottom: 1px solid #b52e2a;
}
.senior-advisory-row .advisory-img {
  height: 392px;
  overflow: hidden;
}
.senior-advisory-row .advisory-img img {
  width: 100%;
}
.senior-advisory-row .advisory-profile-row {
  margin-top: 80px;
  opacity: 0;
}
.advisory-profile-row h3 {
  font-size: 32px;
  line-height: 40px;
}
.advisory-profile-row h4,
.seniorprofileModal h4 {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #003251;
  width: 288px;
  max-width: 100%;
}
.advisory-profile-row h5,
.seniorprofileModal h5 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #00070d;
  font-family: "Nuew Hass Display";
}
.advisory-profile-row p {
  margin-top: 40px;
}
.advisory-profile-row .primary-link {
  margin-top: 24px;
}
.seniorprofileModal .profile-row {
  padding-left: 104px;
}
.seniorprofileModal .profile-row .profile-pic {
  width: 392px;
  height: 392px;
  margin-top: 104px;
}
.seniorprofileModal .profile-row .profile-detail {
  width: calc(100% - 392px);
  padding: 104px;
  overflow: auto;
}
/* Our team page css end */

/* Investments page css start */
.presence {
  margin-top: 110px;
  margin-bottom: 70px;
}
.presence h2 {
  margin-bottom: 24px;
}
.presence h4 {
  margin-bottom: 24px;
  font-size: 24px;
  font-family: "Nuew Hass Display";
  color: #003251;
  text-transform: capitalize;
  letter-spacing: 0.15em;
  line-height: 40px;
  margin-bottom: 40px;
}
.presence p {
  margin-bottom: 104px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  padding: 0 80px;
}
.map-detail {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-detail-col {
  display: flex;
  align-items: center;
  margin: 0 17px;
}
.map-detail-col img {
  max-width: 16px;
}
.map-wrapper {
  text-align: center;
  margin-top: 80px;
}
.map-detail-col span {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.1em;
  font-family: "Sabon-bold";
  color: #003251;
  display: inline-block;
  margin-left: 16px;
}
.presence-details {
  width: 100%;
}
.presence-details-row {
  border-bottom: 1px solid #d6d9cc;
  padding: 80px 0;
}
.presence-details-row:nth-child(1) {
  padding-top: 40px;
}
.presence-details-row .portfolio-link {
  width: 100%;
  height: 344px;
  display: block;
  pointer-events: none;
}
.presence-details .portfolio-box {
  height: 344px;
  margin-bottom: 0;
}
.presence-details .portfolio-detail {
  padding-left: 128px;
}
.presence-details .portfolio-detail p {
  margin-bottom: 25px;
}
.presence-details .portfolio-detail a {
  margin-top: 15px;
}
.presence-details .portfolio_metas {
  margin-bottom: 40px;
}
.presence-details .portfolio_metas span {
  font-size: 14px;
  font-family: "Sabon-bold";
  color: #000000;
  line-height: 32px;
  margin-right: 40px;
  display: inline-block;
  letter-spacing: 0.1em;
}
.presence-details .portfolio-detail p {
  font-size: 14px;
  line-height: 24px;
}
.portfolioModal {
  background-color: rgba(239, 242, 228, 0.3);
}
.portfolioModal h2 {
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 40px;
}
.portfolioModal p {
  margin-top: 30px;
  margin-bottom: 45px;
  font-size: 14px;
  line-height: 24px;
}
.portfolioModal .portfolio_metas span {
  display: block;
  margin: 5px 0;
}
/* Investments page css end */

/* News page css start */
.news-list {
  padding-top: 86px;
  padding-bottom: 88px;
  background-color: rgba(239, 242, 228, 0.3);
}
.nav-tabs {
  border: 0px;
}
.nav-tabs .nav-item {
  margin-right: 24px;
}
.nav-tabs .nav-link {
  font-size: 14px;
  font-family: "Sabon-bold";
  color: #d6d9cc;
  letter-spacing: 0.1em;
  padding: 20px 0;
  border: 0px;
}
.nav-tabs .nav-link.active {
  background: transparent;
  border: 0px;
  color: #003251;
  border-bottom: 1px solid #b52e2a;
}
.tab-content {
  margin-top: 80px;
}
.tab-content.portfolio-tabs {
  margin-top: 0px;
}

.news-list .tab-content .col-lg-4,
.related-news .col-lg-4 {
  padding-left: 12px;
  padding-right: 12px;
}
.news-list .news-box,
.related-news .news-box {
  padding-top: 24px;
  margin-bottom: 24px;
}
.news-list .news-box .primary-link {
  margin-top: 20px;
}
/* News page css end */

/* News Details page css start */
.news-details-banner {
  margin-top: 235px;
  text-align: center;
}
.news-details-banner h1 {
  font-size: 56px;
  color: #003251;
  line-height: 64px;
  font-family: "Sabon-regular";
}
.news-details-banner p {
  margin-top: 16px;
}
.news-details {
  margin-top: 80px;
  margin-bottom: 50px;
}
.news-details .container {
  position: relative;
}
.news-details p {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  padding-bottom: 30px;
}
.news-details h4 {
  color: #003251;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
}
.news-details a,
.presence-details .portfolio-detail a {
  color: #003251;
  font-weight: bold;
}
.news-details a:hover,
.presence-details .portfolio-detail a:hover {
  color: #b52e2a;
}
.social-icons {
  position: absolute;
  left: 15px;
  top: 0;
}
.social-icons span {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1em;
}
.social-icons ul li {
  display: block;
  margin: 20px 0;
}
.social-icons ul li i {
  width: 20px;
  height: 16px;
  display: block;
  background-position: center !important;
}
.social-icons ul li a {
  padding: 8px;
  border-radius: 6px;
}
.social-icons ul li a:hover {
  background: #003251;
}
.social-icons ul li .facebook-icon {
  background: url("../images/facebook.svg") no-repeat;
}
.social-icons ul li .twitter-icon {
  background: url("../images/twitter.svg") no-repeat;
}
.social-icons ul li .linkedin-icon {
  background: url("../images/linkedin.svg") no-repeat;
}
.social-icons ul li .email-icon {
  background: url("../images/email.svg") no-repeat;
}
.related-news {
  background-color: rgba(239, 242, 228, 0.3);
  padding: 80px 0 50px 0;
}
/* News Details page css end */

/* Contact page css start */
.contact_location_ifo {
  background: rgba(239, 242, 228, 0.3);
  padding: 40px 0;
}
.contact-location-inner {
  width: 809px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.contact-location-inner .company-info {
  text-align: center;
}
.contact-location-inner .company-info h2 {
  font-size: 14px;
  line-height: 32px;
  color: #003251;
  margin-bottom: 8px;
}
.contact-location-inner .company-info p,
.contact-location-inner .company-info a {
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}
.contact-location-inner .company-info a:hover {
  color: #b52e2a;
}
.contact-us-form {
  padding: 80px 0 104px 0;
}
.contact-wrapper {
  background: url(../images/footer-bg.jpg);
  background-size: cover !important;
  padding: 104px 0;
}
.contact-wrapper p {
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
  text-align: center;
  width: 650px;
  margin: 0 auto;
  font-weight: 400;
  max-width: 100%;
}
.contact-us-form .contact-inner {
  width: 809px;
  max-width: 100%;
  margin: 0 auto;
}
.contact-us-form .contact-inner h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 86px;
}
.contact-us-form .first-name,
.contact-us-form .last-name,
.contact-us-form .company,
.contact-us-form .pone-number,
.contact-us-form .your-email {
  float: left;
  width: 50%;
  padding: 0 12px;
  margin-bottom: 24px;
}
.contact-us-form input,
.contact-us-form textarea {
  border: 1px solid #d6d9cc;
  height: 64px;
  padding: 16px 24px;
  border-radius: 0px;
}
.contact-us-form .message {
  padding: 0 12px;
  width: 100%;
  float: left;
}
.contact-us-form .message textarea {
  height: 120px;
}
.submit-contact-btn input {
  height: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  color: #b52e2a;
  font-size: 14px;
  padding: 21px 77px 21px 40px;
}
.submit-contact-btn .primary-btn {
  padding: 0;
}
.submit-contact-btn .primary-btn:hover input {
  color: #ffffff;
}
.submit-contact-btn .primary-btn:hover:after {
  filter: brightness(0) invert(1);
}
.submit-contact-btn .primary-btn:after {
  content: "";
  background: url("../images/right-arrow.svg") no-repeat;
  width: 5px;
  height: 9px;
  display: inline-block;
  background-size: cover;
  position: absolute;
  right: 50px;
}
.submit-contact-btn {
  text-align: center;
  float: left;
  width: 100%;
  margin-top: 40px;
}
.submit-contact-btn .ajax-loader {
  display: none;
}
.contact-inner .wpcf7-response-output {
  position: relative;
  display: block;
  overflow: auto;
  top: 40px;
  text-align: center;
  padding: 10px;
}
/* Contact page css end */

/* Video section about page start */
.video-testimonial {
  padding: 104px 0;
  text-align: center;
}
.video-testimonial h2 {
  margin-bottom: 56px;
}
.video-testimonial .investment-qoute-text {
  padding: 70px;
  min-height: inherit;
}
.video-wrapper {
  min-height: 476px;
  display: flex;
  align-items: center;
  background-size: cover !important;
  position: relative;
  background-position: center;
  z-index: 9;
}
.video-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #003251 0%, rgba(0, 50, 81, 0.35) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.video-wrapper .video-inner {
  z-index: 1;
  position: relative;
  padding: 0 120px;
}
.video-wrapper .video-inner .qoute_img {
  filter: brightness(0) invert(1);
}
.video-wrapper .video-inner h4 {
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
  font-weight: 700;
  padding: 24px 0px;
  text-transform: inherit;
  font-family: "Nuew Hass Display Bold";
  letter-spacing: 0.1em;
}
.video-wrapper .video-inner h5 {
  color: #ffffff;
  padding-bottom: 40px;
}
.video-wrapper .video-inner .play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper .video-inner .play-btn span {
  color: #ffffff;
  font-size: 14px;
  line-height: 32px;
  font-family: "Sabon-bold";
  letter-spacing: 0.1em;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  margin-left: 16px;
}
/* Video section about page end */
/* loader css started */
.loader-container {
  height: 100%;
  width: 100%;
  display: none;
  float: left;
  z-index: 9999;
  position: fixed;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.6);
}
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #b7392a;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  top: 50%;
  position: relative;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* loader css end */
.social-footer-icons {
  text-align: right;
  margin-top: 32px;
}
.social-footer-icons a {
  margin-left: 24px;
}
a.builtin_text {
  color: #fff;
}

/* 1/17/2022 */
.hero-slide-wrap {
  background: #003251;
  padding-top: 21px;
  padding-bottom: 27px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.hero-slider .item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  /* padding-right: 80px; */
}
.hero-slider .item img {
  width: 24px;
  margin-right: 31px;
}
.hero-slider .item h3,
.hero-slider .item h3 a {
  font-size: 14px;
  line-height: 2.28;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  transition: 0.3s all;
}

.hero-slider .slick-arrow {
  position: absolute;
  border: 0;
  background: transparent;
  font-size: 0;
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #b52e2a;
  border-radius: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  top: 50%;
}
.hero-slider .slick-arrow:focus {
  outline: none;
}
.hero-slider .slick-arrow:after {
  position: absolute;
  content: "";
  background-image: url("../images/arrow_left.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 9px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hero-slider .slick-next:after {
  transform: translate(-50%, -50%) scale(-1);
}
.hero-slider .slick-prev {
  right: 66px;
}
.hero-slider .slick-next {
  right: 26px;
}
.hero-slider {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.hero-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
  height: auto;
}

/* media query */
@media (min-width: 1199px) {
  .slick-list.draggable {
    width: 965px !important;
    margin: auto;
  }
}

@media (max-width: 1199px) {
  .hero-slide-wrap {
    position: static;
    padding-top: 44px;
    background-image: url("../images/hero-mobile.png");
    background-color: none;
    position: relative;
  }
  section.hero-slide-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003251;
    opacity: 0.97;
    z-index: -1;
  }
  .hero-slider .item {
    display: block !important;
    padding-bottom: 77px;
    padding-right: 0;
  }
  .hero-slider .item img {
    display: block;
    margin: auto;
    margin-bottom: 20px;
  }
  .hero-slider .slick-arrow {
    top: inherit;
    bottom: 0;
    left: 50%;
  }
  .hero-slider .slick-prev {
    left: calc(50% - 25px);
  }
  .hero-slider .slick-next {
    left: calc(50% + 25px);
  }
}
