* {
  box-sizing: border-box;
}

body {
  margin: 0px;
}

.nav {
  height: 50px;
  width: 100%;
  background-color: #fff;
  position: relative;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  margin: 10px 3px;
  text-decoration: none;
  color: #000;
  text-align: center;
}

.nav > .nav-links > a:hover {
  border-bottom: solid 2px black;
}

.nav > #nav-check {
  display: none;
}

button.small{
  display: none;
}

@media (max-width:600px) {

  .logo {
    margin-left: 20px;
  }

  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #000;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #fff;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 65px;
    left: 0px;
    z-index: 3;
  }
  .nav > .nav-links > a {
    display: block;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    width: 100%;
    margin: 0;
    padding: 14px 0;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: 240px;
    overflow-y: auto;
  }
  .main-post__content {
    width: 80%;
    left: 13%;
  }
  h1 {
    font-size: 44pt;
  }
  button.big{
    display: none;
  }
  button.small{
    display: block;
  }
  button.big:active, button.small:active{
    background-color: #fff !important;
    color: #000 !important;
  }
  button.accordion {
    font-size: 15pt;
    float: left;
  }
  .accordion:after{
    position: relative;
    top: -15px;
  }
  .p1_fix:after{
    top: 6px;
  }
  .expand {
    max-width: 80%;
  }
  .expand .columns img{
    display: none;
  }
  label.phone{
    margin-top: 5px !important;
    margin-bottom:0 !important;
  }
  input.phone, select.phone{
    margin-top: 5px !important;
  }
  .column, .columns{
    width: 100% !important;
    margin: 14% 0 !important;
  }
  .social{
    width: 50% !important;
    margin: 0 !important;
  }
  .social_logo{
    margin: 10px 20px;
  }
  hr{
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: 75vw;
  }
}