body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    background-color:white;
  }

.header {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: center;
  }

#navbar {
    overflow: hidden;
    background-color: #38444d;
  }

#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }

#navbar a:hover {
    background-color: #ddd;
    color: black;
  }

#navbar a.active {
    background-color: #04AA6D;
    color: white;
  }

#contant_table {
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-size: 18px;
}

#contant_table th, #contant_table td {
  text-align: left;
  padding: 10px;
}

#contant_table tr {
  border-bottom: 1px solid #ddd;
}


.content {
    padding: 16px;
  }

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }

.sticky + .content {
    padding-top: 60px;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .modal-content {
    background-color: #04AA6D;
    top: 20%;
    width: 400px;
    position: absolute;
    left: 40%;
    border-radius: 10px;
}


  .close {
    /* some rules */
  }

input[type=text] {
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}


input[type=text]:focus {
  border: 3px solid #555;
}


button {
  min-width: 100px;
  font-family: inherit;
  appearance: none;
  border: 0;
  border-radius: 5px;
  background: #04AA6D;
  color: #fff;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #1d49aa;
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 4px #cbd6ee;
}

.reviews {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 5px;
}
.review {
  padding: 10px;
  border-bottom: 1px solid #eaeaea;
}
.review:last-child {
  border-bottom: none;
}
.review-text {
  font-size: 16px;
  margin-bottom: 5px;
}
.review-author {
  font-size: 14px;
  color: #999;
}

label,
textarea {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

textarea {
  padding: 10px;
  max-width: 100%;
  line-height: 1.5;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 1px #999;
}

label {
  display: block;
  margin-bottom: 10px;
}

.social_link {
  display: flex;
  float: left;

}

.Select {
  height: 30px;
  border: 1px solid #999;
  font-size: 16px;
  background-color: #eee;
  border-radius: 5px;
  box-shadow: 4px 4px #ccc;
  margin-bottom: 20px;
}


.ticket {
  flex: 1;
  margin-left: 30px;
  background-color: rgb(229 235 235);
  border-radius: 15px;
  padding: 30px;
}



* {
  margin: 0;
  box-sizing: border-box;
}
.post-wrap {
   max-width: 1120px;
   margin: 0 auto;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}
.post-item {
   padding: 10px;
}
.post-item-wrap {
   background: #F7F7F2;
   position: relative;
}
.post-item-wrap:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   background: #04AA6D;
   transform: rotate(1deg);
   transform-origin: left bottom;
   transition: .3s ease-in-out;
}
.post-item-wrap:hover:after {
   top: 5px;
   left: 5px;
   transform: rotate(2deg);
}
.post-link {
   text-decoration: none;
   display: block;
   padding: 30px;
}
.post-title {
   color: #33261D;
   margin-bottom: 15px;
   transition: .3s ease-in-out;
}
.post-item-wrap:hover .post-title {
   color: #04AA6D;
}
.post-content {
   color: #A69888;
   font-size: 14px;
}
@media (min-width: 768px) {
   .post-item {
      flex-basis: 50%;
      flex-shrink: 0;
   }
}
@media (min-width: 960px) {
   .post-item {
      flex-basis: 33.333333333%;
   }
}
