/*FinTech Hub*/
.ft-inline-block {
  display: inline-block;
  vertical-align: middle;
}
.ft-inline-image{
    margin: 10px;
  	max-height: 100px;
  	display: inline-flex;
}

.ft-hub-background{
    background: url(/images/Content/desktop_bg02.jpg);
    /* Full height */
    height: 90vh;
    width: 100%;
    background-size: 100% 100%;
    /* Center and scale the image nicely */
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
  	background-color: #0048AB;
  	overflow: hidden;
}
.ft-hub-title{
  font-family: 'Franklin Gothic';
  color: #06EF74;
  font-size: 3em;
  margin: 70px 10px 50px 30px;
  font-weight: 50;
}

.ft-hub-subtitle{
  font-family: 'Calibrib';
  color: white;
  font-size: 1.3em;
}

.ft-hub-h2{
  margin: 10px 10px 10px 30px;
}
.ft-hub-logo{
  background-color: white;
  display: flex;
  flex-wrap: nowrap;
}
.ft-logo-block{
  display: flex;
  vertical-align: middle;
}
.ft-hub-bar{
  height: 6px;
  background-color: white;
}
.mobile-only{
  display:none;
}

/*FinTech Scholarships*/
.ft-inline-block {
  display: inline-block;
  vertical-align: middle;
}
.ft-scholarships-inline-image{
    margin: 10px;
  	max-height: 100px;
  	display: inline-flex;
}

.ft-scholarships-background{
    background: url(/images/Content/green_bg_50px.jpg);
    /* Full height */
    /*min-height: 130vh;*/
    width: 100%;
    background-size: 100% 100%;
    /* Center and scale the image nicely */
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
  	background-color: #0048AB;
  	overflow: hidden;
}
.ft-scholarships-title{
  font-family: 'Franklin Gothic';
  color: #06EF74;
  font-size: 3em;
  margin: 70px 10px 50px 30px;
  font-weight: 50;
}
.ft-scholarships-content{
  margin: 15% 16% 0% 16%;
  border-top: solid white;
  border-right: solid white;
  border-left: solid white;
  padding: 30px 20px 20px 30px;
  min-height: 600px;
  position: relative;
}
.ft-scholarships-content-2{
  border-right: solid white;
  border-left: solid white;
  border-bottom: solid white;
  margin: 0% 16% 5% 16%;
  padding: 30px 20px 20px 30px;
  min-height: 70%;
  position: relative;
}
.ft-scholarships-content-inner{
  display: flex;
  justify-content: center;
}

.ft-scholarships-subtitle{
  font-family: 'Calibrib';
  color: white;
  font-size: 1.5em;
}
.ft-scholarships-list{
  padding: 0;
  font-size: 1.5em; 
  color: #384f5a; 
}
.ft-scholarships-list li span{
  position: relative;
  left: 10px;  
}
.ft-scholarships-button {
	background-color:#0954b0;
	border-radius:3px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size: 2em;
	padding:5px 60px;
	text-decoration:none;
	text-shadow:0px 1px 0px #283966;
}
.ft-scholarships-button:hover {
	background-color:#2671cd;
}
.ft-scholarships-button:active {
	position:relative;
	top:1px;
}
.ft-scholarships-vertical-center {
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 38%;
  right: auto;
}
.ft-scholarships-h2{
  margin: 10px 10px 10px 30px;
}
.ft-scholarships-p1{
  margin-top: 10px;
  color: white;
  font-size: 25px;
}
.ft-scholarships-p2{
  font-size: 1.5em;
  color:#476e9e;
}
.ft-scholarships-p3{
  font-size: 1.5em;
  color:#476e9e;
}
.ft-scholarships-p4{
  font-size: 5em;
  color: white;
}

.ft-scholarships-logo{
  display: flex;
  flex-wrap: nowrap;
  margin-top: 20px;
}
.ft-logo-block{
  display: flex;
  vertical-align: middle;
}
.mobile-only{
  display:none;
}

/*tooltip*/
.fthub-tooltip-toggle {
  cursor: pointer;
  position: relative;
  color: white;
}

.fthub-tooltip-toggle::before {
  position: absolute;
  top: -100px;
  left: 50px;
  background-color: #06EF74;
  border-radius: 5px;
  color: black;
  content: attr(data-tooltip);
  padding: 1rem;
  text-transform: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 350px;
}

.fthub-tooltip-toggle::after {
  position: absolute;
  top: -12px;
  left: 70px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #06EF74;
  content: " ";
  font-size: 0;
  line-height: 0;
  margin-left: -5px;
  width: 0;
}

.fthub-tooltip-toggle::before,
.fthub-tooltip-toggle::after {
  color: black;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

.fthub-tooltip-toggle:hover::before,
.fthub-tooltip-toggle:hover::after {
  opacity: 1;
  -webkit-transition: all 0.75s ease;
  transition: all 0.75s ease;
}
@media screen and (max-width: 1600px){
  .ft-scholarships-content{
    min-height: 700px;
  }
}

@media screen and (max-width: 1260px){
  .ft-inline-image{
    margin: 8px;
  	max-height: 70px;
  	display: inline-flex;
  }
  .ft-hub-background{
    background: url(/images/Content/mobile_vertical-bg.jpg);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 60%;
  	background-color: #0048AB;
  	overflow: hidden;
    background-position: right bottom;
  }
  
}
  @media screen and (max-width: 1100px){
    .ft-inline-image{
      margin: 5px;
      max-height: 60px;
      display: inline-flex;
    }
    .ft-scholarships-content{
      min-height: 730px;
    }
  }
  @media screen and (max-width: 991px){
    .ft-scholarships-content{
      margin: 15% 5% 0% 5%;
      min-height: 0;
    }
    .ft-scholarships-content-2{
      margin: 0% 5% 0% 5%;
    }
    .ft-scholarships-list{
      font-size: 1em;
    }
    .ft-scholarships-button{
      font-size: 1em;
    }
  }
  @media screen and (max-width: 950px){
    .ft-inline-image{
      margin: 2px;
      max-height: 50px;
    }
    .ft-scholarships-inline-image{
      margin: 10px;
      max-height: 100px;
    }
  }
  @media screen and (max-width: 850px){
    .ft-inline-image{
      margin: 1px;
      max-height: 50px;
    }
    .ft-scholarships-inline-image{
      margin: 10px;
      max-height: 100px;
    }
  }
  @media screen and (max-width: 800px){
  .ft-hub-title {
    font-family: 'Franklin Gothic';
    color: #06EF74;
    font-size: 2.5em;
    margin: 10px 10px 30px 10px;
    font-weight: 50;
  }
  .ft-hub-h2 {
    margin: 20px 10px 10px 10px;
    font-size: 1.2em;
    background-color: rgba(6, 31, 135, 0.8);
}
.ft-inline-image{
  margin: 10px;
  display: inline-flex;
}
  .mobile-only{
    display:block;
  }
}
@media screen and (max-width: 590px){
  .ft-inline-image{
    max-height: 50px;
  }
  .ft-scholarships-inline-image{
    margin: 5px;
    max-height: 100px;
  }
  }
@media screen and (max-width: 490px){
  .ft-inline-image{
    max-height: 35px;
  }
  .ft-hub-title {
    font-size: 2em;
  }
  .ft-hub-h2 {
    font-size: 1em;
  }
  .ft-hub-background{
    background: url(/images/Content/mobile_vertical-bg.jpg);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  	background-color: #0048AB;
  	overflow: hidden;
    background-position: center;
  }
  .mobile-only{
    display:block;
  } 
}