@charset "UTF-8";

/* CSS Document */
/* GLOBAL */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: "Open Sans", sans-serif;
	color: #000;
	margin: 0;
}

.container {
	margin: 10px auto;
	max-width: 1100px;
	padding: 20px;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
}

.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

.inner-split-section img {
	width: 100%;
}

p {
	margin: 8px 0;
}

a {
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	border-radius: 10px;
	background: #EA0029;
	text-decoration: none;
	padding: 17px 18px;
	transition: all 0.5s;
}

a:hover {
	background: #90011b;
}

@media (max-width: 991px) {
	.row {
		flex-direction: column;
	}
}


/* HEADER */
.header-img {
	width: 100%;
	height: auto;
}

/* .header {
	width: 100%;
	height: 635px;
	background-color: #990000;
}

.header img {
	height: 100%;
	width: inherit;
	object-fit: cover;
}

@media (max-width: 1220px) {
	.header {
		height: 435px;
	}
}

@media (max-width: 990px) {
	.header {
		height: 235px;
	}
} */


/* FONT STYLE */
.primary-color {
	color: #00788C;
}

.secondary-color {
	color: #EA0029;
}

.tertiary-color {
	color: #54575A;
}

.black {
	color: #000;
}

.white {
	color: #fff;
}

.center {
	text-align: center;
}

.left {
	text-align: center;
}

.right {
	text-align: center;
}

.p-0 {
	padding: 0px;
}

.p-1 {
	padding: 10px;
}

.pb-sm {
	padding-bottom: 30px;
}

.pt-sm {
	padding-top: 30px;
}

.pb-md {
	padding-bottom: 70px;
}

.pt-md {
	padding-top: 70px;
}

.pb-lg {
	padding-bottom: 130px;
}

.pt-lg {
	padding-top: 130px;
}

.p-font {
	font-family: "Mulish", sans-serif;
}

.m-0 {
	margin: 0px;
}

.mt-sm {
	margin-top: 30px;
}

h1 {
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}

h2 {
	font-style: normal;
	font-weight: 200;
	line-height: normal;
}

.p-s-font {
	font-size: 48px;
}

.s-s-font {
	font-size: 30px;
}

.t-s-font {
	font-size: 20px;
}

@media (max-width: 992px) {
	.p-s-font {
		font-size: 43px;
	}

	.s-s-font {
		font-size: 25px;
	}

	.t-s-font {
		font-size: 15px;
	}
}

@media (max-width: 740px) {
	.p-s-font {
		font-size: 35px;
	}

	.s-s-font {
		font-size: 20px;
	}

	.t-s-font {
		font-size: 15px;
	}
}

.max-width-sm {
	max-width: 910px;
	margin: auto;
}

/* BUTTON GROUPING */
.button-grouping-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

.button-grouping-single {
	margin: 20px;
}

@media (min-width: 740px) {
	.d-desktop {
		display: block;
	}
	.d-mobile {
		display: none;
	}
}

@media (max-width: 741px) {
	.d-desktop {
		display: none;
	}
	.d-mobile {
		display: block;
	}
}