/********************************	
	Developed by AXA Studios
	The Creative Engine
	https://www.axastudios.com
*********************************/

:root {
    --main-color: #293989;
    --sub-color: #009DD9;
	
    --dark-color: #485354;
    --hover-color: #666666;
    --white-color: #FFFFFF;
    --half-white-color: rgba(255,255,255,0.48);

    --light-color: #F5F5F5;
    --light-grey-color: #EBEBEB;
    --grey-color: #B2B3B8;
	
    --border-color: #EBEBEB;
    --dark-border-color: #d6d6d6;
	
	--red-color: #d90000;
	
/*	--box-shadow:0px 20px 40px rgba(0,0,0,0.08);	*/

    --xs-pad: 8px;
    --sm-pad: 16px;
    --main-pad: 24px;
    --md-pad: 32px;
    --lg-pad: 48px;
    --xl-pad: 72px;
    --xxl-pad: 96px;
    --lg-neg: -48px;
    --main-neg: -24px;

	--lg-font: 20px;
    --main-font: 18px;
    --mid-font: 16px;
    --sm-font: 14px;
    --input-font: 16px;
    --button-font: 14px;
    --sm-icon: 18px;
    --main-icon: 20px;
    --large-icon: 28px;
}


/* MAIN STYLES *****************************/

html {
	overflow-y: scroll;
	margin: 0;
	padding: 0;
}
body {
	padding: 0px;
	margin: 0px;
	background:#FFFFFF;
	font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight: 400;
	line-height: 1.6;
/*	line-height: 28px;*/
	color:#485354;
}
	
/* TEXT & LINK STYLES *****************************/

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
	margin-top: 0px;
	display: block;
	position: relative;
	line-height: 1;
}
h1{
	color: #293989;
	font-weight: 700;
	font-size:40px;
	letter-spacing: -1px;
	margin-bottom: 16px;
}
h2{
	color: #293989;
	font-size:34px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -1px;
	margin-bottom: 16px;
}
h3{
	color: #293989;
	font-weight: 700;
	font-size:24px;
	letter-spacing: -1px;
	line-height: 1.2;
	margin-bottom: 8px;
}
h4{
	font-size: 20px;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.italic{
	font-style:italic;
}
:focus{
	-moz-outline-style:none;
}	
::selection{
	background-color:#485354;
	color:#fff;
}	
::-moz-selection{
	background-color:#485354;
	color:#fff;
}
input:focus, button:focus {
	outline: none; 
}
p{
	margin:0px 0px 24px 0px;
}
p.lead{
	font-size:24px;
	margin-bottom: 24px;
}
p.quote{
	font-style: italic;
}
a, a:visited{
	border: none;
	outline:0;
	-moz-outline-style:none;
	color: #293989;
}
a:hover, a:focus, a:active{
	text-decoration: none;
	color: inherit;
	outline:0;
	-moz-outline-style:none;
}
a img {
	border: none;
	outline:0;
	-moz-outline-style:none;
}
a.button, input.button, button.button, .d-btn, .l-btn, a.button:visited, input.button:visited{
	position: relative;
	cursor: pointer;
	color: #FFFFFF;
	line-height: 24px;
	font-size: 16px;
	font-weight: 700;
	border: 0px;
	border-radius: 3px;
	outline: none;
	background: #293989;
	background: #009dd9;
	text-align: center;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
a.button, .d-btn {
	display: inline-block;
	text-decoration: none;
	padding: 12px 24px 12px 24px;
	min-width: 180px;
}
button.button{
	background: none;
	color: #009dd9;
	border: 1px solid #009dd9;
	height: 48px;
	padding: 9px 24px 9px 24px;
}
.d-btn, .d-btn:visited{
	background: none;
	color: #FFFFFF;
	border: 1px solid rgba(255,255,255,1);
	height: 48px;
	padding: 11px 24px 11px 24px;
	background: none;
}
.l-btn, .l-btn:visited{
	background: none;
	color: #009dd9;
	border: 1px solid #009dd9;
	height: 48px;
	padding: 11px 24px 11px 24px;
	background: none;
}
input.button, button.button {
	position: relative;
	margin: 0;
	height: 48px;
	padding: 0px 24px 0px 24px;
}
a.button:hover, input.button:hover,
a.button:active, input.button:active,
a.button:focus, input.button:focus{
	background:#485354;
	background: #293989;
	-webkit-transition: background 0.2s ease-out;
	transition: background 0.2s ease-out;
}
a.b-btn, a.b-btn:visited{
	background: #009dd9;
}
a.b-btn:hover,
a.b-btn:active,
a.b-btn:focus{
	background:#293989;
	-webkit-transition: background 0.2s ease-out;
	transition: background 0.2s ease-out;
}
button.button:hover, button.button:focus, button.button:active{
	color: #485354;
	border: 1px solid #485354;
}
.d-btn:hover, .d-btn:active, .d-btn:focus{
	border: 1px solid rgba(255,255,255,0.3);
	color:  rgba(255,255,255,0.3);
}
.l-btn:hover, .l-btn:active, .l-btn:focus{
	border: 1px solid var(--main-color);
	color: var(--main-color);
}

/* MAIN CONTENT STYLES *****************************/

#outer-wrapper{
	position: relative;
	overflow: hidden;
}
#bg-wrapper {
	position: fixed;
	content:'';
	display: block;
	opacity: 0;
	width:100%;
	height:0;
/*	background: rgba(21,29,32,0.9);*/
	background: rgba(255,255,255,0.9);
	z-index: 8;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.menu-open #bg-wrapper {
	opacity: 1;
	height:100%;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
/*
#main-wrapper{
	padding-top: 80px;
}
*/
#main-wrapper, #sub-wrapper{
	position: relative;
}
#content-wrapper{
	position: relative;
	z-index: 1;
	background: #FFF;
	min-height: 75vh;
}
#sub-wrapper #content-wrapper{
	padding-top: 140px;
/*	padding-bottom: 60px;*/
}
#sub-wrapper #content-wrapper.page-wrap,
#sub-wrapper #content-wrapper.calendar-wrap, 
#sub-wrapper #content-wrapper.contact-wrap {
	padding-top: 80px;
}
#sub-wrapper #content-wrapper.page-wrap.page-content{
	padding-top: 160px;
}
#content-main{
/*	min-height: 60vh;*/
}

.scroll-top-main{
	position: fixed;
	right:-50px;
	bottom: 30px;
	width: 40px;
	height: 40px;
	padding: 0px;
	border-radius: 3px;
	border-radius: 40px;
	text-align: center;
	color: #FFFFFF;
	line-height: 38px;
	font-size: 21px;
	z-index: 999;
	cursor: pointer;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
/*	opacity: 0.8;*/
	background: #293989;
}
/*
.scroll-top-main i{
	vertical-align: top;
	width: 24px;
	height: 24px;
}
*/
.scroll-top-main:hover, .scroll-top-main:focus, .scroll-top-main:active, .scroll-top-main:visited{
/*	background: #293989;*/
	color: #FFF;
/*	opacity: 0.6;*/
}
.scroll-top-main.show-scroll{
	right:30px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}


/* HEADER *****************************/

#navbar {
	position: absolute;
	display: block;
	width: 100%;
	padding: 0px;
	top:0px;
	z-index: 99;
    background: var(--white-color);
	box-shadow: 0px 2px 3px rgb(0, 0, 0, 0.2);
}

#navbar.sticky {
    position: fixed;
    background: var(--white-color);
}

#navbar .container{
	display: flex;
	flex-direction: row;
}
.navbar-top{
	position: relative;
	display: flex;
}
.navbar-header{
	position: relative;
	display: flex;
/*
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
*/
}

.logo-main{
	display: inline-block;
	float: left;
    align-self: flex-start;
    margin: 12px 24px 12px 0px;
    margin: 16px 24px 16px 0px;
	padding: 0px;
}
.logo-main img{
    height: 48px;
    width: auto;
}
.logo-main span{
    position: relative;
    display: block;
}

.nav-trigger{
	position: relative;
	display: inline-block;
	display: none;
	padding: 0px 20px;
	border: 0px;
	line-height: 40px;
	cursor: pointer;
	color: #293989;
	right: 0px;
	margin: 5px 0px;
}

.nav-icon {
	position: relative;
	float: right;
	width: 24px;
	height: 24px;
	padding: 0px;
	margin: 8px 12px 8px 8px;
	background: none;
	border: none;
	overflow: hidden;
}
.nav-icon span{
	display: block;
	position: absolute;
	top: 11px;
	left: 3px;
	right: 3px;
	height: 2px;
	background: #293989;
	transition: background 0s 0.2s;
}
.nav-icon span::before,
.nav-icon span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #293989;
	content: "";
	transition-duration: 0.2s, 0.2s;
	transition-delay: 0.2s, 0s;
}
.nav-icon span::before {
	top: -5px;
	transition-property: top, transform;
}
.nav-icon span::after {
	bottom: -5px;
	transition-property: bottom, transform;
}
.menu-open .nav-icon span {
	background: none;
}
.menu-open .nav-icon span::before {
	top: 0;
	transform: rotate(45deg);
}
.menu-open .nav-icon span::after {
	bottom: 0;
	transform: rotate(-45deg);
}
.menu-open .nav-icon span::before,
.menu-open .nav-icon span::after {
	transition-delay: 0s, 0.2s;
}
#nav-main .nav-trigger{
	position: absolute;
	top: -85px;
	right: 15px;
	color: #FFFFFF;
	font-size: 16px;
/*	opacity: 0;*/
}
/*#nav-main .nav-icon span,*/
#nav-main .nav-icon span::before,
#nav-main .nav-icon span::after {
	background: #FFFFFF;
}

/* NAV MAIN *****************************/
.navbar-header{
    display: flex;
    flex-direction: row;
}

.nav-wrap{
	position: relative;
	display: flex;
	margin-left: auto;
/*	width: 100%;*/
}
.navbar-top-main{
	position: relative;
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

#nav-main{
	position: relative;
	display: flex;
}
#nav-right{
	position: relative;
	display: flex;
	margin-left: auto;
}
#nav-main ul, #nav-right ul{
    display: flex;
	flex-direction: row;
	padding: 0px;
	list-style: none;
	text-align: left;
}
#nav-main ul{
	margin: 7px 0px;	
	margin: 12px 0px;	
}
#nav-right ul{
	margin: 8px 0px;
}
#nav-main ul li, #nav-right ul li{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0px 24px;
	padding: 8px 0px;
	margin: 0px 24px;
/*	text-align: center;*/
}
#nav-main ul li a, #nav-right ul li a{
/*    position: relative;*/
	display: block;
	line-height: 20px;
	padding: 10px 0px;
	color: var(--dark-color);
	font-weight: 700;
    font-size: 16px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
    cursor: pointer;
}
/*
#nav-main ul li a{
	letter-spacing: 1px;
	text-transform: uppercase;	
}
*/
#navbar.sticky #nav-main ul li a,
#navbar.sticky #nav-right ul li a{
    color: var(--dark-color);
}
#nav-main ul li a.active,
#navbar.sticky #nav-main ul li a.active{
    color: var(--dark-color);
}
#nav-main ul li a:hover,
#nav-right ul li a:hover,
#nav-main ul li a.active:hover,
#navbar.sticky #nav-main ul li a:hover{
    color: var(--sub-color);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
/*
#nav-main ul li a:after{
	position: absolute;
	content: '';
	left: 0;
	bottom: -8px;
	width: 0%;
	height: 2px;
	background: var(--grey-color);
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#nav-main ul li a:hover:after{
	width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
*/

#nav-main .dropdown {
	display: none;
	position: relative;
	width: 100%;
	left: 0;
	right: 0;
	box-shadow: none;
	border: none;
	background: none;
	padding: 0;
	margin: 0px;
	text-align: left;
}
#nav-main .dropdown ul {
	position: relative;
	display: block;
	width: 64px;
	list-style: none;
	margin: 0px;
	padding: 10px 0px 0px 0px;
}
#nav-main .dropdown ul li {
	display: block;
	width: 200px;
	margin: 0;
	padding: 0px 0px;
}
#nav-main .dropdown ul li a {
	position: relative;
	display: inline-block;
	padding: 10px 0px;
	margin: 0px 0px;
	clear: both;
	line-height: 20px;
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	text-decoration: none;
}

#nav-main .show-mob{
    display: none!important;
}
.mobile-nav-icons, .search-trigger, .search-close{
	display: none;
}

.nav-buttons{
	position: relative;
    display: flex;
	margin: 16px 0px;
    margin-left: 24px;
}

.lang-btn{
    position: relative;
    display: inline-block;
    margin-left: 8px;
    padding: 8px 0px;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
}
.navbar-header .lang-btn{
	margin: 16px 0px 16px 24px;
}
.lang-btn span{
    position: relative;
    display: inline-block;
	vertical-align: top;
    width: 32px;
    height: 32px;
    line-height: 32px;
	margin-right: 4px;
    text-align: center;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 400;
}
.lang-btn:hover span{
	opacity: 0.6;
    -webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.lang-btn span img{
	height: 28px;
	width: auto;
	margin-top: -1px;
	vertical-align: text-top;
}

.navbar-header:after, #nav-main ul:after, .icon-blocks:after{
	content: '';
	display: block;
	clear: both;
}

/* MAIN BANNER STYLES *****************************/

#banner-wrapper{
	position: relative;
	display: block;
	height: 100%;
	z-index: 1;
}
.banner-item{
	position: relative;
	display: block;
}
/*
.banner-item:before{
	content: '';
	position: absolute;
	display: block;
	width: 70%;
	height:	100%;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(255,255,255,1) 10%, rgba(255,255,255,0) 100%);
}
*/

/*
#banner-carousel .carousel-inner {
	position: relative;
}
#banner-img .carousel-indicators{
	position: absolute;
	width:30%;
	left: initial;
	right: 40px;
	bottom: 30px;
	margin: 0px;
	text-align: right;
	cursor: default;
	z-index: 5;
}
#banner-img .carousel-indicators li{
	width:12px;
	height:12px;
	border-radius: 50%;
	margin: 0px;
	border: 0px;
	margin-left: 5px;
	background: rgba(255,255,255,0.3);
}
#banner-img .carousel-indicators li:hover{
	background: rgba(255,255,255,0.5);
}
#banner-img .carousel-indicators li.active{
	width:12px;
	height:12px;
	border: 0px;
	background: rgba(255,255,255,1);
}
*/


#banner-main .banner-item .b-img-blk{
	position: absolute;
	display: block;
	width:100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.b-img-1{
	background: url(../images/sofia-banner-main.jpg) top center no-repeat;
	background-size: cover;
}
.b-img-2{
	background: url(../images/sofia-banner-main2.jpg) top center no-repeat;
	background-size: cover;
}
.b-img-3{
	background: url(../images/sofia-banner-main3.jpg) top center no-repeat;
	background-size: cover;
}
.b-img-4{
	background: url(../images/sofia-banner-main4.jpg) top center no-repeat;
	background-size: cover;
}
.b-img-5{
	background: url(../images/sofia-banner-main5.jpg) top center no-repeat;
	background-size: cover;
}
.b-img-6{
	background: url(../images/sofia-banner-main6.jpg) top center no-repeat;
	background-size: cover;
}

.banner-text-wrap{
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0px;
	z-index: 3;
}
.banner-item .container{
    position: relative;
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
/*    height: 100%;*/
    z-index: 2;
}
.banner-text{
	position: relative;
	display: block;
	width: 80%;
	color: var(--white-color);
	text-align: center;
	padding: 48px;
	margin-top: 80px;
	background: rgba(0,0,0,0.40);
/*	background: rgba(41,57,137,0.32);*/
	opacity: 0;
}

.active .banner-text{
	-webkit-animation: btm-fade-animate 0.8s ease-out forwards;
	animation: btm-fade-animate 0.8s ease-out forwards;
	-webkit-animation-delay: 0.6;
	animation-delay: 0.6s;		
}

.banner-header{
	display: block;
	position: relative;
	font-size: 60px;
	line-height: 1;
	font-weight: 900;
	color: var(--white-color);
	margin-bottom: 24px;
	
}
.banner-p{
	display: block;
	font-size: 24px;
	line-height: 1.4;
/*	letter-spacing: -1px;*/
	margin-bottom: 30px;
    font-weight: 400;
}
/*
.b-link, .b-link:visited{
	position: relative;
	display: inline-block;
	font-size: 100px;
	color: #7c7d77;
	color: #009dd9;
	height: 40px;
	overflow: hidden;
}
.b-link:hover, .b-link:active, .b-link:focus{
	color: #FFFFFF;
	color: #293989;
}
.b-link i{
	vertical-align: top;
	line-height: 40px;
}
.banner-link{
	position: absolute;	
	display: block;
	text-align: center;
	width:6%;
	bottom: 40px;
	left:47%;
	z-index: 3;
}
.banner-link svg{
	display: inline-block;
	height: auto;
	max-height: 32px;
	max-width: 100%;
}
#b-link-img{
	vertical-align: bottom;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.banner-link:hover #b-link-img{
	fill:#293989;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
*/
.banner-text-blk{
	position: relative;
	display: block;
	z-index: 2;
	width: 100%;
	text-align: center;
}
.banner-text-blk-main{
	position: relative;
	padding: 96px 5% 96px 5%;
	font-size: 20px;
}
.banner-arrow{
	position: absolute;
	display: flex;
	justify-content: center;
	width: 20%;
	font-size: 32px;
	text-align: center;
	left: 40%;
	bottom: 24px;
	color: var(--white-color);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.24);
	z-index: 2;
	cursor: pointer;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.banner-arrow:hover{
	color: var(--sub-color);
}

#banner-main .owl-dots{
	position: absolute;
	width: 100%;
	bottom: 64px;
	left: 0;
	margin: 0;
	z-index: 3;
}
.owl-dots .owl-dot span{
	background: var(--white-color);
}
.owl-dots .owl-dot.active span, 
.owl-dots .owl-dot:hover span {
    background: var(--sub-color);
}

	

/* CONTENT STYLES *****************************/

#home-txt-blks, #home-news-blks{
	padding-top: 120px;
	padding-top: 90px;
	margin-bottom: 60px;
}
.home-txt-title{
	display: block;
/*	padding: 0px 60px;*/
	margin-bottom: 30px;
}
.home-txt-row, .mod-blk-wrap{
	position: relative;
	clear: both;
	margin-left: -60px;
	margin-right: -60px;
}
.home-txt-blk, .mod-blk{
	position: relative;
	display: block;
	float: left;
	width: 33.3333%;
	padding: 0px 60px;
	margin-bottom: 90px;
}
.mod-blk{
	margin-bottom: 60px;
}
.mod-3-blk .mod-blk-wrap{
	padding: 0px 14%;
}
.home-blk-title, .mod-blk-title{
	position: relative;
	display: block;
}
.home-blk-title:before, .mod-blk:before{
	content: '';
	display: block;
	position: absolute;
	height: calc(100% - 12px);
	width: 4px;
	left:-20px;
	top:6px;
	background: #009dd9;
}
.mod-blk:before{
	height: 36%;
	left: 38px;
}
.home-txt-row .home-txt-blk:nth-child(3n+2) .home-blk-title:before,
.mod-blk-wrap .mod-blk:nth-child(3n+2):before{
	background: #293989;
}
.home-txt-row .home-txt-blk:nth-child(3n+3) .home-blk-title:before,
.mod-blk-wrap .mod-blk:nth-child(3n+3):before{
	background: #e81c88;
}
.home-blk-title h3{
	display: block;
	height: 108px;
	margin-bottom: 16px;
	overflow: hidden;
}
.mod-blk-title h3{
	display: block;
/*	height: 36px;*/
	margin-bottom: 16px;
	overflow: hidden;
}
.mod-blk p{
	margin: 0;
}
.home-txt-blk p{
	position: relative;
	display: block;
	height: 135px;
	overflow: hidden;
}
.mod-blk p{
	position: relative;
	display: block;
	overflow: hidden;
}
.news-blk-date{
	display: inline-block;
	color: #485354;
	font-size:24px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.2;
	letter-spacing: -1px;
}
.news-blk-title h3{
	margin-bottom: 16px;
}
#home-carousel-wrap{
	position: relative;
	display: block;
	padding: 60px 0px;
	margin-bottom: 120px;
	background: url(../images/sofia-banner-main5.jpg) center center no-repeat #485354;
	background-size: cover;
}
.carousel-control {
    position: absolute;
	display: inline-block;
/*    top: 40%;*/
	top: 0;
	height: 100%;
    bottom: 0;
    left: 20px;
    width: 80px;
	font-size: 120px;
	line-height: 1;
	color: #FFFFFF;
    text-shadow: none;
    filter: alpha(opacity=100);
    opacity: 1;
	text-align: left;
}
.carousel-control.right, .carousel-control.left {
    background:none;
}
.carousel-control.right{
	text-align: right;
	right:20px;
}
.carousel-control.right i, .carousel-control.left i{
	position: relative;
    top:40%;
	top:calc(50% - 60px);
}
.carousel-control:hover {
	color: #485354;
}
#home-carousel{
    background: rgba(0,0,0,0.3);
}
#home-carousel .item{
	padding: 60px 10%;
	text-align: center;
	color: #FFFFFF;
}
.hc-title{
	font-size: 60px;
	font-weight: 900;
	text-transform: uppercase;
	color: #FFFFFF;
}
#home-carousel .item p{
	font-size: 36px;
	min-height: 108px;
}
.content-center{
	position: relative;
	text-align: center;
	padding-top: 120px;
	margin-bottom: 120px;
}
.content-center-title{
	position: relative;
	display: block;
	margin-bottom: 60px;
}
/*
.content-center-title h2{
	text-transform: uppercase;
}
*/

.content-block-header{
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 24px;
}
.content-block-header a{
	color: var(--dark-color);
	font-weight: 700;
}
.content-block-header a:hover{
	color: var(--main-color);	
}
.content-banner{
	position: relative;
	padding-top: 120px;
	margin-bottom: 120px;
}
.content-block{
	padding-top: 120px;
	margin-bottom: 120px;
}
.content-block a{
	text-decoration: underline;
}
.content-block a:hover{
	text-decoration: none;
}
#content-main > .content-block{
	padding-top: 90px;
	margin-bottom: 90px;
}
.content-block-wrap{
	position: relative;
	display: flex;
	margin-left: -30px;
	margin-right: -30px;
}
.content-left, .content-right{
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 0px 30px;
	margin-bottom: 60px;
}
#content-btm{
	position: relative;
}
#content-btm .content-center{
	padding-top: 96px;
	margin-bottom: 192px;
}
.comp-logos{
	position: relative;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.comp-logos li{
	/*display: inline-block;*/
	padding: 0px 30px;
}
.comp-logos li img{
	max-width: 100%;
}
.comp-logos li a{
	display: block;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in;
	transition: opacity 0.2s ease-in;
}
.comp-logos li a:hover{
	opacity: 0.5;
	-webkit-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}

.content-block-list{
	position: relative;
	list-style: none;
	margin: 0 0 24px 0;
	padding: 0;
}
.content-block-list li{
	position: relative;
	line-height: 24px;
	margin: 0 0 8px 0;
	padding: 0 0 0 32px;
}
.content-block-list li:before{
	content: "\f105";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	left: 0;
	top:0;
	width: 24px;
	height: 24px;
	text-align: center;
	line-height: 24px;
	color: #009dd9;
	font-size: 22px;
	font-weight: 300;
}


/* SUB CONTENT STYLES *****************************/

#content-txt-blks{
	margin-top: 100px;
	margin-bottom: 80px;
}
.content-txt-title{
	display: block;
	margin-bottom: 30px;
}
.content-txt-row{
	position: relative;
	clear: both;
	margin-left: -60px;
	margin-right: -60px;
}
.content-txt-col{
	display: block;
	float: left;
	width: 50%;
	padding: 0px 60px;
}
.content-txt-blk{
	display: block;
	margin-bottom: 40px;
}
.content-txt-blk p{
	position: relative;
	margin-bottom: 20px;
}
.contact-list{
	position: relative;
	list-style: none;
	padding: 0px;
}
.contact-list li{
	margin: 0px;
	padding: 0px;
}
.contact-list li i{
	display: inline-block;
	width:20px;
	margin-right: 5px;
	color: #293989;
}
/* INFO PAGES *****************************/

.page-wrap{
	max-height: 100%;
	overflow: hidden;
}
.page-wrap .container{
	position: relative;
}
.page-wrap:after, .page-wrap #content-main:after{
	content: '';
	display: block;
	clear: both;
}
.page-banner{
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
/*
	max-height: 100%;
	height: 40vh;
	background-color: #CCCCCC;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
*/
}
.page-banner img{
/*	display: none;*/
	max-width: 100%;
}

.page-header {
    padding-bottom: 0px;
    margin: 0px 0px 24px 0px;
    border-bottom:none;
}

.page-wrap #content-main{
	position: relative;
	display: block;
}
.page{
	position: relative;
	display: block;
/*	min-height: 50vh;*/
	overflow: hidden;
	padding: 72px 0px 0px 0px;
}
.page-body{
	position: relative;
/*	padding-bottom: 60px;*/
	padding: 0px 14% 72px 14%;
}
.page-body h1{
/*	margin-top: -12px;*/
}
.page-body h3{
	padding-top: 24px;
	margin-bottom: 12px;
}
.page-body ul{
	list-style: none;
	margin: 0px 0px 24px 0px;
	padding: 0px;
}
.page-body ul li{
	position: relative;
	padding-left: 24px;
}	
.page-body ul li:before{
	content: "\f105";
	position: absolute;
/*	font-family: FontAwesome;*/
	font-family: "Font Awesome 5 Pro";
	left: 0;
	top:0;
	color: #009dd9;
	font-size: 20px;
	line-height: 1.3;
}
.page-body a{
	text-decoration: underline;
}
.page-body a:hover{
	text-decoration: none;
}
.page-img-center{
	position: relative;
	display: block;
	text-align: center;
	margin: 0px 0px 40px 0px;
}
.page-body img,
.page-img-center img{
	max-width: 100%;
}
.center-text{
	font-style: italic;
}
.page-info-header{
	font-weight: 700;
}
.page-info-underline{
	text-decoration: underline;
}
.page-col-wrap{
	position: relative;
	display: block;
	margin-left: -30px;
	margin-right: -30px;
}
.page-col-wrap:after{
	content: '';
	display: block;
	clear: both;
}
.page-col-left, .page-col-right{
	position: relative;
	display: inline-block;
	float: left;
	width:50%;
	padding: 0px 30px;
	margin-bottom: 30px;
}

#home-banner-1.content-banner{
	margin-bottom: 96px;
}
#home-banner-1 .content-left p{
	font-size: 22px;
}

/* MOD CONTENT STYLES *****************************/

.page-module{
	position: relative;
	margin-bottom: 60px;
}
.mod-blk-center{
	text-align: center;
	padding: 60px 20%;
	padding: 60px 10%;
}
.mod-blue-blk{
	background: #009dd9;
	color: #FFFFFF;
	margin-bottom: 72px;
}
.mod-blue-blk h2{
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
}
.mod-blk ul{
	position: relative;
	display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	min-height: 162px;
}
.mod-blk ul li{
	position: relative;
	margin: 0px;
	padding: 0px 0px 0px 20px;
}
.mod-blk ul li:before{
	position: absolute;
	content: "\f105";
/*	content: "\f054";*/
	font-family: "Font Awesome 5 Pro";
	left: 0;
	top:0;
	color: #009dd9;
	font-size: 22px;
	line-height: 1.2;
}
.mod-blk ul + p,
.mod-blk ul + .button{
	margin: 20px 0px 0px 20px;
}

/* MOD CONTENT STYLES *****************************/

.event-blk-wrapper{
	position: relative;
	padding: 120px 0px 96px 0px;
	background: var(--light-color);
}

.event-blk-wrapper .event-blk-wrap{
	padding: 0;
}

.event-blk-wrapper .event-blk{
	position: relative;
	padding: 48px;
	background: var(--white-color); 
	color: var(--dark-color);  
	border-radius: 7px;
	margin: 0;
	margin-bottom: 24px;
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.event-blk-wrapper .event-date{
	padding-left: 0;
}
.event-content h3{
	color: var(--dark-color);  
	margin: 0;
}
.event-content p{
	margin: 0;
}

.event-title-wrap .page-header{
	padding-left: 14%;
}

.event-blks{
	position: relative;
	margin-bottom: 120px;
}
.event-blk-wrap{
	position: relative;
	padding: 60px 0px;
}
.event-blks .event-blk-wrap:nth-child(odd){
/*
	background: #009dd9;
	color: #FFFFFF;
*/
	background: #F5F5F5;
}
/*
.event-blks.events-grey .event-blk-wrap:nth-child(odd){
    background: #485354;
	color: #FFFFFF;
}
*/
.event-blk{
	position: relative;
	margin: 0px -30px;
}
.event-date{
	position: relative;
	display: block;
	padding: 0px 30px;
	width:13%;
	float: left;
	text-align: center;
	color: var(--main-color);
}
.event-date span{
	display: block;
}
.event-date .d-dy{
	font-size: 60px;
	font-weight: 900;
	line-height: 0.8;
}
.event-date .d-mn{
	font-size: 48px;
	line-height: 1.2;
	letter-spacing: 0px;
	font-weight: 700;
}
.event-date .d-yr{
	font-size: 30px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0px;
}
.event-blk dl{
	position: relative;
	display: block;
	padding: 0px 30px;
	margin: 0px;
	width:87%;
	float: left;
}
.event-blk dt{
	display: block;
	float: left;
	width:20%;
}
.event-blk dd{
	display: block;
	float: left;
	width:80%;
}
.event-blk p{
	margin: 0;
}

/* CONTACT *****************************/

.contact-wrap .container{
	position: relative;
	overflow: hidden;
}

.contact-blks{
	position: relative;
	display: block;
	padding-top: 30px;
	margin: 30px -30px;
}
.contact-blk{
	position: relative;
	display: block;
	padding: 0px 30px;
	margin-bottom: 40px;
	width:100%;
}
.contact-blk-img{
	position: relative;
	display: block;
	width:22%;
	float: left;
}
.contact-blk-img img{
	max-width: 100%;
}
.contact-blk-txt{
	display: inline-block;
	padding-top: 8px;
	padding-left: 30px;
	display: block;
	width:78%;
	float: left;
}
.contact-blk-txt h5{
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 30px;
}
a.contact-link{
	display: block;
	color: #485354;
	text-decoration: none;
	line-height: 30px;
}
.contact-link i{
	display: inline-block;
	width: 20px;
	font-size: 20px;
	margin-right: 10px;
	color: #009dd9;
}
a.contact-link:hover{
	text-decoration: underline;
}

/* ARTICLE *****************************/

/*
#article-banner{
	position: relative;
	margin-bottom: 30px;
}
#article-banner img{
	max-width: 100%;
}

.social-share{
	position: relative;
	list-style: none;
	margin: 20px 0px;
	padding: 0px;
}
.social-share li{
	display: inline-block;
	margin: 0px 20px 0px 0px;
	padding: 0px;
}
*/

/* PUBLICATIONS *****************************/

.pub-wrapper{
	position: relative;
	padding: 120px 0px 120px 0px;
}

.home-wrap .pub-wrapper{
	padding-bottom: 0;
}


.pub-blocks{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 48px -48px 72px -48px;
}
.pub-block{
	position: relative;
	display: flex;
	width: 33.3333%;
	padding: 0px 48px;
	margin-bottom: 96px;
}

.pub-block-content{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 7px;
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.pub-block-img{
	display: block;
	border-radius: 7px 7px 0px 0px;
	overflow: hidden;
}
.pub-block-img img{
	max-width: 100%;
}
.pub-block-txt{
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 24px;
	background: #FFFFFF;
	border-radius: 0px 0px 7px 7px;
}
.pub-block-txt h3{
	text-transform: capitalize;
}
.pub-block-txt p{
/*	min-height:92px;*/
	margin-bottom: 48px;
}
.pub-block-txt a{
	display: inline-block;
}
.pub-block-buttons{
	display: flex;
	margin: 0 -8px;
	margin-top: auto;
}
.pub-block-buttons .button,
.pub-block-buttons .l-btn{
	text-align: center;
	min-width: inherit;
	width: calc(50% - 16px);
	margin: 0 8px;
}
/*
.pub-block-txt a.button{
	width: calc(50% - 4px);
}
.pub-block-txt button{
	width: calc(50% - 10px);
	margin-left: 10px;
	padding: 0px 20px 0px 20px;
}
*/


/* EMPTY/ERROR PAGE STYLES *****************************/

.empty-page{
    display: none;
    height: 70vh;
    flex-direction: column;
    justify-content: center;
    background: var(--white-color);
}
.show-page.empty-page{
    display: flex;
}

.error-page .empty-page{
	display: flex;
	width: 100%;
}

.empty-page-msg{
    width: 40%;
    align-self: center;
    text-align: center;
}
.empty-page-img{
    position: relative;
    margin-bottom: 24px;
    padding: 0 25%;
}
.empty-page-img img{
	height: 48px;
	width: auto;
}
.empty-page-txt{

}
.empty-page-title{
    font-size:36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    margin-bottom: var(--sm-pad);
}
.empty-page-txt p{
    color: var(--grey-color);
}

/* Pagination *****************************/

.page-link {
	box-shadow:none;
	color: var(--main-color); 
/*	border: 1px solid var(--grey-color);*/
	border: 1px solid #dee2e6;
}
.page-link:focus{
	box-shadow:none;
}
.page-link:visited, .page-link:active{
	border: 1px solid #dee2e6;
} 

.page-item.active .page-link {
    background-color: var(--main-color); 
    border-color: var(--main-color); 
}


/* FOOTER *****************************/
	
#footer	{
	position:relative;
	background: #485354;
	padding-top: 60px;
	padding-bottom: 40px;
	color: #FFFFFF;
	z-index: 1;
	line-height: 30px;
	font-size: 16px;
}
#footer	.container{
	display: flex;
}
#footer a{
	color: #FFFFFF;
}
#footer a:hover{
	color: #FFFFFF;
	text-decoration: underline;
}
#footer	h4{
	font-weight: 900;
	text-transform: none;
}
.f-col{
	position: relative;
	display: block;
	float: left;
	width: 25%;
}
.footer-left{
	position: relative;
}
.footer-logo{
	position: relative;
	display: block;
	margin-bottom: 16px;
}
.footer-logo a{
	display: block;
}
.footer-logo img{
	max-width: 100%;
	width:auto;
	height: 54px;
}
.footer-left ul, .footer-nav ul{
	display: block;
	list-style: none;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}
.footer-nav ul li{
	position: relative;
	display: block;
	padding: 0px 0px 0px 20px;
}
.footer-nav ul li:before{
	position: absolute;
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	left: 0;
	top:3px;
	font-size: 20px;
	line-height: 1.2;
}
.footer-social{
	display: block;
	margin-bottom: 26px;
}
#footer .footer-social a{
	display: inline-block;
	height: 40px;
	width: 40px;
	border-radius: 40px;
	line-height: 40px;
	text-align: center;
	background: #FFFFFF;
	margin-left: 10px;
	font-size: 20px;
	color: #485354;
	-webkit-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
}
#footer .footer-social a:hover{
	opacity: 0.5;
	color: #485354;
	text-decoration: none;
}
.footer-copyright{
	position: relative;
/*	line-height: 40px;*/
	font-size: 14px;
	font-weight: 700;
}


/* MODAL STYLES *****************************/

body.modal-open  {
	padding: 0px!important;
}
.modal-backdrop {
    background-color: #fff;
}
.modal-backdrop.show{
	opacity: 1;
}
.modal-backdrop.in {
    opacity: 1;
}
.modal{
	z-index: 9999;
}
/*
.show.modal{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
*/

.modal-dialog {
    width: 40%;
	min-width: 300px;
    margin: 10% auto 20px auto;
}
.pub-mod .modal-dialog {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 720px;
	min-height: 100%;
    margin: 0px auto;
	padding: 16px;
	overflow-y: auto;
}

.modal-content {
    position: relative;
    background: #FFF;
/*    border: 1px solid rgba(0, 0, 0, 0.2);*/
	border: 0px;
    border-radius: 7px;
    outline: 0px none;
/*    box-shadow: none;*/
	padding: 18px;
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}
.modal-content .close {
	position: absolute;
	right:28px;
	top:32px;
	opacity: 1;
	margin: 0px;
	width:20px;
	height:20px;
	padding: 0;
	border-radius: 50%;
	font-size: 18px;
	line-height:16px;
	text-align: center;
	color: #009dd9;
	border: 1px solid #009dd9;
}
.modal-header {
	position: relative;
	padding: 30px 50px 30px 30px;
	border: 0px;
}
.modal-header h2{
	margin-bottom: 0px;
}
.modal-body {
	padding: 0px 30px;
}
.modal-footer {
	padding: 30px;
	border: 0px;
	text-align: left;
}
.pub-mod .modal-footer {
	text-align: right;
	display: flex;
	justify-content: space-between;
}
.modal-float-img{
	position: relative;
	display: block;
	margin: 0px auto 10px auto;
	width: 40%;
}
.modal-float-img img{
	max-width: 100%;
}


/* OTHER STYLES *****************************/

#nav-main .dropdown:after, #banner-wrapper:after, #home-txt-blks:after, .mod-blk-wrap:after, .content-menu:after, .event-blk:after, .event-blk dl:after, .contact-blks:after, .contact-blk:after, #footer-copyright:after, .f-nav:after{
	display: block;
	content:'';
	clear: both;
}
.clear{
	clear:both;
}	
.no_border{
	border:none!important;
}
.mob-break{
	display: none;
}

/* ANIMATIONS *****************************/

@-webkit-keyframes btn-animate {
	0%, 100% { -webkit-transform:scale(1); }
	50% { -webkit-transform:scale(1.1); }
}
@keyframes btn-animate {
	0%, 100% { transform:scale(1); }
	50% { transform:scale(1.1); }
}

@-webkit-keyframes bm-animate {
	0% { background: rgba(255,255,255,0); }
	100% {	background: rgba(255,255,255,0.2); }
}
@keyframes bm-animate {
	0% { background: rgba(255,255,255,0); }
	100% {	background: rgba(255,255,255,0.2); }
}

@-webkit-keyframes nav-animate {
	0% { -webkit-transform:translateY(-100%); }
	100% {-webkit-transform:translateY(0%);}
}
@keyframes nav-animate {
	0% { transform:translateY(-100%); }
	100% { transform:translateY(0%);}
}

@-webkit-keyframes nav-list-animate {
	0% { opacity: 0;
		right:-100%; }
	100% { opacity: 1;
		right:0%;}
}
@keyframes nav-list-animate {
	0% { opacity: 0;
		right:-100%;}
	100% { opacity: 1;
		right:0%;}
}
@-webkit-keyframes btm-fade-animate {
	0% { -webkit-transform: translateY(15%); opacity: 0;}
	100% { -webkit-transform: translateY(0%); opacity: 1;}
}
@keyframes btm-fade-animate {
	0% { transform:translateY(15%); opacity: 0;}
	100% { transform:translateY(0%); opacity: 1;}
}

@-webkit-keyframes time-ani {
  0% {
    -webkit-transform: translateZ(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateZ(0) rotate(360deg);
  }
}
@keyframes time-ani {
  0% {
    transform: translateZ(0) rotate(0deg);
  }
  100% {
    transform: translateZ(0) rotate(360deg);
  }
}

/* RESPONSIVE STYLES *****************************/

.container{
/*    max-width: 1560px;*/
    padding-right: 24px;
    padding-left: 24px;
}

.row {
    margin-right: -24px;
    margin-left: -24px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 24px;
    padding-left: 24px;
}

@media (min-width: 1200px) {
    #navbar.sticky-ani {
        position: fixed;
        top: -120px;
    }
    #navbar.sticky {
        position: fixed;
        top: 0;
        transition:0.4s ease-out top;
	    -webkit-transition:0.4s ease-out top;
    }

}

@media (min-width: 1921px) {
    .page-banner img{
        width: 100%;
    }
}

@media (min-width: 1400px) {

	.container{
		max-width:1370px;
	}
	
}
@media (min-width: 1200px) {

	.footer-logo {
		line-height: 40px;
	}
}
@media (min-width: 1200px) and (max-width: 1400px) {
	
	#navbar .container{
		max-width: 100%;
	}
	.logo-main{
		margin: 20px 16px 20px 0px;	
	}
	.logo-main img{
		height: 40px;
	}
	#nav-main ul li, #nav-right ul li{
		margin: 0 20px;
	}
	
	#banner-carousel .item {
        min-height: 74vh;
	}
	.banner-header {
        font-size: 56px;
	}
	.banner-p {
    	font-size: 20px;
	}
	
	.pub-blocks{
		margin: 48px -24px 72px -24px;
	}
	.pub-block{
		padding: 0px 24px;
		margin-bottom: 48px;
	}
	.pub-block-buttons .button, .pub-block-buttons .l-btn{
		font-size: 14px;
	}
	
}
@media (min-width: 992px) and (max-width: 1199px) {
	
	body{
		font-size: 16px;
	}
	
	h1{
		font-size: 36px;
	}
	h2{
		font-size: 26px;
	}
	h3{
		font-size: 20px;
	}
	h4 {
    	font-size: 18px;
	}
	a.button, .d-btn {
		padding: 10px 30px;	
	}
	p.lead {
    	font-size: 20px;
	}
	.banner-header{
		font-size: 48px;
	}
	.banner-p{
		font-size: 20px;
	}
	.pub-blocks{
		margin: 48px -24px 72px -24px;
	}
	.pub-block{
		padding: 0px 24px;
		margin-bottom: 48px;
		width: 50%;
	}
}
	
@media (min-width: 768px) and (max-width: 991px) {
	
	.container{
		max-width:100%;
	}
	body{
		font-size: 16px;
	}
	
	h1{
		font-size: 32px;
	}
	h2{
		font-size: 26px;
	}
	h3{
		font-size: 20px;
	}
	h4 {
    	font-size: 18px;
	}
	a.button, .d-btn {
		padding: 10px 30px;	
	}
	p.lead {
    	font-size: 20px;
	}
	.logo-main{
		margin: 10px 0px;
	}
	.logo-main img {
		height: 40px;
	}
/*
	#nav-top {
		height: 60px;
		padding: 10px 0px;
	}
*/
	#nav-top > ul > li > a {
		font-size: 16px;	
	}
	.banner-header{
		font-size: 40px;
	}
	.banner-p{
		font-size: 20px;
	}
	.pub-blocks{
		margin: 48px -24px 72px -24px;
	}
	.pub-block{
		padding: 0px 24px;
		margin-bottom: 48px;
		width: 50%;
	}
	.pub-block-buttons .button, .pub-block-buttons .l-btn{
		font-size: 14px;
	}
	
	.f-col{
		width: 50%;
		margin-bottom: 20px;
	}
	#footer .container .f-col:nth-child(3){
		clear: both;	
	}
	
}

@media (max-width: 767px) {
	
	
	body{
		font-size: 14px;
		font-size: 16px;
	}
	
	.container {
		padding-right: 16px;
		padding-left: 16px;
	}
	h1{
		font-size: 26px;
	}
	h2, .mod-blue-blk h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}
	h3{
		font-size: 18px;
		margin-bottom: 16px;
		letter-spacing: -1px;
	}
	a.button, input.button, button.button, a.button:visited, input.button:visited{
/*		padding: 10px 20px;	*/
		display: block;
		font-size: 14px;
	}
	.l-btn{
		font-size: 14px;
	}
	p {
		margin-bottom: 16px;
	}
	p.lead {
    	font-size: 16px;
	}
	.logo-main{
		position: relative;
		float: left;
		left: initial;
		margin: 14px 0px 14px 0px;
		padding: 0px;
	}
	.logo-main img{
		width: auto;
		height: 28px;
	}
	#navbar .container{
		width: 100%;
	}
	#navbar-header{
		padding: 4px 0px;
		height: 56px;
	}
	.nav-trigger{
		padding: 0px;
		display: block;
		float: right;
		margin: 8px 0px;
/*		margin-left: auto;*/
	}
	.nav-icon {
        margin: 8px 0px 8px 8px;
	}
	.navbar-header .nav-wrap{
		display: none;
		position: absolute;
		width: 100%;
		top:-100%;
		float: none;
		padding: 8px 0px;
		opacity: 0;
	}
	.menu-open .navbar-header .nav-wrap{
		display: block;
		top:56px;
		-webkit-animation: nav-list-animate 0.3s ease-out forwards;
		animation: nav-list-animate 0.3s ease-out forwards;
	}
	#nav-main{
		display: flex;
		flex-direction: column;
		padding-right: 24px;
	}
	#nav-main ul, #nav-right ul{
		display: flex;
		flex-direction: column;
	}
	#nav-main > ul > li {
		position: relative;
		display: block;
		padding: 0px 0px;
		margin: 0px;
		float: none;
		text-align: right;
	}
	#nav-main > ul > li > a {
		display: inline-block;
		margin: 0px 4px;
		text-align: right;
	}
	#nav-main .dropdown {
		display: block;
		text-align: right;
	}
	#nav-main .dropdown ul {
        width: 100%;
		padding: 0px;
	}
	#nav-main .dropdown ul li {
		width: 100%;	
		text-align: right;
	}
	#nav-main .dropdown a {
/*        padding: 4px 15px;*/
		padding: 5px 0px;
		margin: 0px 4px;
		color: #485354;
		text-align: right;
	}
	#nav-main > ul > li > a.active::after{
		bottom: 0px;
	}
	#nav-main .dropdown a.active::after {
		bottom: 3px;
	}
	.nav-buttons {
    	display: flex;
		margin: 0px 0px 16px 0px;
		margin-left: auto;
		
	}
	
	.navbar-header .lang-btn{
		margin-left: auto;
		margin: 4px 8px 2px auto;
		font-size: 14px;
    	line-height: 34px
	}
	
	.banner-text-wrap {
        bottom: inherit;
    	top: 120px;
    	top: 72px;
	}
	.banner-text {
		margin: 0px;
		width: 100%;
		padding: 24px 24px;
	}
	.b-img-6{
		background: url(../images/sofia-banner-main6.jpg) top center no-repeat;
		background-position: 90% 0%;
		background-size: cover;
	}

	.banner-header {
    	font-size: 28px;
	}
	.banner-p {
        font-size: 18px;
		margin-bottom: 24px;
	}
	.b-link{
		font-size: 60px;
	}
	.banner-arrow{
		bottom: 32px;
	}
	#banner-img .carousel-indicators {
        right: 20px;
    	bottom: 20px;
	}
	#banner-img .carousel-indicators li{
		width:10px;
		height:10px;
		margin-left: 3px;
	}
	#banner-img .carousel-indicators li.active{
		width:12px;
		height:12px;
	}
	.banner-text-blk-main {
		font-size: 16px;
		padding: 30px 0px;
	}
	.scroll-top:link{
		bottom: 16px;
	}
	.scroll-top.affix{
		right:16px;
	}
	#sub-wrapper #content-wrapper{
		padding-top: 96px;
	}
	#sub-wrapper #content-wrapper.calendar-wrap,
	#sub-wrapper #content-wrapper.page-wrap, #sub-wrapper #content-wrapper.contact-wrap {
		padding-top: 56px;
	}
	#sub-wrapper #content-wrapper.page-wrap.page-content {
		padding-top: 96px;
	}
	.content-center, #content-main > .content-block {
        padding-top: 30px;
    	margin-bottom: 30px;
	}
	.content-banner{
		padding-top: 48px;
    	margin-bottom: 24px;
	}
	
	.content-block-wrap{
		flex-direction: column;
	}
	.content-left, .content-right{
		width: 100%;
		margin-bottom: 24px;
	}
	#home-banner-1.content-banner{
		margin-bottom: 24px;
	}
	#home-banner-1 .content-left p{
		font-size: 16px;
	}
	
	#home-txt-blks {
    	padding-top: 30px;
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	.home-txt-row, .mod-blk-wrap {
        margin-left: 0px;
    	margin-right: 0px;
	}
	.home-txt-blk, .mod-blk {
		display: block;
		float: none;
		width: 100%;
		padding: 0px 0px;
		margin-bottom: 30px;
	}
	.mod-blk:before {
/*		height: 36%;*/
		left: -10px;
	}
	.mod-blk-center {
		padding: 30px 0px;
	}
	.mod-blk-title h3 {
        margin-bottom: 8px;
	}
	.home-txt-blk h3, .home-txt-blk p {
        height: inherit;
	}
	.home-blk-title::before, .mod-blk::before {
        top: 3px;
		left: -12px;
	}
	#home-carousel-wrap {
        padding: 30px 0px;
		margin-bottom: 30px;
	}
	#home-carousel .item {
    	padding: 30px 30px;
	}
	.hc-title {
    	font-size: 28px;
		height: 30px;
	}
	#home-carousel .item p {
		font-size: 18px;
		height: 120px;
		line-height: 1.4;
	}
	.carousel-control {
		font-size: 50px;
		width: 20px;
	}
	.carousel-control.left {
		left: 10px;
	}
	.carousel-control.right {
		right: 10px;
	}
	.carousel-control.right i, .carousel-control.left i {
		top: calc(50% - 30px);
	}
	.comp-logos li {
        padding: 0px 16px;
		margin-bottom: 16px;
	}
	.comp-logos .owl-prev {
		margin-top: -30px;
		left: -20px;
	}
	.comp-logos .owl-next {
		margin-top: -30px;
		right: -20px;
	}
	.cat-news {
        float: none; 
    	width: 100%;
	}
	.page-banner{
		margin: 0 -40px;
		width: inherit;
	}
	.page {
		padding: 30px 0px;
	}
	.page-body {
		padding-bottom: 30px;
		padding: 0px 0px 24px 0px;
	}
	.page-body ul li:before {
        line-height: 20px;
	}
	.mod-blue-blk {
		margin-bottom: 30px;
	}
	.page-full img{
		max-width: 100%;
		height: auto;
	}
	.mod-3-blk .mod-blk-wrap{
		padding: 0;
	}
	
	.content-block-header{
		margin-bottom: 8px;
	}
	
	.event-blk-wrapper{
		padding: 48px 0px 24px 0px;
	}
	.event-blk-wrapper .event-blk{
		padding: 24px;
	}
	
	.event-title-wrap .page-header{
		padding-left: 0;
	}
	
	.event-blks {
		margin-bottom: 30px;
	}
	.event-blk-wrap {
		padding: 30px 0px;
	}
	.event-blk {
		margin: 0px;
	}
	.event-date {
		padding: 0px;
		width: 100%;
		float: none;
		text-align: center;
		text-align: left;
		margin-bottom: 10px;
	}
	.event-date span {
		display: inline-block;
		padding: 0px 8px 0px 0px;
	}
	.event-date .d-dy {
    	font-size: 56px;
	}
	.event-date .d-mn, .event-date .d-yr {
    	font-size: 36px;
	}
	.event-blk dl {
		padding: 0px;
		margin: 0px;
		width: 100%;
		float: none;
	}
	.event-blk dt, .event-blk dd {
        float: none;
    	width: 100%;
	}
	
	.pub-wrapper{
		padding: 48px 0px;
	}
	
	.pub-blocks{
		margin: 0;
		flex-direction: column;
	}
	
	.pub-block {
		float: none;
		width: 100%;
		padding: 0px 0px;
		margin-bottom: 30px;
	}
	.pub-block-txt p {
    	min-height: inherit;
	}
	
	.pub-mod .modal-dialog{
		min-width: 100%;
	}
	.modal-content{
		padding: 0;
	}
	
	#content-btm .content-center{
		padding-top: 48px;
		margin-bottom: 48px;
	}
	
	.content-center-title{
		margin-bottom: 24px;
	}
	
	.contact-blks{
		padding-top: 0px;
		margin: 24px -30px;
	}
	
	.contact-blk-txt h5 {
		font-size: 16px;	
		margin-bottom: 10px;
	}
	.contact-blk-txt{
		padding-top: 5px;
		padding-left: 20px;
	}
	a.contact-link{
		line-height: 20px;
	}
	.contact-link i {
        font-size: 16px;
    	margin-right: 3px;
	}
	#submitButton, .contact-blk{
		float: none;
		display: block;
		width: 100%;
	}
	#footer{
/*		text-align: center;*/
		padding-bottom: 40px;
		padding-top: 40px;
		font-size: 14px;
	}
	#footer .container{
		flex-direction: column;
	}
	.footer-logo{
		float: none;
		width: 100%;
		padding: 0px;
		margin-bottom: 10px;
	}
	.f-col{
		width: 100%;
		float: none;
	}
	
	.modal-content .close {
		right:18px;
		top:22px;
	}
	.modal-header {
		padding: 20px 40px 20px 20px;
	}
	.modal-header h2{
		margin-bottom: 0px;
	}
	.modal-body {
		padding: 0px 20px;
	}
	.modal-footer {
		padding: 20px;
	}
}