@charset "utf-8";


/* Fonts */
@font-face {
    font-family: "RobotoConLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoCondensed-Light.woff") format("woff");
}
/* Fonts */

/* reset/default rules */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* reset/default rules */
ol, ul {
	list-style: none;
}
li {
	list-style: square;
}
li::marker {
	color: #d91d2b;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img, :link img, :visited img {
	border: 0;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
}
a, .inputbox {
	outline-width:0;
}
a {
	transition: all 0.3s ease;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #F6BE00;
}
.button {
	display: inline-block;
	background-color: #004C97;
	color: #f9f9f9;
	font-size: clamp(16px, 4vw, 18px);
	font-weight: bold;
	padding: 10px 20px;
	transition: all .3s ease;
	margin-top: 10px;
}
.button:hover {
	background-color: #F6BE00;
	color: #034d7a;
}
p {
	font-size: 1.2em;
	margin-bottom: 14px;
}
body {
	max-width: 1920px;
	min-height: 100vh;
	margin: 0px auto;
	padding: 0px;
	font-family: RobotoConLight;
	font-size: 100%;
	color: #2B2B2B;
	background-color: #f9f9f9;
	overflow-x: hidden;
}
html {
	height:100%;
	width:100%;
}
.innerBlock{
	max-width: 1280px;
	margin: 0 auto;
	border-bottom: 0;
	padding: 0 20px;
}
/* /reset/general rules */

/*---------------------------------------------------------------------------------------*/

/* base typography */
h1 {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: bold;
}
h2 { font-size: 1.6em }
h3 {
	font-size: clamp(18px, 3vw, 24px);
}
h4 {font-size: 1.3em}
h5 {font-size: 1.2em}
h6 {font-size: 1em}

.dark {
	color: #2B2B2B;
}
/* /base typography */

/* Buttons */

/* /Buttons */

/* Header */
.preHeader {
	background-color: #034d7a;
	border-bottom: 1px solid #F9F9F9;
	height: 40px;
	padding: 8px 0;
}
.preHeaderCont {
	display: flex;
	justify-content: end;
	gap: 0 20px;
}
/* Language Switcher */

.language ul::after {
	content: '|';
	color: #f9f9f9;
	margin-left: 10px;
}
/* /Language Switcher */

/* Social Icons */
.social a i {
	font-size: 1em;
	margin-right: 10px;
	color: #f9f9f9;
	transition: all .3s ease;
}
.social a i:hover {
	color: #F6BE00;
}
/* /Social Icons */


.header {
	background-color: #004C97;
	height: 100px;
	display: flex;
}
.headerInt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
	position: relative;
}

/* Logo */
.logo img {
	max-width: 200px;
}
.languageBlock ul {
	display: flex;
	margin-top: 10px!important;
}
/* /Logo */

/* Menu */
.mainMenuWrapper {
    position: relative;
    top: -50px;
    right: -10px;
    width: 100%;
}

.menuToggle {
    display: block;
    font-size: 1.4em;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 20px;
    color: #f9f9f9;
}

.mainMenu {
    position: absolute;
    bottom: -410px;
    right: 0;
    background-color: #004C97;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    opacity: 0;
    transform: translateX(200%);
    transition: transform .5s ease, opacity .5s ease;
    will-change: transform, opacity;
    width: 300px;
}

.mainMenu.active {
    transform: translateX(10px);
    opacity: 1;
    z-index: 1;
}

.mainMenu ul {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px 30px;
}

.mainMenu ul li {
    text-align: right;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    list-style: none;
}

.mainMenu ul li:last-child {
    margin-bottom: -20px;
    border-bottom: 0;
}

.mainMenu ul li a {
    padding: 10px;
    font-size: 1.4em;
    color: #f9f9f9;
}

.mainMenu ul li a:hover {
    color: #F6BE00;
}

.menuToggle {
    display: block;
}

@media (max-width: 420px) {
    .mainMenu {
        bottom: -410px;
        width: 300px;
        transform: translateX(100%);
    }
}
/* /Menu */
/* /Header */

/* Breadcrumbs */
.breadcrumbs {
	background-color: rgba(0, 90, 5, .1);
	height: 40px;
	padding: 7px 20px;
}
.divider {
	margin: 0 5px 0 2px;
}
.breadcrumbs li, .breadcrumbs li a {
	color: #2b2b2b;
	list-style: none;
}
@media (max-width: 768px) {
	.breadcrumbs ul li:last-child {
		display: none;
	}
}	
/* /Breadcrumbs */

.mainContent {
	display: flex;
	width: 100%;
}

/* Hero */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  max-width: 1920px;
  height: 100vh;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.custom-grid .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  min-height: 100px;
}
.grid-item {
  position: relative;
  overflow: hidden;
}
.grid-item .overlay {
  position: absolute;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0 */
  /*background-color: rgba(0, 0, 0, 0.3);*/
  border-radius: 20px;
  z-index: 1;
}
.gridCont {
	position: relative;
	z-index: 2;
	max-width: 80%;
}
.gridCont h1, .gridCont h3 {
	text-shadow: 3px 3px 3px #2b2b2b;
}

/* Custom ασύμμετρες διαστάσεις */
.item1 {
	grid-column: span 1;
	grid-row: span 1;
}
.item2 {
	grid-column: span 2;
	grid-row: span 1;
	background-image: url(../images/grid/grid2.jpg);
	border: 1px solid #eee;
	padding: 20px 10px;
}
.grid-item.item2 .overlay {
	background-color: rgba(102, 0, 8, .1);
}
.item3 {
	grid-column: span 3;
	grid-row: span 2;
	background-image: url(../images/grid/grid3.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.grid-item.item3 .overlay {
	background-color: rgba(163, 126, 0, .2);
}
.item4 {
	grid-column: span 3;
	grid-row: span 1;
	background-image: url(../images/grid/grid4.jpg);
}
.grid-item.item4 .overlay {
	background-color: rgba(0, 90, 5, .2);
}
.item5 {
	grid-column: span 2;
	grid-row: span 2;
	border: 1px solid #eee;
	overflow: scroll;
	background-image: url(../images/grid/grid2.jpg);
}
.grid-item.item5 .overlay {
	background-color: rgba(163, 126, 0, .1);
}
.custom-grid .grid-item.item5 {
	justify-content: flex-start;
}
.custom-grid .grid-item.item5 .gridCont {
	max-width: 100%;
	padding: 20px;
}
.custom-grid .grid-item.item5 .gridCont h3 {
	color: #2b2b2b;
	text-shadow: unset;
	font-size: 1.7em;
	font-weight: bold;
	margin-bottom: 20px;
	width: 100%;
	padding: 10px 10px 20px;
	border-bottom: 1px solid #2b2b2b;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul {
	display: flex;
	flex-direction: column;
	padding-left: 0!important;
	margin-top: -20px;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul li {
	display: flex;
	color: #2b2b2b;
	border-bottom: 1px solid #eee;
  padding: 10px;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul li:last-child {
	border-bottom: 1px solid #2b2b2b;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul li .moduleItemDateCreated {
	font-size: .7em;
	margin-right: 10px;
	white-space: nowrap;
	text-decoration: underline;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul li .moduleItemDateCreated i {
	margin-right: 10px;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul li a {
	font-size: .8em;
	color: #2b2b2b;
}
.custom-grid .grid-item.item5 .gridCont .k2ItemsBlock ul li a:hover {
	color: #F6BE00;
}
.k2ItemsBlock .buttonCont {
	text-align: center;
}
.item6 {
	grid-column: span 3;
	grid-row: span 1;
	background-image: url(../images/grid/grid6.jpg);
	background-position: center -140px!important;
	border: 1px solid #eee;
}
.grid-item.item6 .overlay {
	background-color: rgba(0, 90, 5, .1);
}
.grid-item.item6 .gridCont {
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.grid-item.item6 .gridCont img {
	width: 150px;
}
.textBlock {
	color: #2b2b2b;
	min-width: 400px;
	opacity: 0;
	animation: textFadeIn 1s ease .5s forwards;
	align-items: center;
	display: flex;
	justify-content: space-between;
}
@keyframes textFadeIn {
	from {
		opacity: 0;
		height: 0;
	}
	to {
		opacity: 1;
		height: 200px;
	}
}
.text {
	font-size: clamp(20px, 2vw, 30px);
}
.job {
   display: inline-block;
   white-space: nowrap;
   font-size: clamp(30px, 4vw, 50px);
   font-weight: bold;
   color: #004C97;
   letter-spacing: -3px;
}
.job::before{
    content: attr(data-job1);
    overflow: hidden;
    display: inline-flex;
    animation: effectText 1s linear infinite alternate,
    changeText 6s linear infinite;
    animation-delay: -1.4s;
}
@keyframes effectText{
    from{
        max-width: 0;
    }to{
        max-width: 100%;
    }
}
@keyframes changeText{
    0%, 33% {
        content: attr(data-job1);
    }
    34%, 66% {
        content: attr(data-job2);
    }
    67%, 100% {
        content: attr(data-job3);
    }
}
.item7 {
	grid-column: span 1;
	grid-row: span 2;
	background-image: url(../images/grid/grid2.jpg);
	border: 1px solid #eee;
}
.grid-item.item7 .overlay {
	background-color: rgba(3, 77, 122, .1);
}
.grid-item.item7 .sponsorsCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 10px;
	z-index: 2;
	padding: 20px;
}
.grid-item.item7 h1 {
	z-index: 2;
}
.grid-item.item7 .sponsorsBlock {
	flex: 0 100px;
}
@media (max-width: 1366px) {
	.grid-item.item7 .sponsorsBlock {
		flex: 0 70px;
	}
}
@media (max-width: 1280px) {
	.grid-item.item7 .sponsorsBlock {
		flex: 0 60px;
	}
	.item7 {
		padding: 20px;
	}
}
.grid-item.item7 .sponsorsBlock img {
	width: 100%;
	filter: grayscale(1);
	transition: all .5s ease;
}
.grid-item.item7 .sponsorsBlock img:hover {
	filter: grayscale(0);
}
.item8 {
	grid-column: span 3;
	grid-row: span 1;
	background-image: url(../images/grid/grid8.jpg);
}
.grid-item.item8 .overlay {
	background-color: rgba(102, 0, 8, .2);
}
.grid-item.item8 .gridCont {
	display: flex;
	align-items: center;
	gap: 20px;
}
.grid-item.item8 .gridContFlexCol {
	flex: 1 50%;
}

.item1 img {
	width: 100%;
}
.grid-item.item1 {
	background-color: #034d7a;
}
.item4 {
	text-align: center;
}
/* Responsive για mobile */
@media (max-width: 1024px) {
  .custom-grid {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .custom-grid .grid-item {
    min-height: 200px;
  }
  .item2, .item6 {
  	display: none!important;
  }
}
@media (max-width: 480px) {
	.grid-item.item7 h1, .copyrightMenu {
		display: none;
	}
	.footerCont .footer1 {
		flex-wrap: wrap;
	}
}
/* /Hero */


/* Project Hero Module */
.internal-hero {
    background-position: center;
    background-size: cover;
    /*padding: 40px;*/
    margin-bottom: 20px;
    position: relative;
}
.internal-hero.project {
	background-image: url(../images/project-hero-bg.jpg);
}
.internal-hero.contact {
	background-image: url(../images/contact-hero-bg.jpg);
}
.internal-hero.news {
	background-image: url(../images/news-hero-bg.jpg);
}
.internal-hero.deliverables {
	background-image: url(../images/deliverables-hero-bg.jpg);
}
.internal-hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.internal-hero.project .overlay {
	background-color: rgba(51, 152, 101, .5);
}
.internal-hero.contact .overlay {
	background-color: rgba(163, 126, 0, .5);
}
.internal-hero.news .overlay {
	background-color: rgba(102, 0, 8, .4);
}
.internal-hero.deliverables .overlay {
	background-color: rgba(0, 76, 151, .4);
}
.internal-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    height: 341px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .7s ease forwards;
    animation-delay: 0.3s;
    color: #f9f9f9;
}
.internal-hero .hero-image {
    height: auto;
    flex-shrink: 0;
}
.internal-hero.project .hero-image {
	max-width: 180px;
}
.internal-hero.contact .hero-image {
	max-width: 140px;
}
.internal-hero.news .hero-image {
	max-width: 180px;
}
.internal-hero.deliverables .hero-image {
	max-width: 140px;
}
.internal-hero .hero-text {
    min-width: 250px;
    text-align: left;
}
.internal-hero .hero-text h1 {
    margin-bottom: 15px;
    line-height: 1.3;
}
.internal-hero .hero-text p {
    font-size: 1.4em;
    margin: 8px 0;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .internal-hero .hero-content {
        flex-direction: column;
        text-align: center;
        height: unset;
    }
    .internal-hero.internal-hero .hero-text {
        text-align: center;
    }
    .internal-hero .hero-image {
        max-width: 150px;
    }
    .columnsPar p {
    	border-right: 0;
    	padding: unset;
    }
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Project Hero Module */


/* Project  Objectives Module */
.objectivesCont {
	background-color: rgba(163, 126, 0, .03);
	padding: 50px 20px;
}
.miscTitle {
	margin-bottom: 30px;
	border-bottom: 1px solid #2b2b2b;
	padding: 0 20px;
}
.objectiveBlocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.objectivesBlock {
	flex: 0 15%;
	padding: 20px;
	position: relative;
	text-align: center;
	height: 300px;
	border: 1px solid #ddd;
	border-radius: 20px;
	overflow: hidden;
}
@media (min-width: 481px) and (max-width: 1024px) {
	.objectivesBlock {
		flex: 0 30%;
		height: 290px;
	}
}
@media (max-width: 480px) {
	.objectivesBlock {
		flex: 0 47%;
		height: 260px;
	}
}
.objectivesBlock.blue {
	border-top: 3px solid #004C97;
	border-bottom: 3px solid #004C97;
}
.objectivesBlock.green {
	border-top: 3px solid #3A913F;
	border-bottom: 3px solid #3A913F;
}
.objectivesBlock.yellow {
	border-top: 3px solid #F6BE00;
	border-bottom: 3px solid #F6BE00;
}
.objectivesBg img {
	position: absolute;
	bottom: -20px;
	right: -20px;
	z-index: -1;
	opacity: 0.6;
}
.objectivesIcon {
	padding: 20px 0;
}
.objectivesIcon img {
	max-width: 58px;
}
.objectivesText {
	font-size: clamp(1em, 3vw, 20px);
}
.objectivesNumber {
	position: absolute;
	top: 0;
	left: -13px;
	font-size: clamp(50px, 6vw, 60px);
	color: #ddd;
	letter-spacing: -8px;
}

/* Αρχική κατάσταση πριν την εμφάνιση */
.objectivesBlock {
	transform: translateX(100px);
	opacity: 0;
}
.objectivesBlock.animate {
	animation: slideIn 0.6s ease forwards;
}
/* Ορισμός animation */
@keyframes slideIn {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Ομαδικό animation με καθυστέρηση */
.objectivesBlock:nth-child(1) { animation-delay: 0.1s; }
.objectivesBlock:nth-child(2) { animation-delay: 0.2s; }
.objectivesBlock:nth-child(3) { animation-delay: 0.3s; }
.objectivesBlock:nth-child(4) { animation-delay: 0.4s; }
.objectivesBlock:nth-child(5) { animation-delay: 0.5s; }
.objectivesBlock:nth-child(6) { animation-delay: 0.6s; }
/* /Project  Objectives Module */


/* Project Groups Module */
.groupsPacksBlocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 50px 20px;
}
.groupsPacksBlock {
	flex: 0 30%;
	position: relative;
	padding: 30px 0;
}
.groupsPacksTitle {
	font-size: clamp(20px, 3vw, 2em);
	text-align: center;
}
.groupsPacksIcon {
	padding: 20px 0;
	text-align: center;
}
.groupsPacksIcon img {
	max-width: 84px;
}
.groupaPacksText, .keyDevBlockText {
	font-size: clamp(1em, 3vw, 20px);
}
.bgIcon img {
	position: absolute;
	top: 50%;
	left: 0;
	opacity: .05;
	max-width: 150px;
}
@media (min-width: 1024px) {
	.groupsPacksBlock:after {
		content: "";
	    position: absolute;
	    top: 0;
	    right: 0;
	    width: 1px;
	    height: 100%;
	    border-right: 1px dashed #D62828;
	    z-index: 1;
	}
	.groupsPacksBlock:last-child:after {
		content: unset;
	}
}
@media (max-width: 768px) {
	.groupsPacksBlock {
		flex: 1 100%;
	}
	.groupsPacksBlock:after {
		content: "";
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    width: 1px;
	    width: 100%;
	    border-bottom: 1px dashed #D62828;
	    z-index: 1;
	}
	.groupsPacksBlock:last-child:after {
		content: unset;
	}
	.bgIcon {
		display: none;
	}
}
/* /Project Groups Module */


/* Key Deliverable Module */
.keyDevCont {
	background-image: url(../images/keyDevBg.jpg);
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	min-height: 500px;
	display: flex;
	align-items: center;
}
.keyDevBlocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.keydevBlock {
	flex: 1 400px;
}
.keydevBlockTitle {
	font-size: clamp(20px, 3vw, 2em);
	margin-bottom: 20px;
}
/* /Key Deliverable Module */


/* Project Partners Module */
.partnersCont {
	padding: 50px 0;
	background-image: url(../images/grid/grid2.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.partnersCont .sponsorsCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
}
.partnersCont .sponsorsBlock {
	flex: 0 120px;
}
.partnersCont .sponsorsBlock img {
	max-width: 120px;
	transition: all .3s ease;
}
.partnersCont .sponsorsBlock img:hover {
	transform: translateY(-10px);
}
/* /Project Partners Module */


/* K2 Content Module */
.k2ItemsBlock {
	text-align: left;
}
/* /K2 Content Module */


/* K2 Item View News */
.itemView, .itemListView {
	padding: 50px 20px;
	margin: 0 auto;
	width: 100%;
}
.itemHeader, .catItemHeader {
	display: flex;
	align-items: center;
	gap: 20px
}
.itemDateCreated {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #eee;
}
.dateDay, .dateYear, .dateMonth {
	background-color: #2b2b2b;
	width: 100%;
	color: #f9f9f9;
	text-align: center;
	padding: 1px 10px;
}
.dateMonth {
	background-color: #eee;
	color: #2b2b2b;
}
.itemImageBlock {
	padding: 20px 0;
}
.itemImage img {
	width: 100%;
	border-radius: 20px;
	max-height: 500px;
	object-fit: cover;
}
.itemImageGallery {
	background-color: rgba(0, 90, 5, .1);
	padding: 20px 40px;
	border-radius: 20px;
}
ul.sigProElegant {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
ul.sigProElegant li.sigProThumb a.sigProLink {
	border: 0!important;
	background: 0!important;
}
ul.sigProElegant li.sigProThumb, li.sigProClear {
	list-style: none;
	margin: 0 auto;
}
/* /K2 Item View News */


/* K2 Item View Misc */
.miscTitles {
	margin-top: 30px;
}
.miscTitles, .itemHeader.misc {
	border-bottom: 1px solid #2b2b2b;
	margin-bottom: 30px;
}

.columnsPar {
	columns: 400px 2;
	column-gap: 30px;
	padding-bottom: 20px;
	text-align: justify;
	position: relative;
}
.columnsPar p img {
	position: absolute;
	bottom: 0;
	right: 0;
	rotate: 10deg;
	opacity: .1;
}
/* /K2 Item View Misc */


/* Category Item View News */
.news .catItemView {
	display: block;
	width: 50%;
	float: left;
	padding: 20px;
}
@media (max-width: 768px) {
	.news .catItemView {
		width: 100%;
	}
}
@media (max-width: 480px) {
	.catIemBlock .catItemCont {
		bottom: -150px;
	}
	.catIemBlock:hover .catItemCont {
		bottom: -150px!important;
	}
}
.catItemImageBlock {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.catIemBlock:hover .catItemCont {
	bottom: 0;
}
.catIemBlock:hover .catItemIntroText {
	opacity: 1;
}
.catItemCont {
	position: absolute;
	bottom: -100px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.9));
	transition: all .3s ease;
}
.catItemImage img {
	width: 100%;
	object-fit: cover;
}
.catItemHeader {
	padding: 20px;
	align-items: last baseline;
}
.news .catItemTitle {
	color: #f9f9f9;
	font-weight: bold;
}
.catItemIntroText {
	padding: 10px;
	color: #f9f9f9;
	border-top: 1px solid #f9f9f9;
	opacity: 0;
	transition: all .3s ease;
}
/* /Category Item View News */


/* Category Item View Deliverables */
.itemListView.deliverables {
	max-width: 900px;
	padding: 50px 20px;
	min-height: 80vh;
}
.attachmentBlock {
	padding: 30px 20px;
	border: 1px solid #ddd;
	border-radius: 20px;
	margin-bottom: 30px;
}
.attachmentBlockIcon {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.attachmentBlockIcon i {
	font-size: 1.5em;
	margin-right: -5px;
}
.attachmentBlockIcon h3 {
	font-weight: bold;
	margin-top: 5px;
}
.attachmentBlockDownArea i {
	margin-right: 5px;
}
.attachmentBlockDownArea {
  padding: 20px 0 0;
  text-align: center;
}
/* /Category Item View Deliverables */


/* Pagination */
.k2Pagination {
    display: block;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}
.k2Pagination ul li a, .k2Pagination ul li span {
    color: #fff;
    line-height: 2em;
    margin-right: 1%;
}
.k2Pagination ul {
	text-align:center;
}
.k2Pagination ul li {
	display:inline;
	padding: 0 5px;
}
.k2Pagination ul li a {
	color: #153242;
  font-size: 16px;
}
.k2Pagination ul li span {
	color: #81c7e9;
    font-size: 16px;
}
.k2Pagination ul li a:hover {
	color: #466ee1;
}
/* /Pagination */


/*Contact Page */
.contactCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #ddd;
	margin: 80px auto 40px;
	background-color: rgba(163, 126, 0, .1);
}
.contactCont.innerBlock {
	padding: unset;
	max-width: 900px;
}
.contactLeft, .contactRight {
	flex: 0 50%;
}
.contactImageBlock img {
	width: 100%;
	filter: grayscale(1);
}
.contactRight {
	padding: 40px;
}
.contactCont input, .contactCont textarea {
	width: 100%;
	margin-bottom: 20px;
	padding: 0 15px;
	border: unset;
	border-bottom: 1px solid #e2e2e2;
	background-color: rgba(163, 126, 0, .1);
	border-radius: 20px;
}
.contactCont textarea {
	padding: 15px;
}
.contactCont input {
	height: 50px;
}
#g-recaptcha-27 {
	display: flex;
	justify-content: center;
}
.formControls {
	text-align: center;
}
.formControls button {
	border: 0;
	padding: 10px 20px;
	margin-top: 40px;
}
@media only screen and (max-width: 768px) {
	.contactCont {
		text-align: center;
		border: unset;
	}
	.contactLeft, .contactRight {
		flex: 1 1 100%;
	}
	.contactImageBlock img {
		max-width: 600px;
		margin: 0 auto;
	}
}
/*/Contact Page */


/* footer */
.footerCont {
	background-color: #004C97;
	padding: 10px 0;
	color: #f9f9f9;
	min-height: 100px;
	display: flex;
	align-items: center;
	width: 100%;
}
.footer1 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.footer1 img {
	max-width: 300px;
}
.disclaimer {
	text-align: justify;
}
.copyright {
	background-color: #034d7a;
	border-top: 1px solid #f9f9f9;
	color: #F9F9F9;
	min-height: 40px;
}
.copyright .innerBlock {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 8px 20px;
}
.copyrightMenu ul {
	gap: 15px;
}
.copyrightMenu ul li {
	list-style: none;
}
.copyrightMenu ul li a {
	color: #f9f9f9;
}
.copyrightMenu ul li a:hover {
	color: #F6BE00;
}
/* /footer */

 /* To Top */
 .cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  overflow: hidden;
  text-indent: 100%;
  background: rgba(0,0,0,.5) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 1000;
}
.cd-top:hover {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.no-touch .cd-top:hover {
  background-color: rgba(0,0,0,.8);
  opacity: 1;
}
 /* /To Top */