@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Libre+Caslon+Text:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
	
	min-height: 100vh;
	position:relative;
    font-family: 'Libre Caslon Text', serif;
    color: #333;
    background: #fff;
}

header {
    background: #1a1a1a;
    color: #fff;
    padding: 2em 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.header-left {
    width: 50%;
}

.header-right {
    width: 50%;
    text-align: right;
}

.header-right img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.header-right img:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 96px;
    margin-bottom: 0.1em;
    font-family: 'Italiana', serif;
}

h2 {
    font-size: 32px;
    font-weight: bold;
	font-family: "LibreCaslonText Bold";
    margin-bottom: 0.5em;
}

h4 {
	font-size: 32px;
	
}

p {
    margin-bottom: 1em;
	font-family: "LibreCaslonText Regular";
}



.applications {
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.applications img {
	width: 60px;
}

.applications:hover {
    transform: scale(1.1);
}

main {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 2em;
    display: flex;
    justify-content: space-between;
}

column {
	columns: 2;
	column-fill: balance;
}

.left-column, .right-column {
    width: 48%;
	margin-bottom: 2em;	
}


h3 {
    font-size: 1.25em;
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1.1em;
    margin-bottom: 0.3em;
}

section {
    margin-bottom: 2em;
}

.flow img, .card img {
	width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none; 
	
}



.flow img{
	position:absolute;
	bottom:30px;
	left:0;
}

.flow{
	height:300px;
}

.card img{
	position: absolute;
	bottom: 15px;
	left:0;
}

footer {
	width: 100%;
    background: #1a1a1a;
	color: white;
	position: absolute;
	bottom:-40px;
	left: 0;

}


	.footer-left {
		text-align: left;	
		position:relative;
		top:25px;
	}
	
	
	.footer-right {
		position:relative;
        
		text-align: right;
		top:-10px;
}



.left-column{
		text-align: left;
	}
	
.right-column {
	position:relative;
		float: right;
	   bottom: 979px;
		

}



/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-left, .header-right {
        width: 100%;
    }

 
	
	  

    .left-column, .right-column {
        width: 100%;
    }
	

}

/* CSS Document */

