/*
  Theme name: N2F
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
html, body {
  margin: 0;
}

/* Fix ACF blocs list text wrapping */
.acf-fc-popup ul li a{
  white-space: break-spaces;
}

html {
  margin-top: 0;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 127px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  body {
    padding-top: 94px;
  }
}
*, :before, :after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.icon {
  padding: 15px 10px;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
}
.icon span {
  position: absolute;
  width: 5px;
  border-radius: 20px;
  background: #ff6400;
}
.icon span:nth-child(1) {
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-name: lineM;
  animation-duration: 1.7s;
  height: 27px;
  left: 16px;
  top: 21px;
}
.icon span:nth-child(2) {
  animation-delay: 0.33s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-name: lineM;
  animation-duration: 1.7s;
  height: 26px;
  left: 26px;
  top: 10px;
}
.icon span:nth-child(3) {
  animation-delay: 0.66s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-name: lineM;
  animation-duration: 1.7s;
  height: 20px;
  left: 36px;
  top: 21px;
}
@keyframes lineM {
  0% {
    top: 0;
  }
  50% {
    opacity: 0.6;
    top: 21px;
  }
  100% {
    top: 0;
  }
}

.icon.W span {
  background: white;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 51px;
}

.h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #2c272e;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (max-width: 1024px) {
  .hide-md {
    display: none;
  }
}
