@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Sora:wght@300;700&display=swap');
:root{

	--j-main-color: rgb(0,0,0);
	--j-accent-color: rgb(0,210,133);
	--j-accent2-color: rgb(161,141,244)	;
	--j-bg-color: #fefefe;
	--j-light-color: #626262;
	--j-font-thin: 100;
	--j-font-regular: 300;
	--j-font-bold: 500;
	--j-font-fat: 700;
	--j-border-weird:  50px 10px 50px 10px;
	--j-max-width: 1200px;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local('Roboto Thin'), local('Roboto-Thin'),
       url('./fonts/Roboto-Thin.ttf') format('ttf')
}
/* SITE */
	body{
		margin: 0;
		padding: 0;
		font-family: 'Poppins', sans-serif;
		font-weight: var(--j-font-regular);
	}
	section{
		display: flex;
		flex-direction: row;
		margin-bottom: 100px;
		position: relative;

	}
	section:after{
		content: ' ';
	    width: 50%;
	    height: 2px;
	    position: absolute;
	    background-color: #dddddd;
	    bottom: -50px;
	    left: 25%;
	}
	section ul {
  		list-style: none;
  		padding: 0;
	}
	section li {
	  	padding-left: 2.5em;
	  	padding-top: .7rem;
	  	padding-bottom: .5rem;
	  	position: relative;
	  	color: var(--j-light-color);
	}
	section li:after{
		content: ' ';
		height: 1px;
		width: 20%;
		position: absolute;
		bottom: 0px;
		left: 2.2em;
		background-color: #ddd;
	}
	section li.li::before {
		display: none;
	}
	section li.icon::before {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f35a";	
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
	}
	section li svg{
		margin-left: -2.3em;
		margin-right: 20px;
		width: 2.3em;
		fill: var(--j-accent-color);
		color: var(--j-accent-color);
	}
	button{
		display: flex;
  	  	margin-top: 30px;
  	  	padding: 15px 40px;
  	  	background-color: var(--j-accent-color);
  	  	border: none;
  	  	border-radius: 20px;
  	  	color: var(--j-bg-color);
  	  	transition: box-shadow 200ms ease-in-out;
	}
	button:hover{
		box-shadow: inset 1px 1px 2px 5px rgb(0 0 0 / 30%)
	}
	button:hover a{
		transform: scale(0.97) !important;
	}
	button a{
		color: var(--j-bg-color);
		text-decoration: none;
		transition: transform 200ms ease-in-out;
		transform: scale(1) !important;

	}

/* UTILITIES */
	.linkAppStore{
		cursor: pointer;
	}
	.boxed{
		max-width: var(--j-max-width);
		margin-left: auto !important;
		margin-right: auto !important;

	}
	.accent{
		color: var(--j-accent-color) !important;
	}
	.onlyMob{
		display: none;
	}

/* MAIN NAV */
	#MainNav, #StickyNav{
		background-color: var(--j-main-color);
		display: flex;
		padding: 18px;
		z-index: 1000;
		font-family: 'Sora', sans-serif;
		font-weight: var(--j-font-regular);

	}
	#MainNav ul, #StickyNav ul{
		display: flex;
		justify-content: space-between;
		align-items: center;
    	width: 100%;
    	margin: 0;
    	padding: 0;
	}
	#MainNav ul li, #StickyNav ul li{
		list-style: none;
		margin: 0px 10px;
	}
	#MainNav ul li:not(.alsoMob):hover a:not(.selected),
	#StickyNav ul li:not(.alsoMob):hover a:not(.selected){
		transform: scale(1.1);
		display: flex;
	}
	#MainNav ul li a, #StickyNav ul li a{
		text-decoration: none;
		color: var(--j-bg-color);
		position: relative;
		transition: transform 200ms ease-in-out;
	}
	#MainNav ul li:not(.alsoMob) a:not(.selected):after,
	#StickyNav ul li:not(.alsoMob) a:not(.selected):after{
		background-color: var(--j-accent-color);
		content: ' ';
		position: absolute;
		top: 120%;
		left: -5%;
		width: 110%;
		height: 2px;
		transition: transform 200ms ease-in-out;
		transform: scale(0, 0);
		transform-origin: center;
	}
	#MainNav ul li:not(.alsoMob):hover a:not(.selected):after,
	#StickyNav ul li:not(.alsoMob):hover a:not(.selected):after{
		transform: scale(1, 1);
	}
	#MainNav ul li a.selected, #StickyNav ul li a.selected{
		color: var(--j-accent-color);
	}
	#MainNav ul li.mainLogo, #StickyNav ul li.mainLogo{
		margin-right: auto;
	}
	#MainNav .mainLogo img{
		max-width: 190px;
	}
	#StickyNav .mainLogo img{
		max-width: 150px;
	}
	#StickyNav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		transform: translateY(-100%);
		transition: transform 300ms;
		padding-top: 15px;
		padding-bottom: 15px ;
	}
	#StickyNav.active{
		transform: translateY(0);
	}
	nav button{
		margin-top: 0px !important;
		font-size: 16px;
		transform: scale(1) !important;
	}
	#MainNav li svg{
		width: 25px;
	}
	#StickyNav li svg{
		width: 20px;
	}
	.bandiere a{
		transform: scale(1) !important;
		display: inline !important;

	}
	.bandiere a:after{
		content: none !important;
	}

/* HERO */
	#hero{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		height: calc(100vh - 110px);
		padding: 0px 150px;
	}
	#hero>div{
		width: 50%;
		display: flex;
		flex-direction: column;
		height: 70vh;
		box-sizing: border-box;

	}
	#hero .left div{
		width: 100%;
		display: flex;
		flex-direction: row;
	}
	#hero .left{
		background-color: var(--j-main-color);
		color: var(--j-bg-color);
		border-radius: var(--j-border-weird);
		padding: 50px;
		justify-content: center;

	}
	#hero .left img{
		width: calc(100% - 10px);
		margin: 5px;
	}
	#hero .left h1{
		font-size: 27px;
		margin-bottom: 15px;
		line-height: 30px;
	}
	#hero .left h6 {
	    margin-top: 0px;
	    font-size: 14px;
	}
	.no-webp #hero .right{
		background-image: url('../img/on-top-main-img.jpg');

	}
	#hero .right{
		background-image: url('../img/on-top-main-img.webp');
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		size: calc(50% + 50px);
		margin-left: -50px;
		z-index: -1;
		border-radius: var(--j-border-weird);
		align-items: center;
    	justify-content: flex-end;
	}
	#hero .right img{
		width: 40%;
		height: auto;
		margin-bottom: -51px;
		margin-left: 50px;
	}

/* MINUTES */
	#minutes{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#minutes .header{
		text-align: center;
		width: 80%;
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	#minutes .header h2{
		font-size: 50px;
		font-weight: var(--j-font-fat);
		margin-bottom: 0px;
		padding: 0 100px;
	}
	#minutes .header {
		margin-bottom: 20px;
	}
	#minutes .caratteristiche{
		display: flex;
		display: flex;
		justify-content: center;
		text-align: center;
	}
	#minutes .caratteristiche div{
		padding: 20px;
	}
	#minutes button{
		background-color: var(--j-accent-color);
		color: var(--j-bg-color);
		border-radius: 20px;
		border: none;
		padding: 10px 30px;
		font-size: 15px;
	}
	#minutes .caratteristiche img{
		width: auto;
		height: 100px;
	}
	#minutes .caratteristiche p{
		font-size: 16px;
		font-weight: 400;
	}

/* IBAN ACCOUNTS */
	#ibanAccount>div{
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	#ibanAccount .left picture{
		width: 90%;
	}
	#ibanAccount .left img{
		width: 100%;
		height: auto;

	}
	#ibanAccount .left{
		align-items: center;
	}
	#ibanAccount h3{
		font-size: 55px;
    	line-height: 65px;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		margin-bottom: 0;
	}
	#ibanAccount h4{
		font-size: 20px;
		font-family: 'Roboto', sans-serif;
		color: var(--j-light-color);
		font-weight: var(--j-font-thin);
	}
	#ibanAccount button{
		display: flex;
  	  	margin-top: 30px;
  	  	padding: 15px 40px;
  	  	background-color: var(--j-accent-color);
  	  	border: none;
  	  	border-radius: 20px;
  	  	color: var(--j-bg-color);
	}
	#ibanAccount button a{
		color: var(--j-bg-color);
		text-decoration: none;
	}

/* JUST LOGIN */
	#justLogin>div{
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	#justLogin .right picture{
		width: 40%;
		border-radius: ;
	}
	#justLogin .right img{
		width: 100%;
		height: auto;

	}
	#justLogin .right{
		align-items: center;
	}
	#justLogin h3{
		font-size: 55px;
    	line-height: 65px;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		margin-bottom: 0;
	}
	#justLogin h4{
		font-size: 20px;
		font-family: 'Roboto', sans-serif;
		color: var(--j-light-color);
		font-weight: var(--j-font-thin);
	}
	#justLogin .left>div:nth-child(3){
		display: flex;
    	align-items: center;
	}
	#justLogin .left>div:nth-child(3) picture{
		margin-right: 15PX;
	}
	#justLogin .left>div:nth-child(3) span{
		color: var(--j-light-color);
		font-weight: 400;
	}
	
/* MANAGE */
	#Manage{
		display: flex;
		flex-direction: column;

	}
	#Manage>div:first-child{
		width: 90%;
		display: flex;
		flex-direction: column;
		background-color: var(--j-accent-color);
		color: var(--j-bg-color);
		justify-content: center;
		align-items: center;
		padding: 50px 20px 100px 20px;
		border-radius: 20px;
		margin: auto;
		margin-top: 30px;
		margin-bottom: 30px;


	}
	#Manage>div:nth-child(2){
		display: flex;
		flex-direction: row;
		width: 100%;
		margin: auto;
		margin-top: -100px;
	}
	#Manage>div:nth-child(2)>div{
		width: calc(25% - 20px);
		background-color: var(--j-bg-color);
		justify-content: center;
		align-items: center;
		box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
		border-radius: 20px;
		padding: 20px;
		display: flex;
		flex-direction: column;
	}
	#Manage>div:nth-child(2)>div:nth-child(2){
		margin: -50px 20px 0px 20px;
		width: 50%;
	}
	#Manage h3{
		font-family: 'Poppins', sans-serif;
		font-size: 50px;
		font-weight: 600;

		margin-bottom: 0px;
	}
	#Manage h4{
		font-size: 28px;
		font-weight: 400;
		font-family: 'Roboto', sans-serif;
		margin-top: 10px;
	}
	#Manage .left h6{
		font-size: 12px;
		font-weight: 600;
		font-family: 'Poppins', sans-serif;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	#Manage .left h5{
		font-size: 30px;
		font-weight: 600;
		font-family: 'Poppins', sans-serif;
		margin-top: 10px;
	}
	#Manage .left p, #Manage .right p{
		font-size: 12px;
		font-weight: 600;
		font-family: 'Poppins', sans-serif;
		margin-top: 10px;
		text-align: center;
		color: var(--j-light-color);
	}
	#Manage .right p{
		margin-bottom: 0px;
	}
	#Manage .right h1{
		font-size: 40px;
		font-weight: 600;
		font-family: 'Poppins', sans-serif;
		text-align: center;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	#Manage .right h6{
		font-size: 14px;
		font-weight: 400;
		font-family: 'Roboto', sans-serif;
		text-align: center;
		margin-top: 0px;
		margin-bottom: 10px;
	}
	#Manage .right, #Manage .left{
		justify-content: start;
	}
/* FAQS */
	.domanda{
		border: 1px solid #dddddd;
	    border-radius: 5px;
	    padding: 10px;
	    margin: 5px;
	    border-left-width: 3px;
	    border-left-color: var(--j-accent-color);
	}
	.risposta{
		max-height: 0px;
		transition: max-height 300ms, margin 300ms, padding 300ms;
		overflow: hidden;
		border: 1px solid #dddddd;
	    padding: 0px 10px;
	    border-radius: 5px;
	    margin: 0px 5px;
	    border-left-width: 3px;
	    border-left-color: #BBB;
	}
	.risposta.open{
		max-height: 800px;
		margin: 5px;
		padding: 10px;
	}
	#faqs li:after{
		display: none
	}
	#faqs li{
		padding: 0;
	}
	#FaqContainer h2{
		margin-bottom: 20px
	}
	#FaqContainer{
		flex-direction: column;
	}

/* FOOTER */
	
	footer{
		display: flex;
		flex-direction: column;
		background-color: var(--j-main-color);
		color: var(--j-bg-color);
		padding: 50px;
	}
	footer>div{
		display: flex;
		flex-direction: row;
		background-color: var(--j-main-color);
		color: var(--j-bg-color);
		
	}
	footer>div>div{
		display: flex;
		flex-direction: column;
		background-color: var(--j-main-color);
		color: var(--j-bg-color);
		flex-grow: 1;
		justify-content: center;
    	align-items: center;
	}
	footer>div>div:nth-child(odd){
		width: 30%;
	}
	footer>div>div:nth-child(even){
		width: 40%;

	}
	footer h5{
		font-size: 20px;
		font-family: "Poppins", sans-serif;
		font-weight: 600;
		color: var(--j-light-color);
		margin: 5px auto;
	}
	footer h3{
		font-size: 30px;
		font-family: "Poppins", sans-serif;
		font-weight: 600;
		margin-bottom: 0px;
		margin-top: 0px;
		text-align: center;
	}
	footer a{
		font-size: 14px;
		color: var(--j-bg-color);
		text-decoration: none;
		margin-bottom: 15px ;
	}
	footer img{
		margin-top: 50px;
		margin-bottom: 35px ;
	}
	footer a.underlined{
		text-decoration: underline;
	}
	footer img.logo{
		width: 100px;
	}
	footer p.nowebp:after{
		background-image: url('../img/on-top_logo.jpg');

	}
	footer p{
		text-align: center;
		position: relative;
		padding-top: 100px ;
		font-size: 14px;
	}
	footer p:after{
		content: " ";
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-image: url(../img/on-top_logo.webp);
	    background-size: contain;
	    background-position: center;
	    background-repeat: no-repeat;
	    opacity: .05;
	}
/* UNDERFOOTER */
	#underFooter {
		position: fixed;
		bottom: 10px;
		right: 10px;		
	}
	#underFooter.ohi{
		position: fixed;
		top: 50px;
		right: 10px;
		bottom: initial;		
	}
	#underFooter div{
		padding: 8px;
		background-color: black;
		position: relative;
		bottom: 0px;
		color: white;
		margin-bottom: 3px;
		border-radius: 5px;
		cursor: pointer;
		display: flex;
		align-items: center;
		flex-direction: row;
    justify-content: space-between;
	}
	#underFooter svg {
		margin-left: 5px;
	}
	#underFooter .under{
		transform: translateY(100%);
		transition: transform 200ms linear;
		background-color: var(--j-accent2-color);
	}
	#underFooter .under.active{
		transform: translateY(0%);
	}
	#underFooter.ohi .under{
		transform: translateY(115%);
		transition: transform 200ms linear;
		background-color: var(--j-accent-color);
	}
	#underFooter.ohi .under.active{
		transform: translateY(215%);
	}
	#underFooter a {
		text-decoration: none;
		color: #fff;
	}

/* MEDIA QUERY */

@media only screen and (max-width: 1079px) {
	/* UTILITIES */
		.onlyMob{
			display: inherit;
		}
	/* NAVIGATION */
		#StickyNav{
			box-sizing: border-box;
			width: 100vw;
		}
	  	#MainNav ul li:not(.alsoMob), #StickyNav ul li:not(.alsoMob) {
	    	display: none;
	  	}
	  	#MainNav ul li:not(.alsoMob), #StickyNav ul li:not(.alsoMob){
	    	display: flex;
	    	position: fixed;
	    	z-index: 2000;
	    	background-color: black;
	    	align-items: center;
	    	justify-content: center;
	    	font-size: 26px;
	    	width: 100vw;
	    	left: 0px;
	    	margin-left: 0px;
	    	height: 0px;
	    	transition: height 50ms ease-in-out, transform 70ms ease-in-out;
	    	overflow-y: hidden;
	    	transform: scale(0.8);
	    	margin: 0px;
	    	
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(2), #StickyNav ul li:not(.alsoMob):nth-child(2){
	    	top: 80px;
	    	transition-delay: 560ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(3), #StickyNav ul li:not(.alsoMob):nth-child(3){
	    	top: 139px;
	    	transition-delay: 490ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(4), #StickyNav ul li:not(.alsoMob):nth-child(4){
	    	top: 198px;
	    	transition-delay: 420ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(5), #StickyNav ul li:not(.alsoMob):nth-child(5){
	    	top: 257px;
	    	transition-delay: 350ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(6), #StickyNav ul li:not(.alsoMob):nth-child(6){
	    	top: 316px;
	    	transition-delay: 280ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(7), #StickyNav ul li:not(.alsoMob):nth-child(7){
	    	top: 375px;
	    	transition-delay: 210ms;
	    	
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(8), #StickyNav ul li:not(.alsoMob):nth-child(8){
	    	top: 434px;
	    	transition-delay: 140ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(9), #StickyNav ul li:not(.alsoMob):nth-child(9){
	    	top: 493px;
	    	transition-delay: 70ms;
	  	}
	  	#MainNav ul li:not(.alsoMob):nth-child(10), #StickyNav ul li:not(.alsoMob):nth-child(10){
	    	top: 552px;
	    	transition-delay: 0ms;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(2){
	    	top: 62px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(3){
	    	top: 107px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(4){
	    	top: 166px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(5){
	    	top: 225px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(6){
	    	top: 284px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(7){
	    	top: 343px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(8){
	    	top: 402px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(9){
	    	top: 461px;
	  	}
	  	#StickyNav ul li:not(.alsoMob):nth-child(10){
	    	top: 520px;
	  	}
	  	#MainNav.active ul li:not(.alsoMob), #StickyNav.open ul li:not(.alsoMob){
	    	height: 60px;
	    	transform: scale(1);
	    	max-width: 100vw;
	  	}


	  	#MainNav.active ul li:not(.alsoMob):nth-child(2), #StickyNav.open ul li:not(.alsoMob):nth-child(2){
	    	transition-delay: 0ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(3), #StickyNav.open ul li:not(.alsoMob):nth-child(3){
	    	transition-delay: 70ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(4), #StickyNav.open ul li:not(.alsoMob):nth-child(4){
	    	transition-delay: 140ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(5), #StickyNav.open ul li:not(.alsoMob):nth-child(5){
	    	transition-delay: 210ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(6), #StickyNav.open ul li:not(.alsoMob):nth-child(6){
	    	transition-delay: 280ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(7), #StickyNav.open ul li:not(.alsoMob):nth-child(7){
	    	transition-delay: 350ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(8), #StickyNav.open ul li:not(.alsoMob):nth-child(8){
	    	transition-delay: 420ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(9), #StickyNav.open ul li:not(.alsoMob):nth-child(9){
	    	transition-delay: 490ms;
	  	}
	  	#MainNav.active ul li:not(.alsoMob):nth-child(10), #StickyNav.open ul li:not(.alsoMob):nth-child(10){
	    	transition-delay: 560ms;
	  	}

	  	.hamburger{
	  		color: var(--j-bg-color);
	  		font-size: 50px;
	  	}
	  	#StickyNav .hamburger{
	  		margin-right: 30px;
	  		font-size: 30px;
	  	}
	  	#ibanAccount2 .left picture{
	  		display: none;
	  	}
	  	#ibanAccount2 h3{
	  		font-size: 45px;
	  	}
	  	#ibanAccount .left picture{
	  		max-width: 80%;
	  	}
	  	#ibanAccount2 button{
	  		margin: auto;
	  	}
	  	footer>div>div{
	  		width: 100% !important;
	  	}
	  	#underFooter{
	  		display: none;
	  	}
	  	svg.svg-inline--fa.fa-facebook-square.fa-w-14, svg.svg-inline--fa.fa-instagram-square.fa-w-14{
	  		margin: 0 10px;
	  	}

}
@media only screen and (max-width: 800px) {
	.left, .right, .center{
		width: 90% !important;
		margin: auto;
	}
	#hero{
		flex-direction: column;
		padding: 50px 50px;
		min-height: unset;
		height: unset;
		padding-top: 0px;

	}
	#hero>div{
		height: initial;
	}
	#hero .right{
		margin-left: auto;
	}
	#hero .right img{
		margin-left: 0px;
	}
	#hero .left{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	#minutes .caratteristiche{
		flex-direction: column;
	}
	#minutes .header h2{
		font-size: 40px;
		padding: 0;
	}
	#Manage>div:nth-child(2){
		flex-direction: column;
		align-items: center;
		margin-top: 0px;
	}

	#Manage>div:nth-child(2)>div{
		padding: 0px;
		margin-top: 30px;
	}
	#Manage>div:nth-child(2)>div:nth-child(2){
		margin-top: 30px;
	}

	#Manage button, #ibanAccount button, #justLogin button{
		margin: 50px auto;

	}
	#Manage{
		text-align: center;
	}
	#Manage>div:first-child{
		padding: 20px;
	}
	#Manage li{
		text-align: left;
		margin-left: 15px;
	}
	#justLogin h3{
		margin-top: 0px;
		font-size: 40px;
	}
	#justLogin .right picture {
	    width: 80%;
	}
	section:after{
		display: none;
	}
	section{
		flex-direction: column;
		margin-bottom: 20px;

	}
	footer>div{
		flex-direction: column;
	}
	footer>div>div>div{
		flex-direction: column;
		display: flex;
	}
	footer>div>div>div img{
		margin: 10px 0px;
		width: 100%;
	}
}
@media only screen and (max-width: 500px) {
	#MainNav .mainLogo img {
		max-width: 190px;
	}
	#hero{
		padding: 50px 0px;
		padding-top: 0px;

	}
	#ibanAccount h3{
		font-size: 40px;
		line-height: 50px;
	}
	#Manage>div:first-child{
		padding: 0px;
	}
}
















