@import url(./fonts.css);
/*- RESET ----------------------------------- */

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,sub,sup,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,figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display: block; }
body { line-height: 1; }
ol,ul { list-style: none; }
blockquote,q { quotes: none; }
blockquote:before,blockquote:after,
q:before,q:after { content: ''; content: none; }
:focus { outline: none; }
ins { text-decoration: none; }
del { text-decoration: line-through; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; }
* { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;}

/*- TYPOGRAPHY ----------------------------------- */
body {
  font-family: 'Open Sans', serif;
  color: #1A2E38;
  -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5 {
  font-family: 'Open Sans', serif;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 5px;
}
h1 {
  font-size: 36px;
  line-height: 50px;
}
h2, h3, h4, h5 {
  font-size: 20px;
  line-height: 24px;
  color: #011722;
}
p {
  font-family: 'Open Sans', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 35px;
}
a, a:visited, a:active {
  color: #011722;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
}
a:hover {
  color: #263238;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
}
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
article.post ul, article.post ol {
  font-size: 20px;
  margin: 0 0 35px 40px;
}
article.post ul {
  list-style: disc;
}
article.post ol {
  list-style: decimal;
}
article.post li {
  line-height: 30px;
}
article.post li a {
  color: #1b68ac;
}
article.post li a:hover {
  text-decoration: underline;
}
article.post p a {
  color: #1b68ac;
  text-decoration: none;
}
article.post p a:hover {
  text-decoration: underline;
}
article.post blockquote {
  color: #606970;
  font-style: italic;
  font-size: 24px;
  line-height: 36px;
  padding: 0 20px 0 36px;
  margin-bottom: 35px;
  border-left: 4px solid #CCCCCC;
}

article table {
  width: 100%;
  font-size: 20px;
  margin-bottom: 40px;
  display: block;
  overflow-x: auto;
}
article table th, article table td {
  padding: 15px;
}

article table th {
  background-color: #1683fa;
  color: #ffffff;
  vertical-align: middle;
}

tr:nth-child(even) {background-color: #f2f2f2;}

/*- BUTTONS ----------------------------------*/
.social-share {
	text-align:right;
}

.social-share a {
  text-decoration: none;
}

.button {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  height: 44px;
  padding: 0 15px;
  border: 0;
  font-family: "freight-sans-pro","Myriad Pro","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  /* -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  box-shadow: 0 1px 1px rgba(0,0,0,0.1); */
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  -webkit-transition: background-color .25s ease;
  -moz-transition: background-color .25s ease;
  -ms-transition: background-color .25s ease;
  -o-transition: background-color .25s ease;
  transition: background-color .25s ease;
  vertical-align: bottom;
  color: #FFFFFF !important;
  background-color: #00ACED;
  position: relative;
  /*left: 50%;
  margin-left: -78px;*/
}
.button:hover {
  background-color: #00A5E3;
  color: #F5F5F5;
}
.button:before {
  display: block;
  content: '';
  float: left;
  height: 19px;
  width: 23px;
  background: url('../img/twitter-bird.png') no-repeat center center;
  position: relative;
  top: 50%;
  margin: -9px 10px 0 0;
}

.button.facebook-button {
  background-color: #3b5998;
  margin-left: 15px;
}

.button.facebook-button:hover {
  background-color: #344e86;
  color: #F5F5F5;
}
.button.facebook-button:before {
  display: block;
  content: '';
  float: left;
  height: 19px;
  width: 23px;
  background: url('../img/facebook-logo.png') no-repeat center center;
  position: relative;
  top: 50%;
  margin: -9px 10px 0 0;
}

/*- LAYOUT ----------------------------------- */
.wrap {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.wrap.post {
  padding: 0 120px;
  max-width: 960px;
  width: 100%;
}

/* .wrap.post p strong {
  margin-bottom: -40px;
} */


.wrap.post img {
	max-width:720px;
	margin: auto;
    display: block;
}
.resize {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 80px;
  width: 80px;
  background: url('../img/resize.png');
}

.wrap .koofr-logo-center {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  /* width: 33px;
  height: 33px; */
  margin: auto;
  top: 27px;
  width: 200px;
}

.wrap .koofr-logo-center a {
  display: inline-block;
  /* width: 33px;
  height: 33px; */
}

.wrap .koofr-logo-center h1 {
  font-size: 28px;
  line-height: 33px;
  text-transform: capitalize;
}

/*- HEADER ----------------------------------- */
header.site-header {
  padding: 20px 0;
  /* border-bottom: 1px solid #EEEEEE; */

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: white;
	height: 86px;
	z-index: 11;
	padding-top: 26px;
}

header.site-header.site-header-border {
  border-bottom: 1px solid #f4f5f5;
}

header.site-header a.menu {
  display: none;
}
header.site-header hgroup {
  display: flex;
  align-items: baseline;
}

header.site-header hgroup a {
  display: flex;
}

header.site-header hgroup h1, header.site-header nav ul {
  font-family: 'Open Sans', sans-serif;
}
header.site-header hgroup {
  margin-top: -3px;
  float: left;
  position: relative;
}
header.site-header hgroup a span {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  height: 32px;
  margin-left: 5px;
}
header.site-header hgroup a.header-blog-link {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  height: 32px;
  margin-left: 5px;
  color: #011723;
  position: absolute;
  right: -100px;
}
header.site-header hgroup a span {
  color: #555;
}
header.site-header hgroup a span:hover {
  color: #555;
}
header.site-header nav {
  float: right;
  display: block;
}
header.site-header nav ul {
  display: flex;
  align-items: center;
  margin-top: -6px;
}
header.site-header nav ul li {
  font-size: 15px;
  display: inline;
  font-weight: 600;
  margin-left: 15px;
  color: #011722;
}
header.site-header nav ul li a {
  color: #010101;
}

header.site-header nav ul li.twitter-icon {
  margin-left: 20px;
}

header.site-header nav ul li.create-account-button {
  width: 131px;
  margin-left: 35px;
}

header.site-header nav ul li.create-account-button a {
  display: block;
  background-color: #1683fa;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  padding: 12px 15px;
}
header.site-header nav ul li a:hover,
header.site-header nav ul li a.active {
  color: #010101;
}
header.site-header nav ul li.create-account-button a:hover,
header.site-header nav ul li.create-account-button a:active
 {
   background-color: #0576f1;
  color: #fff;
}
header.site-header nav ul li a.icon-item {
  display: flex;
  align-items: center;
}
header.site-header nav ul li a.icon-item span{
  display: none;
  margin-left: 15px;
}
header .header-image {
  /* max-width: 28px;
  max-height: 28px; */
}

/*- ARTICLE ----------------------------------- */
section.article {
  position: relative;
  margin-bottom: 160px;
  margin-top: 64px;
}
section.archive {
  margin-top: 114px;
}
section.article .posts-title {
  font-size: 30px;
  margin-top: 130px;
}
section.article .posts-description {
  font-size: 18px;
  line-height: 30px;
  margin-top: 22px;
}
section.archive ol.post-list {
  margin-top: 25px;
  margin-left: 0;
}
section.archive ol.post-list li {
  list-style-type: none;
}

section.article .post-list li {
  border-bottom: 1px solid #d4d6d7;
  margin-bottom: 10px;
}

section.article .post-list .title {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}

section.article .post-list .post-link {
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  color: #011722;
  padding-bottom: 25px;
  display: block;
}

section.article .post-list .post-link div {
  color: #011722;
}
section.article .post-list .post-link span {
  font-size: 14px;
  font-weight: 600;
  color: #1A2E38;
}

section.article .show-link {
  display: block;
  width: 120px;
  background-color: #1683fa;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 44px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 150px;
  margin-left: auto;
}
section.article img.loading {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 250px;
  left: 50%;
  margin-left: -12px;
  z-index: 10;
}
section.article div.overlay {
  background-color: #263238;
  width: 100%;
  height: 430px;
  border-bottom: 1px solid #DDDDDD;
  position: absolute;
  top: 0;
}
section.article div.featured-image {
  vertical-align: middle;
  height: 430px;
  width: 100%;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  z-index: -1;
}
section.article article.post header.post-header {
  background-color: rgba(0,0,0,0.4);
  height: 430px;
  position: relative;
  margin-bottom: 35px;
}
section.article article.post header.post-header hgroup {
  color: #FFFFFF;
  position: absolute;
  bottom: 35px;
  /*width: 100%;*/
  padding-left:20px;
  padding-right:20px;
}
section.article article.post header.post-header hgroup span {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #606970;
  margin-bottom: 15px;
}

section.article article.post header.post-header hgroup .meta-row {
  width: 100%;
  border-bottom: 1px solid #494E50;
  padding-bottom: 7px;

}
section.article article.post header.post-header hgroup span a {
  text-decoration: none;
}
section.article article.post header.post-header hgroup h1 {
  margin-bottom: 15px;
  letter-spacing: -1px;
}
section.article article.post header.post-header hgroup p.lead {
  font-size: 24px;
  font-style: italic;
  line-height: 36px;
  margin-bottom: 0;
}
section.article article.post figure {
  margin: 35px 0;
}
section.article article.post figure figcaption {
  font-size: 12px;
  font-style: italic;
}
section.article article.post figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
section.article article.post p.meta {
  color: #011722;
  font-size: 16px;
  font-weight: 600;
}
section.article article.post p.meta a {
  color: #1b68ac;
  text-decoration: none;
}
section.article article.post p.meta a:hover {
  color: #0E395F;
  text-decoration: none;
}
section.article article.post .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px; height: 0; overflow: hidden;
  margin-bottom: 35px;
}

section.article article.post .video-container iframe,
section.article article.post .video-container object,
section.article article.post .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.article article.post code {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 75%;
    line-height: 130%;
    white-space: pre;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -o-pre-wrap;
    background: #a5a5a5;
	display: block;
    padding: 0.5em 1em;
    border: 1px solid #bebab0;
}

section.article .previous-posts {
  margin-top: 130px;
  list-style: none;
  margin-left: 0;
  margin-bottom: 30px;
}

section.article .previous-posts li {
  border-bottom: 1px solid #d4d6d7;
  margin-bottom: 10px;
}

section.article .previous-posts .title {
  font-weight: 700;
  font-size: 30px;
  color: #011722;
  text-align: center;
  margin-bottom: 50px;
}

section.article .previous-posts .post-link {
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  color: #011722;
  padding-bottom: 25px;
  display: block;
}

section.article .previous-posts .post-link div {
  color: #011722;
}
section.article .previous-posts .post-link span {
  font-size: 14px;
  font-weight: 600;
  color: #1A2E38;
}

section.article .show-link {
  display: block;
  width: 120px;
  background-color: #1683fa;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 44px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 150px;
  margin-left: auto;
}

section.article .tags-container {
  max-width: 720px;
  margin: 133px auto 150px;
  color: #011722;
}
section.article .tags-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 30px;
}
section.article .tags-items {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid #d4d6d7;
  border-bottom: 1px solid #d4d6d7;
  padding: 25px 0 0;
  justify-content: center;
}
section.article .tags-items a {
  color: #1b68ac;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 14px;
  margin-left: 10px;
  margin-right: 10px;
}

section.article .tags-items a:hover {
  color: #0E395F;
}

section nav.pagination {
	text-align:center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
}

section nav.pagination .pagination-link-container {
	display: flex;
  gap: 20px;
  justify-content: flex-end;
}

section nav.pagination a {
  display: inline-block;
  padding: 15px 20px;
  background-color: #1683fa;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  width: 130px;
  /* width: 100%; */
}

/*- FOOTER ----------------------------------- */
footer {
  background-color: #eafbff;
  padding: 41px 0;
  color: #1A2E38;
  min-height: 293px;
}

footer aside {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

/* footer aside > :first-child {
  width: 10%;
  margin-right: 30px;
}

footer aside > :nth-child(2) {
  width: 40%;
  margin-right: 30px;
}

footer aside > :nth-child(3) {
  width: 15%;
} */

footer .items {
  display: flex;
  flex-wrap: wrap;
}

/* footer ol.previous-posts div.items li {
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 0 3px;
  font-size: 14px;
}

footer .items a:hover {
  color: #011722;
} */

footer .footer-link {
  font-size: 14px;
}

footer .footer-link:hover {
  color: #011722;
}

footer .column-1 {
  max-width: 355px;
  width: 100%;
}

footer .column-2 {
  margin-left: auto;
  margin-right: 19px;
}

footer .column-2 .column-items {
  display: flex;
  flex-direction: column;
  /* height: 112px; */
}

footer p.column-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #011722;
  margin-bottom: 12px;
}

footer p.column-item a {
  font-size: 18px;
  color: #011722;
  text-decoration: underline;
}


footer p.column-item {
  margin-bottom: 7px;
  margin-right: 80px;
  flex: 1;
}

footer p.category {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #011722;
  /* text-transform: uppercase; */
  border-bottom: 1px solid rgba(255,255,255,.3);
  margin-bottom: 35px;
}
footer ol.previous-posts li {
  line-height: 30px;
  margin-bottom: 15px;
}
footer ol.previous-posts li:after {
  content: '';
  display: table;
  clear: both;
}
footer ol.previous-posts li h2 {
  float: left;
  max-width: 600px;
}
footer ol.previous-posts li h2.category-item {
  font-weight: 400;
}
footer ol.previous-posts li h2 a {
  color: #011722;
}
footer ol.previous-posts li h2 a:hover {
  color: #011722;
}
footer ol.previous-posts li span.date {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #011722;
  float: right;
  text-align: right;
}

footer .copyright {
  font-size: 14px;
}

footer .copyright .copyright-title {
  font-weight: 600;
}

footer .column-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* height: 150px; */
}


footer .social-container {
  display: flex;
  flex-direction: column;
  margin-top: 3px;
}

footer .social {
  display: flex;
  list-style: none;
  margin: 0 0 31px 0;
  padding: 0;
  align-self: flex-end;
  flex-shrink: 0;
}

footer .social a {
  display: inline-block;
}

footer .social li {
  display: inline;
  margin: 0 0 0 15px;
  padding: 0;

}

footer .social-fb a {
  background-image: url("../img/social-facebook.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
footer .social-twitter a {
  background-image: url("../img/social-twitter.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
footer .social-linkedin a {
  background-image: url("../img/social-linkedin.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
footer .social-reddit a {
  background-image: url("../img/social-reddit.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
footer .social-youtube a {
  background-image: url("../img/social-youtube.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}


div.sub-footer {
	padding-top:20px;
}
div.sub-footer p {
  font-size: 11px;
}

/*- MEDIA QUERIES ----------------------------------- */
@media only screen and (max-width : 1360px) {

  header .wrap hgroup {
    margin-left: 25px;
  }

  header .wrap nav {
    margin-right: 25px;
  }
  footer aside {
    margin: 0 25px;
  }
}

@media only screen and (max-width : 1160px) {
  .wrap .koofr-logo-center {
    left: -90px;
  }
}


@media only screen and (max-width : 960px) {
  header .wrap hgroup {
    margin-left: 0;
  }
  .wrap {
    width: 100%;
  }
  .wrap .koofr-logo-center {
    left: -200px;
  }

  .wrap.post {
    padding: 0 7%;
  }
  .wrap.post img {
	max-width:100%;
	}

  header.site-header {
    padding: 20px 25px;
    padding-top: 25px;
  }

  section.article {
    margin-bottom: 90px;
  }

  section nav.pagination {
    padding: 0 7%;
  }

  section.article .show-link {
    margin-bottom: 0;
  }

  footer {
    min-height: 0;
  }

  footer ol.previous-posts li h2, footer ol.previous-posts li span.date {
    float: none;
  }

  footer aside {
    /* flex-direction: column; */
  }
  footer .column {
    margin: 0;
  }

  footer .column1, .column-2 {
    width: 50%;
  }



  footer .social {
    align-self: center;
  }
  footer .copyright {
    align-self: center;
  }
}
@media only screen and (max-width : 830px) {
  .wrap .koofr-logo-center {
		display:none;
  }
}

@media only screen and (max-width : 755px) {
  footer .column-items {
    display: block;
  }
}

@media only screen and (max-width : 680px) {
  .wrap .koofr-logo-center {
		display:none;
  }

  section.article img.loading {
    top: 10px !important;
    left: inherit;
    right: 6%;
  }
  section.article {
    margin-bottom: 90px;
  }
  section.article article.post header.post-header hgroup .meta-row {
    margin-top: 35px;
  }
  section.article div.overlay {
    background-color: #263238;
    width: 100%;
    height: 250px;
    border-bottom: 1px solid #DDDDDD;
    position: absolute;
    top: 0;
  }
  section.article div.featured-image, section.article article.post header.post-header {
    min-height: 250px;
    height: auto;
  }
  section.article article.post header.post-header hgroup {
    position: static;
    padding: 20px 20px;
  }
  article.post header.post-header hgroup h1 {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  article.post header.post-header hgroup p.category {
    font-size: 12px !important;
  }
  article.post p, article.post ul, article.post ol {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 27px;
  }
  article.post ul, article.post ol {
    margin-left: 30px;
  }
  article.post li {
    line-height: 24px !important;
  }
  article.post p.lead, article.post blockquote {
    font-size: 20px !important;
  }
  article.post blockquote {
    padding-left: 20px;
    line-height: 28px;
  }
  article table {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  header.site-header {
    min-height: 59px;
  }
  header.site-header hgroup {
    float: none;
    position: absolute;
    left: 7%;
  }
  header.site-header a.menu {
    display: block;
    height: 16px;
    width: 16px;
    position: absolute;
    right: 7%;
    float: right;
    top: 35px;
  }
  header.site-header a.menu img {
    height: 16px;
    width: 16px;
  }
  header.site-header nav {
    display: none;
    float: none;
    width: 100%;
	background-color: white;
    padding-left: 20px;
    padding-right: 20px;
  }
  header.site-header nav:before {
    content: '';
    display: table;
    clear: both;
  }
  header.site-header nav ul {
    display: block;
    padding: 45px 0 10px 0;
    margin-top: 0;
  }
  header.site-header nav ul li {
    display: block;
    font-size: 14px;
    margin-left: 0;
    border-top: 1px solid #DDDDDD;
  }
  header.site-header nav ul li.twitter-icon {
    margin-left: 0;
  }

  header.site-header nav ul li.create-account-button {
    margin-top: 20px;
    border: none;
    margin-left: 0;
  }

  header.site-header nav ul li span.follow {
    display: none;
  }
  header.site-header nav ul li a {
    color: #263238;
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  header.site-header nav ul li a:active {
    /* background-color: #62A104; */
    /* color: #FFFFFF; */
  }
  header.site-header nav ul li a.icon-item span{
    display: block;
  }

  header .wrap hgroup {
    margin-left: 0;
    margin-top: -5px;
  }
  .sub-footer p {
    line-height: 145%;
    margin-top: 10px;
  }

  footer .column-items {
    display: block;
  }


  footer aside {
    display: flex;
    flex-wrap: wrap;
    /* padding: 0 7%; */
    /* justify-content: center; */
  }

  footer aside > :first-child {
    width: 50%;
  }
  footer .column-1 {
    max-width: 250px;
  }

  footer aside > :nth-child(2) {
    width: 50%;
  }

  footer aside > :nth-child(3) {
    margin-top: 25px;
    width: 100%;
  }
}

@media only screen and (max-width : 480px) {

	.wrap .koofr-logo-center {
		display:none;
  }

  section nav.pagination .pagination-link-container {
    flex-direction: column;
  }

  footer aside.columns {
    display: flex;
  }

  footer .column-2 {
    margin-top: 20px;
  }

  footer aside > :first-child {
    width: 170px;
  }

  footer aside > :nth-child(2) {
    width: 40%;
    margin-top: 0;
  }

  footer aside > :nth-child(3) {
    margin-top: 25px;
    width: 100%;
  }


}


@media only screen and (max-width : 350px) {

	.wrap .koofr-logo-center {
		display:none;
  }

  section nav.pagination .pagination-link-container {
    flex-direction: column;
  }

  footer aside.columns {
    display: block;
  }

  footer .column-2 {
    margin-top: 20px;
  }

  footer aside > :first-child {
    width: 100%;
  }

  footer aside > :nth-child(2) {
    width: 100%;
    margin-top: 45px;
  }

  footer aside > :nth-child(3) {
    margin-top: 25px;
    width: 100%;
  }

  footer .column-items {
    height: auto;
  }

  footer .column-2 .column-items {
    height: auto;
  }


}

