.responsive body {
  min-width: 240px;
}

#resp {
  display: none;
}

@media all and (max-width: 1400px) {
  .section.news .articles {
    height: 430px;
  }
  .section.news .articles .item {
    width: auto;
  }
  .section.news .articles .item .image {
    width: 100px;
    height: 100px;
    margin-right: 10px;
  }
  .section.news .articles .item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section.news .articles .item .perex {
    font-size: 13px;
  }
}

@media all and (max-width: 1200px) {
  .nav .menu {
    padding-left: 20px;
  }
  .nav ul.hmenu li a {
    font-size: 12px;
    padding: 3px 9px 7px 5px;
  }
  
  .section.news .articles {
    height: 330px;
  }
}

@media all and (max-width: 990px) {
  #resp,
  #resp-t {
    display: block;
  }
  #resp-m {
    display: none;
  }

  .nav {
    top: 0;
  }
  
  .section.first .infographic {
    margin-top: 30px;
    text-align: center;
  }
  
  .section.news .articles > .row {
    margin-right: 0;
  }
  .section.news .video {
    margin-left: 0;
    margin: -35px auto 0;
  }
  
  .section.map .map_container {
    padding-top: 70%;
  }
  
  #donate .right {
    padding-left: 15px;
    margin-top: 20px;
  }

  .section.products .brand:not(:last-child) .left {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 800px) {
  .section.goals li {
    display: block;
    margin: 20px auto 0;
  }
}

@media all and (max-width: 768px) {
  .nav .logo a img {
    width: 50px;
  }

  .nav .menu {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nav .socialBtns {
    text-align: center;
    flex: 0 0 83px;
    padding-left: 9px;
    padding-right: 10px;
  }

  .section.partners .partner {
    margin: 4% 0;
  }

  .section.news {
    padding-top: 0;
  }

  .header .slider {
    padding-bottom: 0;
  }

  .header .slide {
    background: none !important;
  }

  .slide__responsive-image {
    display: block;
  }

  .header .slide .container {
    height: auto;
    max-width: 100%;
    padding: 0;
  }

  .header .text {
    position: relative;
  }

  .section.partners .partner--cta {
    height: 150px;
  }

  .section.partners .partner--cta .outer {
    padding: 15px;
  }

  .section.partners .partner--cta .button-section {
    margin-top: 10px;
  }

  .form-navigation {

  }

  .form-navigation ul {
    flex-direction: column;
  }

  .form-navigation a {
    width: 100%;
    text-align: center;
  }
}

@media all and (max-width: 480px) {
  #resp,
  #resp-m {
    display: block;
  }
  #resp-t {
    display: none;
  }
  
  body {
    font-size: 14px;
  }
  
  h2 {
    font-size: 26px;
  }
  .header .text h2 {
    font-size: 26px;
  }
  .header .text h3 {
    font-size: 19px;
  }
  .section .strong {
    font-size: 23px;
  }
  .section.goals li {
    font-size: 14px;
  }
  
  .nav ul.social {
    width: 65px;
  }
  
  .section.news .articles {
    height: 440px;
  }
  .section.news .articles .item .image {
    display: block;
    margin: 0 auto;
    float: none;
    margin-bottom: 10px;
  }
  .section.news .articles .item .perex {
    display: none;
  }
  
  .page.influencers .item {
    margin: 15px 0;
  }

  .section.news .video {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px !important;
  }

  .section.contact .founders {
    padding-bottom: 0;
  }

  .section.contact .founders .item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .bottom .row {
    flex-direction: column;
  }

  .footer .bottom .left {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }

  .footer .bottom .left .copy {
    margin-left: 0;
    margin-top: 10px;
  }

  .footer .bottom .right {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }

  .footer .bottom .right .developed {
    text-align: center;
    margin-top: 20px;
  }
}


/* dynamic width nav */

.responsive .nav .menuContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  z-index: 99;
}

.nav .menu-btn {
  /* border: 1px solid #fff; */
  border-radius: 3px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
  background: none;
  display: none;
  margin: 3px;
  padding: 5px;
  position: relative;
  width: 33px;
}

.nav .menu-btn span {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 3px;
  margin: 3px 1px;
  position: relative;
  -moz-transition: background .2s;
  -o-transition: background .2s;
  -webkit-transition: background .2s;
  transition: background .2s;
}

.responsive .nav .menu-btn {
  display: inline-block;
  background: #000;
}

/* full width hmenu, instead of inline-block */

.responsive .nav .menuContainer {
  display: none;
  float: none;
  opacity: 0;
  text-align: center;
}

.responsive .nav .menuContainer.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center!important;
  -ms-flex-align: center!important;
  align-items: center!important;
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important;
}

.responsive .nav .menuContainer .close {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  opacity: 1;
  font-weight: 100;
  font-size: 30px;
}

.responsive .nav ul.hmenu {
  text-align: center;
}

.responsive .nav ul.hmenu li a {
  font-size: 29px;
}

/* elements on different lines */

.responsive .nav ul.hmenu li,
.hmenu-extra1,
.hmenu-extra2 {
  float: none;
}

/* horizontal margins */

.responsive .nav ul.hmenu > li:first-child,
.responsive .nav ul.hmenu > li:last-child,
.responsive .nav ul.hmenu > li {
  display: block;
}

/* separator */

.responsive .nav ul.hmenu > li:before {
  display: none;
}

/* vertical distance between items */

.responsive .nav ul.hmenu a {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
  text-align: center !important;
  height: auto;
  white-space: normal;
}

.responsive .nav ul.hmenu > li:first-child > a {
  margin-top: 0 !important;
}

.responsive .nav ul.hmenu > li:last-child > a {
  margin-bottom: 0 !important;
}

/* fixes for extended menu */

.responsive .nav .ext,
.responsive .nav ul.hmenu > li > ul,
.responsive .nav ul.hmenu > li > ul > li,
.responsive .nav ul.hmenu > li > ul > li a {
  width: auto !important;
}

/* submenu position on hover */

.responsive .nav ul.hmenu ul {
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  display: none !important;
  position: relative !important;
  visibility: visible !important;
}

.responsive .nav ul.hmenu > li > ul > li:first-child:after {
  display: none;
}

.responsive .nav ul.hmenu ul a {
  padding-left: 4% !important;
}

.responsive .nav ul.hmenu ul ul a {
  padding-left: 6% !important;
}

.responsive .nav ul.hmenu ul ul ul a {
  padding-left: 8% !important;
}

.responsive .nav ul.hmenu ul ul ul ul a {
  padding-left: 10% !important;
}

.responsive .nav ul.hmenu ul ul ul ul ul a {
  padding-left: 12% !important;
}

.responsive .nav ul.hmenu > li > ul {
  padding: 5px;
}

.responsive .nav ul.hmenu > li > ul:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.responsive .content-layout,
.responsive .content-layout-row,
.responsive .layout-cell {
  display: block;
}

.responsive .layout-cell {
  width: auto !important;
  height: auto !important;
  border-right-width: 0 !important;
  border-left-width: 0 !important;
  border-radius: 0 !important;
}

.responsive .content-layout:after,
.responsive .content-layout-row:after,
.responsive .layout-cell:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.responsive .post {
  border-radius: 0;
}

.responsive .footer-inner {
  min-width: 0;
}

.responsive .footer {
  margin-top: 1%;
}

.responsive .responsive-tablet-layout-cell {
  width: 50% !important;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}