﻿::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #706b6a;
  }
  
  ::selection {
    color: #fff;
    background: #706b6a;
  }

@font-face {font-family: "Prelo Slab W01 Medium";
    src: url("../fonts/3b0ae6af94805b08b11cdf1d97c47dce.eot"); /* IE9*/
    src: url("../fonts/3b0ae6af94805b08b11cdf1d97c47dce.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/3b0ae6af94805b08b11cdf1d97c47dce.woff2") format("woff2"), /* chromeã€firefox */
    url("../fonts/3b0ae6af94805b08b11cdf1d97c47dce.woff") format("woff"), /* chromeã€firefox */
    url("../fonts/3b0ae6af94805b08b11cdf1d97c47dce.ttf") format("truetype"), /* chromeã€firefoxã€operaã€Safari, Android, iOS 4.2+*/
    url("../fonts/3b0ae6af94805b08b11cdf1d97c47dce.svg#Prelo Slab W01 Medium") format("svg"); /* iOS 4.1- */
  }

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6, header .navbar{
    font-family:"Prelo Slab W01 Medium" !important;
    font-size:1rem;
    font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0;
    -moz-osx-font-smoothing: grayscale;
} 

/*navbar*/
.navbar .icons .fa{
    font-size: 1.8rem;
}
.navbar .icons a, .navbar .icons a:hover, .navbar .icons a:focus{
    padding: 0.5rem 1rem;
    color: #515b5e;
}
.navbar-toggler .navbar-toggler-icon{
    position: relative;
} 
.navbar-toggler .navbar-toggler-icon span{
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 3px;
    background: #515b5e;
}
.navbar-toggler .navbar-toggler-icon span::after, .navbar-toggler .navbar-toggler-icon span::before{
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #515b5e;
    content: "";
}
.navbar-toggler .navbar-toggler-icon span::before {
    top: -9px;
}
.navbar-toggler .navbar-toggler-icon span::after {
    bottom: -9px;
}
.navbar-toggler.show .navbar-toggler-icon span {
    background: transparent!important;
}
.navbar-toggler .navbar-toggler-icon span::before, .navbar-toggler .navbar-toggler-icon span::after {
    transition-delay: 0s,.3s;
}
.navbar-toggler.show .navbar-toggler-icon span:before {
    top: 0;
    transform: rotate(45deg);
    width: 26px;
    left: 0;
    margin-left: 3px;
}
/* .navbar-toggler.show .navbar-toggler-icon span:before {
    transition-property: top,transform;
} */
/* .navbar-toggler .navbar-toggler-icon span:before, .navbar-toggler .navbar-toggler-icon span:after {
    transition-duration: .3s,.3s;
    transition-delay: .3s,0s;
} */
.navbar-toggler.show .navbar-toggler-icon span:after {
    bottom: 0;
    transform: rotate(-45deg);
    width: 26px;
    left: 0;
    margin-left: 3px;
}
.navbar-toggler .navbar-toggler-icon {
    display: table;
    margin: 0 auto;
    top: 0;
}
.navbar-toggler{
    padding: 1rem 0.75rem;
}
.navbar-toggler-icon{
    height: 1.2rem;
}
.navbar-toggler:focus, .navbar-toggler:hover{
    outline: none;
}
/*navbar*/

/*stylish check box and radio*/
.form-check {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: #fff;
    border: 1px solid #515b5e;
  }

  .form-check:hover input ~ .checkmark {
    border-color: #ff671d;
  }

  .form-check input:checked ~ .checkmark {
    background-color: #ff671d;
    border-color: #ff671d;
  }

  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  .form-check input:checked ~ .checkmark:after {
    display: block;
  }

  .form-check .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
/*stylish check box and radio*/

/* Style radio */
/* .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  .container input:checked ~ .checkmark:after {
    display: block;
  }

  .container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  } */
/* Style radio */

@media(min-width: 768px){
 header .navbar{
     padding: 0;
 }
 .navbar-brand{
     padding-top: 2.5rem;
     padding-bottom: 2.5rem;
 }
}
@media(min-width: 1024px){
 .container-fluid{
     max-width: 88%;
     position: relative;
 }
} 

 @media(min-width: 1600px){
    .container-fluid{
        max-width: 88%;
        position: relative;
}
}
.main-nav > .nav-item .nav-link{
    padding: 3rem 1rem;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #515b5e;
}
.main-nav .nav-link.active,.main-nav .nav-link:active, .main-nav .nav-link:hover, .main-nav > .nav-item.show .nav-link{
   /* border-left: 1px solid #e4e5e7;
    border-right: 1px solid #e4e5e7;*/
}
.dropdown-item{
    font-size: 1.2rem;
    -webkit-text-stroke-width: inherit;
    color: #515b5e;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #ff671d;
    text-decoration: none;
    background-color: transparent;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
}

.navbar-brand img{
    width: 100%;
}

:focus {
    outline: none;
}
.btn-primary{
    background-color: #ff671d;
    border-color: #ff671d;
}
.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ff5300;
    border-color: #ff5300;
}
.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #ff5300;
    border-color: #ff5300;
    box-shadow: 0 0 0 0.2rem rgba(255, 103, 29, 0.5);
}
.btn-group-lg>.btn, .btn-lg, .btn{
    border-radius: 0;
    font-family:"Prelo Slab W01 Medium" !important;   
    text-transform: uppercase;
}
.form-control, .form-check, .form-group label{
    border-radius: 0;
    font-size: 1.3rem;
    font-family:"Prelo Slab W01 Medium" !important; 
}
.form-control{
    border-color: #515b5e;
}
.form-control:focus{
    border-color: #515b5e;
    box-shadow: none;
}
.search-bar{
    background-color: #706b6a;
    padding: 1.5rem 0;
}
.search-bar .form-control{
    width: calc(100% - 170px);
    border: 0;
    font-size: 1.3rem;
    font-family:"Prelo Slab W01 Medium" !important;   
}
.search-bar .btn{
    font-size: 1.25rem;
    width: 150px;
}
a {
    color: #ff671d;
}
a:hover, .text-primary:hover{
    color: #ff5300;
    text-decoration: none;
}
.text-primary {
    color: #ff671d!important;
}
.text-secondary{
    color: #515b5e;
}
h2 {
    color: #ff671d;
    font-size: 3rem;
}
h3, .h3 {
    color: #ff671d;
    font-size: 1.8rem;
    font-weight: normal;
    -webkit-text-stroke-width: inherit;
}
p{
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    line-height: 1.4;
}
.text-muted{
    color: #9e9e9e !important;
}
.bg-light{
    background-color: #f1f3f0 !important;
}
.bg-theme{
    background-color: #c8dee0 !important;
}
.bg-theme h2{
    color: #515b5e !important;
}
.card, .card p, .content-section p, .content-section article{
    font-size: 1.1rem !important;
    text-align: left;
}
.caption-font p{
    font-size: 1.3rem;
    font-weight: 600;
}
#newsCarousel .card, #expertsCarousel .card{
    border-radius: 0;
    border-width: 0;
}

#newsCarousel .card .card-body, #expertsCarousel .card .card-body{
    padding: 2.5rem 3rem;
}
#expertsCarousel .card .card-body .content{
    min-height: 350px;
}
#newsCarousel .card .card-body h3{
    min-height: 150px;
}
#projectsCarousel .card{
    border-radius: 0;
    border-color: #ff671d;
    min-height: 500px;
	margin: 0 0.5rem;
}
#projectsCarousel .card .card-body h3{
    min-height: 105px;
}
#projectsCarousel .card .card-body p{
    min-height: 80px;
}
#projectsCarousel .card .thumb{
    /*height: 265px;*/
    position: absolute;
    left: 0;
    overflow: hidden;
}
#projectsCarousel .card .thumb img{
    border-radius: 0;
}
.polling-result .polling-result-percentage{
    border: 1px solid #515b5e;
    height: 35px;
    width: 220px;
    position: relative;
    float: left;
    margin-right: 15px;
}
.polling-result .polling-result-percentage span{
    height: 100%;
    display: block;
    background-color: #ff671d;
    position: absolute;
    right: 0;
}
.polling-result .value{
    display: inline-block;
    font-size: 1.5rem;
    font-family:"Prelo Slab W01 Medium" !important;   
}
#snapPoll .card{
    border-width: 0;
}
#stay-informed .card .content, #participate .card .content{
    min-height: 350px;
}
.bg-primary{
    background-color: #ff671d !important;
    color: #fff;
}
.bg-primary h2, .bg-primary a, .bg-primary .carousel-control-prev-icon, .bg-primary .carousel-control-next-icon{
	color: #fff;
}
/*#get-in-touch h2{
    color: #fff !important;
    -webkit-text-stroke-width: inherit;
}*/
#get-in-touch .h4{
    /*color: #fff !important;*/
    font-size: 1.6rem;
    line-height: 2.2;
    -webkit-text-stroke-width:inherit;
}
#get-in-touch .btn-outline-primary{
    color: #fff;
    border-color: #fff;
}
#get-in-touch .btn-outline-primary:hover{
    color: #ff671d;
    background-color: #fff;
}
#archives{
    background-color: #f1f3f0 !important;
    color: #515b5e !important;
}
#archives h2, #archives h3{ 
    color: #515b5e ;
    -webkit-text-stroke-width:inherit;
}
footer, footer p, footer a{
    font-size: 1rem;
    color: #fff;
    font-family:"Prelo Slab W01 Medium" !important;   
}
footer .logo{
    max-width: 150px;
}
footer .fa{
    font-size: 1.7rem;
    margin: 0 15px;
}
.dropdown-toggle::after{
    content: none;
}


/*sliding nav*/
/* .cd-main-nav-wrapper{
    position: absolute;
    width: 300px;
    right: 0px;
    z-index: 999;
    top: 133px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    background: #1e262c;
    -webkit-transition: visibility 0s .3s;
    -moz-transition: visibility 0s .3s;
    transition: visibility 0s .3s;
    background-color: rgb(255, 255, 255);
    padding: 1rem 1.5rem;
    border: 1px solid rgb(204, 204, 204);
}
.cd-main-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    background: #1e262c;
    -webkit-transition: visibility 0s .3s;
    -moz-transition: visibility 0s .3s;
    transition: visibility 0s .3s;
}
.cd-main-nav li ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -o-transform: translateX(300px);
    transform: translateX(300px);
}

.cd-main-nav-wrapper.show {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
} */
/*sliding nav*/
@media(max-width: 767px){
	#projectsCarousel .card {
		margin-bottom: 15px;
	}
}
@media(min-width:768px) and (max-width: 1023px){
    .navbar-brand img {
        width: 100%;
        max-width: 230px;
    }
    .navbar .icons{
        position: absolute;
        top: 55px;
        right: 75px;
    }
    .nav.main-nav{
         width: 100%;
		 margin-left: -0.7rem !important;
    }
    .nav.main-nav::before{
        content: '';
        width: 100%;
        border-top: 1px solid #f1f3f0;
        position: absolute;
        left: 0;
    }
    .navbar-toggler{
        position: absolute;
        top: 40px;
        right: 15px;
    }
    .main-nav > .nav-item .nav-link{
        padding: 1rem 0.7rem;
        font-size: 1rem;
    }
    .carousel-caption h2, h2{
        font-size: 2.25rem;
    }
    p {
        font-size: 1.15rem;
        line-height: 1.35;
    }
    .carousel-caption p {
        font-size: 1.15rem !important;
    }
    .carousel-item{
        height: 14rem;
    }
    .search-bar{
        padding: 1rem 0;
    }
    .btn-group-lg>.btn, .btn-lg{
        padding: .4rem 0.7rem;
        font-size: 1.15rem;
    }
    h3, .h3{
        font-size: 1.23rem;
    }
    #newsCarousel .card .card-body, #expertsCarousel .card .card-body {
        padding: 1.5rem 1.5rem;
    }
    #newsCarousel .card .card-body h3 {
        min-height: auto;
    }
    #newsCarousel .carousel-item, #expertsCarousel .carousel-item {
        height: 40rem;
    }
    #newsCarousel .card, #expertsCarousel .card {
        min-height: auto;
        margin-bottom: 15px;
    }
    #projectsCarousel .card {
		min-height: 435px !important;
		margin-bottom: 15px;
	}
	#projectsCarousel .card .card-body h3 {
		min-height: 85px !important;
	}
	#projectsCarousel .card .card-body p {
		min-height: 100px !important;
	}
	#projectsCarousel .card .thumb {
		height: 200px;
		position: absolute !important;
		left: 0;
		overflow: hidden;
		width: 100%;
	}
	#projectsCarousel .card .thumb img {
		border-radius: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		TOP: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	#projectsCarousel .carousel-item {
		height: 57rem !important;
	}
    .carousel-control-next, .carousel-control-prev{
        display: none;
    }
    #stay-informed .card .content, #participate .card .content, #expertsCarousel .card .card-body .content {
        min-height: auto;
    }
}
@media(min-width: 1024px) and (max-width: 1349px){
    .navbar-brand img {
        width: 100%;
        max-width: 230px;
    }
    .navbar .icons{
        position: absolute;
        top: 55px;
        right: 60px;
    }
	.nav.main-nav {
    width: 100%;
    margin-left: -0.7rem !important;
	}
    .nav.main-nav::before{
        content: '';
        width: 100%;
        border-top: 1px solid #f1f3f0;
        position: absolute;
        left: 0;
    }
    .navbar-toggler{
        position: absolute;
        top: 40px;
        right: 0;
    }
    .main-nav > .nav-item .nav-link{
        padding: 1rem 0.7rem;
        font-size: 1.15rem;
    }
    .carousel-caption h2, h2{
        font-size: 2.25rem;
    }
    p {
        font-size: 1.15rem;
        line-height: 1.35;
    }
    .carousel-caption p {
        font-size: 1.15rem !important;
    }
    .carousel-item{
        height: 14rem;
    }
	#popularlinksCarousel .carousel-item{
        height: 19.5rem;
    }
    .search-bar{
        padding: 1rem 0;
    }
    .btn-group-lg>.btn, .btn-lg{
        padding: .4rem 0.7rem;
        font-size: 1.15rem;
    }
    h3, .h3{
        font-size: 1.23rem;
    }
    #newsCarousel .card .card-body, #expertsCarousel .card .card-body {
        padding: 1.5rem 1.5rem;
    }
    #newsCarousel .card .card-body h3 {
        min-height: 125px;
    }
    #newsCarousel .carousel-item, #expertsCarousel .carousel-item {
        height: 32rem;
    }
    #newsCarousel .card, #expertsCarousel .card {
        min-height: 465px;
    }
    #projectsCarousel .card {
		min-height: 496px;
	}
	#projectsCarousel .card .card-body h3 {
		min-height: 100px;
	}
	#projectsCarousel .card .card-body p {
		min-height: 180px;
	}
	#projectsCarousel .card .thumb {
		height: 165px;
		position: absolute;
		left: 0;
		overflow: hidden;
		width: 100%;
	}
	#projectsCarousel .card .thumb img {
		border-radius: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		TOP: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	#projectsCarousel .carousel-item {
		height: 31rem;
	}
	#get-in-touch div.h4{
		margin-top: 8px;
	}
	#get-in-touch h2{
		margin-top: 16px;
	}

}
@media(min-width: 1350px) and (max-width: 1599px){
    .navbar .icons{
        position: relative;
    }
    .navbar-brand img{
        width: 100%;
        max-width: 230px;
    }
    .main-nav > .nav-item .nav-link {
        padding: 3.7rem 1rem 1.6rem;
		font-size: 0.9rem;
    }
    .navbar .icons .fa {
        font-size: 1.6rem;
    }
    .navbar .icons a, .navbar .icons a:hover, .navbar .icons a:focus {
        padding: 0.5rem 0.8rem;
    }
    .navbar-toggler-icon{
        width: 1.3em;
    }
    .carousel-caption h2, h2 {
        font-size: 2.5rem;
    }
    .btn-group-lg>.btn, .btn-lg {
        padding: .5rem 1rem;
        font-size: 1.2rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    .form-control, .form-check, .form-group label{
        font-size: 1.2rem;
    }
    h3, .h3 {
        font-size: 1.6rem;
    }
    #newsCarousel .card, #expertsCarousel .card{
        min-height: 575px;
    }
    #newsCarousel .carousel-item, #expertsCarousel .carousel-item {
        height: 38rem;
    }
    #get-in-touch .h4{
        font-size: 1.4rem;
    }
    p {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    footer .logo {
        max-width: 130px;
    }
    .pb-5, .py-5 {
        padding-bottom: 2.3rem!important;
    }
    .pt-5, .py-5 {
        padding-top: 2.3rem!important;
    }
    .polling-result .value{
        font-size: 1.3rem;
    }
    .polling-result .polling-result-percentage{
        height: 30px;
    }
    .carousel-control-prev .fa-lg, .carousel-control-next .fa-lg{
        font-size: 1.2em !important;
    }
    #related-articles .card{
        border: 0;
        border-radius: 0;  
        min-height: 550px; 
    }
    #related-articles .card .card-body{
        padding: 2rem 3rem ;
    }
    #related-articles h3{
        min-height: 90px;
    }  
	#popularlinksCarousel .carousel-item{
        height: 21.5rem;
    }
	.nav.main-nav {
		border-right: 1px solid #e4e5e7;
		padding-right: 1rem;
	}
	.navbar .icons, .navbar-toggler, #navbar-toggler {
		position: static;
		margin-top: 1.5rem;
		margin-left: 1rem;
	}
	#projectsCarousel .card {
		min-height: 435px;
	}
	#projectsCarousel .card .card-body h3 {
		min-height: 125px;
	}
	#projectsCarousel .card .card-body p {
		min-height: 95px;
	}
	#projectsCarousel .card .thumb {
		height: 165px;
		position: absolute;
		left: 0;
		overflow: hidden;
		width: 100%;
	}
	#projectsCarousel .card .thumb img {
		border-radius: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		TOP: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	#projectsCarousel .carousel-item {
		height: 31rem;
	}
	#get-in-touch h2{
		padding-top: 8px;
	}
	#get-in-touch div.h4{
		padding-top: 9px;
	}
	#get-in-touch .btn{
		margin-top: 0 !important;
	}
	.navbar .icons .fa.fa-phone{
		top: 3px;
		position: relative;
	}
} 

@media(min-width: 1600px){
    .navbar .icons, .navbar-toggler{
        position: static;
		margin-top: 2rem;
		margin-left: 1rem;
    }
	#navbar-toggler{
		margin-top: 2rem;
    }
	.nav.main-nav{
		border-right: 1px solid #e4e5e7;
		padding-right: 1rem;
	}
	
    .navbar-brand img{
        width: 100%;
        max-width: 280px;
    }
    .main-nav > .nav-item .nav-link {
        padding: 4.1rem 1rem 1.5rem;
        font-size: 1rem;
    }
    .navbar .icons .fa {
        font-size: 1.8rem;
    }
    .navbar .icons a, .navbar .icons a:hover, .navbar .icons a:focus {
        padding: 0.5rem 1rem;
    }
    .navbar-toggler-icon{
        width: 1.5em;
    }
    .carousel-caption h2, h2 {
        font-size: 3rem;
    }
    .btn-group-lg>.btn, .btn-lg {
        padding: .5rem 1rem;
        font-size: 1.25rem;
    }
    .carousel-caption p {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    .form-control, .form-check, .form-group label{
        font-size: 1.3rem;
    }
    h3, .h3 {
        font-size: 1.8rem;
    }
    #newsCarousel .card, #expertsCarousel .card{
        min-height: 490px;
    }
    #newsCarousel .carousel-item, #expertsCarousel .carousel-item {
        height: 32rem;
    }
	#popularlinksCarousel .carousel-item{
        height: 28rem;
    }
    #get-in-touch .h4{
        font-size: 1.6rem;
    }
    p {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    footer .logo {
        max-width: 150px;
    }
    #related-articles .card{
        border: 0;
        border-radius: 0;  
        min-height: 450px; 
    }
    #related-articles .card .card-body{
        padding: 2rem 3rem ;
    }
    #related-articles h3{
        min-height: 90px;
    }  
	#projectsCarousel .card {
		min-height: 475px;
	}
	#projectsCarousel .card .card-body h3 {
		min-height: 100px;
	}
	#projectsCarousel .card .card-body p {
		min-height: 80px;
	}
	#projectsCarousel .card .thumb {
		height: 245px;
		position: absolute;
		left: 0;
		overflow: hidden;
		width: 100%;
	}
	#projectsCarousel .card .thumb img {
		border-radius: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		TOP: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	#projectsCarousel .carousel-item {
		height: 33rem;
	}
	#get-in-touch h2{
		padding-top: 15px;
	}
	#get-in-touch div.h4{
		padding-top: 18px;
	}
	#get-in-touch .btn{
		margin-top: 12px !important;
	}
	.navbar .icons .fa.fa-phone{
		top: 3px;
		position: relative;
	}
}
.search-bar .btn .fa{
    display: none;
} 
@media(max-width: 768px){
    h2, .carousel-caption h2 {
        font-size: 1.8rem;
    }
    p{
        font-size: 1.1rem;
    }
    .carousel-item{
        height: 20rem;
    }
    .search-bar .btn{
        width: 50px;
        border-color: #ff5300;
        font-size: 1.3rem;
    }
    .search-bar .btn .fa{
        display: block;
        line-height: 1.5;
    } 
    .search-bar .btn span{
        display: none;
    }
    .search-bar .form-control{
        width: calc(100% - 63px);
        display: inline-block;
        vertical-align: middle;
    }
    #newsCarousel .card .card-body, #expertsCarousel .card .card-body{
        padding: 1rem;
    }
    h3, .h3{
        font-size: 1.3rem;
    }
    #get-in-touch .h4{
        font-size: 1.2rem;
        line-height: 1.5;
    }
    #related-articles .card{
        border: 0;
        border-radius: 0;  
        min-height: auto;
        margin-bottom: 15px; 
    }
    #related-articles .card .card-body{
        padding: 1.5rem 1.8rem ;
    }
    #related-articles h3{
        min-height: auto;
    }   
}
@media(max-width: 767px){
    .nav.main-nav{
        display: none;
    } 
    .navbar-brand {
        padding: 1rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f1f3f0;
        margin-right: 0;
    }
    .navbar-brand img{
        width: 180px;
    }
    
    .navbar .container-fluid{
        padding: 0;
    }   
    .navbar .icons .fa{
        font-size: 1.5rem;
    }
    .cd-main-nav{
        width: 300px;
    }
    .navbar .icons a{
        border-right: 1px solid #e1e3e9;
        padding: 0.8rem 1rem;
    }
}
.breadcrumb{
    background: transparent;
    border-radius: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    padding: 0.6rem 0 0.8rem;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: none;
}
.breadcrumb-item+.breadcrumb-item{
    padding-left: 1rem;
}

@media(max-width: 767px){
    #related-articles .card{
        margin-bottom: 15px;
    }
}
.search-bar.search-results{
    background-color: transparent;
}
.search-bar.search-results .container-fluid{
    max-width: 100% !important ;
    padding: 0;
}
.search-bar.search-results .form-control{
    border: 1px solid #515b5e;
}
.text-dark{
    color: #515b5e !important;
}
.search-results-container{
    border-bottom: 1px solid #515b5e;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.search-results-container .h4{
    font-size: 1.4rem;
}
.page-link{
	color: #ff671d;
	background-color: transparent;
	font-family: "Prelo Slab W01 Medium" !important;
	font-size: 1.5rem;
	border: 0;
}
.page-item.disabled .page-link, .page-item.active .page-link{
	border: 0px solid transparent;
	color: #515b5e;
	background-color: transparent;
	font-family: "Prelo Slab W01 Medium" !important;
	font-size: 1.5rem;
}
.page-link:hover{
	border:0;
	background-color: transparent;
	color: #ff671d;
}
.publication p {
    margin-bottom: .25rem
}
@media (max-width: 1599px) {
    .content-hierarchy h1 {
        font-size: 2.5rem;
        color: #ff671d;
    }

    .content-hierarchy h2 {
        font-size: 2rem;
        color: #ff671d;
    }

    .content-hierarchy h3 {
        font-size: 1.9rem;
        color: #515b5e;
    }

    .content-hierarchy h4 {
        font-size: 1.3rem;
        color: #ff671d;
    }
}
@media (min-width: 1600px) {
    .content-hierarchy h1 {
        font-size: 3rem;
        color: #ff671d;
    }

    .content-hierarchy h2 {
        font-size: 2.1rem;
        color: #ff671d;
    }

    .content-hierarchy h3 {
        font-size: 2rem;
        color: #515b5e;
    }

    .content-hierarchy h4 {
        font-size: 1.4rem;
        color: #ff671d;
    }
}
@media (min-width: 768px) {
    article {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 20px;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }
}
@media (min-width: 1000px) {
    #stay-informed .bg-light, #participate .bg-light {
        min-height: 520px;
    }
}

@media (min-width: 1200px) {
    #stay-informed .bg-light, #participate .bg-light {
        min-height: 560px;
    }
}

@media (min-width: 1600px) {
    #stay-informed .bg-light, #participate .bg-light {
        min-height: 540px;
    }
}
.sitemap li h4 {
    color: #515b5e
}
.tooltip-arrow,
.tooltip > .tooltip-inner {background-color: #ff671d; line-height: 1;}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #ff671d;
}
@media(max-width: 374px){
	article iframe{
		width: 100%;
		max-width: 290px;
		height: 163px;
	}
}
@media(min-width: 375px){
	article iframe{
		width: 100%;
		max-width: 345px;
		height: 194px;
	}
}
@media(min-width: 600px){
	article iframe{
		width: 100%;
		max-width: 555px;
		height: 312px;
	}
}
@media(min-width: 768px){
	article iframe{
		width: 100%;
		max-width: 345px;
		height: 194px;
	}
}
@media(min-width: 1024px){
	#popularlinksCarousel .thumb img{
		max-height: 150px
	}
	article iframe{
		width: 100%;
		max-width: 410px;
		height: 232px;
	}
}
@media(min-width: 1200px){
	article iframe{
		width: 100%;
		max-width: 524px;
		height: 294px;
	}
}
@media(min-width: 1350px){
	#popularlinksCarousel .thumb img{
		max-height: 195px
	}
	article iframe{
		width: 100%;
		max-width: 558px;
		height: 313px;
	}
}
@media(min-width: 1600px){
	#popularlinksCarousel .thumb img{
		max-height: 245px
	}
	article iframe{
		width: 100%;
		max-width: 688px;
		height: 374px;
	}
}
@media(min-width: 1800px){
	#popularlinksCarousel .thumb img{
		max-height: 290px
	}
	article iframe{
		width: 100%;
		max-width: 720px;
		height: 405px;
		/*transform: translate3d(0,0,0);*/
	}
}
footer.bg-light{
	background-color: #706b6a !important;
}
article img {
    max-width: 100%;
}
.page-display-head-image {
    padding-left: 2.5rem !important;
/*    height: 450px;
    overflow: hidden;*/
}
/*
.page-display-head-image img {
   width:100%;
}*/