/* Our custom font - ibmplex */
@font-face {
    font-family: 'IBMPlex';
    src: url('assets/fonts/ibm-font.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* resets */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'IBMPlex', sans-serif;
    line-height: 1.6;
}

/* Layout and content styling */

.container,
.split-layout {
    width: 100%;
    height: 100%;
}

.split-layout {
    display: flex;
}

.split-layout__item {
    flex: 1;
    display: flex;
}

/* Left Column */
.split-layout__item--left {
    justify-content: flex-end;
    background: #ffffff;
}

.split-layout__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: clamp(3rem, 5vw, 10rem);
}

.split-layout__item--left .split-layout__item-content {
    align-items: flex-end;
    text-align: right;
}

.split-layout__item--left h1 {
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 5rem);
    margin-bottom: 2rem;
    white-space: nowrap;
    letter-spacing: 5px;
}

.split-layout__item--left h1 span {
    color: #f18715;
}

.split-layout__item--left .split-layout__item-content div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: 300;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.split-layout__item--left span:last-child {
    margin-top: 1.5rem;
}

.responsive-image {
    width: 400px;
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 8px;
}

/* Right Column */
.split-layout__item--right {
    align-items: flex-end;
    background: #f18715;
    color: #ffffff;
}

.split-layout__item--right .split-layout__item-content {
    margin-left: clamp(3rem, 5vw, 10rem);
    font-weight: 300;
    font-size: clamp(1.25rem, 2vw, 2.25rem);
    letter-spacing: 3px;
}

.contact,
.address {
    display: flex;
    flex-direction: column;
}

.address {
    margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .split-layout {
        flex-direction: column;
    }

    .split-layout__item {
        display: block;
    }

    .split-layout__item.split-layout__item--right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .split-layout__item--left .split-layout__item-content {
        align-items: center;
    }

    .split-layout__item-content {
        margin: 3rem 0;
        padding: 0 20px;
        align-items: center;
        text-align: center;
    }

    .split-layout__item--right .split-layout__item-content {
        margin-left: 0;
    }

    .split-layout__item--left .split-layout__item-content div {
        align-items: center;
    }
	
	
	.responsive-image {
		width: 200px;		
	}

}