@font-face {
    font-family: 'Rajdhani-SemiBold';
    src: url('../fonts/Rajdhani-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani-Medium';
    src: url('../fonts/Rajdhani-Medium.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

/* general resets */

:root {
	--dark-blue: #0062A4;
	--blue: #4776FF;
	--light-blue: #00aeef;
	--darker-blue: #00253E;
	--purple: #9B54F9;
	--light-purple: #BE5DFF;
	--dark-purple: #9B54F9;
	--grey: #DDDDDD;
	--blue-fade: rgba(0,37,62,0.95);
	--blue-fade-70: rgba(0,37,62,0.70);
	--radial-bg: radial-gradient(#015791 0%, var(--darker-blue) 60%, var(--darker-blue) 100%);
	--header-fade: linear-gradient(rgba(0,37,62,1), rgba(0,37,62,0));
	--purple-gradient: linear-gradient(to right, var(--purple), var(--blue));
	--gap-1: 1vw;
	--gap-2: 2vw;
	--gap-3: 3vw;
	--gap-4: 4vw;
	--gap-5: 5vw;
	--gap-6: 6vw;
	--gap-7: 7vw;
	--gap-8: 8vw;
	--gap-9: 9vw;
}

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Rajdhani-Medium', sans-serif;
	font-size: 1.2rem;
	text-wrap: pretty;
}

*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
br {
  display: block;
  content: " ";
  border-bottom: 10px solid transparent;
}
@-moz-document url-prefix() {
	br {
    	margin-bottom: 10px;
  }
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
	ul br {
		display: none;
	}
	ul li {
		margin-bottom: 0.8rem;
	}
}
#container {
	position: relative;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
.size_it {
	position:fixed;
	top:40px;
	left:40px;
	z-index:100;
	color: red;
	font-size: 2rem;
	display: none;
}
.size_it::after {
	content:"over-1600";
}

img {
	object-fit: contain;
	display: block;
	max-width: 100%;
	height: auto;
}
/* text */
p, a, h1, h2, h3, h4, h5, h6, ul, li {
	font-family: 'Rajdhani-Medium', sans-serif;
	line-height: 1.3;
	margin: 0;
	text-align: left;
}
p {
	font-size: clamp(0.875rem, 0.7591rem + 0.4878vw, 1rem);
}
a {
	transition: all 0.4s ease;
}
h1, h2 {
	line-height: 1.1;
}
.font-size-1-1 {
	font-size: clamp(1.3rem, 0.1875rem + 5vw, 3.7rem);
	font-weight: 600;
}
.font-size-1 {
	font-size: clamp(1.5rem, 1.0366rem + 1.9512vw, 2.1rem);
}
.font-size-2 {
	font-size: clamp(2.1773rem, 1.5953rem + 2.4506vw, 3.4332rem);
}
.font-size-3 {
	font-size: clamp(1.6rem, 1.3rem + 1.8189vw, 2.4rem);
	line-height: 1.2;
}
.font-size-4 {
	font-size: clamp(1.512rem, 1.1944rem + 1.3371vw, 2.1973rem);
}
.font-size-5 {
	font-size: clamp(1.26rem, 1.0293rem + 0.9713vw, 1.7578rem);
}
.font-size-6 {
	font-size: clamp(1.05rem, 0.8849rem + 0.6951vw, 1.35rem);
	line-height: 1.2;
}
.font-size-7 {
	font-size: clamp(1rem, 0.5rem + 0.5vw, 1.2rem);
	line-height: 1.3;
}
a {
	text-decoration: none;
}
*:focus {
    outline: none;
}
.bold, strong {
	font-weight: 600;
	font-family: 'Rajdhani-SemiBold', sans-serif;
	display: inline;
}
.lower_case {
	text-transform: lowercase;
}

header {
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	align-items: flex-start;
	background: var(--blue-fade);
}
header.scrolled {
	background: var(--blue-fade);
	height: 90px;
}
/* menu */

header nav {
	position: relative;
	display: flex;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: auto;
	min-height: 90px;
	max-width: 1200px;
	z-index: 5;
	align-items: center;
}
.ul_cont {
	position: relative;
	display: flex;
	height: auto;
	width: 100%;
	max-width: 1200px;
	justify-content: flex-end;
}
header nav ul {
	position: relative;
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: left;
	height: 100%;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	min-width: 100%;
	gap: 0.7em;
}
.ul_cont.nav-ex {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
header nav li {
	position: relative;
	display: flex;
	padding: 0;
	margin: 0;
}
header nav li a {
	font-size: clamp(1rem, 0.5rem + 0.5vw, 1.2rem);
	line-height: 1;
	color: white;
	font-family: 'Rajdhani-SemiBold', sans-serif;
	display: block;
	-webkit-appearance: none; 
    -moz-appearance: none; 
    -ms-appearance: none; 
    appearance: none;
    padding: 0.2em;
}
header nav li.login a {
	background-color: var(--purple);
	padding: 0.4em 1.2em;
	border-radius: 5px;
}
header nav li.login a:hover {
	background-color: var(--purple);
	color: white;
}
.main_logo img {
	width: 162px;
	min-width: 162px;
	max-width: 162px;
	height: auto;
}
header nav a:hover {
	color: var(--light-purple);
}

.toggler {
  position: absolute;
  display: none;
  top: 25px;
  right: 20px;
  z-index: 99;
  cursor: pointer;
  width: 45px;
  height: 50px;
  opacity: 0;
}
.hamburger {
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 98;
  width: 45px;
  height: 50px;
  padding: 2px;
  display: none;
  align-items: center;
  justify-content: center;
}
.hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 3px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
/* Hamburger Lines - Top & Bottom */
.hamburger > div::before,
.hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -12px;
  width: 100%;
  height: 3px;
  background: inherit;
}

/* Moves Line Down */
.hamburger > div::after {
  top: 13px;
}

/* Toggler Animation */
.toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}
.toggler:checked + .hamburger > div:before,
.toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.toggler:hover + .hamburger > div {
  background: var(--light-purple);
}

/* containors */
.full_width, .full_width_r {
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	flex-direction: column;
	justify-content: center;
}
.full_width_r {
	flex-direction: row;
}
.in-1200, .in-1200-c, .in-1240, .in-1240-c {
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	height: auto;
}
.in-1240, .in-1240-c {
	max-width: 1240px;
	padding-right: 20px;
	padding-left: 20px;
}

.in-1200-c, .in-1240-c {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.child-cont, .child-cont-c {
	position: relative;
	display: flex;
	width: 100%;
}
.child-cont-c {
	flex-direction: column;
	align-items: center;
}

.max_600_l, .max_600_r {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 620px;
	margin-left: auto;
	padding-left: 20px;
}
.max_600_r {
	margin-left: 0;
	margin-right: auto;
	padding-right: 20px;
	padding-left: 0;
}
.back_image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	top: 0;
	left: 0;
}
.back_icon {
	position: absolute;
	width: auto;
	height: 100%;
	object-fit: contain;
	z-index: -1;
}

.over_image {
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	min-height: 100%;
}
.purple {
	color: var(--light-purple);
}
.purple_butt, .white_butt {
	color: white;
	font-size: clamp(1rem, 0.5rem + 0.5vw, 1.2rem);
	background-color: var(--purple);
	border-radius: 8px;
	padding: 0.3em 1em;
	max-width: fit-content;
}
.white_butt {
	color: var(--purple);
	background-color: white;
	border: 2px solid var(--purple);
}
.purple_butt:hover {
	color: var(--light-purple);
	background-color: white;
}
.white_butt:hover {
	color: white;
	background-color: var(--light-purple);
}

/*body*/
.main-body {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 145px);
	min-height: 600px;
}
.signin-account {
	border: 3px solid var(--purple);
	border-radius: 10px;
	padding: 30px;
	background-image: url(../img/form.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
}
.aside h1 {
	margin-bottom: 20px;
	color: white;
}
.box.wow.fadeInUp ul {
	list-style-type: none;
	margin-left: -1.7rem;
}
input[type=text], input[type=password] {
	-webkit-appearance: none; 
	-moz-appearance: none; 
	-ms-appearance: none; 
	appearance: none;
	height: 35px;
	border: none;
	color: black;
	font-size: 1rem;
	padding: 0 10px;
	font-family: 'Rajdhani-Medium', sans-serif;
	margin: 20px 0 0 40px;
	border-radius: 5px;
	background-color: white;
}

input[type=submit] {
	display: flex;
	justify-content: center;
	font-size: clamp(1rem, 0.8849rem + 0.6951vw, 1.2rem);
	border: none;
	font-family: 'Rajdhani-SemiBold', sans-serif;
	background: var(--purple);
	-webkit-appearance: none; 
	-moz-appearance: none; 
	-ms-appearance: none; 
	appearance: none;
	cursor: pointer;
	position: relative;
	width: auto;
	border-radius: 5px;
	padding: 0.2em 0.4em;
	text-align: center;
	transition: all 0.5s ease;
	color: white;
	margin: 40px 0 20px 0;
}
input[type=submit]:hover {
	background-color: var(--dark-blue);
}
.box.wow.fadeInUp a, .bottom-txt.wow.fadeInUp a { 
	color: var(--light-blue);
	margin-bottom: 10px;
}
.box.wow.fadeInUp a:hover, .bottom-txt.wow.fadeInUp a:hover {
	color: var(--light-purple);
}
/*footer*/
footer .full_width {
	height: auto;
	padding: var(--gap-2) 0 var(--gap-1) 0;
	color: white;
	background-image: var(--radial-bg);
	min-height: 150px;
}
footer p, footer a {
	font-size: 0.9rem;
	text-align: left;
	color: white;
}
footer .child-cont-c {
	justify-content: flex-end;
	min-width: 40%;
}
footer .child-cont-c:first-child {
	align-items: flex-start;
	justify-content: space-between;
	width: 60%;
}
footer .child-cont {
	align-items: flex-start;
}
.footer-logo {
	margin-bottom: 10px;
}
footer .child-cont p {
	padding: 5px 0;
}
.socials {
	position: relative;
	display: flex;
	margin-bottom: 20px;
}
.socials_item {
	margin-right: 15px;
}
.socials_item:last-child {
	margin-right: 0;
}
footer a:hover, footer a:focus {
	color: var(--light-purple);
}
.socials_item:hover, .socials_item:focus {
	filter: brightness(60%) saturate(160%);
	-webkit-filter: brightness(60%) saturate(160%);
	-moz-filter: brightness(60%) saturate(160%);
}

footer .child-cont-c:last-child {
	align-items: flex-end;
	width: 30%;
}
.credit {
	display: inline;
	color: white;
}
.credit img {
	display: inline;
	margin-left: 5px;
	width: 63px;
	height: auto;
}
.footer_ul_cont {
	margin-top: 15px;
}

footer ul.menu {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0 0 0 10px;
	flex-direction: row;
	height: 1rem;
}
footer ul.menu li:before {
	content: "|";
	color: white;
}
footer ul.menu li a {
	color: var(--light-purple);
	font-size: 0.9rem;
	padding: 5px 8px;
}
footer ul.menu li a:hover, footer ul.menu li a:focus {
	color: white;
}
/*Add ons*/
.no_link {
	display: none;
}
/*scrolers*/
::-webkit-scrollbar-thumb:vertical {
background-color:#555; 
height:100px;
}
::-webkit-scrollbar-thumb:horizontal { 
background-color:#555; 
height:10px !important;
}
::-webkit-scrollbar { 
height:16px; 
width:10px; 
background-color:#f5f5f5;
}
::-moz-scrollbar-thumb:vertical {
background-color:#555; 
height:100px;
}
::-moz-scrollbar-thumb:horizontal { 
background-color:#555; 
height:10px !important;
}
::-moz-scrollbar { 
height:16px; 
width:10px; 
background-color:#f5f5f5;
}
::-ms-scrollbar-thumb:vertical {
background-color:#555; 
height:100px;
}
::-ms-scrollbar-thumb:horizontal { 
background-color:#555; 
height:10px !important;
}
::-ms-scrollbar { 
height:16px; 
width:10px; 
background-color:#f5f5f5;
}
::-o-scrollbar-thumb:vertical {
background-color:#555; 
height:100px;
}
::-o-scrollbar-thumb:horizontal { 
background-color:#555; 
height:10px !important;
}
::-o-scrollbar { 
height:16px; 
width:10px; 
background-color:#f5f5f5;
}
::scrollbar-thumb:vertical {
background-color:#555; 
height:100px;
}
::scrollbar-thumb:horizontal { 
background-color:#555; 
height:10px !important;
}
::scrollbar { 
height:16px; 
width:10px; 
background-color:#f5f5f5;
}