* {
  transition: .3s ease-in-out;
  font-family: "Slabo 27px";
}
body {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
  color: #eee;
}
a:hover {
  text-decoration: underline;
}
h1,h2 {
  margin: 0;
}
img {
  max-width: 100%;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 25px;
}
.pre-h {
  font-weight: bold;
  text-align: center;
  color: #fc8063;
}
.space {
  margin: 30px 0;
}
.top-line {
  justify-content: space-around;
  align-items: center;
  display: flex;
  padding: 15px 0;
  background-color: #f6f6f6;
}
.top-line li {
  display: inline-block;
  border-right: 1px solid #e2e2e2;
}
.top-line a, .on-hover {
  padding: 5px 15px;
  font-size: 20px;
  color: #0a4ea1;
}
.on-hover {
  position: relative;
  cursor: pointer;
}
.on-hover:hover .hovered-menu {
  display: block;
}
.hovered-menu {
  display: none;
  position: absolute;
  left: -20px;
  padding-top: 38px;
  background-color: #f6f6f6;
}
.hovered-menu li {
  border-right: none;
}
.hovered-menu a {
  display: inline-block;
  padding: 15px 30px;
}
.logo-inner {
  position: relative;
  text-align: center;
}
.logo-inner span {
  font-size: 20px;
  font-weight: bold;
}
.logo-inner::before,.logo-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200%;
  height: 2px;
  background-color: #fc8063;
}
.logo-inner::before {
  left: 100%;
}
.logo-inner::after {
  right: 100%;
}
.posts {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
.post {
  padding-right: 40px;
  border-right: 1px solid #e2e2e2;
}
.post:first-of-type {
  width: 25%;
}
.post:nth-of-type(2) {
  width: 50%;
}
.post:nth-of-type(2) img {
  display: block;
  width: 50%;
  margin: auto;
}
.post:last-of-type {
  width: 15%;
  padding-right: 0;
  border-right: none;
}
.post h2 {
  text-align: center;
}
.features {
  padding-top: 25px;
}
.f-table {
  margin: auto;
  background-color: #f6f2ef;
}
.f-table td {
  padding: 15px 15px;
  color: #000;
  font-weight: bold;
  font-size: 20px;
}
.f-table tr:nth-child(odd) {
  background-color: #fc8063;
}
.pre-table {
  text-align: center;
}
.video {
  text-align: center;
}
.articles {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.article {
  width: 50%;
  margin: 15px auto 0;
  padding: 25px;
  background-color: #f6f2ef;
  border-top: 1px solid #000;
}
.article:first-child {
  text-align: right;
}
.article:nth-child(2) {
  text-align: center;
}
.subscribe {
  width: 50%;
  margin: 30px auto;
  padding: 70px 50px;
  background-color: #fad97e;
  vertical-align: top;
}
.subscribe .left, .subscribe .right {
  display: inline-block;
  width: 48%;
}
.subscribe .left {
  vertical-align: top;
}
.subscribe .right {
  text-align: right;
}
button[type="submit"] {
  padding: 10px 30px;
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  border: none;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: transparent;
}
footer {
  display: flex;
  justify-content: space-around;
  padding-bottom: 15px;
  font-weight: bold;
  background-color: #4a5058;
  color: #eee;
}
footer .col {
  width: 15%;
}
footer .col-1 {
  width: 30%;
}
footer .col li {
  margin-top: 10px;
}
footer .col a {
  font-size: 20px;
}
footer address {
  display: flex;
  flex-direction: column;
}
address span, address a {
  margin-top: 15px;
}
footer .col-3 {
  margin-top: 15px;
}
.copyright {
  display: inline-block;
  margin-top: 15px;
}
.inner .content {
  width: 60%;
  margin: auto;
  padding-right: 25px;
}
.inner .content a {
  color: #fc8063;
}
.inner .content img {
  display: block;
  max-height: 475px;
  margin: auto;
}
.inner .content h1 {
  text-align: center;
}
.side {
  height: 100%;
  padding-left: 25px;
  border-left: 1px solid #e2e2e2;
}
.side-i {
  margin-top: 15px;
  padding: 10px;
  border: 2px solid #fc8063;
}
.main-form {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: auto;
}
.main-form label {
  margin-top: 15px;
}
.main-form input, .main-form textarea {
  padding: 10px;
  font-size: 20px;
  border: 1px solid #000;
}
.main-form input:hover, .main-form textarea:hover {
  border-color: #fff;
}
.main-form button {
  margin-top: 15px;
  background-color: #fad97e;
}
.web a:hover {
  text-decoration: none;
}
[class^="icon-"], [class*=" icon-"] {
  margin-right: 15px;
  font-size: 35px;
  color: #999;
}
[class^="icon-"]:hover, [class*=" icon-"]:hover {
  color: #000;
}
@media(max-width: 1400px) {
  .logo-inner::before, .logo-inner::after {
    width: 70%;
  }
}
@media(max-width: 1200px) {
  .subscribe {
    width: 85%;
  }
  .inner .content {
    width: 80%;
  }
}
