.exo {
	font-family: "Exo", sans-serif;
	font-optical-sizing: auto;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: exo, sans-serif;
}

body {
	background-color: #e5f4ff;
}
.navbar {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100vw;
	gap: 5vw;
	border-bottom: dotted black 0.4vh;
	padding: 1vh 0;
	background-color: #ffffff;
}
.navbar a {
	font-size: 2vh;
	font-weight: 400;
}
a {
	color: black;
	text-decoration: none;
}
.logo-container {
	width: 13vw;
	height: 10vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo {
	width: 10vw;
	height: 12vh;
	object-fit: cover;
}
.colors {
	display: flex;
	border-bottom: dotted black 0.4vh;
	padding: 0vh 0vw;
	background-color: #ffffff;
	gap: 0vw;
}
.color {
	width: 25%;
	background-color: #14213d;
	height: 3vh;
	border-radius: 0vh;
}
.color:nth-child(2) {
	background-color: #fca311;
}
.color:nth-child(3) {
	background-color: #4b5563;
}
.color:nth-child(4) {
	background-color: #10b981;
}
.color:nth-child(6) {
	background-color: #fca311;
}
.color:nth-child(7) {
	background-color: #4b5563;
}
.color:nth-child(8) {
	background-color: #10b981;
}
.main {
	display: flex;
	border-bottom: dotted black 0.4vh;
}
.main-right {
	width: 50%;
	height: 60vh;
	border-right: dotted black 0.4vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main-right .bottom-part div:nth-child(1) {
	flex: 1 !important;
	width: 33.33333% !important;
}
.main-right .bottom-part div:nth-child(2) {
	flex: 1 !important;
	width: 33.33333% !important;
}
.main-right .bottom-part div:nth-child(3) {
	flex: 1 !important;
	width: 33.33333% !important;
	border-right: none;
}

.main-right .bottom-part div p {
	font-size: 1.75vh;
	font-weight: 300;
}
.main-right .bottom-part div h2 {
	font-size: 4vh;
	font-weight: 300;
	margin-top: 2vh;
}

.main-right .bottom-part div {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 0 1vw;
}

.main-right .bottom-part {
	border-bottom: none !important;
	border-top: dotted black 0.4vh;
	height: 20vh;
	margin-top: auto;
}

.main-right img {
	width: 100%;
	height: 100%;
	max-height: 40vh;
	object-fit: cover;
}

.main-left {
	width: 50%;
	height: 60vh;
	border-right: dotted black 0.4vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 3vw;
}
.main-left p {
	font-size: 3vh;
	margin-top: 2vh;
	font-weight: 300;
	text-align: left;
}
.main-left h1 {
	font-weight: 600;
	font-size: 10vh;
	color: #14213d;
}
.bottom-part {
	display: flex;
	height: 19vh;
	background-color: #ffffff;
	width: 100%;
}

.bottom-part h3 {
	font-size: 2.5vh;
	font-weight: 300;
}
.bottom-part div {
	border-right: dotted black 0.4vh;
	align-items: center;
	justify-content: center;
	display: flex;
	position: relative;
	border-bottom: dotted black 0.4vh;
}
.bottom-part div:nth-child(1) {
	width: 42.5%;
}
.bottom-part div:nth-child(2) {
	width: 15%;
}
.bottom-part div:nth-child(3) {
	width: 42.5%;
	border-right: none;
}

.down-arrow {
	width: 5vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cta-button {
	padding: 1vh 2.5vw;
	border: none;
	background-color: #14213d;
	color: white;
	font-size: 2.75vh;
	cursor: pointer;
	border-radius: 0.35vh;
	margin-top: 3vh;
	margin-left: auto;
	font-weight: 400;
}
