html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select , textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
	outline: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.25;
    color: var(--bs-heading-color);
}
.h1, h1 {
    font-size: 3.55rem;
}
.h2, h2 {
    font-size: 2.5rem;
}
.h3, h3 {
    
}
.h4, h4 {
    font-size: 1.778rem; 
}
.h5, h5 {
    font-size: 1.25rem;
}
.h6, h6 {
    
}
@media screen and (max-width: 991px) {
	.h1, h1 {
	    font-size: 1.9rem;
	}
	.h2, h2 {
	    font-size: 1.65rem;
	}
	.h4, h4 {
	    font-size: 1.5rem; 
	}
	.h5, h5 {
	    font-size: 1.25rem;
	}
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--white: rgba(255,255,255,1);
	--semiwhite: rgba(218,218,218,1);
	--black: rgba(0,0,2,1);
	--dark-blue: rgba(19,19,29,1);
	--primary: rgba(91,156,255,1);
	--danger: rgba(255,34,68,1);
}
html {
	font-size: 18px;
}
@media screen and (max-width: 991px) {
	html {
		font-size: 16px;
	}
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.55;
	position: relative;
	color: var(--white);
	background: var(--black);
}
* {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
}
section	{
	padding: 120px 0;
}
@media screen and (max-width: 991px) {
	section	{
		padding: 90px 0;
	}
}
h1 , h2 , h3 , h4 , h5 , h6 {
	line-height: 1.2;
}
.container {
	max-width: 1320px;
	width: calc(100% - 40px);
	margin: 0 auto;
}
@media screen and (max-width: 1200px) {
	.container {
		max-width: 100%;
	}
}
@media screen and (max-width: 970px) {
	.container {
		max-width: 100%;
	}
}
@media screen and (max-width: 740px) {
	.container {
		max-width: 100%;
	}
}

.screen {
	min-height: 100vh;
	min-height: calc((var(--vh, 1vh) * 100));
}
.screen--1 {
	display: flex;
	flex-direction: column;
}

.primary {
	color: var(--primary);
}
.semiwhite {
	color: var(--semiwhite);
}
.uppercase {
	text-transform: uppercase;
}
.strong {
	font-weight: 700;
}
.male {
	color: rgba(71,136,225,1);
}
.female {
	color: rgba(222,137,253,1);
}
.white {
	color: var(--white);
}


.btn.btn-primary {
	cursor: pointer;
	color: var(--white);
	padding: 1rem 2rem;
	font-weight: bold;
	line-height: 1.25;
	font-size: 1.25rem;
	background: var(--primary);
	border: 2px solid var(--white);
	border-radius: calc(1rem - 2px);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.25);
	transition: all 0.1s linear;
	background: rgba(120,148,253,1);
	background: radial-gradient(circle, rgba(120,148,253,1) 0%, rgba(120,148,253,1) 20%, rgba(114,155,251,1) 40%, rgba(117,197,247,1) 100%);
}
.btn.btn-primary:hover {
	background: rgba(255,255,255,1);
	background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
	color: var(--primary);
    box-shadow: 0 0 2px 8px rgba(255,255,255,0.25);
}

.card {
	padding: 30px;
	background: var(--dark-blue);
	border-width: 2px;
	border-color: rgba(91,156,255,0.2);
	border-style: solid;
	border-radius: calc(2rem - 4px);
}
@media screen and (max-width: 991px) {
	.card {
		padding: 20px;
		border-radius: calc(1rem - 2px);
	}
}

.primary-bg {
	background: var(--primary);
}

textarea {
    resize: none;
    height: 120px;
}
input.error {
    border-color: var(--danger) !important;
    color: var(--danger) !important;
}
input.error::placeholder {
    color: var(--danger) !important;
}


select {
	border-width: 1px !important;
}
input ,
select ,
textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.75rem;
	border-radius: calc(0.5rem - 2px);
	border-width: 2px;
	border-style: solid;
	border-color: var(--white);
	font-size: 1rem;
	line-height: 1rem;
	display: flex !important;
	justify-content: flex-start;
	align-items: center;
}
input::placeholder ,
select::placeholder ,
textarea::placeholder {
	color: #999;
	font-size: 1rem;
	line-height: 1;
}
label {
	font-size: 1rem;
	margin-bottom: 0.25rem;
	display: block;
}
.form-group {
	position: relative;
	margin-bottom: 1rem;
}

.disabled {
	pointer-events: none;
}

@media screen and (max-width: 991px) {
	label {
		font-size: 0.85rem;
	}
}