* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Quicksand", sans-serif;
  line-height: 24px;
}
b {
  font-weight: 700;
}
a {
  color: #96c12d;
  text-decoration: none;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
}
a:hover {
  color: #333333;
}
.privacy-policy .container {
  max-width: 1170px;
  margin: auto;
  padding: 50px;
}
.privacy-policy .logo img {
  max-width: 180px;
}
.privacy-policy .logo {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.privacy-policy h1 {
  margin-bottom: 15px;
}
.privacy-policy p + p {
  margin-top: 20px;
}
.privacy-policy p + h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin-top: 20px;
}
ul,
ol {
  margin-left: 20px;
}
ul,
ol + p {
  margin-bottom: 20px;
}
ul ::marker,
ol ::marker {
  color: #96c12d;
}
ul li + li,
ol li + li {
  margin-top: 10px;
}
h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
  margin-top: 15px;
}
/*404*/
.not-found-page 
{
  height: 100vh;
  background: url(../images/bg-404.jpg) no-repeat 0 0 / cover;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.not-found-page .btn-theme
{
    max-width: 180px;
    margin: 35px auto auto;
    background: #96c12d;
    color: #ffffff;
    padding: 10px 25px;
    display: inline-block;
    font-weight: 600;
    border-radius: 50px;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
    -webkit-transition: all linear 0.2s;
}
.not-found-page .container
{
    width: 100%;
    text-align: center;
}
.not-found-page .logo {
  text-align: center;
  border: 0px;
  padding: 0px;
}
.not-found-page h1 {
  font-size: 200px;
  color: #96c12d;
  margin-bottom: 15px;
  line-height: 165px;
}
.not-found-page h1 img {
  max-width: 140px;
  margin: 0 10px;
  animation: rotate-zero 10s infinite linear;
  -webkit-animation: rotate-zero 10s infinite linear;
}
.not-found-page p {
  margin: 15px 0 0;
  font-size: 20px;
}
.not-found-page h2 {
  text-align: center;
}
.not-found-page .btn-theme {
  max-width: 180px;
  margin: 35px auto auto;
}
.not-found-page .btn-theme i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
@-webkit-keyframes rotate-zero {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-zero {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media (min-width:1199px)
{
    .not-found-page .btn-theme:hover
    {
        background: #79ab1c;
    }
}
@media (max-width: 1199px) {
  .privacy-policy .container {
    padding: 40px;
  }
  .not-found-page h2
  {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .privacy-policy .container {
    padding: 30px;
  }
  .not-found-page h1
  {
    font-size: 95px;
    line-height: 95px;
  }
  .not-found-page p
  {
    font-size: 18px;
  }
  .not-found-page h1 img
  {
    max-width: 70px;
  }
}
@media (max-height:600px) and (orientation:landscape)
{
    .not-found-page
    {
        height: initial;
    }    
}