@font-face {
    font-family: AvenirNext;    
    src: url(/fonts/AvenirNextLTPro-Regular.otf);
    font-weight: 400;
}
@font-face {
    font-family: AvenirNext;    
    src: url(/fonts/AvenirNextLTPro-Demi.otf);
    font-weight: 500;
}	
@font-face {
    font-family: AvenirNext;
    src: url(/fonts/AvenirNextLTPro-Bold.otf);
    font-weight: 700;
}
@font-face {
    font-family: AvenirNext;
    src: url(/fonts/AvenirNextLTPro-Heavy.otf);
    font-weight: 900;
}



/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: var(--scrollbar-color);
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: var(--green-color); 
}



/* Root selector for defining global CSS variables */
:root {
	--primary-color: #2a2a72;
    --secondary-color: #009d71;


	--dark-color: #333;
	--light-color: #fff;
	--light-color-menu: #fff;
    --scrollbar-color: #eeeeee;
	--black-color-text: #333;
	--blue-color: #0c549d;
	--blue-color-text: #0c549d;
	--blue-color-bg: #0c549d;
	--green-color: #0d9845;
	--green-color-text: #0d9845;
	--light-green-color: #F9FAF5;

	
    --transition: all 0.3s ease-in-out;

  --bg-body: rgb(245, 247, 255);
  --primary-color: rgb(42, 51, 65);
  --primary-hover-color: rgb(158, 161, 166);
  --scrollbar-color: rgba(131, 135, 193, 0.4);
  --card-bg-color: rgba(230, 231, 247, 0.1);
  --pop-bg-color: rgb(245, 247, 255, 0.9);
  --star-color: #ddcc14;
  --border-color: rgba(131, 135, 193, 0.4);
  --shadow-color: rgba(0, 0, 0, 0.05);
  --accent-color: rgb(194, 33, 105);
}

.dark-mode {
	--primary-color: #2a2a72;
    --secondary-color: #009d71;


	--dark-color: #1e1e1e;
    --light-color: #fff;
	--light-color-menu: #1e1e1e;
    --scrollbar-color: #1e1e1e;
	--black-color-text: #fff;
	--blue-color: #fff;
	--blue-color-text: #fff;
	--blue-color-bg: #333;
	--green-color: #333;
	--green-color-text: #fff;
	--light-green-color: #333;




  --bg-body: rgb(6, 5, 40);
  --primary-color: rgb(248, 248, 248);
  --primary-hover-color: rgb(159, 159, 159);
  --scrollbar-color: rgba(44, 49, 88, 0.7);
  --card-bg-color: rgb(24, 26, 50);
  --star-color: #a1d31a;
  --border-color: rgba(189, 192, 234, 0.4);
  --shadow-color: rgba(208, 195, 226, 0.13);
  --accent-color: rgb(185, 129, 250);
}



html, body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    font-family: 'AvenirNext', sans-serif;
	background-color: var(--light-color);
    color: var(--dark-color);
    transition: background-color 0.3s, color 0.3s;	
}
h1 {
    font-size: 72px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 0;
}
h2 {
    font-size: 35px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 0;
}
h2 span.small {
    position: relative;
    font-size: 14px;
    font-weight: 900;
}
h2 span.small:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top:-12px;
    margin:auto;
    width: 100%;
    height: 4px;
    background-color: #743c2c;
}
h3 {
    font-size: 24px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.5;
    margin-top: 0;
    /*margin-bottom: 20px;*/
    letter-spacing: 0;
}
h4 {
    font-size: 20px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0;
	color: var(--blue-color);
}
h5 {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    margin-top: 0;
    /*margin-bottom: 30px;*/
    letter-spacing: 0;
}
h6 {
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 0;
}

/*h7 {
    font-size: 18px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0;
	color: #0C529D;
}*/

a {
    color: #0c549d;
    text-decoration: none;
    background-color: transparent;
}


a:hover {
    color: var(--blue-color-text);
    text-decoration: underline;
}

/*a {
    color: #0c549d;
    text-decoration: none;
    background-color: transparent;
}*/

p.small-text {
    font-size: 15px;
}
p.big-text {
    font-size: 25px;
}
.max-1600 {
    max-width: 1600px;
    margin:auto;
}

.pad-bottom-15 {
    padding-bottom: 15px;
}

.pad-20 {
    padding-top: 20px;
	padding-bottom: 20px;
}

.pad-25 {
    padding: 20px;
}

.pad-25-related {
    padding-left: 25px;
	padding-top: 25px;
	padding-bottom: 15px;
}

.pad-25left_right {
    padding-left: 25px;
	padding-right: 25px;
}

.pad-bottom-25 {
    padding-bottom: 25px;
}

.pad-50 {
    padding-top: 50px;
	padding-bottom: 50px;
}

.pad-top-20 {
    padding-top: 20px;
}
.pad-top-30 {
    padding-top: 30px;
}
.pad-top-40 {
    padding-top: 40px;
	padding-bottom: 20px;
}
.pad-top-50 {
    padding-top: 50px;
	padding-bottom: 10px;
}
.pad-top-80 {
    padding-top: 80px;
}
.sep-20 {
    height: 20px;
}
.sep-30 {
    height: 30px
}
.sep-50 {
    height: 50px;
}
.sep-70 {
    height: 70px;
}
.bg-blue {
    background-color: #0c549d;
    /*background-color: var(--blue-color-bg);*/
}
.bg-lblue {
    background-color: #01a3e5;
}
.bg-green {
    background-color: #0d9845;
   /* background-color: var(--green-color);*/
}

.bg-lgreen {
    background-color: var(--light-green-color);
}
.bg-orange {
    background-color: #ff6600;
}
.bg-red {
    background-color: #b61c1c;
}
.bg-header {
  	background-color: #F9FAF5;
}

.ds-title-arrow {
  display: block;
  width: 26px;
  height: 15px;
  position: relative;
  background-image: url(/images/arrow-white.png);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: left !important;
}

.form-control {
    border-radius: 2px;
    border: none;
    padding: 10px;
    font-size: 18px;
    background-color: #fff;
    box-shadow: none;
    margin-top: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #494949;

}

.hero {
	background-color: var(--light-green-color);
  	background-position: center;
  	width: 100wh;
 	height: 100vh;
  	display: flex;
}

.center-content {
  width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.center-content navbar-brand {
  align-items: center;
}

.button {
    font-size: 18px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.5;
    text-transform: uppercase;
	text-decoration: none !important;
	background-color: #0c549d;
  	color: #fff;
	margin: 5px 10px 10px 5px;
	padding: 10px 20px 10px 20px;
	
  display: inline-block;
}
.button:hover {
  background-color: #0d9845;
  color: #fff;
}


/*.btn-newsletter {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #B8943B;
    border-color: #B8943B;
    color: #ffffff;
}*/

img {
    max-width: 100%;
    height: auto !important;
    vertical-align: top;
}

/* Styles for dark mode */
.dark-mode { /* Use body.dark-mode if targets only at body */
    background-color: var(--dark-color);
    color: var(--light-color);
}


/* Styles for the toggle container */
.toggle-container {
    cursor: pointer;
}

/* Styles for the sun and moon icons */
.sun-icon, .moon-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s;
}

/* Hide moon icon by default (light mode) */
.moon-icon {
    display: none;
}

/* Show moon icon and hide sun icon in dark mode */
.dark-mode .sun-icon {
    display: none;
}

.dark-mode .moon-icon {
    display: inline-block;
}


iframe,
video,
embed {
    max-width: 100%;
    min-height: 100px;
    vertical-align: top;
}


/*BUTTONS*/
.btn {
  border-radius: 0;
/*  padding: 10px 30px;
  text-transform: uppercase; */
}
.btn i {
  display: inline-block;
  padding-left: 15px;
}
.btn-primary {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 50px;
	padding-right: 50px;
    background-color: #303872;
  	color: #ffffff;
}
.btn-primary:hover {
  	background-color: #AFD3DD;
	border-color: #AFD3DD;
  	color: #303872;
 
}

.bg-newsletter {
  	background-color: #0d9845;
	background-image:url(/images/bg_newsletter.jpg);
	background-repeat:no-repeat;
	background-position:center top;
}

.btn-newsletter {
	margin-top: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
    color: #fff;
    background-color: #0c549d;
    border-color: #0c549d;
}


.btn-newsletter:hover {
  	background-color: #0d9845;
  	border-color: #0d9845;
  	color: #ffffff;
}

.color-blue {
    color: var(--blue-color-text);
}
.color-orange {
    color: #ff6600;
}
.color-green {
    color: #0d9845;
}
.color-green-text {
    color: var(--green-color-text);
}
.color-blue-text {
    color: var(--blue-color-text);
}
.color-black-text {
    color: var(--black-color-text);
}


.color-white {
    color: #fff;
}
.color-black {
    color: #333;
}
/* enable absolute positioning */
.inner-addon { 
    position: relative; 
}
/* style icon */
.inner-addon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none;
  color: #ccc;
}
/* align icon */
.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: 0px;}
/* add padding  */
.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }
/*HEADER*/
.header-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
	text-align:center;
}
header ul,
header ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
#header-top {
    line-height: 45px;
    font-size: 15px;
    background-color: var(--green-color);
    color: #fff;
    /*text-shadow: 0 0 30px #61b641;*/
}
.banner {
	/*text-align: right;*/
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.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 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

.card {
    display: block;
    width: 100%;
	border: 0;
    background-color: transparent;
}

.img-hover-zoom background-image {
    transition: transform .5s ease;
}


.text-news {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    margin-top: 0;
	color: var(--green-color-text);
	padding-bottom: 10px;
    letter-spacing: 0;
}
.text-news a {
  	color: var(--green-color-text);
}


.text-news a:hover {
  color: var(--green-color-text);
  text-decoration: underline;
}

.text-theme {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    margin-top: 0;
	color: #ffffff;
	padding-bottom: 10px;
    letter-spacing: 0;
}
.text-theme a {
  	color: #ffffff;
}


.text-theme a:hover {
  color: #ffffff;
  text-decoration: underline;
}


.side-box-header a h4 {
    color: #0d9845;
    text-decoration: none;
}

/*side-box-body h7 a:hover {
  color: #ffffff;
  text-decoration: underline;
}*/




/*BREADCRUMBS*/
.breadcrumbs .nav a {
	color: #000;
	position: relative;
}
.breadcrumbs .nav a:hover,
.breadcrumbs .nav a:focus,
.breadcrumbs .nav a.active,
.breadcrumbs .nav a:active {
	color: #000;
}
.breadcrumbs .nav li:first-child a {
	padding-left: 0;
}
.breadcrumbs .nav.link-nav li a {
	padding-left: 0;
	padding-right: 30px;
}
.breadcrumbs div .nav.link-nav li a {
	line-height: 18px;
	font-size: 18px;
	font-weight: 500;
	color: #0c549d;
}
.breadcrumbs .nav li:last-child a {
	padding-right: 0;
}
.breadcrumbs .nav li:not(:last-child) a:before {
	content: '>';
	color: #0c549d;
	display: block;
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
	position: absolute;
	right: 0;
}
.breadcrumbs .nav li:first-child a {
	padding-right: 0;
	margin-right: 15px;
	width: 22px;
	height: 20px;
	display: block;
	position: relative;	
	padding-top: 20px;
	background-image: url(/images/home-ico.png); 
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
}
.breadcrumbs .nav li:first-child a:before {
	display: none;
}
.breadcrumbs .nav.link-nav li:not(:last-child) a:before {
	right: 10px;
}


.pagination{
  padding: 30px 0;
  text-align:center;
  display: block;
}

.pagination ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pagination a{
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  background-color: #0c549d;
  text-decoration:none;
}


/* THREE */

.p3 .is-active{
  background-color: #0d9845;
  color: #fff;
}

.hand {
  cursor: pointer;
}

@keyframes ticker {
    0%   {margin-top: 0}
    20%  {margin-top: -30px}
    40%  {margin-top: -60px}
    60%  {margin-top: -90px}
    80%  {margin-top: -120px}
    100% {margin-top: 0}
}
.ticker-news {
/*    box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5); */
    width: 100%;
    height: 35px;
    margin: 4px 0px;
    overflow: hidden;
    border-radius: 0;
    padding: 0px 0;
    line-height: 19px;
    -webkit-user-select: none;
} 

.ticker-news span {
    float: left;
    color: #fff;
    padding: 5px 10px;
    position: relative;
    border-radius: 4px;
/*    box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4); */
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    cursor: pointer;
    line-height: 25px;
}

.ticker-news ul {
  float: left;
  padding-left: 115px;
  animation: ticker 10s cubic-bezier(1, 0, .5, 0) infinite;
  -webkit-user-select: none
}

.ticker-news ul li {line-height: 30px; list-style: none }

.ticker-news ul li a {
  color: #fff;
  text-decoration: none;
    font-family: AvenirNext;    
    font-weight: 400;
	font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ticker-news ul li a:hover {
  color: #fff;
  text-decoration: underline;
}


.ticker-news ul:hover { animation-play-state: paused }
.ticker-news span:hover+ul { animation-play-state: paused }

/* OTHER COLORS */
.blue { background: #347fd0 }
.blue span { background: #2c66be }
.red { background: #d23435 }
.red span { background: #c22b2c }
.green { background: #699B67 }
.green span { background: #547d52 }
.magenta { background: #b63ace }
.magenta span { background: #842696 }

ul.nav-top {
    float: right;
}
ul.nav-top li a{
    line-height: 45px;
  	font-family: 'AvenirNext', sans-serif;
  	font-weight: 400;
  	font-size: 15px;
    padding: 0 10px;
    text-decoration: none;
    color: #fff;
}
#header-main {
    position: relative;
    padding: 25px 0;
    /*background-color: #fff;*/
}

.container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
.logo-container {
    float: left;
    padding: 10px 0;
}




.icon-nav {
    float: right;
}
.icon-nav ul li {
    height: 40px;
    padding: 20px 20px;
}
.icon-nav ul li:last-child {
    border-right: 0;
}
.icon-nav ul li a {
    text-align: center;
    text-transform: uppercase;
    color: #b2b2b2;
    font-size: 15px;
    margin-bottom: 0;
    text-decoration: none;
}
.icon-nav ul li a i {
    display: block;
    font-size: 20px;
    color: #0d9845;
}

#main-navigation {
    width: 100%;
    text-align: left;
    background-color: var(--light-color-menu);
	/*box-shadow: 0 0 16px #999;*/
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.01);
    z-index: 100;
}
#main-navigation ul li {
    padding-left:15px;
    padding-right:15px;
}
#main-navigation ul li:first-child {
    padding-left: 0;
}
#main-navigation ul li a {
    font-size: 20px;
    line-height: 30px;
    position: relative;
    float: left;
    padding-top: 10px;
    /*padding-bottom: 5px;*/
    text-decoration: none;
    color: #999999;
}
#main-navigation ul li a:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background-color: #999999;
    display: none;
}
#main-navigation ul li a:hover,
#main-navigation ul li.active a {
    color: #0d9845;
}
#main-navigation ul li a:hover:before,
#main-navigation ul li.active a:before {
    background-color: #0d9845;
    display: block;
}
#main-navigation ul li:nth-child(2) a:hover,
#main-navigation ul li:nth-child(2).active a {
    color: #0c549d;
}
#main-navigation ul li:nth-child(2) a:hover:before,
#main-navigation ul li:nth-child(2).active a:before {
    background-color: #0c549d;
}
#main-navigation ul li:nth-child(3) a:hover,
#main-navigation ul li:nth-child(3).active a {
    color: #b61c1c;
}
#main-navigation ul li:nth-child(3) a:hover:before,
#main-navigation ul li:nth-child(3).active a:before {
    background-color: #b61c1c;
}
#main-navigation ul li:nth-child(4) a:hover,
#main-navigation ul li:nth-child(4).active a {
    color: #ff6600;
}
#main-navigation ul li:nth-child(4) a:hover:before,
#main-navigation ul li:nth-child(4).active a:before {
    background-color: #ff6600;
}
#main-navigation ul li:nth-child(5) a:hover,
#main-navigation ul li:nth-child(5).active a {
    color: #01a3e5;
}
#main-navigation ul li:nth-child(5) a:hover:before,
#main-navigation ul li:nth-child(5).active a:before {
    background-color: #01a3e5;
}
#main-navigation ul li:nth-child(6) a:hover,
#main-navigation ul li:nth-child(6).active a {
    color: #b61c1c;
}
#main-navigation ul li:nth-child(6) a:hover:before,
#main-navigation ul li:nth-child(6).active a:before {
    background-color: #b61c1c;
}

#search-box {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
       -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
           -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
         -moz-transform: translate(0px, -100%) scale(0, 0);
          -ms-transform: translate(0px, -100%) scale(0, 0);
         -o-transform: translate(0px, -100%) scale(0, 0);
              transform: translate(0px, -100%) scale(0, 0);    
    opacity: 0;
    display: none;
}

#search-box.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
       -moz-transform: translate(0px, 0px) scale(1, 1);
          -ms-transform: translate(0px, 0px) scale(1, 1);
           -o-transform: translate(0px, 0px) scale(1, 1);
               transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
    z-index: 106;
    display: block;
}

#search-box input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 40px;
    font-weight: 400;
    font-family: 'AvenirNext', sans-serif;
    text-align: center;
    outline: none;
    padding: 10px;
}
  
#search-box .close {
    visibility: hidden;
}
.fixed-logo {
    float: left;
    max-width: 50px;
    display: none;
    margin-right: 10px;
}
.fixed-icons {
    float: right;
    font-size: 25px;
    line-height: 1.5;
    margin-top: 10px;
    display: block;
}
.fixed-icons a {
    padding-right: 10px;
    color: #0d9845;
}

/*CONTENT*/
.news-container {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 20px;
    overflow: hidden;
}
.news-container:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    width: 100%;
    height: auto;
    background: transparent; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, transparent, rgba(0,0,0,0.3)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, transparent, rgba(0,0,0,0.3)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, transparent, rgba(0,0,0,0.3)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, transparent, rgba(0,0,0,0.3)); /* Standard syntax */
}

.full-height {
    /*height: 455px !important;*/
    height: 455px;
}

.fetured-image {
    height: 225px !important;
}


.news-category {
    position: absolute;
    padding: 10px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    left: 15px;
    top:15px;
    font-weight: 500;
}
.news-title {
    position: absolute;
    padding:10px;
    left: 10px;
    bottom: 40px;
    max-width: 90%;
}
.news-title h3 {
    color: #fff;    
    text-align: left;
    line-height: 1.3;
    text-shadow: 0 0 16px #000;
    margin:0;
}

.news-title h4 {
    color: #fff;    
    text-align: left;
    line-height: 1.3;
    text-shadow: 0 0 16px #000;
    margin:0;
}


/*.full-height .news-title{
    padding: 30px 10px;
    max-width: 60%;
}*/
/*.full-height .news-title h3{
    font-size: 35px;
}*/

/*.news-box article .full-height {
    background-color: green;
    width: 100%;
    height: 445px !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}*/




.news-date {
    position: absolute;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    left: 10px;
    bottom: 15px;   
}
/*/////*/
.arrow-box {
    position: relative;
    padding: 30px;
    text-decoration: none;
    float: left;
    margin-bottom: 30px;
}
.arrow-box.eu-icon:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    margin:auto;
    background: url(/images/eu-ico.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}
.arrow-box:before {
    content: '\f061';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;

    color: #fff;
    font-size: 20px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}
a.arrow-box:hover {
    text-decoration: none;
}
.arrow-box .box-title {
    position: relative;
    text-align: left;
}
.arrow-box h4 {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}
.arrow-box p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}
/*//////////////*/
.news-box {
    position: relative;
    overflow:hidden;
	padding-bottom: 50px;
}
.news-box .news-box-header {
    width: 100%;
    box-shadow: 0 0 10px #ccc;
    padding: 15px 0;
    margin-bottom: 30px;
}
.nav-tabs {
    border: 0 !important;
}
.news-box .news-box-header .news-box-title {
    text-align: left;
}
.news-box .news-box-header .news-box-title h2 {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: bold;
    color: #0c529d;
}
.news-box .news-box-header .news-box-nav {
    text-align: right;
}
.news-box .news-box-header .news-box-nav ul,
.news-box .news-box-header .news-box-nav ul li {
    list-style: none;
    padding: 0;
    margin:0;
    display: inline-block;
}
.news-box .news-box-header .news-box-nav ul li {
    padding-left: 15px;
    padding-right: 15px;
}
.news-box .news-box-header .news-box-nav ul li a {
    font-size: 20px;
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 0;
    color: #cccccc;
}
.news-box .news-box-header .news-box-nav ul li a:hover,
.news-box .news-box-header .news-box-nav ul li.active a  {
    font-weight: bold;
    text-decoration: none;
}
.news-box article {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.news-box article a.fetured-image-link {
    float: left;
    width: 100%;
	padding-bottom: 25px;
}
.news-box article .fetured-image {
    background-color: #0d9845;
    width: 100%;
    height: 225px !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.news-box article .meta-content a:hover {
    text-decoration: underline;
}
.news-box article .meta-content a h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0c549d;
    line-height: 1.3;
    margin-bottom: 10px;
}
.news-box .row .col-md-12.col-md-12.col-xs-12  article .meta-content a h3 {
    font-size: 30px;
}
.news-box article .meta-content .meta-data {
    margin-bottom: 15px;
}
.news-box article .meta-content .meta-data {
    font-size: 14px;
    margin-bottom: 0;
	min-height:25px;
    color: #999;
}
.news-box article .meta-content .meta-data span i {
    padding-right: 5px;
}
.news-box article .meta-data span i,
.news-box article .meta-content .meta-data span:last-child {
    display: none;
}
.news-box article .meta-content p {
    font-size: 18px;
    /*color: #333;*/
    display: none;
}
.news-box article.full-description .meta-data span i,
.news-box article.full-description .meta-content .meta-data span:last-child,
.news-box article.full-description .meta-content p {
    display: inline-block;
}

/*/////////*/
.side-box {
    position: relative;
    overflow:hidden;
    /*background-color: #F9FAF5;*/
    margin-bottom: 20px;
}
.side-box-header {
    text-transform: uppercase;
    padding:25px  25px 0 25px;
    position: relative;
}
.side-box h4 {
    margin-bottom:5px; 
}
.side-box-header.eu-icon:after {
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    width: 45px;
    height: 45px;
    margin:auto;
    background: url(/images/eu-ico.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}
.side-box-header h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: 25px;
}
.side-box-body {
    padding: 25px;
}
.side-box-body h3 {
    margin-bottom: 20px;
}
.side-box-body article {
    margin-bottom: 10px;
}

.meta-data {
    font-size: 14px;
    margin-bottom: 0;
	min-height:25px;
    color: #999;
}

/*//////*/
#Subscribe-section {
    background: #000;
    padding-top: 50px;
    padding-bottom: 50px;
}
#Subscribe-section input[type="text"],
#Subscribe-section input[type="email"]{
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #ddd;
    outline: none;
    resize: none;
    padding: 15px;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
    width: 100%;
}
#Subscribe-section button{
    background: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 20px;
    line-height: 1;
    width: 50px;
    height: 54px;
    padding: 0;
}
/*/////////*/
.color-boxes .color-box {
    position: relative;
    overflow: hidden;
    padding: 30px;
    text-align: left;
}
.color-boxes .color-box:before {
    content: '';
    position: absolute;
    color: rgba(255,255,255,.3);
    font-size: 450px;
    bottom: -100px;
    right: -100px;
    font-weight: bold;
    line-height: 450px;
    margin: auto;
    text-align: right;
}
.color-boxes .color-box1:before {
    content: '1';
}
.color-boxes .color-box2:before {
    content: '2';
}
.color-boxes .color-box3:before {
    content: '3';
}

.gallery ul,
.gallery ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}


.tags {
  list-style: none;
  margin: 0;
  overflow: hidden; 
  padding: 0;
}

.tags li {
  float: left; 
}


.tag {
    font-size: 18px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.5;
    text-transform: uppercase;
	text-decoration: none !important;
	background-color: #0c549d;
  	color: #fff;
	margin: 5px 10px 10px 5px;
	padding: 10px 20px 10px 20px;
	
  display: inline-block;
  /*height: 40px;
  line-height: 26px;
  padding: 0 20px 0 23px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;*/
}

/*.tag::before {
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  content: '';
  height: 6px;
  left: 10px;
  position: absolute;
  width: 6px;
  top: 10px;
}

.tag::after {
  background: #fff;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #eee;
  border-top: 13px solid transparent;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}*/

.tag:hover {
  background-color: #0d9845;
  color: #fff;
}

/*.tag:hover::after {
   border-left-color: crimson; 
}*/




.news-box .news-box-header .news-box-nav.news-box-big {
    text-align: left;
}
.news-box .news-box-header .news-box-nav.news-box-big ul li a {
    color: #ccc;
    font-weight: bold;
}
.news-box .news-box-header .news-box-nav.news-box-big ul li.active a {
    color: #0c549d;
}
.gallery ul li {
    margin-bottom: 10px;
    padding-right: 10px;
    max-width: 20%;
    position: relative;
}
.gallery ul li:first-child {
    max-width: 100%;
}
.gallery a.image-link {
    position: relative;
    float: left;
}
.gallery a.image-link:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    background-color: rgba(0,0,0,.5);
    display: none;
    z-index: 1;
}
.gallery a.image-link:after {
    content: '\f030';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 30px;
    font-size: 15px;
    height: 30px;
    line-height: 30px;

    text-align: center;
    color: #fff;
    background: #0c549d;
    display: none;
    border-radius: 50%;
    z-index: 1;
}
.gallery a.image-link:hover:before,
.gallery a.image-link:hover:after {
    display: block;
}
.blue-bullets {
    color: #0c549d;
}
.blue-bullets li span {
    color:#333;
}
/*///////*/
#contact-form label{
    width: 100%;
    font-weight: bold;
    color: #888;
}
#contact-form p label {
    font-weight: normal;
}
#contact-form input[type="text"],
#contact-form input[type="number"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form input[type="password"],
#contact-form input[type="search"],
#contact-form select,
#contact-form textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #ddd;
    outline: none;
    resize: none;
    padding: 0 15px;
    height: 40px;
    font-weight: normal;
    line-height: 40px;
    width: 100%;
    margin-bottom: 15px;
    background: #eeeeee;
}
#contact-form textarea {
    height: 150px;
}
#contact-form button {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 20px 30px;
    border-radius: 0;
    text-transform: uppercase;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 30px; height: 30px;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: .1em; left: .3em;
  font-size: 1.3em;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 2px dotted blue;
}
input[type="checkbox"]:checked+label:before {
    content: '';
}

/* hover style just for information */
label:hover:before {
  border: 2px solid #4778d9!important;
}

/*FOOTER*/
footer {
    position: relative;
    padding: 60px 0;
	background-color: var(--light-green-color);
}
footer img {
   /* margin-bottom: 40px;*/
}
footer ul,
footer ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: center;
    float: none;
}
footer ul {
    width: 100%;
    margin-bottom: 20px;
}
footer ul li {
    padding-left: 10px;
    padding-right: 10px;
	padding-bottom: 10px;
}
footer ul li a {
    line-height: 1.5;
    text-decoration: none !important;
    font-size: 18px;
	font-weight: 500;
}
footer .grey-nav ul li a {
    color: #999;
}
footer .social-nav ul li a {
    font-size: 24px;
    color: #ffffff;
    width: 45px;
    height: 45px;
    line-height: 44px;
    background-color: transparent;
    padding: 0;
    border: 1px solid transparent;
    margin: 10px 10px;
    background: #0c549d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-nav ul li a:hover {
	color: #ffffff;
    background: #0d9845;
    /*opacity: .8;*/
}

header .social-nav-header ul li a {
    font-size: 24px;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 44px;
    background-color: transparent;
    padding: 0;
    border: 1px solid transparent;
    margin: 10px 10px;
    background: #0c549d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .social-nav-header ul li a:hover {
	color: #ffffff;
    background: #0d9845;
    /*opacity: .8;*/
}



.footer-nav ul li a:hover {
  color: #0d9845;
}

.grey-nav ul li a:hover {
  color: #0c549d;
}
    .mobile {
        display: none;
    }


    .route {
		text-align:right;
    }




@media screen and (min-width: 992px) and (max-width: 1300px){
    .im-fixed #main-navigation ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 1200px) {
    /*.icon-nav ul li {
           padding: 10px 10px; 
    }*/
    #main-navigation ul li a {
        font-size: 18px;
    }
}
@media screen and (min-width: 992px) {
    .im-fixed #main-navigation {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
        /*background: #fff;*/
        z-index: 999;
    }
    .im-fixed {
        margin-top: 52px;
    }
    .news-box article .meta-content p.big-text{
        font-size: 24px;
    }
    .news-box article .meta-content .meta-data span:first-child {
        padding-right: 20px;
    }
    .im-fixed .fixed-logo,
    .im-fixed .fixed-icons {
        display: block;
    }
	.navbar {
		display:none;
	}

}
@media screen and (max-width: 991px) {
    #header-top,
    .news-box-header,
    .news-box-header .news-box-title {
        text-align: center !important;
    }
    .logo-container {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
    .icon-nav ul,
    .icon-nav,
    ul.nav-top,
    .news-box-nav ul {
        width: 100%;
        text-align: center;
        float: none;
    }
    .icon-nav ul li {
        padding: 10px 20px; 
        float: none;
    }
    article .fetured-image {
        margin-bottom: 20px;
    }
    #main-navigation {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 100px 0;
        background: rgba(255,255,255,.95);
        text-align: center;
        margin: auto !important;
        display: none;
    }
    #main-navigation ul li {
        display: block;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    #main-navigation ul li a {
        float: none;
        line-height: 2;
        font-size: 30px;
    }
    #nav-icons {
        width: 50px;
        height: 25px;
        position: relative;
        margin: auto;  
		margin-bottom: 50px;
        margin-top: 120px;
    }
    .nav-in #nav-icons {
        position: fixed;
        top: -35px;
        right: 30px;
        z-index: 200;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #nav-icons span {
        display: block;
        position: absolute;
        height: 5px;
        width: 50%;
        background: #0d9845;
        opacity: 1;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    #nav-icons.invert-nav span {
     background: #222; 
    }
    #nav-icons span:nth-child(even) {
        left: 50%;
        border-radius: 0 2px 2px 0;
    }
    #nav-icons span:nth-child(odd) {
        left:0px;
        border-radius: 2px 0 0 2px;
    }
    #nav-icons span:nth-child(1), #nav-icons span:nth-child(2) {
        top: 0px;
    }
    #nav-icons span:nth-child(3), #nav-icons span:nth-child(4) {
        top: 13px;
    }
    #nav-icons span:nth-child(5), #nav-icons span:nth-child(6) {
        top: 26px;
    }
    #nav-icons.open span:nth-child(1),#nav-icons.open span:nth-child(6) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #nav-icons.open span:nth-child(2),#nav-icons.open span:nth-child(5) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #nav-icons.open span:nth-child(1) {
        left: 5px;
        top: 7px;
        background: #0d9845;
    }
    #nav-icons.open span:nth-child(2) {
        left: calc(50% - 5px);
        top: 7px;
        background: #0d9845;
    }
    #nav-icons.open span:nth-child(3) {
        left: -50%;
        opacity: 0;
    }
    #nav-icons.open span:nth-child(4) {
        left: 100%;
        opacity: 0;
    }
    #nav-icons.open span:nth-child(5) {
        left: 5px;
        top: 22px;
        background: #0d9845;
    }
    #nav-icons.open span:nth-child(6) {
        left: calc(50% - 5px);
        top: 22px;
        background: #0d9845;
    }
    .nav-in #main-navigation {
        display: block;
    }
	.ticker-news {
		display: none;
	}
	
	.nav-top {
		display: none;
	}
	
	
	.navbar-brand>img {
		  position: relative;
		  max-width: 85%;
		  float: center;
	} 
	.navbar-brand {
		text-align:center;
	}	
	.news-container {
		position: relative;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: 225px;
		float: left;
		margin-bottom: 20px;
		overflow: hidden;
	}
	h2 {
		font-size: 25px;
		padding: 15px;
        text-align: center;
	}
	.news-title h3 {
		font-size: 18px;
	}
	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 18px;
		/*padding-top: 15px;*/
	}
	ul.nav-top li a {
		font-size: 14px;
	}
	.full-height {
		height: 225px !important;
	}

	.padd25 {
		padding: 25px;
	}
	.padd10 {
		padding-right: 10px;
    	padding-left: 10px;
	}
	.pad-top-50 {
		padding-top: 20px;
		padding-bottom: 10px;
	}
	
	.pad-25mobile {
		padding-left: 25px;
		padding-right: 25px;
	}

	
	.text-news {
		font-size: 18px;
	}
	.text-theme {
		font-size: 18px;
	}

	.banner {
		display: none;
	}
	.fixed-icons {
		display: none;
	}
	footer ul li {
		padding-left: 5px;
		padding-right: 5px;
	}
	p.small-text {
		font-size: 12px;
	}
	p.big-text {
		font-size: 22px;
	}
	.news-box article a.fetured-image-link {
		padding-bottom: 0px;
	}
    .mobile {
        display: block;
    }
    .route {
		text-align:center;
    }


.row {
    margin-right: 0px;
    margin-left: 0px;
}

.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: 0px;
    padding-left: 0px;
}



.navbar-toggler.custom-button {
    border-color: transparent!important;
}
.navbar-toggler:focus, .navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border:none;
  }
.navbar-toggler, .navbar-toggler{
    outline: none;
    box-shadow: none;
   border:none;
  }

.animated-icon {
  
width: 30px;
height: 20px;
position: relative;
margin: 0px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}

.animated-icon span {
display: block;
position: absolute;
height: 3px;
width: 100%;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}

.animated-icon span {
background: #f3e5f5;
}

.animated-icon span:nth-child(1) {
top: 0px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon span:nth-child(2) {
top: 10px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon span:nth-child(3) {
top: 20px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon.open span:nth-child(1) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
top: 0px;
left: 8px;
}

.animated-icon.open span:nth-child(2) {
width: 0%;
opacity: 0;
}

.animated-icon.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 21px;
left: 8px;
}


#header-top {
    background-color: none;
}


.navbar {
    /*text-align: right;*/
    padding: .5rem 1rem;
}




}




@media screen and (max-width: 767px) {
    .icon-nav ul li {
        padding: 10px 5px;
    }
    footer ul li {
        display: block;
    }
    footer .social-nav ul li {
        display: inline-block;
    }
	.news-title h3 {
		font-size: 20px;
	}
    .full-height .news-title {
        padding:  10px;
        max-width: 80%;
    }
     .news-box .news-box-header .news-box-title h2 {
        margin-bottom: 10px;
     }
     .news-box .row .col-md-12.col-md-12.col-xs-12  article .meta-content a h3 {
        font-size: 20px;
    }
	.ticker-news {
		display: none;
	}
	ul.nav-top li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 480px) {
    #header-main {
        padding: 20px 0 0 0;        
    }
    #header {
        padding-bottom: 20px;
        border-bottom: 2px solid;
    }
    #header-top {
        line-height: 25px;
        /*padding-top: 10px;*/
    }
    .icon-nav ul li a {
        font-size: 9px;
    }
    .icon-nav ul li a i {
        font-size: 25px;
    }
    .icon-nav ul li {
        border:0;
    }
    .news-box .news-box-header .news-box-nav ul li a {
        font-size: 18px;
    }
    .news-box .news-box-header .news-box-title h2 {
        line-height: 1.2;
    }
    #main-navigation ul li a {
        font-size: 20px;
    }
    #login-box {
        right: -7.5px;
    }
    #search-box input[type="search"] {
        font-size: 14px;
    }
    .color-boxes .color-box {
        padding: 30px 15px;
    }
	.ticker-news {
		display: none;
	}

}