/**
Theme Name: EUTEL
Theme URI: https://sorvus.com/
Author: Sorvus Media
Version: 1.0.1
**/

/**
Fonts
**/
/* commissioner-300 - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Commissioner';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/commissioner-v20-greek_latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* commissioner-regular - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Commissioner';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/commissioner-v20-greek_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* commissioner-500 - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Commissioner';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/commissioner-v20-greek_latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* commissioner-800 - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Commissioner';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/commissioner-v20-greek_latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/**
Css Reset
**/
a, a:after, a:before{
	text-decoration:none;
	color:inherit;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

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, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
}
table {border-collapse: collapse;border-spacing: 0;}
* { box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
a {outline : none; color:inherit; text-decoration:none;}
a img {outline : none;}
img {border : 0; display:block;}
strong, b{	font-weight:600;}

/**
Root Variables
**/
:root{
	--page_wrapperPadding:80px;
	--page_innerPadding:40px;
}

::selection {
	background: var(--clr_yellow); /* WebKit/Blink Browsers */
	color: var(--clr_main);
}
::-moz-selection {
	color: var(--clr_main);
	background:  var(--clr_yellow); /* Gecko Browsers */
}


.mob_only{
	display:none;
}

/**
Variables
**/
body, html{
	font-family: 'Commissioner';
	font-weight: 400;
	font-style: normal;
	background:#ffffff;
	scroll-behavior: smooth;
}

body{
	width:100%;
    overflow-x:hidden;
}

.wrapper{
    width: 95%;
	max-width:1280px;
    display: block;
    margin:0 auto;
}

section{
	position:relative;
	float:left;
	width:100%;
}

section,
div{
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.error-page{
    font-size: 4em;
    font-weight: 700;
}
/**
Columns
**/
[class*="col-"] {
	float:left;
}

.col-D {width:3.5%;height:10px;}
.col-0 {width:31%;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-20 {width:20%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


/**
Grid
**/
[class*="grid-"] {
	display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}	

.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.grid-3{
    grid-template-columns: repeat(3, 3fr);
}
.grid-4{
    grid-template-columns: repeat(4, 1fr);
}
.grid-5{
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
.grid-2{
    grid-template-columns: repeat(1, 1fr);
}
.grid-3{
    grid-template-columns: repeat(1, 3fr);
}
.grid-4{
    grid-template-columns: repeat(2, 1fr);
}
.grid-5{
    grid-template-columns: repeat(2, 1fr);
}
}

/**
Floats & Aligns
**/
.txt-center{
	text-align:center;
}

.txt-left{
	text-align:left;
}

.txt-right{
	text-align:right;
}

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.empty{
    min-height: 1px;
}

/**
Header
**/
header{
    position: absolute;
    top:0; left:0; right:0;
    padding-top:20px;
	z-index:100;
}

.preheader{
    padding-bottom: 15px;
    padding-right: 5px;
    text-align: right;
    font-weight: 200;
}

.preheader a{
    margin-left: 15px;
    font-size: 0.8em;
}

.preheader a:hover{
    text-decoration: underline;
}

.header_folow{
    padding-top:20px;
}

.header{
    height:55px;
    position: relative;
    text-align: right;
}

.logo{
    float:left;
}

.logo svg{
    height:50px;
    width:auto;
    margin-top:3px;
}

.alt_nav{
    display: inline-block;
    position: relative;
    float:right;
    height:55px;
    width:55px;
    background:var(--clr_main);
    color:#fff;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.alt_nav:hover{
    background:var(--clr_yellow);
    color:var(--clr_main);
}

.alt_nav:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='9' viewBox='0 0 32 9'%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(-1873.5 -86.5)'%3E%3Cline id='Line_3' data-name='Line 3' x2='30' transform='translate(1874.5 87.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_4' data-name='Line 4' x2='30' transform='translate(1874.5 94.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.alt_nav:hover:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='9' viewBox='0 0 32 9'%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(-1873.5 -86.5)'%3E%3Cline id='Line_3' data-name='Line 3' x2='30' transform='translate(1874.5 87.5)' fill='none' stroke='%230d1940' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_4' data-name='Line 4' x2='30' transform='translate(1874.5 94.5)' fill='none' stroke='%230d1940' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.main_nav{
    display: inline-block;
    background:#fff;
    padding:5px 10px;
    margin-right: 5px;
}

.main_nav ul{
    list-style: none;
}

.main_nav ul li{
    display: inline-block;
    position: relative;
    line-height: 45px;
    float:left;
}

.main_nav ul li a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    padding:0px 15px;
}

.main_nav ul li:hover > a{
    background: var(--clr_cyan);
    color:#fff;
}

.main_nav ul li ul{
    position: absolute;
    left:0;
    top:120%;
    opacity: 0;
    padding:10px 0px 0px;
    visibility: hidden;
    width:280px;
    color:#fff;
    background:var(--clr_cyan);
    text-align: left;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}


.main_nav ul li:hover > ul{
    opacity: 1;
    visibility: visible;
    top:100%;
}

.main_nav ul li ul li{
    line-height: 20px;
    margin-bottom: 10px;
    width:100%;
}

.main_nav ul li ul li a{
    padding:10px 15px;
    width:100%;
}

.main_nav ul li ul li a:hover{
    background: var(--clr_main);
    color:#fff;
}

@media (max-width: 1024px) {
.main_nav{
display:none;}
}
/**
Popup Navigation
**/
.popup_nav{
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    top:0;
    background:rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.popup_nav_active{
    opacity: 1;
    visibility: visible;
}

.popup_nav_panel{
    position: absolute;
    right:-300px;
    top:0;
    bottom:0px;
    overflow: auto;
    width:80%;
    background:#fff;
    max-width: 500px;
    padding:40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.popup_nav_active .popup_nav_panel{
    right:0;
    opacity: 1;
    visibility: visible;
}

.popup_nav_header .nav_trigger{
    cursor: pointer;
}

.popup_nav_header{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--clr_main);
    font-weight: 400;
}

.popup_nav_footer{
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--clr_main);
    text-align: center;
}

.popup_nav_social a{
    padding:15px 0px 12px;
}

.popup_nav_social a svg{
    fill:var(--clr_main);
}

.popup_nav_social a:hover{
    background:var(--clr_yellow);
}

.popup_nav_address{
}

.popup_nav_address a{
    margin:10px;
    display: inline-block;
}

.popup_nav_address a:hover{
    text-decoration: underline;
}

.popup_nav_content ul{
    list-style: none;
    margin-left:20px;
}

.popup_nav_content a{
    font-size: 1.1em;
    display: inline-block;
    width:100%;
    padding:5px 0px;
    position: relative;
}

.popup_nav_content a:after{
    content:"";
    position: absolute;
    left:0;
    bottom:0px;
    height:2px;
    background:var(--clr_yellow);
    width:0%;
    z-index:0;
}

.popup_nav_content a:hover:after{
    width:20%;
}

.popup_nav_content ul li{
    margin-bottom: 15px;
    font-weight: 500;
}

.popup_nav_content ul ul{
    margin-bottom: 15px;
}

.popup_nav_content ul ul li{
    margin-bottom: 5px;
    font-weight: 400;
}

.popup_nav_content ul ul a:before{
    content:"- "
}

.popup_nav_content a:hover{
    padding-left: 5px;
}

/**
Accessibility Options Panel
**/
.popup_nav_accesibility{
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--clr_main);
}

.acc_option_group{
    padding-bottom: 15px;
}

.acc_option_group:last-child{
    padding-bottom: 0px;
}

.acc_option_list{
    text-align: right;
}

.acc_option_list a,
.acc_option_list button{
    all: unset;
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
    border:1px solid;
    padding:5px 15px;
    font-size: 0.8em;
    display: inline-block;
}

.acc_option_list a:hover,
.acc_option_list a.active,
.acc_option_list button:hover,
.acc_option_list button.active{
    background:var(--clr_yellow);
}

/**
Hero
**/
.hero{
    background: rgb(255, 255, 255);
    background: -moz-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: -webkit-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#cfd6e0", GradientType=1);
    height:70vh;
    min-height: 650px;
    position: relative;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-end;
	align-content: stretch;
    padding-bottom: 60px;
}

.hero h1{
    font-weight: 400;
    font-size: 2em;
    line-height: 1.1em;
    padding-bottom: 40px;
}

.stats_holder{
    border:6px solid #fff;
    border-top:none;
    border-right: none;
    padding: 40px 0px;
}

.stats{
    text-align: center;
}

.stat_head{
    font-weight: 800;
    font-size: 1.3em;
}

.hero_graph svg{
    width:100%;
    height:auto;
    float:left;
}

.hero_graph{
    position: relative;
}

.hero_wrapper{
    position: relative;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-end;
	align-content: stretch;
}
@media (max-width: 1024px) {

}

/**
Headings
**/
.heading {
    padding: 200px 0px 40px;
    background: rgb(255, 255, 255);
    background: -moz-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: -webkit-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#cfd6e0", GradientType=1);
}

.heading h1{
    font-weight: 800;
    font-size: 2em;
}

/**
Generic
**/
.block{
    padding:60px 0px 40px;
}
.image img{
    width:100%;
    height:auto;
    position: relative;
}

.content p,
.content li{
    font-size: 1.1em;
    line-height: 1.5em;
    padding-bottom: 25px;
	text-align:justify;
}

.content ul{
    list-style: none;
}

.content ul li{
    padding-left: 30px;
    position: relative;
}

.content li:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='14.999' viewBox='0 0 15 14.999'%3E%3Cpath id='Path_655' data-name='Path 655' d='M441.606,90h-5.647V84.353h-3.7V90h-5.648v3.7h5.648v5.647h3.7V93.705h5.647Z' transform='translate(-426.606 -84.353)' fill='%23007fa3'/%3E%3C/svg%3E%0A");
    position: absolute;
    left:0;
    top:2px;
}

.content h2{
    font-weight: 500;
    font-size: 1.6em;
    padding-bottom: 25px;
	scroll-margin-top: 100px;
}

.section_title h2{
    padding-bottom: 15px;
    font-size: 1.8em;
    font-weight: 500;
    text-align: justify;
    max-width: 95%;
}

.section_subtitle{
    max-width: 95%;
    line-height: 1.5em;
    text-align: justify;
    font-size: 1em;
    font-weight: 600;
}

.content h3{
    padding:10px 0px 20px;
    font-size: 1.2em;
}

.content img{
    width:100%;
    height:auto;
    padding-bottom: 25px;
}

.thin_big p{
    font-size: 1.6em;
    font-weight: 300;
}

p a{
    text-decoration: underline;
}

.content pre a{
    display: inline-block;
    margin-top:10px;
	margin-right:10px;
    padding:10px 20px;
	color:#fff;
    background:var(--clr_cyan);
	text-decoration: none;
}

.content pre a:hover{
    background:var(--clr_main);
    color:#fff;
}

/**
Wps
**/
.wp_holder{
    background:var(--clr_main);
    padding:70px 0px;
    text-align: center;
}

.wp_holder svg{
    height:400px;
    width:auto;
}

.wp_main{
    text-align: center;
}

.wp_main svg{
	width:100%;
    max-width: 500px;
    height:auto;
}
/**
Events List
**/
.events_promo{
    background:var(--clr_main);
    text-align: center;
    color:#fff;
    padding:50px 0px;
}

.ep_title{
    text-transform: uppercase;
    padding:20px 0px 30px;
    letter-spacing: 0.1em;
}

.ep_btns a{
    display: inline-block;
    margin:5px 5px;
    border:1px solid;
    padding:7px 25px 9px;
}

.ep_btns a:first-child{
    background:#fff;
    color:var(--clr_main);
}

.ep_btns a:hover{
    background:var(--clr_yellow);
    color:var(--clr_main);
    border:1px solid var(--clr_yellow);
}

.events_list{
    position: relative;
}

.events_list a{
    border-bottom: 1px solid;
    float:left;
    width:100%;
    position: relative;
    padding:15px 0px;
}

.single_event_list_title{
    padding-right: 20px;
    font-weight: 500;
    line-height: 1.5em;
}

.single_event_list_day{
    font-weight: 300;
    text-align: right;
}

.single_event_list_icon{
    text-align: right;
}

/**
Unis Members
**/
.uni_index{
    background:var(--clr_main);
    color:#fff;
    padding:30px;
    margin:40px 0px;
}

.uni_index a{
    display: inline-block;
    width:100%;
    padding:15px 0px;
    border-bottom: 1px solid;
    position: relative;
}

.uni_index p:last-child a{
    border-bottom: none;
}

.uni_index a:hover{
    color:var(--clr_yellow);
}

.uni_index a:after{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cpath id='Path_281' data-name='Path 281' d='M.71,0,0,.709,13.288,14H3.214v1H15V3.213H14V13.288Z' transform='translate(0 10.607) rotate(-45)' fill='%23fff'/%3E%3C/svg%3E%0A");
    position: absolute;
    right:0;
}

.uni_q{
    padding:20px 0px;
}

.uni_q a{
    display: inline-block;
    padding:15px 40px;
    background:var(--clr_main);
    color:#fff;
}

.uni_q a:hover{
    background:var(--clr_cyan);
}

.uni_holder{
    display: flex;
}

.uni_map{
    position: relative;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.uni_map:before{
    content:"";
    position: absolute;
    z-index: -1;
    left:-100px;
    right:0;
    top:0;
    bottom:0;
    background: rgb(255, 255, 255);
    background: -moz-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: -webkit-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#cfd6e0", GradientType=1);
}

.uni_map img{
    max-height: 100%;
    max-width:90%;
    z-index: 10;
}

/**
News Grid
**/
.news_grid a.single_post_grid{
    padding:15px;    
    border: 1px solid #ebebeb;
    padding-bottom: 50px;
    position: relative;
}

.news_grid a .news_grid_details{
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    padding:15px;
}

.news_grid_title{
    font-weight: 500;
    font-size: 1.2em;
    padding-bottom: 10px;
    line-height: 1.3em;
}

.post_excerpt p{
    font-size: 0.8em;
    text-align: left;
    line-height: 1.6em;
}

.news_grid a:hover,
.news_grid a.single_post_grid:hover{
    background:var(--clr_cyan);
    color:#ffffff;
    border:1px solid var(--clr_cyan);
}

.news_grid_photo{
    width:100%;
    height:200px;
    margin-bottom: 15px;
}

/**
People Grid
**/
.people_block{
    padding:40px 0px;
    background: rgb(255, 255, 255);
    background: -moz-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: -webkit-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#cfd6e0", GradientType=1);
}


a.single_people_grid img{
    width:100%;
    height:auto;
}

a.single_people_grid{
    padding:10px;
    border: 1px solid;
}

.people_grid_details{
    font-size: 0.8em;
}

.people_grid_title{
    padding-top:10px;
}

/**
Points with Images
**/
.photopoints_grid{
    padding-top:15px;
}

.photopoints_point{
    float:left;
    position: relative;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    border:1px solid;
    padding:25px;
    background:var(--clr_main);
    color:#fff;
}

.photopoint_img{
    width:15%;
    float: left;

}

.photopoint_img img{
    width:100%;
    height:auto;
}

.photopoint_text{
    width:70%;
    margin-left:5%;
}
/**
Keypoints
**/
.keypoints_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.single_point:nth-child(1) { grid-area: 1 / 1 / 3 / 5; }
.single_point:nth-child(2) { grid-area: 1 / 5 / 2 / 9; }
.single_point:nth-child(3) { grid-area: 2 / 5 / 3 / 9; }
.single_point:nth-child(4) { grid-area: 1 / 9 / 2 / 13; }
.single_point:nth-child(5) { grid-area: 2 / 9 / 3 / 13; }

.single_point{
    text-align: left;
    padding:40px;
    padding-left:70px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    border:1px solid;
    position: relative;
    line-height: 1.5em;
}

.single_point:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 47.232 47.229'%3E%3Cpath id='Path_361' data-name='Path 361' d='M473.838,102.136H456.056V84.353H444.392v17.782H426.606V113.8h17.785v17.782h11.664V113.8h17.782Z' transform='translate(-426.606 -84.353)' fill='%23007fa3'/%3E%3C/svg%3E%0A");
    position: absolute;
    left:20px;
}

.single_point:nth-child(1){
    color:#fff;
    text-align: center;
    background: var(--clr_main);
    padding:40px 40px;
}

.single_point:nth-child(1):before{
    display: none;
}

.single_point_title{
    padding:10px 0px;
    font-weight: 600;
}
.single_point:nth-child(1):after{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 47.232 47.229'%3E%3Cpath id='Path_361' data-name='Path 361' d='M473.838,102.136H456.056V84.353H444.392v17.782H426.606V113.8h17.785v17.782h11.664V113.8h17.782Z' transform='translate(-426.606 -84.353)' fill='%23007fa3'/%3E%3C/svg%3E%0A");
    position: absolute;
    top:20%;
}
/**
Links
**/
.links_grid{
	padding-top:40px;
}
.single_link{
    padding:0px 0px 60px;
    margin-bottom: 30px;
    width:85%;
    position: relative;
}

.single_link .single_link_text{
    position: absolute;
    bottom:0;
    display: inline-block;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    left:0;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.single_link .single_link_text:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Cpath id='Path_383' data-name='Path 383' d='M.71,0,0,.709,13.288,14H3.214v1H15V3.213H14V13.288Z' transform='translate(0)' fill='%23007fa3'/%3E%3C/svg%3E%0A");
    position: absolute;
    right:0;
}

.single_link:hover .single_link_text{
    padding-left:10px;
}

.single_link h3{
    font-weight: 500;
    font-size: 1.2em;
    width:85%;
}

/**
Downloads
**/
a.single_document{
    width:100%;
    float:left;
    position: relative;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    margin-bottom: 15px;
    padding:15px;
    border:1px solid;
    color:var(--clr_main);
    font-weight: 500;
}

a.single_document:hover{
    border:1px solid var(--clr_yellow);
    background:var(--clr_yellow);
}

.single_document span{
    padding-right: 15px;
}

/**
Events Card
**/
a.single_event_grid{
    height: 250px;
    position: relative;
    background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: stretch;
	align-content: stretch;
    color:#fff;
}

a.single_event_grid:before{
    position: absolute;
    content:"";
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.5);
}

a.single_event_grid div{
    position: relative;
}

a.single_event_grid:hover{
    background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.event_grid_title{
    padding:15px;
    width:100%;
    font-size: 1.4em;
    font-weight: 400;
}

.event_grid_details{
    padding:15px;
    padding-top: 0px;
}

a.single_event_grid:hover{
    border:none;
}

a.single_event_grid:hover:before{
    background:var(--clr_yellow);
}

/**
Table
**/
.table table {
    width: 100%;
    border-collapse: collapse;
}
.table table, .table th, .table td {
    border:none;
}

.table th, .table td {
    padding: 20px 0px;
    text-align: left;
}
.table th {
    background-color: none;
    font-weight: 600;
    font-size: 0.8em;
}


.table tr{
    border-bottom: 2px solid var(--clr_main);
}

.table_search input{
    -webkit-appearance: none;
    border:2px solid #CFD6E0;
    width:100%;
    height:45px;
    padding-left:30px;
    font-family: 'Commissioner';
    position: relative;
}

.table_search{
    position: relative;
}

.table_search:before{
    content:url("data:image/svg+xml,%3Csvg id='Group_148' data-name='Group 148' xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 12 12'%3E%3Crect id='Rectangle_99' data-name='Rectangle 99' width='12' height='12' fill='%230d1940' opacity='0'/%3E%3Cg id='Group_147' data-name='Group 147' transform='translate(0.706 0.706)'%3E%3Cpath id='Path_359' data-name='Path 359' d='M7.747,3.51a4.237,4.237,0,1,0,2.679,7.515l2.53,2.53a.424.424,0,1,0,.6-.6l-2.53-2.53A4.233,4.233,0,0,0,7.747,3.51Zm0,.847a3.39,3.39,0,1,1-3.39,3.39A3.383,3.383,0,0,1,7.747,4.357Z' transform='translate(-3.51 -3.51)' fill='%230d1940'/%3E%3C/g%3E%3C/svg%3E%0A");
    position: absolute;
    left:8px;
    z-index: 10;
    top:15px;
}

.table tr td:nth-child(1){
    width:15%;
    font-size: 0.8em;
    vertical-align: top;
}

.table tr td:nth-child(2){
    width:60%;
    padding-right:30px;
    vertical-align: top;
    line-height: 1.4em;
    font-size: 0.8em;
}

.table tr td:nth-child(3){
    width:10%;
    text-align: center;
    vertical-align: top;
    font-size: 0.8em;
}

.table tr td:nth-child(4){
    width:15%;
    text-align: right;
    vertical-align: top;
    font-size: 0.8em;
}

.table th:nth-child(3) {
    text-align: center;
}

.table th:nth-child(4) {
    text-align: right;
}
/**
Accordion
**/
.accordion{
    padding:20px 0px 0px;
}

.accordion_header{
    display: inline-block;
    position: relative;
    width:85%;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    margin-top:25px;
    font-weight: 600;
    font-size: 1.4em;
    line-height: 1.4em;
    min-height: 100px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.accordion_header:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 20 20'%3E%3Cpath id='Path_367' data-name='Path 367' d='M.946,0,0,.946,17.717,18.663H4.285V20H20V4.285H18.663V17.717Z' transform='translate(0)'/%3E%3C/svg%3E%0A");
    position: absolute;
    right:0;
    bottom:10px;
}

.accordion_header:hover{
    padding-left:10px;
}

.accordion_content{
    visibility: hidden;
    opacity: 0;
    height:0;
    padding:0px 0px;
    width:85%;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.accordion_active .accordion_content{
    padding:20px 0px;
    visibility: visible;
    opacity: 1;
    height:auto;
}

/**
Points with Photo
**/
.points_holder{
    padding:0px 0px 0px;
}

.point_header{
    display: inline-block;
    position: relative;
    width:85%;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    margin-top:0px;
    font-weight: 600;
    font-size: 1.4em;
    line-height: 1.4em;
    min-height: 70px;
}

.point_content{
    padding:20px 0px;
    width:85%;
}

/**
Iframe
**/
/* Ensure the section takes full width and height */
.block.dash_frame {
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Responsive wrapper to contain the iframe */
.responsiveWrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevents scrolling */
}

/* Full-size iframe with no scrollbars */
.responsiveWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden; /* Ensures no scrolling */
    scrolling: "no"; /* Deprecated but still helpful in some cases */
}

.dash_nav ul{
    list-style: none;
}

.dash_nav ul li{
    display: inline-block;
    float:left;
}

.dash_nav{
    border-bottom: 1px solid;
    border-top: 1px solid;
}

.dash_nav ul li a{
    display: inline-block;
    border-right:1px solid;
    padding:10px 15px;
}

.dash_nav ul li:first-child a{
    border-left:1px solid;
}

.dash_nav ul li a:hover{
    background:var(--clr_yellow);
}



@media (min-width: 0px) and (max-width: 1200px) { 



.dash_nav ul{
    list-style: none;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    overflow: auto;
}

.dash_nav ul li{
    display: inline-block;
    float:left;
    white-space: nowrap;
}


}



.story_holder{
    width:100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

.story_grid_img { grid-area: 1 / 1 / 2 / 9; }
.story_details { grid-area: 1 / 9 / 2 / 13; }

.story_holder {
  position: relative;
  overflow: hidden;
}

.story_grid_img {
    height:40vh;
    min-height: 450px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: stretch;
  position: relative;
    opacity: 0;
    animation: fade 12s infinite;
}

.story_grid_img:nth-child(1) {
    animation-delay: 0s;
}
.story_grid_img:nth-child(2) {
    animation-delay: 4s;
}
.story_grid_img:nth-child(3) {
    animation-delay: 8s;
}
@keyframes fade {
    0% { opacity: 1; }
    33.333% { opacity: 1; }
    33.334% { opacity: 0; }
    100% { opacity: 0; }
}

.story_grid_img:before{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    height:80%;
    background: rgb(0,0,0);
background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.story_grid_inner{
    position: relative;
    color:#fff;
    padding:0px 20px 40px;
    width:70%;
    border-left:1px solid #fff;
    margin-left: 40px;
}

.story_grid_details{
    padding-top:20px;
    font-weight: 500;
}

.story_details{
    border:1px solid #E8E6E6;
    position: relative;
    
}

.story_details h3{
    padding:40px 40px;
    font-size: 1.8em;
    font-weight: 500;
}


.story_details p{
    padding:0px 40px;
}

.story_details a{
    position: absolute;
    bottom:0;
    left:0px;
    width:100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    border-top:1px solid #E8E6E6;
    padding:20px 40px;
}

.story_details a span{
    position: relative;
    margin-right: 15px;
    font-weight: 500;
}
.story_details a:hover{
    background:#E8E6E6;
}


/**
Contact
**/
.contact{
    padding:25px 0px;
}

.contact a{
    display: inline-block;
    float:left;
    border:2px solid;
    padding:10px 20px;
    margin-right: 5px;
}

.contact a:hover{
    background:var(--clr_cyan);
    color:#fff;
    border:2px solid var(--clr_cyan);
}

.contact div{
    padding:10px 0px;
}

.map{
    padding-bottom: 60px;
}

/**
Form
**/
.form input,
.form textarea,
.form select,
.form input[type=submit]{
    width:100%;
    -webkit-appearance: none;
    border:1px solid #CFD6E0;
    width:100%;
    height:45px;
    padding:0px 10px;
    font-family: 'Commissioner';
}

.form textarea{
    height:120px;
    padding:10px 10px;
}

.cf_input{
    margin-bottom: 15px;
}

.form .grid-2{
    grid-column-gap: 15px;
}

.form input[type=submit]{
    text-transform: uppercase;
    color:#fff;
    background:var(--clr_main);
    border:none;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.form input[type=submit]:hover{
    background:var(--clr_yellow);
    color:var(--clr_main);
    cursor: pointer;
}

.form{
    padding:25px;
    border:1px solid #CFD6E0;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(207,214,224,1);
-moz-box-shadow: 0px 10px 20px 0px rgba(207,214,224,1);
box-shadow: 0px 10px 20px 0px rgba(207,214,224,1);
}

.single_header .single_header_title{
    background:#fff;
    padding:35px 0px;
}

.single_header{
    padding-bottom: 0px;
    padding-top:150px;
}

.single_header h1{
    font-size: 1.5em;
    font-weight: 600;
}

.single_side_block{
    margin-bottom: 30px;
    padding-right: 50px;
}

.single_side_block h3{
    font-size: 0.8em;
    font-weight: 500;
}

.single_side_block p{
    font-weight: 300;
}

.content_holder{
    padding-bottom: 60px;
}

.content_featured_image{
    margin-bottom: 40px;
}

.content_featured_image img{
    width:100%;
    height:auto;
}

.related_articles{
    margin-top:20px;
}

.related_articles h2{
    font-weight: 500;
    padding-bottom: 15px;
}

.related_articles ul{
    list-style: none;
}

.related_articles ul li{
    float:left;
    width:100%;
    margin-bottom: 15px;
}

.related_articles ul li:last-child{
    margin-bottom: 0px;
}

.related_articles ul li a{
    font-weight: 500;
    font-size: 1.2em;
}

.related_articles ul li div{
    font-size: 0.8em;
}

.content figure video{
    width:100%;
    height:auto;
    margin-bottom: 25px;
}


/**
Pagination
**/
.pagination{
    padding-top:45px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.pagination span,
.pagination a{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    margin:0px 3px;
    border:2px solid;
    height:40px;
    width:40px;
    line-height: 36px;
    border-radius: 100%;
    color:var(--clr_black);
}

.pagination span{
    border:none;
}

.pagination a:hover{
    border:2px solid var(--clr_cyan);
    color:#fff;
    background:var(--clr_cyan);
}

.pagination a.prev svg,
.pagination a.next svg{
    fill:var(--clr_black);
    width:15px;
    height:auto;
}

.pagination a.prev:hover svg,
.pagination a.next:hover svg{
    fill:#fff;
}

/**
Youtube Latest Videos
**/
.singleVideo{
    position: relative;
}

.singleVideoImg{
    position: relative;
    background:var(--clr_main);
}

.singleVideo img{
    width:100%;
    height:auto;
    position: relative;
    opacity: 0.6;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.singleVideo:hover img{
    opacity: 1;
}

.singleVideoImg:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35'%3E%3Cg id='Group_205' data-name='Group 205' transform='translate(-451 -2569)'%3E%3Ccircle id='Ellipse_1' data-name='Ellipse 1' cx='17.5' cy='17.5' r='17.5' transform='translate(486 2569) rotate(90)' fill='%230d1940'/%3E%3Cpath id='Polygon_1' data-name='Polygon 1' d='M4.909,1.713,1.476,7.683H8.342L4.909,1.713M4.909,0,9.817,8.537H0Z' transform='translate(474.049 2581.378) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    z-index: 1;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.singleVideoDetails{
    padding:10px;
    border: 1px solid #ebebeb;
}

.singleVideoTitle{
    padding-bottom: 10px;
}

/**
Image with Caption
**/
.imageCaptionIMG img{
    width:100%;
    height:auto;
}

.imageCaptionTXT{
    background:#ebebeb;
    padding:10px;
    text-align: center;
    margin-top:10px;
}

/**
Footer
**/
footer{
    background:var(--clr_main);
    position: relative;
    float:left;
    width:100%;
    padding-bottom: 40px;
    color:#fff;
    line-height: 1.4em;
}

.prefooter{
    padding:30px 0px;
    margin-bottom: 40px;
    background: rgb(255, 255, 255);
    background: -moz-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: -webkit-radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    background: radial-gradient(circle at left top, rgba(255, 255, 255, 1) 0%, rgba(207, 214, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#cfd6e0", GradientType=1);
}

.prefooter a{
    display: inline-block;
    float:left;
    margin-right: 35px;
}

.prefooter svg{
    float:left;
    height:16px;
    width:auto;
    fill:var(--clr_main);
    margin-right: 7px;
}

.footer_logo img{
    width:80%;
    height:auto;
    max-width: 200px;
}

.prefooter span{
    display: inline-block;
    line-height: 16px;
    color:var(--clr_main);
    float:left;
}
.footer_logo svg{
    width:50%;
    min-width:200px;
    overflow: visible;
    height:auto;
}
.footer_copyrights{
    border-top:1px solid;
    padding-bottom: 30px;
    padding-top:15px;
    margin-top:25px;
    line-height: 1.5em;
}

.footer_copyrights a{
    font-weight: 500;
}

.footer_copyrights a:hover{
    text-decoration: underline;
}

.footer_main{
    border-bottom:1px solid;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer_main .footer_section_title{
    font-weight: 500;
    padding-bottom: 15px;
}

.footer_main li,
.footer_main p{
    line-height: 1.5em;
}

.footer_main ul{
    list-style: none;
}

.footer_main ul li a{
    display: inline-block;
}

.footer_main ul li a:hover{
    padding-left:5px;
}

.eut_family_slider_holder {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 22s linear infinite;
}

.eut_family_slider_holder a {
  display: inline-block;
  margin-right: 55px; 
}

.eut_family_slider_holder img {
    height: 45px;
    display: block;
}

.eut_family_slider {
    position: relative;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    height:55px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


@media (min-width: 0px) and (max-width: 1200px) { 
[class*="col-"] {
	width:100%;
}

.wrapper{
	width:98%;
}
.grid-3{
    grid-template-columns: repeat(1, 3fr);
}
.grid-4,
.grid-5{
    grid-template-columns: repeat(2, 1fr);
}

.logo{
    text-align: center;
    border-bottom: 1px solid var(--clr_lightgray);
}

.hero,
.hero_wrapper{
    height:auto;
    padding:100px 0px 50px;
    min-height: auto;
    position: relative;
    display: inline-block;
}

.hero h1{
    min-width:100%;
    float:left;
    position: relative;
}
.hero h1 br{
    display: none;
}
.hero .col-6{
    width:100%!important;
}
.stats_holder{
    display: inline-block;
    float:left;
    border: none;
    padding:0px 0px;
}

.stats{
	padding:0px 0px;
	margin:0px 0px;
	
    float:left;
    text-align: center;
	background:#fff;
	width:33.333%;
	padding:20px 0px;
}

.uni_holder{
    display: inline-block;
}
.uni_index{
    width:100%;
    position: relative;
}

.preheader{
    text-align: center;
}

.image{
    margin: 25px 0px;
}

.story_holder{
    width:100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 2fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

.story_grid_img { grid-area: 1 / 1 / 1 / 1; }
.story_details { grid-area: 2 / 2 / 2 / 1; }

.story_details a{
    position: relative;
}
.prefooter a{
    display: inline-block;
    margin:0px 0px;
    width:50%;
    padding:10px;
}
.footer_logo{
    text-align: center;
}

.footer_logo img{
    display: inline-block;
}

.footer_section{
    width:50%;
    padding:20px 10px;
}

.footer_section:nth-child(2){
    text-align: right;
}

.footer_section:nth-child(3){
    text-align: center;
    width:100%;
}

.footer_copyrights,
.footer_copyrights .txt-right{
    text-align: center;
}
.keypoints_grid{
    display: inline-block;
}

.block{
	padding:25px 0px;
}
.single_point:nth-child(1):after{
    display:none;
}
}