body, html {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    height: 100%;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container::before {
    position: absolute;
    content: "";
    margin: 15px;
    z-index: 1;
    width: calc(100vw - 30px);
    height: calc(100vh - 30px);
    top: 0;
    bottom: 0;
    border: 1px white solid;
}

.section1 {
    flex: 60%;
    background-color: #191919;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section2 {
    flex: 40%;
    background-color: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.row {
    width: 1200px;
    display: flex;
}

.column1 {
    flex: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.text-left {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #ffffff;
    text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 0;
}

.text-right {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 0;
}

.line {
	 margin-top: 40px;
	 margin-bottom: 20px;
}

.column2 {
    flex: 55%;
    color: #ffffff;
}

img {
    max-width: 100%;
}
.desktop-break {
    display: block;
}
.mobile-break {
    display: none;
}

@media only screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
		padding: 0 30px;
    }
    .column1, .column2 {
        flex: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .text-left, .text-right {
        text-align: center;
		font-size: 16px;
		letter-spacing: 0.16em;
		margin: 20px 0px;
    }
	.line {

		width: 65%;
		margin: 10px auto;
	}
	.logo {
		width: 70%; 
	}
	.section1 {
    flex: 50%;
	}
	.section2 {
    flex: 50%;
	}
	.desktop-break {
    display: none;
}
	.mobile-break {
    display: block;
	}
}