@charset "utf-8";
/* CSS Document */

::-webkit-scrollbar {
	display: none;
}

html {
  scroll-behavior: smooth;
}

#colophon{
	display: none;
}

body,html{
	padding: 0;
	margin: 0;	
	font-family: 'Montserrat', sans-serif!important;
	color: #000000;
	overflow-x: hidden;
}

.montserrat{
	font-family: 'Montserrat', sans-serif;
}

.bebas{
	font-family: 'Bebas Neue', cursive;
}

:root{
	--line1: #00234E;
	--line2: #D0E6A5; 
	--line3: #FFE795; 
	--line4: #FFD37C; 
	--line5: #F56C5D; 
}

.line1{ width:6px; background-color:#00234E; }
.line2{ width:12px; background-color:#D0E6A5; }
.line3{ width:18px; background-color:#FFE795; }
.line4{ width:24px; background-color:#FFD37C; }
.line5{ width:30px; background-color:#F56C5D; }
.investor-line{	
	height: 6px; display: block!important;
}

a{
	text-decoration: none;
	color: #000000;
	margin: 0;
	padding: 0;
}

/* Loader */
.loader-container{
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	background-color: #ebebeb;
	z-index: 999;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #000;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 


header{
	height: 17vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #00234E;
  padding: 1vh 100px;
  width: calc(100vw - 200px);
  height: 4vh;
}

.top-menu a{
	margin: 0 30px;
	color: #fff;
	font-size: 1.2vw;
	transition: .2s;	
}

.top-menu a:hover{
	color: #00234E;
	transition: .2s;	
}

.bottom-menu{
  display: flex;
  align-items: center;
  padding: 3vh 100px;
  width: calc(100vw - 200px);
  justify-content: space-between;
  height: 5vh;
}

.logo img{
	width: 13.8vw;
	object-fit: cover;
}

.bottom-menu nav{
	z-index:99;
}


.bottom-menu nav ul {
	padding: 0;
  	margin: 0;
	list-style: none;
	position: relative;
}
	
.bottom-menu nav ul li {
	display:inline-block;
	margin: 0 25px;
}
.bottom-menu nav ul li:hover ul{
    visibility: visible;
    opacity: 1;
}
.bottom-menu nav ul li ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 1vw;
    list-style: none;
    position: absolute;
    /* width: 100vw; */
    background-color: rgba(200, 200, 200, 1);
    /* top: 13vh; */
    /* left: 0; */
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    /* padding: 2vw 0; */
}

.bottom-menu nav a {
	margin: 5px 0;
	font-size: 0.83vw;
	font-weight: bold;
	color: #00234E;
	transition: .2s;
}

.bottom-menu nav a:hover { 
	color: #00234E;
}

.bottom-menu nav .investor-line{
	margin: 0.5vh auto;
}
.bottom-menu nav ul ul .investor-line{
	margin: 0.5vh 0!important;
}

/* Hide Dropdowns by Default */
.bottom-menu nav ul ul {
	display: none;
	position: absolute; 
	padding: 1vh 1vw;
}
.bottom-menu nav ul ul li{
	margin: 1vh 0;
}
	
/* Display Dropdowns on Hover */
.bottom-menu nav ul li:hover > ul {
	display:inherit;
	background-color: #fff;
}
	
/* Fisrt Tier Dropdown */
.bottom-menu nav ul ul li {
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	*/
.bottom-menu nav ul ul ul li {
	position: relative;
	top:0; 
	left:170px;
}

.header-menu{
	list-style: none;
	display: flex;
	align-items: center;
}

.header-menu li{
	margin: 0 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header-menu li a{
	margin: 5px 0;
	font-size: 0.83vw;
	font-weight: bold;
	color: #00234E;
	transition: .2s;
}

.header-menu li a:hover{
	transition: .2s;
}

.header-menu li ul{
	display: none;
}

.header-menu li:hover > ul{
	display:inherit;
}

nav li:nth-child(1) a:hover{
	color: var(--line1);
}

nav li:nth-child(2) a:hover{
	color: var(--line2);
}

nav li:nth-child(3) a:hover{
	color: var(--line2);
}

nav li:nth-child(4) a:hover{
	color: var(--line3);
}

nav li:nth-child(5) a:hover{
	color: var(--line4);
}

nav li:nth-child(6) a:hover{
	color: var(--line5);
}

.home-swiper {
	width: 100vw;
	height: 83vh;
}

.home-swiper .swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-size: cover;
	background-position: center;
	z-index: 2;
}

.home-swiper-text-container{
	color: #00234E;
	padding: 8vh 6vw;
	width: 40%;
}

.home-swiper-text-container h2{
	font-size: 3.85vw;
	margin: 0;
	font-weight: normal;
}

.home-swiper-text-container p{
	font-size: 1.5vw;
	margin: 0;
}

.home-swiper-text-container a{
	font-size: 1.5vmax;
	margin: 2vmax 0 0 0;
	background-color: #00234E;
	color: #fff;
	padding: 0.5vmax 1vmax;
	border-radius: 2vmax;
	display: block;
	width: max-content;
}

.home-swiper-number-container{
  margin: 1vh 5vw;
  background-color: #00234E;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}

.home-swiper-number-container img{
	width: 18vw;
	height: auto;
	margin: -5vh 0 0 0;
}

.home-swiper-number-container p{
	font-size: 13vw;
	color: #fff;
	margin: 0;
	line-height: 0.8;
}

.home-swiper 
.swiper-pagination-bullet{
	border-radius: 0!important;
	width: 3.25vw;
	height: 0.5vw;	
	opacity: 0.7;
}

.home-swiper .swiper-pagination-bullet-active{
	opacity: 1;
}

.home-swiper 
.swiper-pagination-bullet:nth-child(1){
	width: 1vw;
	background-color: var(--line3)!important;
}

.home-swiper 
.swiper-pagination-bullet:nth-child(2){
	width: 1.75vw;
	background-color: var(--line4)!important;
}

.home-swiper 
.swiper-pagination-bullet:nth-child(3){
	width: 2.5vw;
	background-color: var(--line5)!important;
}

#institutional{
}

.home-section-title-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: 80vw;
	padding: 2vh 10vw;
}

.home-section-title-container p{
	font-weight: 900;
	font-size: 13vw;
	color: #F0F0F0;
	line-height: 1;
	margin: 0 0 0 -5vw;
	height: max-content;
}

.home-section-title-container h2{
	font-size: 2.6vw;
	color: #00234E;
	font-weight: bold;
	margin: -10vh 0 0 0;
}

.page-section-title-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: calc(100vw - 200px);
	padding: 2vh 100px;
}

.page-section-title-container h2,
.page-section-title-container h1{
	font-size: 2.6vw;
	color: #00234E;
	font-weight: bold;
	margin: 0vh 0 0 0;	
}

.page-section-title-container span{
	width: 100px;
	height: 5px;
	background-color: #00234E;
	margin: 2vh 0 0 0;
}

.home-section-title-container span{
	width: 100px;
	height: 5px;
	background-color: #00234E;
	margin: 2vh 0 0 0;
}

.home-institutional-container{
	width: calc(100vw - 200px);
	padding: 0vh 100px 0vh;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
}

.home-institutional-text-container{
	width: 50%;
}

.home-institutional-text-container h3{
	font-size: 2.08vw;
	margin: 0;
	color: #00234E;
	font-weight: normal;
}

.home-institutional-text-container p{
	color: #00234E;
	font-size: 1.1vw;
	margin: 2vh 0;
	line-height: 2;
}

.home-institutional-img-container{
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-institutional-img-container img{
	width: 90%;
	height: 90%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.home-institutional-second-container{
	width: 100vw;	
	margin: 10vh 0 5vh 0;
}

.home-institutional-second-container h3{
	padding: 0 100px;
	width: calc(100vw - 200px);
	margin: 5vh 0 2vh 0;
}

.home-institutional-customer-container{
	display: flex;
	align-items: center;
}

.home-customer-box{
	width: 25%;
	height: 15vw;
}

.home-customer-box p{
	margin: 0;
	color: #fff;
	font-size: 1.56vw;
	line-height: 1;
	text-align: left;
	width: 70%;
}

.home-customer-box p strong{
	margin: 0;
	color: #fff;
	font-size: 10.05vw;
	line-height: 1;
}

.home-customer-box p:first-child{
	margin: 0;
	color: #fff;
	font-size: 5.56vw;
	line-height: 1;
	text-align: left;
}

.home-customer-box-original{
	background-size: 35%;
	background-position: center left;
	background-repeat: no-repeat;
	background-color: #00234E;
	height: 100%;
	width: calc(100% - 4vw);
	opacity: 1;
	visibility: visible;
	transition: opacity .5s;
	padding: 0 2vw;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
}

.home-customer-box-mask{
	background-size: 40%;
	background-position: center left;
	background-repeat: no-repeat;
	background-color: #FC887B;
	width: calc(100% - 4vw);
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 0 2vw;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
}

.home-customer-box:hover{
	cursor: default;
}

.home-customer-box:hover .home-customer-box-original{
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s;
}

.home-customer-box:hover .home-customer-box-mask{
	height: 110%;
	opacity: 1;
	visibility: visible;
	transition: opacity .5s;
}

.home-institutional-person-container{
	padding: 5vh 0;
}

.home-institutional-person-container h3{
	padding: 0 100px;
	width: calc(100vw - 200px);
	margin: 2vh 0 2vh 0;
}

.home-institutional-person-box-container{
	display: flex;
	justify-content: center;
}

.home-institutional-person-box{
	width: 12vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 2vw;
}

.home-institutional-person-box-top{
	background-color: #00234E;
	margin-top: 6vw;
	transition: .2s;
}

.home-institutional-person-box img{
	width: 12vw;
	height: 12vw;
	object-fit: cover;
	border-radius: 100%;
	filter: grayscale(100%);
	transition: .2s;

}

.home-institutional-person-box h4{
	color: #fff;
	text-align: center;
	margin: 2vh 0 0 0;
	font-size: 1.3vw;
}

.home-institutional-person-box h4:last-child{
	margin: 0 0 2vh 0 ;
}

.home-institutional-person-box-bottom{

}

.home-institutional-person-box-bottom p{
	width: 80%;
	text-align: center;
	margin: 2vh auto;
	font-size: 0.93vw;
	color: #00234E;
}

.home-institutional-person-box-img{
	width: 12vw;
	height: 12vw;
	margin-top: -6vw;
}

.home-institutional-person-box-img-mask{
	width: 12vw;
	height: 12vw;
	background-color: rgba(160, 221, 224, 0.4);
	margin-top: -12vw;
	border-radius: 100%;
	position: relative;
	z-index: 2;
	transition: .2s;
}

.home-institutional-person-box:hover img{
	filter: grayscale(0%);
	transition: .2s;
}

.home-institutional-person-box:hover 
.home-institutional-person-box-img-mask{
	background-color: rgba(160, 221, 224, 0);
	transition: .2s;
}

.home-institutional-person-box:hover 
.home-institutional-person-box-top{
	background-color: #FC887B;
	transition: .2s;
}

.home-portfolio-scroll-container{
    display: flex;
    overflow: auto;
    width: calc(100vw - 6vw);
    padding: 0 3vw;
    margin: 5vh 0;
    scroll-behavior: unset;
}

.home-portfolio-scroll-container::-webkit-scrollbar {
	display: block!important;
  background-color: #2d2d2d;
  background: teal;
  cursor: pointer;
}

/* width */
.home-portfolio-scroll-container::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.home-portfolio-scroll-container::-webkit-scrollbar-track {
  background: #fff; 
}
 
/* Handle */
.home-portfolio-scroll-container::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to right, #D0E6A5 60%, #FFFFFF 10%, #FFE795 60%, #FFFFFF 10%, #FFD37C 60%, #FFFFFF 10%, #FC887B 60%);
  background-image: linear-gradient(to right,
  	#00224B 0% 5%, 
    #459672 5% 10%,
    #F4E220 10% 30%,
    #FFA332 30% 60%,
    #D7411D 60% 100% 
  );

}

/* Handle on hover */
.home-portfolio-scroll-container::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

.home-portfolio-container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-portfolio-box{
	display: flex;
	flex-direction: column;	
	width: 12.4vw;
	margin: 2vw;
	padding: 2vw;
	box-shadow: 2px 2px 40px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	height: 20vw;
	transition: .2s;
}

.home-portfolio-box label{
	font-size: 3.48vw;
	padding: 0;
	margin: 0;
	color: #EFEFEF;
	text-align: right;
}

.home-portfolio-box img{
    width: 90%;
    height: 5vw;
    object-fit: contain;
}

.home-portfolio-box p{
	font-size: 0.68vw;
	color: #00234E;
	margin: 2vh 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	line-clamp: 6; 
   -webkit-box-orient: vertical;
}

.home-portfolio-box a{
	color: #00234E;
	font-size: 0.68vw;
	font-weight: bold;
	text-align: right;
}

.home-portfolio-box:hover{
	transform: scale(1.1);
	box-shadow: 2px 2px 20px rgba(212, 229, 172, 1);
	transition: .2s;
}

.home-investor-container{
	display: flex;
	width: 100vw;
	padding: 5vh 0 0 0;
}

.home-investor-container-left{
	width: 40%;
	background-color: #F4F4F4;
}

.home-investor-container-left .home-section-title-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	padding: 2vh 10vw;
}

.home-investor-img-container{
	width: 80%;
	padding: 5vh 0;
}

.home-investor-img-container img{
	width: 100%;
	object-fit: cover;
}

.home-investor-container-right{
	width: calc(60% - 6vw);
	height: 100%;
	padding: 15vh 3vw 0;
	background-size: 25%;
	background-repeat: no-repeat;
	background-position: top right;
}

.home-investor-container-right h3{
	font-size: 2.08vw;
	color: #00234E;
	margin: 0;
	padding: 2vh 0;
	border-bottom: solid 2px #D0E6A5;
	white-space: nowrap;
	width: 50%;
	font-weight: normal;
}

.home-investor-container-right .investor-card-first-p{
	width: 75%;
	font-size: 1.1vw;
	color: #00234E;
	line-height: 2;
}

.home-investor-cards-area{
	height: 20vh;
	background-color: #F4F4F4;
	border-radius: 20px;
	margin: 5vh 0 0 0;
	padding: 5vh 2vw 0;
}

.home-investor-cards-container{
	display: flex;
	width: calc(100% - 4vw);
	margin: -22vh 2vw 0 2vw;
	justify-content: space-between;
}

.home-investor-card{
	width: 30%;
	border-radius: 20px;
	background-color: #fff;
	color: #00234E;
	text-align: center;
	height: 20vw;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.home-investor-card-circle{
	width: 12vw;
	height: 12vw;
	margin:  2vh auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 100%;
	background-color: #F4F4F4;
	line-height: 1;
}

.home-investor-card-circle p:nth-child(1){
	margin: 0;
	font-size: 0.88vw;
}

.home-investor-card-circle p:nth-child(2){
	margin: 0;
	font-size: 2.5vw;
	font-weight: 500;
	
}

.home-investor-card-circle p:nth-child(3){
	margin: 0;
	font-size: 1.3vw;	
}

.home-investor-card .investor-card-last-p{
  font-size: 1.1vw;
  font-weight: bold;
  width: 80%;
  margin: 2vh auto;
}

.investment-area-container{
	width: 100vw;
	margin: 10vh 0 0 0;
	padding: 5vh 0vw 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.investment-area-container h3{
	color: #fff;
	font-size: 2.6vw;
	margin: 0;
	width: calc(25% - 10vw);
	white-space: nowrap;
	padding: 0vh 0 2vh 10vw;
	border-bottom: solid 2px rgba(255, 255, 255, 0.4);
}

.investment-area-wrap-container{
	width: 80%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	margin: 2vh auto;
}

.investment-area-wrap-container img{
	width: 22%;
	object-fit: contain;
	margin:  2vh 2.5%;
}

.investment-area-container p{
	margin: 5vh 0 0 0;
	font-size: 9.5vw;
	text-align: center;
	font-weight: 900;
	color: #000;
	opacity: 0.25;
	line-height: 0.73;
}

.home-strategy-title-container{
	display: flex;
	align-items: center;
	width: 90vw;
	padding: 2vh 0 0 10vw;
}

.home-strategy-title-line-big{
	width: 40%;
	border-bottom: solid 2px #FFDC64;
}

.home-strategy-title-line-sml{
	width: 10%;
	border-bottom: solid 2px #FFDC64;
}

.home-strategy-title-container h3{
	white-space: nowrap;
	width: 50%;
	color: #00234E;
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 2.08vw;
  justify-content: center;
}

.home-strategy-title-container h3 img{
	width: 10%;
	margin: 0 1vw 0 0;
}

.home-strategy-flex-container{
	width: 80vw;
	padding: 2vh 10vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.home-strategy-flex-box{
	width: 30%;
}

.home-strategy-flex-box-title h3{
	margin: 2vh 0;
	color: #00234E;
	font-size: 1.66vw;
}

.home-strategy-flex-box-detail{
	display: flex;
	align-items: flex-start;
}

.home-strategy-flex-box img{
	object-fit: cover;
	width: 20%;
	height: auto;
}

.home-strategy-flex-box ul{
	width: 80%;
	margin: 0;
	padding: 0;
}

.home-strategy-flex-box ul li{
	margin: 0;	
  list-style: none;
  display: flex;
  align-items: center;
}

.home-strategy-flex-box ul li::before{
  margin: 0 0.5vw;
  content: "\25A0";
  color: #FFC500;
  font-size: 1.2vw;
  font-weight: bold;
}

.home-strategy-flex-box ul li p{
	font-size: 0.93vw;
	color: #666767;
	margin: 1vh 0;
}

.home-strategy-flex-box ul a{
	margin: 2vh 0 0 2vw;
	font-size: 0.93vw;
}

.partners-swiper {
	width: 100vw;
	height: 25vh;
	margin: 10vh 0;
	background-color: #00234E;
}

.partners-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-swiper .swiper-slide img {
	width: 60%;
	height: 60%;
	object-fit: contain;
}

.partners-swiper .swiper-slide {
	width: 25%;
}

.partners-swiper 
.swiper-pagination-bullet{
	border-radius: 0!important;
	width: 3.25vw;
	height: 0.5vw;	
	background-color: #fff!important;
	opacity: 0.7;
}

.partners-swiper .swiper-pagination-bullet-active{
	opacity: 1;
}

.partners-swiper 
.swiper-pagination-bullet:nth-child(1){
	width: 1vw;
}

.partners-swiper 
.swiper-pagination-bullet:nth-child(2){
	width: 1.75vw;
}

.partners-swiper 
.swiper-pagination-bullet:nth-child(3){
	width: 2.5vw;
}

.partners-swiper 
.swiper-pagination-bullet:nth-child(4){
	width: 3.25vw;
}

footer{
	width: 60vw;
	background-color: #00234E;
	margin: 5vh 0 0 0;
	padding: 5vh 20vw;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.footer-bottom-area{
	display: flex;

}

.footer-menu{
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 5vh 1vw;
}

.footer-li{
	margin: 0 1vw;
}

.footer-li:nth-child(1) .footer-link:hover{
	color: #00234E;
}

.footer-li:nth-child(2) .footer-link:hover{
	color: var(--line2);
}

.footer-li:nth-child(3) .footer-link:hover{
	color: var(--line2);
}

.footer-li:nth-child(4) .footer-link:hover{
	color: var(--line3);
}

.footer-li:nth-child(5) .footer-link:hover{
	color: var(--line4);
}

.footer-li:nth-child(6) .footer-link:hover{
	color: var(--line5);
}

.footer-link{
	font-size: 0.88vw;
	color: #FFFFFF;
	transition: .2s;
	font-weight: bold;
}


.footer-left-side{
	width: 41vw;
}

.footer-right-side{
	width: 26vw;
}

.footer-left-side-bottom{
	display: flex;
	width: 100%;
}

.footer-left-side-bottom-left-side{
	width: 40%;
	margin: 0.5vw 0 0 0;
}

.footer-left-side-bottom-left-side a{
	background-color: #62AAAD;
	border-radius: 5px;
	padding: 0.5vw 3vw;
	font-size: 0.88vw;
	margin: 0 2vw;
	color: #FFFFFF;
	transition: .2s;
}

.footer-left-side-bottom-left-side a:hover{
	color: #00234E;
	transition: .2s;
}

.footer-left-side-bottom-left-side img{
	width: 12vw;
	object-fit: cover;
	margin: 5vh 2vw;
}

.footer-left-side-bottom-right-side{
	padding: 0vh 2vw 0;
	display: flex;
	align-items: center;
}

.footer-left-side-bottom-right-side iframe{
	width: 20vw;
	height: 20vh;
	border-radius: 15px;
}

.footer-address-container{
	width: 80%;
	display: flex;
	flex-direction: column;
}

.footer-address{
	font-size: 0.88vw;
	margin: 0;
	color: #fff;
}

.footer-phone{
	margin: 2vh 0;
	color: #fff;
	font-size: 0.88vw;
	font-weight: bold;
}

.footer-mail{
	font-size: 0.88vw;
	color: #62AAAD;
	margin: 0;
	font-weight: bold;
}

.footer-social-container{
	display: flex;
	margin: 2vh 0;
}

.footer-social-container a{
	font-size: 1.2vw;
	color: #62AAAD;
	transition: .2s;
}

.footer-social-container a:first-child{
	margin: 0;
}

.footer-social-container a:hover{
	color: #fff;
	transition: .2s;
}

.footer-social-container a i{
	width: 2vw;
	color: #62AAAD;
}

.institutional-customer-container{
	display: flex;
	flex-wrap: wrap;
	margin: 10vh 0;
}

.customer-box{
	width: 20%;
	height: 13vh;
	background-size: 30%;
	background-position: left bottom;
	background-repeat: no-repeat;
	background-color: #E8E8E8;
}

.customer-box:nth-child(2){
	margin-top: 13vh;
}

.customer-box:nth-child(4){
	margin-top: 13vh;
}

.customer-box:nth-child(7){
	margin-top: 13vh;
}

.customer-box:nth-child(9){
	margin-top: 13vh;
}

.customer-box-text-container{
	width: 65%;
	float: right;
}

.customer-box-text-container-top{
	margin-top: -5vh;
}

.customer-box-text-container-top p{
	font-size: 1.4vw;
	color: #00234E;
	margin: 0;
	line-height: 1;
}

.customer-box-text-container-top p strong{
	font-size: 5.2vw;
	color: #00234E;
	margin: 0;
	font-family: 'Bebas Neue', cursive;
	font-weight: 100;
}

.customer-box-text-container-bottom p{
	font-size: 1.4vw;
	color: #00234E;
	margin: 0;
	line-height: 1;
}

.customer-tab {
    overflow: hidden;
    width: calc(100vw - calc(200px - 4vw));
    padding: 0 calc(100px - 2vw);
    display: flex;
    flex-wrap: wrap;
    margin: -0 0 0 0vw;
}

.customer-tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  width: 20vw;
  height: 22vh;
  margin: 1vw 1vw;
  background-color: #fff;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
  border-bottom: solid 10px transparent;
  transition: .2s;
}

.customer-tab button img{
	width: 70%;
	height: 80%;
	object-fit: contain;
  filter: grayscale(100%);
  transition: .2s;
}

.customer-tab button.active {
  border-bottom: solid 10px #D0E6A5;
  transition: .2s;
  box-shadow: 3px 3px 20px rgba(14, 152, 111, 0.6);
}

.customer-tab button.active img{
  filter: grayscale(0);
  transition: .2s;
}

.customer-tabcontent {
  display: none;
  height: 100vh;
  width: 100vw;
	padding-bottom: 10vh;
}

.customer-tabcontent-img{
	width: 50vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customer-tabcontent-text-container{
	width: 40vw;
	padding: 2vh 5vw;
	background-color: #F0F0F0;
}

.portolio-title-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: 80vw;
	padding: 2vh 0vw;
}

.portolio-title-container h2{
	font-size: 2.6vw;
	color: #00234E;
	font-weight: bold;
	margin: 0vh 0 0 0;	
}

.portolio-title-container h3{
	font-size: 1.8vw;
	color: #00234E;
	font-weight: bold;
	margin: 0vh 0 0 0;	
}

.portolio-title-container span{
	width: 100px;
	height: 5px;
	background-color: #00234E;
	margin: 2vh 0 0 0;
}

.customer-tabcontent-text-container p{
	font-size: 1.05vw;
	margin: 0;
	line-height: 1.8;
	color: #00234E;
}

.portfolio-page-container{
    display: flex;
    flex-wrap: wrap;
    margin: 10vh calc(100px - 2vw) 0;
	justify-content: center;
}

.portfolio-box{
    width: calc(33.33% - 4vw);
    height: 13.8vw;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    margin: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-box .portfolio-box-logo{
	width: 95%;
	height: 91%;
	object-fit: cover;
}

.portfolio-box-line {
	width: 55%;
	object-fit: cover;
}

#investor-page{
	background-position: 55% 0;	
	background-repeat: no-repeat;
	background-size: 10%;
}

.investor-page-container{
	display: flex;
	justify-content: space-between;
	width: 100vw;
	padding: 5vh 0;
}

.investor-page-text-container{
	width: calc(55% - 200px);
	padding: 0 100px;
}

.investor-page-text-container h3{
	font-size: 2.08vw;
	margin: 0;
	color: #00234E;
	font-weight: normal;
}

.investor-page-text-container p{
	width: 80%;
	margin: 2vh 0;
	font-size: 1.1vw;
	color: #00234E;
	line-height: 2;
}

.investor-page-img-container{
  width: 40%;
  background-color: #F4F4F4;
  margin-top: -18vh;
  padding: 18vh 0 5vh;
  border-bottom-left-radius: 20px;
}

.investor-page-img-container img{
	width: 100%;
	margin-left: -5vw;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}

.investor-page-container-2{
	display: flex;
	justify-content: space-between;
	width: 100vw;
	padding: 5vh 0;
	margin-top: 10vh;
}

.investor-page-text-container-2{
	width: calc(55% - 200px);
	padding: 0 100px;
}

.investor-page-text-container-2 h3{
	font-size: 2.08vw;
	margin: 0;
	color: #00234E;
	font-weight: normal;
}

.investor-page-text-container-2 p{
	width: 100%;
	margin: 0vh 0;
	font-size: 1.1vw;
	color: #00234E;
	line-height: 2;
}

.investor-page-img-container-2{
  width: 40%;
  background-color: #F4F4F4;
  margin-top: 0vh;
  padding: 5vh 0 5vh;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

.investor-page-img-container-2 img{
	width: 100%;
	margin-left: 5vw;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);	
	border-radius: 20px;
}

#fund-section{
	padding: 5vh 0;
	background-color: #f4f4f4;
}

.fund-table-hexagon {
	position:relative;
	width: 27%;
	height: 10vh;
	overflow:hidden;
	background: #00234E;
	clip-path: polygon(0 50%,10% 0,90% 0,100% 50%,100% 50%,90% 100%,10% 100%,0% 90%,10% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh 2vw;
  color: #fff;
  font-size: 1.5vw;
  text-align: center;
}

.fund-table-container{
	width: calc(100vw - 200px);
	margin: 2vh auto;
}

.fund-table-row{
	display: flex;
	margin: 2vh 0;
	align-items: center;
}

.fund-table-number{
	width: 8%;
	font-size: 4.4vw;
	color: #DEDDDD;
}

.fund-table-text{
	width: 65%;
	color: #00234E;
	font-size: 1.6vw;
	display: flex;
	align-items: center;
	padding: 0 0 0 2vw;
	border-bottom: solid 1px #00234E;
}

.fund-table-hexagon p{
	margin: 0;
}

#fund-form{
	padding: 5vh 0;
}

.fund-form-container{
	display: flex;
	justify-content: space-between;
	padding: 5vh 0 0 0 ;
}

.fund-form-container-left{
	width: 50%;
}

.fund-form-container-left .wpforms-container{
	margin: 24px 100px;
  width: 40vw;
}

.fund-form-container-left .wpforms-container .wpforms-form{
	width: 100%;
}

.fund-form-container-left .wpforms-container .wpforms-form .wpforms-field-container{
	width: 100%;
}

.fund-form-container-left .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field{
	background-color: rgba(160, 221, 224, 0.3);
	padding: 2vh 2vw;
	margin: 2vh 0;
	border-radius: 20px;
	color: #82BEC1;
}

.fund-form-container-left .wpforms-container .wpforms-form .wpforms-submit-container button{
	background-color: #00234E!important;
	padding: 1vh 2vw;
	color: #fff!important;
	box-shadow: 2px 2px 20px rgba(160, 221, 224, 0.5);
	border-radius: 10px;
}










.fund-form-container-right{
	width: 40%;
}

.fund-form-container-right img{
	width: 100%;
}


.strategy-page-text-container{
	padding: 0 100px;
}

.strategy-page-text-container h3{
	font-size: 2.08vw;
	margin: 0;
	color: #00234E;
	font-weight: normal;
}

#strategy-evaluation{
	padding: 5vh 0;
}

.strategy-evaluation-container{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	justify-content: center;
}

.strategy-evaluation-box{
	width: 20vw;
	border-radius: 50px;
	margin: 2.5vw;
	border: dotted #00234E;
	padding: 1vw;
	border-right: solid 1vw #00234E;
}

.strategy-evaluation-title{
	display: flex;
	align-items: flex-end;
}

.strategy-evaluation-title h4{
	color: #00234E;
	font-size: 1.66vw;
	margin: 0;
}

.strategy-evaluation-title img{
	width: 6vw;
	height: 6vw;
	object-fit: contain;
	margin: 0 1vw;
}

.strategy-evaluation-text{

}

.strategy-evaluation-text ul{
	font-size: 1.05vw;
	color: #00234E;
}

.strategy-evaluation-box:nth-child(2n){
	border: dotted #FFE795;
	border-right: solid 1vw #FFE795;
}

#strategy-form{
	background-color: #F4F4F4;
	display: flex;

}

.strategy-form-left{
	width: 35vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.strategy-form-right{
	padding: 2vh 2vw;
	width: 61vw;
}

.strategy-form-right .wpforms-field-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.4vw;
	color: #00234E!important;
}

.strategy-form-right .wpforms-container .wpforms-field-label{
	font-weight: normal!important;	
}

.strategy-form-right .wpforms-field-container .wpforms-field-small,
.strategy-form-right .wpforms-field-container .wpforms-field-medium{
	border:none!important;
}

.strategy-form-right .wpforms-field-container select {
-webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
	background-size: 2vw;
  background-position-x: 100%;
  background-position-y: 50%;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  margin-right: 2rem;
  padding: 1rem;
  padding-right: 2rem;
  
}

.strategy-form-right .wpforms-field-container .wpforms-field-small{
	min-width: 27vw!important;
	max-width: unset;
	background-color: #fff;
	border-radius: 10px;
	margin: 1vh 0;
	padding: 1vw;
}

.strategy-form-right .wpforms-field-container .wpforms-field-medium{
	width: 61vw!important;
	max-width: unset;
	background-color: #fff;
	border-radius: 10px;
	margin: 1vh 0;
	padding: 1vw;
}

.strategy-form-right .wpforms-container .wpforms-form .wpforms-submit-container button{
	background-color: #00234E!important;
	padding: 1vh 2vw;
	color: #fff!important;
	box-shadow: 2px 2px 20px rgba(160, 221, 224, 0.5);
	border-radius: 10px;
	font-size: 1.4vw;
}



#fund-section .strategy-page-text-container{
	padding: 0 25px;
}







.contact-page-form-container{
	display: flex;
}

.contact-page-section-title-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 2vh 100px;
}

.contact-page-section-title-container h2,
.contact-page-section-title-container h1{
	font-size: 2.6vw;
	color: #00234E;
	font-weight: bold;
	margin: 0vh 0 0 0;	
}

.contact-page-section-title-container span{
	width: 100px;
	height: 5px;
	background-color: #00234E;
	margin: 2vh 0 0 0;
}

.contact-page-form-container-left{
	width: 60%;
}

.contact-page-form-area{
	padding: 0 5vw;
}

.contact-page-form-container-right{
	width: 40%;
	background-image: linear-gradient(to left,
    #62AAAD 0% 70%,
    transparent 30% 100% 
  );
  padding: 20vh 0;
}

.contact-page-adress-container{
	background-color: #00234E;
	border-radius: 20px 0 0 20px;
	padding: 2vw 10vw 2vw 5vw;
}

.contact-page-adress-row{
	display: flex;
	align-items: flex-start;
	margin: 2vh 0;
}

.contact-page-adress-row p,
.contact-page-adress-row a{
	margin: 0;
	color: #fff;
	font-size: 1.3vw;
}

.contact-page-adress-row i{
	font-size: 2vw;
	margin: 0 1vw;
	color: #62AAAD;
}

#contact-page iframe{
	width: 100vw;
	height: 66vh;
}







.sidenav{
	display: none;
}

#mobile-open-button{
	display: none;
}

#lang-button{
	display: none;
}

#header-mobile{
	display: none;
}




.contact-page-form-area .investor-page-text-container{
	width: unset;
	padding: 5vh 50px 0;
}
	.contact-page-form-area .wpforms-container{
		margin: 24px 50px;
	  width: calc(100%);
	}

	.contact-page-form-area .wpforms-container .wpforms-form{
		width: 100%;
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-field-container{
		width: 100%;
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field{
		background-color: transparent;
		padding: 2vh 0;
		margin: 2vh 0;
		border-radius: 0;
		color: #BBBFC4;
		width: 100%!important;
		border-bottom: solid 1px #BBBFC4;
		max-width: unset!important;
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field .wpforms-field-medium {
		max-width: unset!important;		
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-submit-container button{
		background-color: #00234E!important;
		padding: 1vh 2vw;
		color: #fff!important;
		box-shadow: 2px 2px 20px rgba(160, 221, 224, 0.5);
		border-radius: 10px;
	}


	

.companies-page-company-box{
	background-color: #F2F2F2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin: 2vw;
	width: calc(33% - 4vw);
}

.companies-page-company-box-img{
	width: 100%;
}

.companies-page-company-box-img img{
	height: 11.45vw;
	width: 100%;
	object-fit: cover;
}

.companies-page-company-box-logo{
    margin: 1vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companies-page-company-box-logo img{
	height: 7.8vw;
	width: 70%;
	object-fit: contain;
}

.companies-page-company-box-text{
	width: 75%;
	min-height: 8vw;
}

.companies-page-company-box-text p{
	text-align: center;
	font-size: 1.05vw!important;
	color: #00456F;
}

.company-link-button{
	width: 100%;
}

.company-link-button a{
	font-size: 1.05vw;
	color: #fff;
	font-weight: bold;
	transition: .2s;
	padding: 0.5vw 1vw;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: #00456F;
}

.company-link-button a:hover{
	transition: .2s;
}

.company-link-button a i{
	margin-left: 2vw;
	transition: .2s;
	padding: 0 0.5vw;
}

.company-link-button a:hover i{
	margin-left: 3vw;
	transition: .2s;
}


@media (max-width:991px) {

.companies-page-company-box{
	background-color: #F2F2F2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin: 2vw;
	width: 45%;
	cursor: pointer;
}

.companies-page-company-box-img{
	width: 100%;
}

.companies-page-company-box-img img{
	height: 11.45vw;
	width: 100%;
	object-fit: cover;
}

.companies-page-company-box-logo{
    margin: 1vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companies-page-company-box-logo img{
	height: 15.8vw;
	width: 70%;
	object-fit: contain;
}

.companies-page-company-box-text{
	width: 90%;
	min-height: 8vw;
}

.companies-page-company-box-text p{
	text-align: center;
	font-size: 3.05vw!important;
	color: #00456F;
}

.company-link-button{
	width: 100%;
}

.company-link-button a{
	font-size: 3.05vw;
	color: #fff;
	font-weight: bold;
	transition: .2s;
	padding: 0.5vw 1vw;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: #00456F;
}

.company-link-button a:hover{
	transition: .2s;
}

.company-link-button a i{
	margin-left: 2vw;
	transition: .2s;
	padding: 0 0.5vw;
}

.company-link-button a:hover i{
	margin-left: 3vw;
	transition: .2s;
}

	.contact-page-form-area .investor-page-text-container{
		width: unset;
		padding: 1vh 0vw 0;
	}
	.contact-page-form-area .wpforms-container{
		margin: 24px auto;
	  width: 90vw;
	}

	.contact-page-form-area .wpforms-container .wpforms-form{
		width: 100%;
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-field-container{
		width: 100%;
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field{
		background-color: transparent;
		padding: 2vh 0;
		margin: 2vh 0;
		border-radius: 0;
		color: #BBBFC4;
		width: 90vw!important;
		border-bottom: solid 1px #BBBFC4;
		max-width: unset!important;
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field .wpforms-field-medium {
		max-width: unset!important;		
	}

	.contact-page-form-area .wpforms-container .wpforms-form .wpforms-submit-container button{
		background-color: #00234E!important;
		padding: 1vh 2vw;
		color: #fff!important;
		box-shadow: 2px 2px 20px rgba(160, 221, 224, 0.5);
		border-radius: 10px;
	}


	.fund-form-container-left .wpforms-container{
		margin: 24px 25px;
	  width: calc(100vw - 50px);
	}

	.fund-form-container-left .wpforms-container .wpforms-form{
		width: 100%;
	}

	.fund-form-container-left .wpforms-container .wpforms-form .wpforms-field-container{
		width: 100%;
	}

	.fund-form-container-left .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field{
		background-color: rgba(160, 221, 224, 0.3);
		padding: 2vh 2vw;
		margin: 2vh 0;
		border-radius: 20px;
		color: #82BEC1;
	}

	.fund-form-container-left .wpforms-container .wpforms-form .wpforms-submit-container button{
		background-color: #00234E!important;
		padding: 1vh 2vw;
		color: #fff!important;
		box-shadow: 2px 2px 20px rgba(160, 221, 224, 0.5);
		border-radius: 10px;
	}


	.sidenav {
	  height: 90vh;
	  width: 0;
	  position: fixed;
	  z-index: 999;
	  top: 0;
	  left: 0;
	  background-color: #00234E;
	  overflow-x: hidden;
	  transition: 0.5s;
	  padding-top: 15vh;
	  display: unset;
	}

	#mobile-open-button{
		color: #F56C5D;
		font-size:40px;
		cursor:pointer;
		display: block;
	}

	.sidenav .closebtn {
	  position: absolute;
	  top: 6vh;
	  right: 5vw;
	  font-size: 15vw;
	  color: #F56C5D;
	}

	.sidenav ul{
		list-style: none;
		padding: 0;
	}

	.nav a,
	.nav label {
	  display: block;
	  padding: 3vw;
	  font-size: 4vw;
	  font-weight: bold;
	  color: #00234E;
	  background-color: #FFFFFF;
	  transition: all 0.25s ease-in;
	  white-space: nowrap;
	}
	.nav a:focus, .nav a:hover,
	.nav label:focus,
	.nav label:hover {
	  color: #FFFFFF;
	  background: #00234E;
	}

	.nav label {
	  cursor: pointer;
	}

	.header-menu{
		display: none;
	}

	header{
		height: unset;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	}
	
	.bottom-menu nav {
		display: none;
	}

	.top-menu{
	  display: flex;
	  align-items: center;
	  justify-content: flex-start;
	  background-color: #00234E;
	  padding: 1vh 25px;
	  width: calc(100vw - 50px);
	  height: 4vh;
	}

	.top-menu a{
		margin: 0 10px;
		color: #fff;
		font-size: 5vw;
	}

	.bottom-menu{
	  display: flex;
	  align-items: center;
	  padding: 2vh 25px;
	  width: calc(100vw - 50px);
	  justify-content: space-between;
	  height: unset;
	}

	.logo{
		width: unset;
	}

	.logo img{
		width: 40vw;
        max-height: 5vh;
        object-fit: contain;
        object-position: left;
	}

	.home-swiper {
		width: 100vw;
		height: 45vh;
	}

	.home-swiper .swiper-slide {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		background-size: cover;
		background-position: 30% bottom;
		z-index: 2;
	}

	.home-swiper-text-container{
		color: #00234E;
		padding: 5vh 6vw;
		width: 60%;
	}

	.home-swiper-text-container h2{
		font-size: 5.6vw;
		margin: 0;
		font-weight: normal;
	}

	.home-swiper-text-container p{
		font-size: 3.4vw;
		margin: 0;
		width: 80%;
	}

	.home-swiper-number-container{
	  margin: 1vh 5vw;
	  background-color: #00234E;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  border-radius: 10px;
	}

	.home-swiper-number-container img{
		width: 30vw;
		height: auto;
		margin: -1vh 0 1vh 0;
	}

	.home-swiper-number-container p{
		font-size: 20vw;
		color: #fff;
		margin: 0;
		line-height: 0.8;
	}

	#institutional{
	}

	.home-section-title-container{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		width: calc(100vw - 50px);
		padding: 2vh 25px;
	}

	.home-section-title-container p{
		font-weight: 900;
		font-size: 23vw;
		color: #F0F0F0;
		line-height: 1;
		margin: 0 0 0 -15px;
		height: max-content;
	}

	.home-section-title-container h2{
		font-size: 4.62vw;
		color: #00234E;
		font-weight: bold;
		margin: -5vh 0 0 0;
	}

	.page-section-title-container{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		width: calc(100vw - 50px);
		padding: 1vh 25px;
	}

	.page-section-title-container h2{
		font-size: 4.62vw;
		color: #00234E;
		font-weight: bold;
		margin: 0vh 0 0 0;	
	}

	.page-section-title-container span{
		width: 40px;
		height: 3px;
		background-color: #00234E;
		margin: 1vh 0 0 0;
	}

	.home-section-title-container span{
		width: 40px;
		height: 3px;
		background-color: #00234E;
		margin: 1vh 0 0 0;
	}

	.home-institutional-container{
	  width: calc(100vw - 50px);
	  padding: 0vh 25px 0vh;
	  display: flex;
	  flex-direction: column-reverse;
	  align-items: center;
	  justify-content: space-between;
	  background-size: 50%;
	  background-position: right top;
	  background-repeat: no-repeat;
	}

	.home-institutional-text-container{
		width: 100%;
		margin-top: 2vh;
	}

	.home-institutional-text-container h3{
		font-size: 3.7vw;
		margin: 0;
		color: #00234E;
		font-weight: normal;
	}

	.home-institutional-text-container p{
		color: #00234E;
		font-size: 3.4vw;
		margin: 2vh 0;
		line-height: 2;
	}

	.home-institutional-img-container{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 3vh;
	}

	.home-institutional-img-container img{
		width: 90%;
		height: 90%;
		object-fit: cover;
		border-radius: 20px;
		box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
	}

	.home-institutional-second-container{
		width: 100vw;	
		margin: 2vh 0 2vh 0;
	}

	.home-institutional-second-container h3{
		padding: 0 25px;
		width: calc(100vw - 50px);
		margin: 5vh 0 2vh 0;
	}

	.home-institutional-customer-container{
		display: flex;
		align-items: center;
	}

	.home-customer-box{
		width: 25%;
		height: 15vw;
	}

	.home-customer-box p{
		margin: 0;
		color: #fff;
		font-size: 2vw;
		line-height: 1;
		text-align: left;
		width: 70%;
	}

	.home-customer-box p strong{
		margin: 0;
		color: #fff;
		font-size: 10.05vw;
		line-height: 1;
	}

	.home-customer-box p:first-child{
		margin: 0;
		color: #fff;
		font-size: 5.56vw;
		line-height: 1;
		text-align: left;
	}

	.home-customer-box-original{
		background-size: 35%;
		background-position: center left;
		background-repeat: no-repeat;
		background-color: #00234E;
		height: 100%;
		width: calc(100% - 4vw);
		opacity: 1;
		visibility: visible;
		transition: opacity .5s;
		padding: 0 2vw;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-start;
	}

	.home-customer-box-mask{
		background-size: 40%;
		background-position: center left;
		background-repeat: no-repeat;
		background-color: #FC887B;
		width: calc(100% - 4vw);
		height: 0%;
		opacity: 0;
		visibility: hidden;
		transition: opacity .5s;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		padding: 0 2vw;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-start;
	}

	.home-customer-box:hover{
		cursor: default;
	}

	.home-customer-box:hover .home-customer-box-original{
		height: 0%;
		opacity: 0;
		visibility: hidden;
		transition: opacity .5s;
	}

	.home-customer-box:hover .home-customer-box-mask{
		height: 110%;
		opacity: 1;
		visibility: visible;
		transition: opacity .5s;
	}

	.home-institutional-person-container{
		padding: 2vh 0;
	}

	.home-institutional-person-container h3{
		padding: 0 25px;
		width: calc(100vw - 50px);
		margin: 2vh 0 2vh 0;
	}

	.home-institutional-person-box-container{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.home-institutional-person-box{
		width: 44vw;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 10vw 2vw 0;
	}

	.home-institutional-person-box-top{
		background-color: #00234E;
		margin-top: 6vw;
		transition: .2s;
	}

	.home-institutional-person-box img{
		width: 28vw;
		height: 28vw;
		object-fit: cover;
		border-radius: 100%;
		filter: grayscale(100%);
		transition: .2s;

	}

	.home-institutional-person-box h4{
		color: #fff;
		text-align: center;
		margin: 2vh 0 0 0;
		font-size: 3vw;
	}

	.home-institutional-person-box h4:last-child{
		margin: 0 0 2vh 0 ;
	}

	.home-institutional-person-box-bottom{

	}

	.home-institutional-person-box-bottom p{
		width: 80%;
		text-align: center;
		margin: 2vh auto;
		font-size: 2.93vw;
		color: #00234E;
	}

	.home-institutional-person-box-img{
		width: 28vw;
		height: 28vw;
		margin-top: -14vw;
	}

	.home-institutional-person-box-img-mask{
		width: 28vw;
		height: 28vw;
		background-color: rgba(160, 221, 224, 0.4);
		margin-top: -28vw;
		border-radius: 100%;
		position: relative;
		z-index: 2;
		transition: .2s;
	}

	.home-institutional-person-box:hover img{
		filter: grayscale(0%);
		transition: .2s;
	}

	.home-institutional-person-box:hover 
	.home-institutional-person-box-img-mask{
		background-color: rgba(160, 221, 224, 0);
		transition: .2s;
	}

	.home-institutional-person-box:hover 
	.home-institutional-person-box-top{
		background-color: #FC887B;
		transition: .2s;
	}

	.home-portfolio-scroll-container{
		display: flex;
	  overflow: auto;
	  width: calc(100vw - 50px);
	  padding: 0 25px;
	  margin: 2vh auto;
	  scroll-behavior: unset;
		justify-content: flex-start;
	}

	.home-portfolio-scroll-container::-webkit-scrollbar {
		display: block!important;
	  background-color: #2d2d2d;
	  background: teal;
	  cursor: pointer;
	}

	/* width */
	.home-portfolio-scroll-container::-webkit-scrollbar {
	  width: 10px;
	  height: 5px;
	}

	/* Track */
	.home-portfolio-scroll-container::-webkit-scrollbar-track {
	  background: #fff; 
	}
	 
	/* Handle */
	.home-portfolio-scroll-container::-webkit-scrollbar-thumb {
	  background-image: linear-gradient(to right, #D0E6A5 60%, #FFFFFF 10%, #FFE795 60%, #FFFFFF 10%, #FFD37C 60%, #FFFFFF 10%, #FC887B 60%);
	  background-image: linear-gradient(to right,
	  	#00224B 0% 5%, 
	    #459672 5% 10%,
	    #F4E220 10% 30%,
	    #FFA332 30% 60%,
	    #D7411D 60% 100% 
	  );

	}

	/* Handle on hover */
	.home-portfolio-scroll-container::-webkit-scrollbar-thumb:hover {
	  cursor: pointer;
	}

	.home-portfolio-container{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.home-portfolio-box{
		display: flex;
		flex-direction: column;	
		width: 40vw;
		margin: 2vw;
		padding: 2vw;
		box-shadow: 2px 2px 40px rgba(0, 0, 0, 0.2);
		border-radius: 20px;
		height: 64.5vw;
		transition: .2s;
	}

	.home-portfolio-box label{
		font-size: 6.2vw;
		padding: 0;
		margin: 0;
		color: #EFEFEF;
		text-align: right;
	}

	.home-portfolio-box img{
		width: 70%;
		height: 5vh;
		object-fit: contain;
		margin: 0 auto;
	}

	.home-portfolio-box p{
		font-size: 3.1vw;
		color: #00234E;
		margin: 2vh 0;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 6;
		line-clamp: 6; 
	   -webkit-box-orient: vertical;
	}

	.home-portfolio-box a{
		color: #00234E;
		font-size: 2.1vw;
		font-weight: bold;
		text-align: right;
	}

	.home-portfolio-box:hover{
		transform: scale(1.1);
		box-shadow: 2px 2px 20px rgba(212, 229, 172, 1);
		transition: .2s;
	}

	.home-investor-container{
		display: flex;
		flex-direction: column;
		width: 100vw;
		padding: 2vh 0 0 0;
	}

	.home-investor-container-left{
		width: 100%;
		background-color: #F4F4F4;
	}

	.home-investor-container-left .home-section-title-container{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		width: 100%;
		padding: 2vh 10vw;
	}

	.home-investor-img-container{
		width: 100%;
		padding: 1vh 0;
	}

	.home-investor-img-container img{
		width: 100%;
		object-fit: cover;
	}

	.home-investor-container-right{
		width: calc(100vw - 50px);
		padding: 2vh 25px;
		background-size: 25%;
		background-repeat: no-repeat;
		background-position: top right;
	}

	.home-investor-container-right h3{
		font-size: 3.7vw;
		color: #00234E;
		margin: 0;
		padding: 2vh 0;
		border-bottom: solid 2px #D0E6A5;
		white-space: nowrap;
		width: 50%;
		font-weight: normal;
	}

	.home-investor-container-right .investor-card-first-p{
		width: 80%;
		font-size: 2.1vw;
		color: #00234E;
		line-height: 2;
	}

	.home-investor-cards-area{
		height: 10vh;
		background-color: #F4F4F4;
		border-radius: 10px;
		margin: 2vh 0 0 0;
		padding: 2vh 25px 0;
		width: calc(100% - 50px);
	}

	.home-investor-cards-container{
		display: flex;
		margin: -10vh 2vw 0 2vw;
		justify-content: space-between;
	}

	.home-investor-card{
		width: 26vw;
		border-radius: 20px;
		background-color: #fff;
		color: #00234E;
		text-align: center;
		height: 40vw;
		box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
	}

	.home-investor-card-circle{
		width: 25vw;
		height: 25vw;
		margin:  1vh auto;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		border-radius: 100%;
		background-color: #F4F4F4;
		line-height: 1;
	}

	.home-investor-card-circle p:nth-child(1){
		margin: 0;
		font-size: 2.88vw;
	}

	.home-investor-card-circle p:nth-child(2){
		margin: 0;
		font-size: 6.5vw;
		font-weight: 500;
		
	}

	.home-investor-card-circle p:nth-child(3){
		margin: 0;
		font-size: 2.3vw;	
	}

	.home-investor-card .investor-card-last-p{
	  font-size: 2.3vw;
	  font-weight: bold;
	  width: 80%;
	  margin: 2vh auto;
	}

	.investment-area-container{
		width: 100vw;
		margin: 5vh 0 0 0;
		padding: 2vh 0vw 0 0;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	.investment-area-container h3{
		color: #fff;
		font-size: 3.15vw;
		margin: 0;
		width: calc(25% - 10vw);
		white-space: nowrap;
		padding: 0vh 0 2vh 10vw;
		border-bottom: solid 2px rgba(255, 255, 255, 0.4);
	}

	.investment-area-wrap-container{
		width: 100%;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
		margin: 1vh auto;
	}

	.investment-area-wrap-container img{
		width: 30%;
		object-fit: contain;
		margin:  1vh 1.5%;
	}

	.investment-area-container p{
		margin: 2vh 0 0 0;
		font-size: 9.5vw;
		text-align: center;
		font-weight: 900;
		color: #000;
		opacity: 0.25;
		line-height: 0.8;
	}

	.home-strategy-title-container{
		display: flex;
		align-items: center;
		width: calc(100vw - 25px);
		padding: 2vh 0 0 25px;
	}

	.home-strategy-title-line-big{
		width: 20%;
		border-bottom: solid 1px #FFDC64;
	}

	.home-strategy-title-line-sml{
		width: 10%;
		border-bottom: solid 1px #FFDC64;
	}

	.home-strategy-title-container h3{
		white-space: nowrap;
		width: 70%;
		color: #00234E;
		margin: 0;
		display: flex;
		align-items: center;
		font-size: 3.4vw;
	  justify-content: center;
	}

	.home-strategy-title-container h3 img{
		width: 15%;
		margin: 0 1vw 0 0;
	}

	.home-strategy-flex-container{
		width: calc(100vw - 50px);
		padding: 1vh 25px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.home-strategy-flex-box{
		width: 98%;
		margin: 1%;
	}

	.home-strategy-flex-box-title h3{
		margin: 2vh 0;
		color: #00234E;
		font-size: 3vw;
	}

	.home-strategy-flex-box-detail{
		display: flex;
		align-items: flex-start;
	}

	.home-strategy-flex-box img{
		object-fit: cover;
		width: 20%;
		height: auto;
	}

	.home-strategy-flex-box ul{
		width: 80%;
		margin: 0;
		padding: 0;
	}

	.home-strategy-flex-box ul li{
		margin: 0;	
	  list-style: none;
	  display: flex;
	  align-items: center;
	}

	.home-strategy-flex-box ul li::before{
	  margin: 0.4vh 0.5vw;
	  content: "\25A0";
	  color: #FFC500;
	  font-size: 2vw;
	  font-weight: bold;
	}

	.home-strategy-flex-box ul li p{
		font-size: 2.8vw;
		color: #666767;
		margin: 0.5vh 0;
	}

	.home-strategy-flex-box ul a{
		margin: 2vh 0 0 2vw;
		font-size: 2.8vw;
	}

	.partners-swiper {
		width: 100vw;
		height: 10vh;
		padding: 2vh 0!important;
		margin: 1vh 0;
		background-color: #00234E;
	}

	.partners-swiper .swiper-slide {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}

	.partners-swiper .swiper-slide img {
		width: 90%;
		height: 90%;
		object-fit: contain;
	}

	.partners-swiper .swiper-slide {
		width: calc(33% - 10px);
	}

	.partners-swiper 
	.swiper-pagination-bullet{
		border-radius: 0!important;
		width: 3.25vw;
		height: 0.5vw;	
		background-color: #fff!important;
		opacity: 0.7;
	}

	.partners-swiper .swiper-pagination-bullet-active{
		opacity: 1;
	}

	.partners-swiper 
	.swiper-pagination-bullet:nth-child(1){
		width: 1vw;
	}

	.partners-swiper 
	.swiper-pagination-bullet:nth-child(2){
		width: 1.75vw;
	}

	.partners-swiper 
	.swiper-pagination-bullet:nth-child(3){
		width: 2.5vw;
	}

	.partners-swiper 
	.swiper-pagination-bullet:nth-child(4){
		width: 3.25vw;
	}

	footer{
		width: calc(100vw - 50px);
		background-color: #00234E;
		margin: 2vh 0 0 0;
		padding: 2vh 25px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right bottom;
	}

	.footer-bottom-area{
		display: flex;

	}

	.footer-menu{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		list-style: none;
		padding: 1vh 1vw;
	}

	.footer-li{
		margin: 0.5vh 1vw;
		width: 30%;
		text-align: center;
	}

	.footer-link{
		font-size: 2.1vw;
		color: #FFFFFF;
		transition: .2s;
		font-weight: normal;
	}

	.footer-link:hover{
		color: #ededed;
		transition: .2s;
	}

	.footer-left-side{
		width: 70%;
	}

	.footer-right-side{
		width: 30%;
	}

	.footer-left-side-bottom{
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.footer-left-side-bottom-left-side{
		width: 90%;
		margin: 0.5vw 0 0 0;
	}

	.footer-left-side-bottom-left-side a{
		background-color: #62AAAD;
		border-radius: 5px;
		padding: 0.5vw 3vw;
		font-size: 2.1vw;
		margin: 0;
		width: calc(100% - 6vw);
		color: #FFFFFF;
		transition: .2s;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.footer-left-side-bottom-left-side a:hover{
		color: #00234E;
		transition: .2s;
	}

	.footer-left-side-bottom-left-side img{
		width: 90%;
		object-fit: cover;
		margin: 2vh 0;
	}

	.footer-left-side-bottom-right-side{
		width: 90%;
		padding: 0vh 0vw 0;
		display: flex;
		align-items: center;
	}

	.footer-left-side-bottom-right-side iframe{
		width: 100%;
		height: 20vh;
		border-radius: 5px;
	}

	.footer-address-container{
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.footer-address{
		font-size: 2.1vw;
		margin: 0;
		color: #fff;
	}

	.footer-phone{
		margin: 2vh 0;
		color: #fff;
		font-size: 2.1vw;
		font-weight: bold;
	}

	.footer-mail{
		font-size: 2.1vw;
		color: #62AAAD;
		margin: 0;
		font-weight: bold;
	}

	.footer-social-container{
		display: flex;
		margin: 2vh 0;
	}

	.footer-social-container a{
		font-size: 4vw;
		color: #62AAAD;
		transition: .2s;
		margin: 0 1vw;
	}

	.footer-social-container a:first-child{
		margin: 0;
	}

	.footer-social-container a:hover{
		color: #fff;
		transition: .2s;
	}

	.footer-social-container a i{
		width: 4vw;
		color: #62AAAD;
	}

	.institutional-customer-container{
		display: flex;
		flex-wrap: wrap;
		margin: 10vh 0;
	}

	.customer-box{
		width: 50%;
		height: 10vh;
		background-size: 30%;
		background-position: left bottom;
		background-repeat: no-repeat;
		background-color: #E8E8E8;
	}

	.customer-box:nth-child(n){
		margin-top: 0;
	}

	.customer-box:nth-child(2n){
		margin-top: 10vh!important;
	}

	.customer-box-text-container{
		width: 65%;
		float: right;
	}

	.customer-box-text-container-top{
		margin-top: -2vh;
	}

	.customer-box-text-container-top p{
		font-size: 3.4vw;
		color: #00234E;
		margin: 0;
		line-height: 1;
	}

	.customer-box-text-container-top p strong{
		font-size: 14vw;
		color: #00234E;
		margin: 0;
		font-family: 'Bebas Neue', cursive;
		font-weight: 100;
	}

	.customer-box-text-container-bottom p{
		font-size: 3.4vw;
		color: #00234E;
		margin: 0;
		line-height: 1;
	}

	.customer-tab {
	  overflow: hidden;
	  width: calc(100vw - 4vw);
	  padding: 2vh 1vw;
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  margin: 0 0 0 0;
	}

	.customer-tab button {
	  float: left;
	  border: none;
	  outline: none;
	  cursor: pointer;
	  padding: 5px;
	  transition: 0.3s;
	  font-size: 17px;
	  width: 30%;
	  height: 10vh;
	  margin: 1.5%;
	  background-color: #fff;
	  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
	  border-bottom: solid 10px transparent;
	  transition: .2s;
	}

	.customer-tab button img{
		width: 80%;
		height: 80%;
		object-fit: contain;
	  filter: grayscale(100%);
	  transition: .2s;
	}

	.customer-tab button.active {
	  border-bottom: solid 10px #D0E6A5;
	  transition: .2s;
	  box-shadow: 3px 3px 20px rgba(14, 152, 111, 0.6);
	}

	.customer-tab button.active img{
	  filter: grayscale(0);
	  transition: .2s;
	}

	.customer-tabcontent {
	  display: none;
	  height: unset;
	  width: 100vw;
		min-height: unset;
		padding-bottom: 0;
		flex-direction: column;
	}

	.customer-tabcontent-img{
		width: 100vw;
		height: 20vh;
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	}

	.customer-tabcontent-text-container{
		width: 90vw;
		padding: 2vh 5vw;
		background-color: #F0F0F0;
	}

	.portolio-title-container{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		width: 80vw;
		padding: 1vh 0vw;
	}

	.portolio-title-container h2{
		font-size: 3.6vw;
		color: #00234E;
		font-weight: bold;
		margin: 0vh 0 0 0;	
	}

	.portolio-title-container span{
		width: 100px;
		height: 2px;
		background-color: #00234E;
		margin: 0.5vh 0 0 0;
	}

	.customer-tabcontent-text-container p{
		font-size: 3.3vw;
		margin: 0;
		line-height: 1.8;
		color: #00234E;
	}

	.portfolio-page-container{
		display: flex;
		flex-wrap: wrap;
		margin: 2vh 25px 0;
		justify-content: center;
	}

	.portfolio-box{
	  width: 45%;
	  height: 10vh;
	  background-color: #fff;
	  border-radius: 10px;
	  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
	  margin: 2.5%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}

	.portfolio-box .portfolio-box-logo{
		width: 95%;
		height: 91%;
		object-fit: cover;
	}

	.portfolio-box-line {
		width: 55%;
		object-fit: cover;
	}

	#investor-page{
		background-position: 0% 0;	
		background-repeat: no-repeat;
		background-size: 0;
	}

	.investor-page-container{
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-between;
		align-items: flex-end;
		width: 100vw;
		padding: 0 0 2vh 0;
	}

	.investor-page-text-container{
		width: calc(100% - 50px);
		padding: 0vh 25px;
	}

	.investor-page-text-container h3{
		font-size: 4.08vw;
		margin: 0;
		color: #00234E;
		font-weight: normal;
	}

	.investor-page-text-container p{
		width: 100%;
		margin: 2vh 0;
		font-size: 3.1vw;
		color: #00234E;
		line-height: 2;
	}

	.investor-page-img-container{
	  width: 60%;
	  background-color: #F4F4F4;
	  margin-top: 0;
	  padding: 2vh 0 2vh;
	  border-top-left-radius: 10px;
	  border-bottom-left-radius: 10px;
	}

	.investor-page-img-container img{
		width: 100%;
		margin-left: -5vw;
		box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
		border-radius: 20px;
	}

	.investor-page-container-2{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100vw;
		padding: 1vh 0;
		margin-top: 0;
	}

	.investor-page-text-container-2{
		width: calc(100% - 50px);
		padding: 2vh 25px;
	}

	.investor-page-text-container-2 h3{
		font-size: 2.08vw;
		margin: 0;
		color: #00234E;
		font-weight: normal;
	}

	.investor-page-text-container-2 p{
		width: 100%;
		margin: 0vh 0;
		font-size: 2.1vw;
		color: #00234E;
		line-height: 2;
	}

	.investor-page-img-container-2{
	  width: 100%;
	  background-color: #F4F4F4;
	  margin-top: 0vh;
	  padding: 2vh 0 2vh;
	  border-bottom-right-radius: 20px;
	  border-top-right-radius: 20px;
	}

	.investor-page-img-container-2 img{
		width: 60%;
		margin-left: 5vw;
		box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);	
		border-radius: 20px;
	}

	#fund-section{
		padding: 2vh 0;
		background-color: #f4f4f4;
	}

	.fund-table-hexagon {
		position:relative;
		width: 27%;
		height: 6vh;
		overflow:hidden;
		background: #00234E;
		clip-path: polygon(0 50%,10% 0,90% 0,100% 50%,100% 50%,90% 100%,10% 100%,0% 90%,10% 100%);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 1vh 2vw;
	  color: #fff;
	  font-size: 3.5vw;
	  text-align: center;
	}

	.fund-table-container{
		width: calc(100vw - 50px);
		margin: 2vh auto;
	}

	.fund-table-row{
		display: flex;
		margin: 1vh 0;
		align-items: center
	}

	.fund-table-number{
		width: 10%;
		font-size: 6.4vw;
		color: #DEDDDD;
	}

	.fund-table-text{
		width: 60%;
		color: #00234E;
		font-size: 3.1vw;
		display: flex;
		align-items: center;
		padding: 0 0 0 2vw;
		border-bottom: solid 1px #00234E;
	}

	.fund-table-hexagon p{
		margin: 0;
	}

	#fund-form{
		padding: 2vh 0;
	}

	.fund-form-container{
		display: flex;
		justify-content: space-between;
		padding: 5vh 0 0 0 ;
	}

	.fund-form-container-left{
		width: 100%;
	}

	.fund-form-container-right{
		width: 40%;
		display: none;
	}

	.fund-form-container-right img{
		width: 100%;
	}


	.strategy-page-text-container{
		padding: 0 100px;
	}

	.strategy-page-text-container h3{
		font-size: 2.08vw;
		margin: 0;
		color: #00234E;
		font-weight: normal;
	}

	#strategy-evaluation{
		padding: 2vh 0;
	}

	.strategy-evaluation-container{
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
		justify-content: center;
	}

	.strategy-evaluation-box{
		width: 80vw;
		border-radius: 20px;
		margin: 2.5vw;
		border: dotted #00234E;
		padding: 1vh 4vw;
		border-right: solid 2vw #00234E;
	}

	.strategy-evaluation-title{
		display: flex;
		align-items: space-between;
		justify-content: space-between;
	}

	.strategy-evaluation-title h4{
		color: #00234E;
		font-size: 3.66vw;
		margin: 0;
	}

	.strategy-evaluation-title img{
		width: 15vw;
		height: 15vw;
		object-fit: contain;
		margin: 0 1vw;
	}

	.strategy-evaluation-text{

	}

	.strategy-evaluation-text ul{
		font-size: 2.15vw;
		color: #00234E;
		padding: 0 3vw;
	}

	.strategy-evaluation-box:nth-child(2n){
		border: dotted #FFE795;
		border-right: solid 2vw #FFE795;
	}

	#strategy-form{
		background-color: #F4F4F4;
		display: flex;
		flex-direction: column;
	}

	.strategy-form-left{
		width: 35vw;
		height: 100%;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	.strategy-form-right{
		padding: 2vh 2vw;
		width: 96vw;
	}

	.strategy-form-right .wpforms-container-full{
		padding: 0 0 2vh 0;
	}

	.strategy-form-right .wpforms-field-container{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		font-size: 2.4vw;
		color: #00234E!important;
	}

	.strategy-form-right .wpforms-container .wpforms-field-label{
		font-weight: normal!important;	
	}

	.strategy-form-right .wpforms-field-container .wpforms-field-small{
		min-width: 45vw!important;
		max-width: unset;
		background-color: #fff;
		border-radius: 10px;
		margin: 1vh 0;
		padding: 1vw;
	}

	.strategy-form-right .wpforms-field-container .wpforms-field-medium{
		width: 96vw!important;
		max-width: unset;
		background-color: #fff;
		border-radius: 10px;
		margin: 1vh 0;
		padding: 1vw;
	}

	.strategy-form-right .wpforms-container .wpforms-form .wpforms-submit-container button{
		background-color: #00234E!important;
		padding: 1vh 2vw;
		color: #fff!important;
		box-shadow: 2px 2px 20px rgba(160, 221, 224, 0.5);
		border-radius: 10px;
		font-size: 2.4vw;
	}

	.contact-page-form-container{
		display: flex;
	flex-direction: column;
	}

	.contact-page-section-title-container{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		padding: 2vh 25px;
	}

	.contact-page-section-title-container h2{
		font-size: 5.6vw;
		color: #00234E;
		font-weight: bold;
		margin: 0vh 0 0 0;	
	}

	.contact-page-section-title-container span{
		width: 100px;
		height: 3px;
		background-color: #00234E;
		margin: 1vh 0 0 0;
	}

	.contact-page-form-container-left{
		width: 100%;
	}

	.contact-page-form-area{
		padding: 0 5vw;
	}

	.contact-page-form-container-right{
		width: 100%;
		background-image: unset;
	  padding: 2vh 0 0 0;
	}

	.contact-page-adress-container{
		background-color: #00234E;
		border-radius: 0 0 0 0;
		padding: 2vw 10vw 2vw 5vw;
	}

	.contact-page-adress-row{
		display: flex;
		align-items: flex-start;
		margin: 2vh 0;
	}

	.contact-page-adress-row p,
	.contact-page-adress-row a{
		margin: 0;
		color: #fff;
		font-size: 3.3vw;
	}

	.contact-page-adress-row i{
		font-size: 5vw;
		margin: 0 1vw;
		color: #62AAAD;
	}

	#contact-page iframe{
		width: 100vw;
		height: 66vh;
	}
}
