/*LAYOUT CSS*/
html {
  font-size: 16px;
  font-family: Roboto, sans-serif;
  min-height: 100%;
  xbackground-color: #F2F5FF;
}

body {
	margin: 0px !important;
	overflow-x: hidden;
	height: 100vh;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

.header {
	background-color: #262534 !important;
	color: #FFFFFF;
	min-height: 70px !important;
	position: fixed; 
	width: 100%;
	z-index: 10;
}

.navigation .logo {
	height: 45px; 
	padding-left: 10px;
	margin-bottom: -4px;
}

.row {
	display: flex; 
	flex-direction: row; 
}

.navigation, .container {
	align-items: center;
	gap: 35px;
}

.navigation {
	height: 70px;
	justify-content: space-between;
	padding-right: 30px;
	font-size: 16px;
}

.header a {
	color: #FFFFFF;
    font-weight: 400;
    letter-spacing: .2px;
}

.bodyContainer {
	flex-grow: 1;
}

.footer {
	width: 100%;
	background-color: #262534;
	color: #FFFFFF;
	padding: 10px 0px; 
	line-height: 20px !important;
}

.footer > .container {
	width: 100%;
	text-align: center;	
	gap: 0px;
	font-size: 14px;
}

.column {
	display: flex;
	flex-direction: column;
}

a {
	text-decoration: none; 
	font-weight: 600;
}

.footer a {
	color: #6C85DF;
}

.footer .logo {
	height: 40px;
}

/*COMMON PAGE CSS*/

.pageBody {
	font-family: Roboto, sans-serif;
}

.pageTop {
	margin-top: 70px;
}

.whiteSection {
	background-color: #FFFFFF;
	width: 100%;
	justify-content: center;
}
.blueSection {
	background-color: #F2F5FF; 
	width: 100%;
	justify-content: center;
}

.safeArea {
	max-width: 1020px;
	flex-grow: 1;
}

.bodyRow {
	padding: 30px 20px; 
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.textBlock {
	gap: 8px; 
	flex-grow: 1;
}

.textBlock .textHeader {
	font-size: 24px; 
	font-weight: 500; 
	line-height: 32px; 
	font-family: 'Inter', Roboto, sans-serif;
}

.textBody {
	font-size: 16px; 
	font-family: system-ui;
}

.textBody > a {
	font-weight: 500;
	color: #6C85DF; 
	text-decoration: underline;
}

.imageBlock > img {
	max-width: 575px;
	border-radius: 5px;
}

.zoom {
	transition: transform .5s ease; 
}
.zoom:hover {
	transform: scale(1.03); 
}


/*Study Card Styles*/

.studyWrapper {
	gap: 30px;
	margin: 30px 20px;
}

.studyCard {
	color: #2F2E41;
	border-radius: 5px; 
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	padding: 25px; 
	background-color: #FFFFFF;
	display: flex;
	flex: 1;
	transition: transform .5s ease; 
	gap: 15px;
}

.studyCard:hover {
	transform: scale(1.015); 
}

.headerRow {
	gap: 20px;
	justify-content: space-between;
}

.headerColumn {
	gap: 8px; 
}

.headerText {
	color: #2F2E41;
	font-family: Inter, sans-serif;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 5px;
}

.chipRow {
	gap: 8px;
	align-items: center;
}

.chipIcon {
	height: 16px; 
	width: 16px;
	color: #2F2E41;
}

.chipText {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

.chip {
	background-color: #E6E6E6;
	border-radius: 5px;
	padding: 5px 10px;
}

.headerColumn .subHeader {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}

.headerColumn .bodyText {
	font-family: system-ui;
	font-size: 14px;
	max-width: 900px;
}

.priceText {
	color: #F4C755;
	text-align: right;
	font-size: 24px;
	font-weight: 500;
	line-height: 24px;
}

.timeText {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	line-height: 12px;
}

.applyButton, a {
	display: inline-block;
}

.applyButton {
	font-size: 18px;
	font-family: 'Inter', Roboto, sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	padding: 8px 15px;
	background-color: #F2BF3D;
	color: #FFFFFF;
	border-radius: 5px;
	display: inline-block;
	transition: color 0.4s ease;
}

.applyButton:hover {
	background-color: #6C85DF;
}

.contactRow > .column {
	flex-grow: 1;
}

.contactRow {
	column-gap: 20px;
}

.contactForm > .column {
	justify-content: space-between;
	height: 100%;
}

.contactForm input[type="text"], .contactForm input[type="email"] {
	padding: 7px;
	margin: 7px 0px;
	border: 1px solid #6C85DF;
	border-radius: 5px;
}

	.contactForm input[type="text"]:focus, .contactForm input[type="email"]:focus {
		border: 1px solid #F2BF3D !important;
		outline: 0px;
	}

	.contactForm input[type="text"]:not(:placeholder-shown), .contactForm input[type="email"]:not(:placeholder-shown) {
		border: 1px solid #F2BF3D !important;
		outline: 0px;
	}

.radioGroup > .row{
	gap: 15px;
	justify-content: space-between;
	margin-top: 5px;
}

.radioGroup .column {
	gap: 10px;
}

.radioGroup {
	margin-bottom: 10px;
}

.contactForm > .column {
	gap: 12px;
}

.radio-label {
	font-family: system-ui, Roboto; 
}

input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	margin-right: 10px;
	font: inherit;
	color: currentColor;
	width: 20px;
	height: 20px;
	border: 1px solid #6C85DF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	flex-shrink: 0;
}

	input[type="radio"]::before {
		content: "";
		width: 10px;
		height: 10px;
		background-color: #6C85DF;
		border-radius: 50%;
		transform: scale(0);
		transition: 120ms transform ease-in-out;
		box-shadow: inset 1em 1em var(--form-control-color);
	}

	input[type="radio"]:checked::before {
		transform: scale(1);
		background-color: #F2BF3D;
	}

	input[type="radio"]:checked {
		border-color: #F2BF3D;
	}

input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 25px;
	height: 25px;
	border: 1px solid #6C85DF;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
	input[type="checkbox"]:checked {
		border-color: #F2BF3D
	}
	input[type="checkbox"]::before {
		content: "";
		margin-bottom: 2px;
		width: 4px;
		height: 10px;
		border: 2px solid #F2BF3D;
		border-width: 0 2px 2px 0;
		transform: scale(0);
		transition: 120ms transform ease-in-out;
	}

	input[type="checkbox"]:checked::before {
		transform: scale(1) rotate(45deg);
	}

input[type=submit] {
	background: #F2BF3D;
	cursor: pointer;
	-webkit-border-radius: 5px;
	color: white;
	font-size: 18px;
	font-family: Inter;
	text-transform: uppercase;
	border: none;
	outline: none;
	font-weight: 600;
	padding: 10px;
	border-radius: 5px;
	display: inline-block;
	transition: all 0.4s ease;
	max-width: 240px;
}

	input[type=submit]:hover {
		background: #6C85DF;
	}

.lockIcon {
	height: 18px;
	width: 18px;
	filter: invert(79%) sepia(91%) saturate(1662%) hue-rotate(328deg) brightness(102%) contrast(90%);
}

.dataNotice {
	gap: 9px;
	align-items: center;
	border: 1px solid #DFDFDF;
	border-radius: 5px; 
	font-size: 12px;
	padding: 8px;
	width: 146px;
}

	.dataNotice a {
		text-decoration: underline;
		color: #6C85DF;
	}
	
.studyBodyBlockHeader{
	font-family: Inter, sans-serif;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
}

.studyHeader{
	font-family: Inter, sans-serif;
	font-size: 30px;
	font-weight: 500;
}

.studyBodyBlockBody > div {
	margin-bottom: 5px; 
}

.studyBodyBlock li {
	margin-bottom: 10px;
}
	
.mediaShow {
	display: none; 
}

.mediaHide {
	display: inherit; 
}

#hamburger, #menu {
	display: none; 
}

.nav-link {
	display: block; 
}

/*MEDIAQUERIES*/

	@media (max-width: 950px) {
		html, .textBody, .bodyText {
			font-size: 15px;
		}
		
		#hamburger {
			display: block;
			border: none;
			background-color: transparent;
			cursor: pointer;
			padding: 4px;
		}

        #hamburger div {
            background-color: #F2BF3D;
            width: 24px;
            height: 3px;
            border-radius: 1px;
            margin: 6px 0px;
        }

		#menu {
			width: 100%;
			display: none;
			padding-right: 0px;
			flex-direction: column;
		}

        #menu a {
            display: block;
            padding: 15px;
            box-sizing: border-box;
            text-align: center;
			font-size: 16px;
        }
		
		.nav-link {
			display: none; 
		}
		.mediaWrap {
			flex-wrap: wrap;
		}
		.mediaColumn {
			flex-direction: column; 
		}
		.mediaRow {
			flex-direction: row; 
		}
		.mediaShow {
			display: inherit; 
		}
		.mediaHide{
			display: none;
		}
		.headerRow {
			justify-content: center;
		}
		.headerText, .timeText {
			text-align: center;
		}
		.mediaCenter {
			justify-content: center; 
			align-items: center; 
		}
		.radioGroup > .mediaColumn > .mediaRow > .row {
			width: 50%;
		}
		.safeArea {
			max-width: 600px;
		}
		.mediaJustify {
			justify-content: center;
		}
		.mediaCenter {
			text-align: center; 
		}
		.mediaOrderAfter {
			order: 1;
		}
		.imageBlock > img {
			width: 100%;
			border-radius: 5px;
		}
		.imageBlock {
			border-radius: 10px;
			overflow: hidden; 
		}
		.navigation {
			padding-right: 15px;
			font-size: 14px;
		}
		.textBlock {
			order: 2;
			width: 100%;
		}
	}