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


@import url("https://use.typekit.net/ogk4dlt.css");


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


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
table {border-collapse: collapse;border-spacing: 0;}
* { box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
a {outline : none; color:inherit; text-decoration:none;}
a img {outline : none;}
img {border : 0; display:block;}
strong, b{	font-weight:600;}
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
::selection {
	background: #000; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	color:#fff;
	background: #000; /* Gecko Browsers */
}


#cursor {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
}

#cursor:before{
    position:absolute;
    content: "";
    border-radius: 100%;
    top:0%;
    left:0%;
    width:30px;
    height:30px;
    border:1px solid #0033a1;
    opacity:0.7;
    margin-left: -15px;
    margin-top:-15px;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#cursor.link:before{
    width:70px;
    height:70px;
    margin-left: -30px;
    margin-top:-30px;
    opacity:0.52;
    border:2px solid #275efe;
} 
#cursor.link_white:before{
    width:70px;
    height:70px;
    margin-left: -30px;
    margin-top:-30px;
    opacity:0.52;
    border:4px solid #fff;
} 
	
/**
Variables
**/
body, html{
	padding:0;
	margin:0;
	background:#f6f7f8;
	font-family: sofia-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:15px;
	-webkit-font-smoothing: antialiased;
	text-align:center;
}


section{
	width:90%;
	text-align:center;
	background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	z-index:10;
	margin:0 auto;
    display:inline-block;
	
}

.wrapper{
	margin:0 auto;
	width:90%;
	max-width:1124px;
	padding:0px 0px;
	display:inline-block;
	position:relative;
}

.mini_wrapper{
    width:85%;
    max-width:860px;
    margin:0 auto;
	
}

p{
    font-size:1em;
    font-weight:300;
    line-height: 1.8em;
    float:left;
    width:100%;
}

.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6{
    float:left;
    width:100%;
    margin-bottom:25px;
}

.page h1{
    font-weight:600;
    font-size: 2em;
}

.page h2{
    font-weight:600;
    font-size: 1.8em;
}

.page h3{
    font-weight:600;
    font-size: 1.7em;
}

.page h4{
    font-weight:600;
    font-size: 1.6em;
}

.page h5{
    font-weight:600;
    font-size: 1.5em;
}

.page h6{
    font-weight:600;
    font-size: 1.4em;
}

/**
Columns
**/
[class*="col-"] {
	float:left;
	position:relative;
}	

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

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

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

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

.float-left{
	float:left;
}

.float-right{
	float:right;
}



/**
Header
**/

.header{
    padding:25px 0px;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:500;
    background:#fff;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	border-radius:0px 0px 24px 24px;
}

.header .logo{
    float:left;
    position:relative;
    z-index:10;
}

.header .logo img{
    height:60px;
    width:auto;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.header_icons{
    position:relative;
    z-index:10;
    height:60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_icons a{
    color:#2a2d33;
    height:30px;
    width:30px;
    margin-left:4px;
    display:inline-block;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_icons a:hover{
    color:#fff;
    background:#275efe;
}


.header_follow{
    padding:5px 0px;
	-webkit-box-shadow: 3px 3px 12px 3px rgba(0,0,0,0.05); 
    box-shadow: 3px 3px 12px 3px rgba(0,0,0,0.05);
}



.header_nav{
    position:absolute;
    left:0;
    right:0;
    text-align:center;
}


.header_nav ul{
    list-style: none;
}

.header_nav ul li{
    display:inline-block;
    position: relative;
}

.header_nav ul li a{
    display: inline-block;
    line-height:60px;
    padding:0px 10px;
    letter-spacing: 0.03em;
    color:#2a2d33;
}

.header_nav ul li a:hover{
    color:#e07c00;
}

.header_nav ul li ul{
    visibility: hidden;
    opacity:0;
    position:absolute;
    top:80px;
    left:50%;
    margin-left:-100px;
    width:200px;
    padding:15px;
    font-size: 0.9em;
    border-radius: 15px;
    overflow: hidden;
	background:#fff;
    -webkit-box-shadow: 3px 3px 12px 3px rgba(0,0,0,0.05); 
    box-shadow: 3px 3px 12px 3px rgba(0,0,0,0.05);
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.header_nav ul li ul li{
    float:left;
    width:100%;
}

.header_nav ul li ul li a{ 
    float:left;
    width:100%;
    text-align:center;
    padding:8px 0px;
    line-height:1.7em;
    font-weight:600;
    border-bottom:1px dashed #f6f7f8;
}

.header_nav ul li ul li:last-child a{
    border-bottom:none;
}

.header_nav ul li ul li a:hover{
    
    padding:6px 0px 10px;
}

.header_nav ul li:hover > ul{
    top:60px;
    opacity: 1;
    visibility: visible;
}

.nav_icon{
    float:right;
    position:relative;
    z-index:10;
    height:60px;
    display:none;
}

.nav_icon span{
    height:35px;
    width:35px;
    border:2px solid #275efe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:1.4em;
    border-radius: 100%;
    cursor: pointer;
}

.nav_icon:hover > span{
    background:#275efe;
    color:#fff;
}
/**
Hero
**/
.hero{
    padding:25px 0px 15px;
}
.hero_slider_holder{
    position:relative;
    overflow: hidden;
    height:60vh;
    background:#fff;
    border-radius: 24px;
    width: calc(75% - 30px);
}

.hero-slider .swiper-slide{
    height:60vh;
    background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .swiper-slide:before{
    position:absolute;
    content: "";
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.2);
}

.hero_slider{
    width:70%;
    text-align:left;
    position:relative;z-index:10;
}

.hero_slider_title{
    font-size:3em;
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    color:#fff;
}

.hero_slider_subtitle{
    color:#fff;
    font-size:1.3em;
    padding-bottom: 45px;
}
.page_panel{
    position:relative;
    padding:20px;
    overflow: auto;
    height:60vh;
    background:#fff;
    border-radius: 24px;
}

.page_panel::-webkit-scrollbar {
    width: 2px;
    right:10px;
}

/* Track */
.page_panel::-webkit-scrollbar-track {
  background: #f6f7f8;
    margin:40px;
}

/* Handle */
.page_panel::-webkit-scrollbar-thumb {
  background: #e3e6e9;
}

/* Handle on hover */
.page_panel::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.article_link_text{
    float:left;
    width:100%;
    text-align:left;
    padding-bottom:15px;
    margin-bottom:15px;
    border-bottom: 1px solid #f6f7f8;
    position:relative;
    padding:15px 20px;
    border-radius: 24px;
    overflow: hidden;
    color:#2F3545;
}

.article_link_text_title{
    font-family: sofia-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height:1.6em;
    padding-bottom:15px;
}

.article_link_text_date{
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size:12px;
}
.article_link_text:last-child{
    border-bottom:none;
}

.article_link_text:hover{
    color:#fff;
}

.article_link_text:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    background:#275efe;
    width:0px;
}

.article_link_text:hover:before{
    width:100%;
}

/**
Hashtags Slider
**/
.hashtags-slider{
    width:100%;
    padding:10px 1px;
    overflow: hidden;
}

.hashtag_slider_link{
    width:100%;
    text-align: left;
    background:#fff;
    
    font-size: 15px;
    font-family: sofia-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 10px 30px 12px;
    border-radius: 24px;
    display: inline-block;
    outline: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
    box-shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
}

.hashtag_slider_link:hover{
    background: #275efe;
    box-shadow: 0 4px 10px -2px rgba(39, 94, 254, 0.5);
    color:#fff;
}

.section_title{
    text-align:left;
    padding:25px 20px 15px;
    margin-bottom:45px;
    font-size:2em;
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    color:#2F3545;
    position:relative;
}

.section_title:before{
    content:"";
    position:absolute;
    width:250px;
    height:2px;
    border-radius: 24px;
    background:#275efe;
    bottom:0px;
    left:-100px;
}

/**
Pagination
**/

.paginationlinks{
	float:left;
	width:100%;
    display:block;
	text-align:center;
	padding:50px 0px 40px;
}

.paginationlinks ul{
	list-style:none;
	margin:0px;
	padding:0px;
	text-align:center;
	width:100%;
}

.paginationlinks ul li{
	display:inline-block;
	font-size:15px;
	margin:0px 3px 0px 0px;
}

.paginationlinks ul li a{
    width:40px;
    height:40px;
    display:inline-block;
    line-height:38px;
    border-radius: 100%;
    font-weight:600;
	background:#fff;
    -webkit-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.5);
    box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.5);
}

.paginationlinks ul li a:hover{
    background:#e07c00;
    color:#fff;
}

.paginationlinks ul .active a{
	background:#275efe;
	color:#fff;
}

/**
Block
**/
.block{
	margin:25px 0px;
    padding:50px 0px 80px;
    background:#fff;
    border-radius: 24px;
}
/**
Articles
**/
.articles{
    
}

.article_photo{
    height:200px;
    background:#f6f7f8;
    background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    border-radius: 24px;
}


.article_details{
    text-align: left;
    padding:20px 25px;
    margin-bottom: 25px;
    position:relative;
}

.article_title{
    font-weight:600;
    font-size:1.2em;
    letter-spacing: 0.01em;
    padding-bottom: 15px;
}

.article_title:hover{
    color:#275efe;
}


.article_cat{
    position:relative;
    display:inline-block;
}
.article_cat:before{
    content: "";
    position:absolute;
    bottom:0;
    left:-5px;
    right:-5px;
    z-index:-1;
    height:0px;
    background:#275efe;
    border-radius: 25px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.article_cat:hover:before{
    height:4px;
}

.articles_grid{
    display: flex;
	flex-direction: row;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}


.article_grid{
    width:49%;
    text-align:left;
    position:relative;
}

.article_grid:first-child{
    width:100%;
    text-align:left;
    position:relative;
}

.article_grid:first-child .article_photo{
    height:400px;
}



/**
Calendar
**/
.calendar-slider{
    width:100%;
    padding:10px 0px;
    overflow: hidden;
}

.calendar_item{
    
}

.calendar_photo{
    width:100%;
    height:150px;
    background:#f6f7f8;
    background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    border-radius: 24px;
    overflow: hidden;
}

.calendar_content{
    padding:14px;
    text-align:left;
}

.calendar_content a{
    font-weight:600;
    font-size:1.2em;
    padding-bottom:10px;
}

.calendar_content a:hover{
    color:#275efe;
}

.calendar_content i{
    margin-right:2px;
    color:#275efe;
}

/**
Vouleftes
**/
.vouleftes-slider{
    width:100%;
    padding:10px 0px;
    overflow: hidden;
}

.vouleftes_item{
    
}

.vouleftes_photo{
    width:100%;
    background:#f6f7f8;
    border-radius: 24px;
    overflow: hidden;
}

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

.vouleftes_content{
    padding:14px;
    text-align:left;
}

.vouleftes_content a{
    font-weight:600;
    font-size:1.2em;
}

.vouleftes_content a:hover{
    color:#275efe;
}

.vouleftes_content i{
    margin-right:2px;
    display:none;
    color:#275efe;
}

.candidates_grid{
    display: flex;
	flex-direction: row;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}

.candidates_grid .vouleftes_item{
    width:30%;
    text-align:left;
    position:relative;
    margin-bottom:35px;
}

.candidate_job{
    text-align: left;
    padding:0px 0px 0px 25px;
    font-weight:600;
    margin-top:-20px;
}

.candidates_city{
    display: flex;
	flex-direction: row;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}

.city_block{
    width:32%;
    position:relative;
    margin-bottom:35px;
    text-align: center;
    padding:50px 0px;
    background:#f6f7f8;
    border-radius: 24px;
    font-size:1.4em;
    font-weight: 600;
}

.city_block:hover{
    background:#275efe;
    color:#fff;
}

.candidate_label{
    padding-bottom:15px;
    font-weight:600;
    color:#275efe;
}

.vouleftes_photo{
    position:relative;
}

.candidate_absolute_label{
    position:absolute;
    bottom:15px;
    right:15px;
    z-index:5;
    background:#275efe;
    color:#fff;
    letter-spacing: 0.08em;
    font-size: 0.8em;
    padding:5px 15px;
    border-radius: 24px;
    font-weight:900;
}
/**
Page Content
**/
.article_hashtags{
    padding-bottom:25px;
    text-align:left;
}

.article_hashtags a{
    display:inline-block;
    background: #f6f7f8;
    padding: 10px 15px 12px;
    border-radius: 24px;
    font-size: 0.8em;
    margin-right:5px;
    margin-bottom:15px;
    outline: none;
    letter-spacing: 0.5px;
}

.article_hashtags a:hover{
    background: #275efe;
    box-shadow: 0 4px 10px -2px rgba(39, 94, 254, 0.5);
    color:#fff;
}

.article_multimedia img{
    width:100%;
    height:auto;
    border-radius: 24px;
}
.article_details a{
    font-weight:600;
}

.article_details a:hover{
    color:#275efe;
}
.article_share{
    text-align: right;
    padding:10px 25px;
    margin-bottom: 25px;
    position:relative;
}

.article_share a{
    display:inline-block;
    margin:0px 5px;
    color:#275efe;
    padding:5px;
    border:1px solid;
}

.article_share a:hover{
    color:#000;
}

.article_content{
    text-align:justify;
    padding:15px 25px;
    font-size:1.2em;
}

.article_content p{
    padding-bottom:25px;
}

.article_content ol,
.article_content ul{
    padding:15px 0px 30px 40px;
    float:left;
    width:100%;
}

.article_content ol li,
.article_content ul li{
    padding:5px 5px 10px;
    font-size:1em;
    font-weight:300;
    line-height: 1.8em;
    float:left;
    width:100%;
}

.article_content a{
    color:#275efe;
    font-weight:600;
}

/**
Buttons
**/
.show_more{
    padding-top:50px;
	text-align:center;
}
.show_more a{
    margin-left:5px;
    margin-right:5px;
}

.cta_button,
.article_content .cta_button{
    font-size: 15px;
    font-family: sofia-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 10px 30px 12px;
    border-radius: 24px;
    display: inline-block;
    outline: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}



.btn_blue,
.article_content .btn_blue{
    background: #275efe;
    color:#fff;
    box-shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
}
.btn_blue:hover,
.article_content .btn_blue:hover {
    box-shadow:  0 4px 20px -2px rgba(39, 94, 254, 0.5);
	background:#fff;
	color:#275efe;
}

.btn_white,
.article_content .btn_white{
    background: #fff;
    color:#275efe;
    box-shadow:  0 2px 8px -1px rgba(18, 22, 33, 0.04);
}
.btn_white:hover,
.article_content .btn_white:hover {
    box-shadow:  0 4px 20px -2px rgba(18, 22, 33, 0.12);
	background:#275efe;
	color:#fff;
}

.btn_black,
.article_content .btn_black{
    background: #2F3545;
    color:#fff;
    box-shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
}
.btn_black:hover,
.article_content .btn_black:hover {
    box-shadow:  0 4px 20px -2px rgba(21, 25, 36, 0.5);
	background:#fff;
	color:#2F3545;
}

/**
Contact Form
**/
.contact_form{
    padding:10px 0px;
}

.contact_form input[type=text],
.contact_form input[type=name],
.contact_form input[type=email],
.contact_form input[type=phone]{
    width:100%;
    height:55px;
    border:2px solid #fff;
    background:#f6f7f8;
    padding:0px 15px;
    margin-bottom:10px;
    border-radius: 24px;
    outline:none;
}

.contact_form textarea{
    width:100%;
    max-width:100%;
    height:185px;
    font-family: sofia-pro, sans-serif;
    border:2px solid #fff;
    background:#f6f7f8;
    padding:15px 15px;
    margin-bottom:10px;
    border-radius: 24px;
    outline:none;
}

.contact_form input[type=submit]{
    font-size: 15px;
    font-family: sofia-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 10px 30px 12px;
    border-radius: 24px;
    display: inline-block;
    outline: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
    background: #275efe;
    color:#fff;
    box-shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    border: none;
}

.contact_form input[type=submit]:hover{
    box-shadow:  0 4px 20px -2px rgba(39, 94, 254, 0.5);
	background:#fff;
	color:#275efe;
    cursor: pointer;
}


.wpcf7-response-output{
	float:left;
	width:100%;
	text-align:center;
	display:none;
}

.wpcf7-validation-errors{
	padding: 20px 0px!important;
	margin-bottom: 0.75rem;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #b94a48;
	background-color: #f2dede;
	border: 1px solid rgba(185, 74, 72, 0.3)!important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.wpcf7-not-valid-tip{
	float:left;
	width:100%;
	padding:0px 0px 10px;
}

.wpcf7-mail-sent-ok{
	padding: 20px 0px!important;
	margin-bottom: 0.75rem;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #468847;
	background-color: #dff0d8;
	border: 1px solid #d6e9c6!important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/**
Footer
**/
.footer{
    background:#fff;
    position: relative;
    border-top:1px solid #f7f8f9;
    border-radius: 24px 24px 0px 0px;
}

.mainfooter{
    padding:40px 0px;
    border-bottom: 1px solid #f7f8f9;
}

.mainfooter ul{
    list-style: none;
    float:left;
}

.mainfooter ul li{
    float:left;
}

.mainfooter ul li a{
    display:inline-block;
    margin-right:15px;
    font-weight:300;
    letter-spacing: 0.05em;
}
.mainfooter ul li a:hover{
    color:#275efe;
}

.footer_social a{
    display:inline-block;
    margin-left:5px;
    width:30px;
    height:30px;
    text-align: center;
    line-height:25px;
    border:2px solid #275efe;
    border-radius: 100%;
    font-size:1em;
}

.footer_social a:hover{
    background:#275efe;
    color:#fff;
}

.copyrights{
    padding:25px 0px;
    font-weight:100;
    letter-spacing: 0.05em;
	font-size:0.9em;
}

.copyrights strong{
    font-weight:600;
}

.copyrights a{
    font-weight: 400;
}

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

.web_creator{
	font-weight:600;
	padding:65px 0px 30px;
}

.web_creator a{
    color:#275efe;
}

@media (max-width: 1124px) and (min-width: 0px) { 
section{
	width:98%;
	
}

.wrapper{
	width:95%;
}

.mini_wrapper{
    width:90%;
	
}
[class*="col-"] {
	width:100%;
}
#cursor {
  display:none;
}
.header_icons{
    display:none;
}

.nav_icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_nav{
    position:relative;
    float:left;
    width:100%;
    margin-top:25px;
    max-height:80vh;
    overflow: auto;
    display:none;
}

.header_nav_open{
    display:block;
}

.header_nav ul li{
    width:100%;
    text-align:right;
}

.header_nav ul li a{
    display: inline-block;
    line-height:40px;
    padding:0px 20px;
    letter-spacing: 0.03em;
    color:#2a2d33;
    border-right:2px solid #275efe;
    margin-top:5px;
}


.header_nav ul li ul{
    visibility: visible;
    opacity:1;
    position:relative;
    top:0px;
    left:auto;
    margin-left:0px;
    width:auto;
    padding:0px;
    font-size: 0.9em;
    border-radius: 0px;
    overflow: hidden;
	background:#275efe;
    -webkit-box-shadow: 3px 3px 12px 3px rgba(0,0,0,0.05); 
    box-shadow: 3px 3px 12px 3px rgba(0,0,0,0.05);
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}


.header_nav ul li ul li a{ 
    float:left;
    width:100%;
    text-align:right;
    padding:8px 20px;
    line-height:1.7em;
    font-weight:600;
    border-bottom:none;
    color:#fff;
}


.header_nav ul li ul li a:hover{
    padding:8px 25px;
    color:rgba(255,255,255,0.8);
}

.header_nav ul li:hover > ul{
    top:0px;
    opacity: 1;
    visibility: visible;
}
.hero_slider_holder{
    height:65vh;
    width: 100%;
}

.hero-slider .swiper-slide{
    height:65vh;
}


.hero_slider_title{
    font-size:2em;
}

.hero_slider_subtitle{
    font-size:1.1em;
}

.page_panel{
	display:none;
}
.article_grid{
    width:100%;
    text-align:left;
    position:relative;
}
.show_more{
    padding-top:20px;
	text-align:center;
}
.show_more a{
	margin-top:10px;
}

.mainfooter{
    text-align:center;
}

.mainfooter ul{
    width:100%;
}

.mainfooter ul li{
    display:inline-block;
    float:none;
}

.mainfooter ul li a{
    margin:0px 0px 0px 0px;
    padding:0px 10px;
}

.footer_social{
    width:100%;
    padding-top:45px;
}

.footer_social a{
    margin-left:0px;
    margin:0px 10px;
}

.copyrights div{
    width:100%;
}
.city_block{
    width:100%;
    margin-bottom:25px;
    padding:25px 0px;
}
.candidates_grid .vouleftes_item{
    width:100%;
    margin-bottom:25px;
}
}