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

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

/* general resets */

:root {
	--blue: #93CAFF;
	--yellow: #dec024;
	--grey: rgba(38 38 38 / 70%);
	--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: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	background-color: black;
	color: white;
}

*, *: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;
	}
}
.grecaptcha-badge {
    display:none !important;
}
#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: 'Montserrat', sans-serif;
	line-height: 1.3;
	margin: 0;
}
p {
	font-size: clamp(0.875rem, 0.8125rem + 0.25vw, 1.125rem);
	line-height: 1.6;
}
a {
	transition: all 0.4s ease;
	text-decoration: none;
}
h1, h2 {
	font-family: 'Orbitron', sans-serif;
	line-height: 1.2;
}

.font-size-1-1 {
	font-size: clamp(2.5rem, 1.4005rem + 4.6296vw, 7.1875rem);
	font-weight: 500;
}
.font-size-1 {
	font-size: clamp(1.875rem, 1.3765rem + 2.0988vw, 4rem);
	font-weight: 500;
}
.font-size-2 {
	font-size: clamp(1.7rem, 1.5953rem + 0.5vw, 2rem);
}
.font-size-3 {
	font-size: clamp(1.125rem, 0.9198rem + 0.8642vw, 2rem);
	font-weight: 400;
}
.font-size-4 {
	font-size: clamp(1.512rem, 1.1944rem + 1.3371vw, 1.7rem);
}
.font-size-5 {
	font-size: clamp(0.875rem, 0.7724rem + 0.4321vw, 1.3125rem);
}
.font-size-6 {
	font-size: clamp(1.05rem, 0.8849rem + 0.6951vw, 1.35rem);
	line-height: 1.2;
}
.font-size-7 {
	font-size: clamp(0.75rem, 0.6914rem + 0.2469vw, 1rem);
	line-height: 1.6;
}
*:focus {
    outline: none;
}
.bold, strong {
	font-weight: 600;
}
.semi-bold {
	font-weight: 500;
}
.lower_case {
	text-transform: lowercase;
}
sup {
	font-size: 50%;
}
.orbitron {
	font-family: 'Orbitron', sans-serif;
}
header {
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	align-items: flex-start;
	background-color: rgba(0 0 0 / 0.7);
	backdrop-filter: blur(5px);
}
/* menu */

header nav {
	position: relative;
	display: flex;
	margin: 0 auto;
	padding: 20px 0 0 0;
	width: 100%;
	height: auto;
	z-index: 5;
	align-items: flex-start;
	max-width: 1240px;
	padding-right: 20px;
	padding-left: 20px;
}
.ul_cont {
	position: relative;
	display: flex;
	height: auto;
	min-height: 90px;
	width: 100%;
	margin: 0 auto;
	align-items: center;
}
.main_logo {
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}
.main_logo img {
	width: 190px;
	height: auto;
}
.main_logo.scrolled img {
	width: 86px;
	height: auto;
}
.menu-main-menu-container {
	min-width: 100%;
}
header nav ul {
	position: relative;
	display: flex;
	list-style-type: none;
	padding: 0 0 20px 0;
	margin: 0;
	text-align: left;
	height: 100%;
	width: 100%;
	min-width: 100%;
}
.ul_cont.nav-ex {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
header nav li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 0;
	margin: 0;
	max-width: max-content;
	pointer-events: auto;
}
header nav li:nth-child(4) {
	margin-left: auto;
}
header nav li a {
	position: relative;
	font-size: clamp(0.75rem, 0.6914rem + 0.2469vw, 1rem);
	line-height: 1;
	color: white;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	display: block;
	-webkit-appearance: none; 
    -moz-appearance: none; 
    -ms-appearance: none; 
    appearance: none;
    padding: 10px 0.5em;
}
header nav li a:hover, header nav li a:focus {
	color: var(--blue);
}
header nav .current-menu-ancestor > a, header nav .current-menu-item > a,
header nav .current-page-ancestor > a {
	color: white;
	text-decoration: underline;
	text-underline-offset: 5px;
}
header nav .current-menu-ancestor:hover > a, header nav .current-menu-ancestor:focus > a,
header nav .current-menu-item:hover > a, header nav .current-menu-item:focus > a {
	color: white;
	text-decoration: underline;
}

header nav .current-menu-ancestor .current-menu-ancestor:hover > a,
header nav .current-menu-ancestor .current-menu-ancestor:focus > a {
	color: white;
	text-decoration: underline;
}
header nav .current-menu-ancestor .current-menu-item:hover > a,
header nav .current-menu-ancestor .current-menu-item:focus > a {
	color: white;
	text-decoration: underline;
}

.toggler {
  position: absolute;
  display: none;
  top: 15px;
  right: 20px;
  z-index: 99;
  cursor: pointer;
  width: 45px;
  height: 50px;
  opacity: 0;
}
.hamburger {
  position: absolute;
  top: 15px;
  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: var(--yellow);
  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,
.toggler:checked:focus + .hamburger > div {
  transform: rotate(225deg);
}
.toggler:hover + .hamburger > div, .toggler:focus + .hamburger > div {
  background: white;
}
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  background: #000; /* Example styling */
  color: #fff;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
  text-decoration: none;
}
/* 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, .in-1440 {
	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;
}
.in-1440 {
	max-width: 1440px;
}
.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;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 0;
}
.over_image {
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	min-height: 100%;
}
.blue {
	color: var(--blue);
}
.green_butt {
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: clamp(0.75rem, 0.6875rem + 0.25vw, 1rem);
	background-color: var(--green);
	border-radius: 40px;
	padding: 0.7em 1.5em;
	max-width: fit-content;
	height: fit-content;
}
.green_butt:hover, .green_butt:focus {
	background-color: var(--purple);
}
#data {
  border-top: 88px solid transparent;
  margin: -88px 0 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/*HP*/
.hp_top {
	height: 100vh;
	height: 100svh;
	min-height: 780px;
}
.hp_top .over_image {
	justify-content: flex-start;
	padding-top: 250px;
}
.h1-cont {
	background-image: url(../img/light.png);
	background-position: top left;
	background-size: 254px 254px;
	background-repeat: no-repeat;
	padding-left: 120px;
	padding-bottom: 200px;
	margin-right: 120px;
}
.hp_top h1 {
	display: block;
	text-align: right;
	line-height: 0;
	width: fit-content;
}
.hp_top h1 .font-size-3 {
	display: flex;
	line-height: 4;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(1.125rem, 1.1rem + 0.8642vw, 2rem);
}
.hp_top h1 .font-size-3:last-child {
	text-align: right;
	margin-left: auto;
	width: fit-content;
}
.hp_top video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	mask-image: linear-gradient( rgba(0, 0, 0, 1.0) 20%, transparent 100%);
	z-index: 0;
}
.hp_space {
	padding: var(--gap-3);
}
.hp_space .font-size-7 {
	margin: var(--gap-1) auto var(--gap-5) auto;
	width: 96%;
	max-width: 900px;
}
.hp_space .child-cont-c {
	overflow: hidden;
	aspect-ratio: 480 / 788;
	justify-content: flex-start;
	cursor: pointer;
}
.hp_space .child-cont-c:hover p {
	color: var(--blue);
}
.hp_space a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.hp_space .over_image {
	justify-content: flex-start;
}
.hp_space .child-cont-c p {
	text-align: center;
	line-height: 1.2;
}
.hp_space video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: auto;
	height: 100%;
	transform: translate(-50%, -50%);
	z-index: 0;
	mask-image: linear-gradient( transparent 0%, rgba(0, 0, 0, 1.0) 70%, transparent 100%);
}
.hp_technologies {
	padding: var(--gap-3) 0;
}
.hp_technologies .in-1240 {
	flex-wrap: wrap;
	align-items: space-between;
	gap: 20px 46%;
	margin-top: var(--gap-2);
	padding: 0 20px 0 60px;
}
.hp_technologies .child-cont-c {
	width: 27%;
	background-color: rgba(0 0 0 / 70%);
	align-items: flex-end;
	justify-content: center;
	border-radius: 10px;
	padding: var(--gap-1) var(--gap-1) var(--gap-1) var(--gap-3);
	opacity: 0;
}
.hp_technologies .child-cont-c p {
	text-align: left;
	width: calc(100% - 30px);
}
.hp_technologies .child-cont-c img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	width: 80px;
	height: auto;
}
.hp_technologies .vid-cont {
	position: absolute;
	display: flex;
	top: 56%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	width: 40%;
	height: calc(100% - 190px);
	overflow: hidden;
}
.hp_technologies video {
	object-fit: cover;
	width: 100%;
	height: 100%;
	mask-image: linear-gradient( transparent 0%, rgba(0, 0, 0, 1.0) 70%, transparent 100%);
	filter: hue-rotate(10deg);
}
.hp_capabilities {
	padding: var(--gap-7) 0;
}
.hp_capabilities .in-1240 {
	flex-wrap: wrap;
	gap: 20px 2%;
	margin-top: var(--gap-2);
}
.hp_capabilities .in-1240:before {
	content: url(../img/shine.png);
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	
}
.hp_capabilities .child-cont-c {
	width: 49%;
	background-color: rgba(0 0 0 / 70%);
	border-radius: 10px;
	padding: var(--gap-1);
	opacity: 0;
}
.hp_capabilities .child-cont-c p {
	width: 96%;
	text-align: center;
}
.hp_capabilities video {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	mask-image: linear-gradient(rgba(0, 0, 0, 1.0) 90%, transparent 100%);
	z-index: 0;
}
/*Intelligence Solutions*/
.intelligence_top {
	height: 100vh;
	height: 100svh;
	min-height: 780px;
	mask-image: linear-gradient( rgba(0, 0, 0, 1.0) 90%, transparent 100%);
}
.intelligence_top .over_image {
	justify-content: flex-start;
	padding-top: 130px;
}
.intelligence_top .h1-cont {
	padding-left: 120px;
	margin-right: 120px;
	padding-bottom: 120px;
	padding-top: 120px;
	background-position: center left;
}
.radar_pattern {
	position: absolute;
	left: 50%;
	top: 25%;
	width: auto;
	min-height: 135%;
	transform: translate(-50%, -50%);
	z-index: 1;
	object-fit: cover;
	opacity: 0.1;
}
.intelligence_top video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.strategic_insight {
	padding: var(--gap-3) 0;
}
.strategic_insight p {
	width: 96%;
	margin-top: var(--gap-1);
	max-width: 825px;
}
.geoimpact {
	min-height: 660px;
}
.geoimpact .over_image {
 	mix-blend-mode: lighten;
}
.geoimpact .in-1240-c p {
	width: 96%;
	max-width: 930px;
	margin: var(--gap-1) auto var(--gap-3) auto;
}
.geoimpact .child-cont-c {
	opacity: 0;
}
.geoimpact .child-cont-c p {
	text-align: center;
	margin-top: 20px;
}
.geoimpact video {
	width: 70%;
}
.intelligence_video {
	padding: var(--gap-5) 0 var(--gap-3) 0; 
}
.intelligence_video video {
	width: 100%;
	height: auto;
}
.satellite_data {
	padding: var(--gap-1) 0 var(--gap-3) 0;
}
.satellite_data .blue {
	margin: 10px auto 3px auto;
}
.satellite_data .dont-size-7 {
	width: 96%;
	max-width: 1010px
}
.slick_cont {
	position: relative;
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: var(--gap-3) auto;
}
/*Space*/
.space_top {
	height: 100vh;
	height: 100svh;
	min-height: 780px;
	mask-image: linear-gradient( rgba(0, 0, 0, 1.0) 90%, transparent 100%);
}
.space_top .over_image {
	justify-content: flex-start;
	padding-top: 130px;
}
.space_top .h1-cont {
	padding-left: 120px;
	margin-right: 120px;
	padding-bottom: 120px;
	padding-top: 120px;
	background-position: center left;
	width: max-content;
}
.space_top video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.globaleyetmt {
	padding: var(--gap-5) 0 var(--gap-3) 0;
}
.globaleyetm p {
	width: 96%;
	margin-top: var(--gap-1);
	max-width: 1020px;
}
.space_satellites {
	padding: var(--gap-5) 0 var(--gap-1) 0;
}
.sattelite_hidden_data {
	display: none;
}
.space_satellites_cont {
	aspect-ratio: 480 / 654;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease;
}
.space_satellites_cont img, .space_satellites_cont .font-size-3 {
	transition: all 0.4s ease;
}
.space_satellites_cont:hover .font-size-3 {
	color: var(--blue);
}
.space_satellites_cont:hover img {
	transform: scale(1.1);
}
.space_satellites_cont .over_image {
	min-height: 100%;
	justify-content: flex-start;
}
.space_satellites_data {
	margin-top: var(--gap-2);
	display: none;
}
.space_satellites_data .name_desc {
	width: 43%;
	margin-right: 4%;
	align-items: flex-start;
	text-align: left;
}
.space_satellites_data .name_desc .blue {
	margin-top: 10px;
}
.space_satellites_data .lines {
	border-bottom: 1px solid grey;
	padding: 10px 0;
}
.space_satellites_data .lines .child-cont-c {
	align-items: flex-start;
	text-align: left;
}
.space_satellites_data .lines .child-cont-c:first-child {
	width: 35%;
}
.clearsky {
	padding: var(--gap-3) 0;
}
.clearsky .max_600_l {
	justify-content: center;
	min-height: 100%;
}
.clearsky img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.clearsky p {
	width: 96%;
	max-width: 520px;
}
.clearsky .blue {
	width: 96%;
	max-width: 330px;
	margin: 5px 0 15px 0;
}
.clearsky video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.falcon_stream {
	padding: var(--gap-5) 0;
}
.falcon_stream .over_image {
	mix-blend-mode: lighten;
}
.falcon_stream p {
	width: 96%;
	text-align: center;
	max-width: 890px;
}
.falcon_stream .blue {
	max-width: 470px;
	margin: 5px auto 10px auto;
}
.falcon_stream .in-1240 {
	margin-top: var(--gap-3);
}
.falcon_stream .video_cont {
	position: relative;
	display: flex;
	width: 70%;
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
}
.falcon_stream video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.falcon_stream .child-cont-c {
	opacity: 0;
	justify-content: flex-start;
}
.falcon_stream .child-cont-c p {
	width: 90%;
	max-width: 500px;
	margin-top: auto;
}
/*Company*/
.company_top {
	height: 100vh;
	height: 100svh;
	min-height: 780px;
	mask-image: linear-gradient( rgba(0, 0, 0, 1.0) 90%, transparent 100%);
}
.company_top .over_image {
	justify-content: flex-start;
	padding-top: 130px;
}
.company_top .h1-cont {
	padding-left: 120px;
	margin-right: 120px;
	padding-bottom: 120px;
	padding-top: 120px;
	background-position: center left;
	width: max-content;
}
.company_top video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
	filter: brightness(50%) opacity(100%);
}
.company_text {
	padding: var(--gap-3) 0;
}
.company_text p {
	width: 96%;
}
.members {
	padding-bottom: var(--gap-6);
}
.members .in-1240-c {
	margin: var(--gap-6) auto var(--gap-2) auto;
}
.members .in-1240 {
	gap: 20px 1.33%;
	flex-wrap: wrap;
}
.members .child-cont-c {
	width: 24%;
	padding: 10px;
	border: 1px solid var(--blue);
	border-radius: 5px;
	align-items: flex-start;
	cursor: pointer;
	opacity: 0;
}
.members .child-cont-c p, .members .child-cont-c img {
	transition: all 0.4s ease;
}
.members .child-cont-c:hover {
	border: 1px solid white;
}
.members .child-cont-c:hover p {
	color: var(--blue);
}
.members .child-cont-c:hover img {
	filter: brightness(90%);
}
.picture_cont {
	display: flex;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 15px;
}
.picture_cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member_hidden_data {
	display: none;
}
.member_info {
	display: none;
	position: absolute;
	background-color: black;
	color: white;
	align-items: flex-start;
	z-index: 3;
}
.info_cont {
	position: relative;
	font-weight: 300;
	padding: 50px 20px 50px 20px;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	text-align: left;
	border-top: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
}
.info_cont p {
	font-size: 1rem;
	width: 96%;
	max-width: 800px;
}
.info_cont h4 {
	position: absolute;
	top: 15px;
	right: 20px;
	font-weight: 400;
	font-size: 1.5rem;
	cursor: pointer;
}
.info_cont h4:hover {
	color: var(--blue);
}
.info_cont a img {
	margin-top: 10px;
}
.info_cont a:hover img {
	opacity: 0.7;
}
/*News & PR*/
.news_top {
	height: 570px;
	mask-image: linear-gradient( rgba(0, 0, 0, 1.0) 90%, transparent 100%);
}
.news_top .over_image {
	justify-content: flex-start;
	padding-top: 130px;
}
.news_top .h1-cont {
	padding-left: 120px;
	margin-right: 120px;
	padding-bottom: 120px;
	padding-top: 120px;
	background-position: center left;
	width: max-content;
}
.news {
	padding-bottom: var(--gap-5);
}
.news_a {
	margin-right: var(--gap-1);
}
.news_a, .pr_a {
	cursor: pointer;
}
.news_a:hover, .pr_a:hover {
	color: var(--blue);
}
.post_selected {
	padding: 0.3em 0.6em;
	background-color: var(--blue);
	color: black;
	border-radius: 5px;
}
.post_selected:hover {
	color: black;
}
.news .in-1240-c {
	margin: var(--gap-5) auto var(--gap-4);
}
.pr_cont {
	display: none;
}
.news_cont {
	gap: 30px 2%;
	flex-wrap: wrap;
}
.news_cont .child-cont-c {
	width: 32%;
	border-radius: 10px;
	background-color: var(--grey);
	padding: 40px 25px;
	align-items: flex-start;
	border-bottom: 1px solid var(--blue);
	opacity: 0;
}
.post_image_cont {
	position: relative;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
	aspect-ratio: 302 / 211;
	border: 2px solid rgba(147 202 255 / 25%);
}
.post_image_cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_cont .child-cont-c p {
	text-align: left;
	margin-bottom: 10px;
}
.news_cont .child-cont-c a {
	text-align: left;
	font-weight: 500;
	color: white;
	margin-top: auto;
}
.news_cont .child-cont-c a:hover {
	color: var(--blue);
}
.single_news {
	padding: 200px 0 80px 0;
}
.single_news .in-1240-c {
	align-items: flex-start;
}
.single_news_cont {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 800px;
	text-align: left;
}
.single_news_cont img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.single_news_cont a {
	color: white;
	font-weight: 500;
	text-decoration: underline;
}
.single_news_cont a:hover {
	color: var(--blue);
}
.news_img_cont {
	display: flex;
	margin: var(--gap-2) 0;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
}
.news_img_cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_date_cont {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	font-weight: 500;
}
.news .in-1240-c.pr {
	margin: 0 auto;
	padding: var(--gap-1) 0;
	border-top: 1px solid var(--blue);
	align-items: flex-start;
	text-align: left;
}
.pr:last-child {
	border-bottom: 1px solid var(--blue);
}
.pr p {
	margin-bottom: 10px;
}
.pr a {
	padding: 0.3em 0.6em;
	border-radius: 5px;
	background-color: var(--blue);
	color: black;
	font-size: 1rem;
	margin-top: 15px;
}
.pr a:hover {
	background-color: white;
}
/*IR*/
.ir_top {
	height: 570px;
	mask-image: linear-gradient( rgba(0, 0, 0, 1.0) 90%, transparent 100%);
}
.ir_top .over_image {
	justify-content: flex-start;
	padding-top: 130px;
}
.ir_top .h1-cont {
	padding-left: 120px;
	margin-right: 120px;
	padding-bottom: 120px;
	padding-top: 120px;
	background-position: center left;
	width: max-content;
}
.ir_top video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
	filter: brightness(50%) opacity(100%);
}
.news.ir .pr_cont {
	display: block;
}
.pr_links {
	display: flex;
	gap: 20px;
}
/*Contact*/
.contact_cont {
	padding: var(--gap-5) 0;
	font-weight: 500;
}
.in_contact_page {
	padding-top: 250px;
}
.contact_cont video {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	mask-image: linear-gradient(rgba(0, 0, 0, 1.0) 90%, transparent 100%);
	z-index: 0;
}
.contact_cont h2, .contact_cont h1 {
	margin-bottom: var(--gap-4);
}
.contact_cont .full_width_r {
	gap: var(--gap-2);
}
.wpcf7.js {
	width: 100%;
}
.wpcf7 input[type=text], .wpcf7 input[type=number], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 textarea {
	-webkit-appearance: none; 
	-moz-appearance: none; 
	-ms-appearance: none; 
	appearance: none;
	width: 100%;
	height: 48px;
	border: none;
	color: black;
	font-size: 1rem;
	padding: 0 10px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin: 10px 0 30px 0;
	border-radius: 5px;
	background-color: rgba(255 255 255 / 0.9);
}
.wpcf7 textarea {
	max-width: 100%;
	min-width: 100%;
	height: 125px;
	padding: 5px 10px;
}
.wpcf7 input[type=submit], .resources input[type=submit] {
	font-size: clamp(0.75rem, 0.6914rem + 0.2469vw, 1rem);
	font-weight: 500;
	border: none;
	font-family: 'Montserrat', sans-serif;
	background: var(--blue);
	-webkit-appearance: none; 
	-moz-appearance: none; 
	-ms-appearance: none; 
	appearance: none;
	cursor: pointer;
	position: relative;
	width: auto;
	border-radius: 30px;
	padding: 0.6em 1.2em;
	text-align: center;
	transition: all 0.5s ease;
	color: black;
	margin-left: auto;
	display: flex;
}
.wpcf7 input[type=submit]:hover, .wpcf7 input[type=submit]:focus {
	background-color: white;
}
span.wpcf7-not-valid-tip {
	display: block;
	color: black;
	border: 0 solid black;
	position: absolute;
	bottom: 0px;
	left: 10px;
	padding: 0;
	background: none;
	font-size: 1rem;
	font-family: 'Montserrat', sans-serif;
}
.wpcf7-response-output {
	position: absolute;
	bottom: -50px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: black;
	border: 0 solid black !important;
	min-width: 100%;
	max-width: 100%;
	font-size: 1rem;
	font-family: 'Montserrat', sans-serif;
	background-color: rgba(255 255 255 / 0.7);
	border-radius: 10px;
	padding: 1em!important;
	text-align: left;
	float: right;
	margin: 0!important;
}
.wpcf7-form-control-wrap:hover .wpcf7-not-valid-tip, .wpcf7-form-control:focus + .wpcf7-not-valid-tip, .wpcf7-form-control-wrap:visited + .wpcf7-not-valid-tip {
	display:none; 
}
.wpcf7 input[type=checkbox] {
	margin: 5px 0 0 -16px;
	width: 12px;
	height: 12px;
}
.wpcf7-list-item {
	display: flex;
}
.wpcf7-list-item-label {
	display: block;
	margin: 0 0 0 10px;
	max-width: 520px;
}
.contact_cont select {
	position: relative;
	width: 100%;
	max-width: 100%;
	-webkit-appearance: none; 
	-moz-appearance: none; 
	appearance: none;
	overflow: hidden;
	outline: 0; 
	height: 48px;
	font-family: 'Lato-Regular', sans-serif;
	margin: 10px 0 40px 0;
	border-radius: 5px;
	padding: 0 15px; 
	cursor: pointer; 
	font-size: 1rem;
	border: none;
	background: url(../img/arrow.svg) no-repeat center right 10px;
	background-size: 15px 15px;
	color: black;
	background-color: rgba(255 255 255 / 0.7);
}
.contact_cont select:hover, .contact_cont select:focus {
	background-color: rgba(255 255 255 / 1);
}
select::-ms-expand {
	display: none; 
}
.select::after { 
	-webkit-transition: .25s all ease; 
	-o-transition: .25s all ease; 
	transition: .25s all ease; 
}

select ~ span.wpcf7-not-valid-tip {
	bottom: -34px;
}
/*info*/
.info {
	margin-top: 90px;
	background-color: black;
}
.info .in-1240-c {
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 80vh;
	width: 100%;
	text-align: left;
	padding-top: var(--gap-2);
	padding-bottom: var(--gap-2);
}
.info h1 {
	text-align: left;
	margin-top: var(--gap-1);
	margin-bottom: var(--gap-1);
}
.info li, .info p, .info ul {
	text-align: left;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 3px;
	max-width: 800px;
}
.info ul {
	margin-top: 20px;
	margin-left: -1rem;
}
.info table {
	margin: 30px 0;
	width: 100%;
	max-width: 850px;
	min-width: 600px;
}
.info table, th, td {
  text-align: left;
  border-collapse: collapse;
  vertical-align: top;
  font-size: 1rem;
}
.info tr:first-child td {
  background-color: var(--blue);
}
.info td {
	padding: 15px;
}
.table_cont {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden; 
	margin-bottom: 40px;
}
.info a {
	color: var(--blue);
	font-weight: 500;
}
.info a:hover, .info a:focus {
	color: white;
}
/*404*/
.the_404 {
	height: calc(100vh - 200px);
	min-height: 650px;
	color: var(--blue);
}
.the_404 h1 {
	font-size: 7rem;
	line-height: 1.2;
}
.the_404 h2 {
	margin-bottom: 10px;
}
.the_404 a {
	margin-top: 30px;
	color: var(--blue)
}
.the_404 a:hover, .the_404 a:focus {
	opacity: 0.7;
}

/*footer*/
footer .full_width {
	height: auto;
	padding: var(--gap-2) 0 var(--gap-1) 0;
	color: white;
	margin: 0;
}
.footer_logo {
	width: 117px;
	height: auto;
}
footer p, footer a {
	font-size: 0.9rem;
	text-align: left;
}
footer .in-1240 {
	justify-content: space-between;
	align-items: center;
}
footer .full_width:first-child {
	 background: url(../img/dots-left.png) left bottom no-repeat, url(../img/dots-right.png) right bottom no-repeat;
	 background-size: auto 100%;
}
footer .full_width:last-child {
	background-color: white;
	padding-top: 10px;
	color: black;
}
footer .child-cont-c {
	align-items: flex-start;
	min-width: fit-content;
}
.socials {
	position: relative;
	display: flex;
	align-items:center;
	margin-top: 5px;
}
.socials_item {
	margin-right: 15px;
}
.socials_item:last-child {
	margin-right: 0;
}
footer a:hover, footer a:focus {
	color: var(--blue);
}
.socials_item:hover, .socials_item:focus {
	opacity: 0.4;
}

footer .child-cont-c:last-child {
	align-items: flex-end;
}
.credit {
	display: inline;
	color: black;
	margin: 0 auto;
}
.credit img {
	display: inline;
	margin-left: 10px;
}

footer ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style-type: none;
	padding: 5px 0 10px 0;
	margin: 0;
	flex-direction: row;
}
footer ul li {
	padding: 0;
	margin: 0
}
footer ul li:after {
	content: "|";
	color: black;
}
footer ul li:last-child:after {
	content: "";
}
footer ul li a {
	color: black;
	font-size: 0.9rem;
	padding: 5px 8px;
}
footer ul li:first-child a {
	padding: 5px 8px 12px 0;
}
footer ul li a:hover, footer ul li a:focus {
	color: var(--blue);
}
/*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;
}