body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1230px;
  margin: 0 auto;
  padding: 5% 0;
}

.copywriting {
  margin-top: 2%;
  line-height: 2rem;
}
.copywriting ul, .copywriting ol {
  padding-left: 20px;
}
.copywriting a:hover {
  color: #fe9c97;
}

/* Banner ===================================================================== */
.banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: left bottom;
  height: 200px;
  opacity: 0;
  transition: opacity 5s ease, height 2s ease;
}
.banner.active {
  height: 385px;
  opacity: 1;
}
@media (max-width: 576px) {
  .banner {
    background-position: center top;
  }
}
.banner .banner-pic {
  position: absolute;
  left: 13%;
  top: 50%;
}
@media (max-width: 576px) {
  .banner .banner-pic {
    width: 250px;
    left: 17%;
    top: 47%;
  }
}
.banner h1, .banner h2 {
  font-family: "Raleway", sans-serif;
  position: absolute;
  left: 37%;
  top: 100px;
  margin-top: 5%;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px;
}
@media (max-width: 1360px) {
  .banner h1, .banner h2 {
    left: 47%;
    top: 120px;
  }
}
@media (max-width: 992px) {
  .banner h1, .banner h2 {
    left: 51%;
    top: 140px;
  }
}
@media (max-width: 576px) {
  .banner h1, .banner h2 {
    left: 29%;
    top: 87px;
    font-size: 1.8rem;
  }
}

/* Breadcrumbs ======================================================================= */
.breadcrumbs {
  position: relative;
}
.breadcrumbs ul {
  position: absolute;
  left: 33%;
  top: 5px;
}
@media (max-width: 1600px) {
  .breadcrumbs ul {
    left: 37%;
  }
}
@media (max-width: 1360px) {
  .breadcrumbs ul {
    left: 40%;
  }
}
@media (max-width: 1200px) {
  .breadcrumbs ul {
    left: 42%;
  }
}
@media (max-width: 992px) {
  .breadcrumbs ul {
    position: static;
    padding-top: 54px;
  }
}
.breadcrumbs ul li {
  position: relative;
  padding: 5px 0px 5px 30px;
  display: inline-block;
  font-size: 0.75rem;
  color: #528FCF;
}
@media (max-width: 992px) {
  .breadcrumbs ul li:first-child {
    padding-left: 15px;
  }
}
.breadcrumbs ul li a {
  color: #333;
}
.breadcrumbs ul li a:hover {
  color: #7DABDB;
/*  text-decoration: underline;*/
}
.breadcrumbs ul li:before {
  position: absolute;
  bottom: 5px;
  right: -15px;
  content: "";
  transform: skew(-45deg, 0);
  height: 25%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}
.breadcrumbs ul li:after {
  position: absolute;
  top: 6px;
  right: -15px;
  content: "";
  transform: skew(45deg, 0);
  height: 25%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}

/* Pagination ======================================================================= */
.page-number {
  margin: 30px 0;
  text-align: center;
}
.page-number ul {
  list-style-type: none;
}
.page-number li {
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  margin: 0 5px;
  display: inline-block;
  color: #000;
}
.page-number li a:hover {
  color: #fe9c97;
}
.page-number li.page-active {
  background-color: #fe9c97;
  color: #fff;
  border-radius: 100%;
}
.page-number li.page-active a {
  color: #fff;
}

/* Table Style ============================================================ */
.table-scroll {
  overflow-x: auto;
}

.model-table {
  width: 100%;
  min-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.model-table thead tr {
  background: #528FCF;
  color: #fff;
}
.model-table thead tr th {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  font-weight: 600;
}
.model-table thead tr th:first-of-type {
  border-left: none;
}
.model-table th, .model-table td {
  padding: 7px;
  text-align: center;
  font-size: 0.9rem;
}
.model-table td {
  border-left: 1px solid #eee;
}
.model-table tbody tr {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
.model-table tbody tr td:last-child {
  border-right: 1px solid #eee;
}
.model-table tbody tr:nth-of-type(odd) {
  background: #fff;
}
.model-table tbody tr:nth-of-type(even) {
  background: #fafafa;
}

.datatable {
  width: 100%;
  min-width: 800px;
}
.datatable th, .datatable td {
  padding: 7px 10px;
}
.datatable th {
  font-size: 0.9rem;
  color: #fff;
  background: #528FCF;
  border: solid 1px rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
}
.datatable tr:nth-child(even) {
  background: #fafafa;
}
.datatable tr:nth-child(odd) {
  background: #fff;
}
.datatable td {
  font-size: 0.9rem;
  font-weight: 400;
  border-left: solid 1px #eee;
}
.datatable tbody tr:first-child {
  border-top: 1px solid #eee;
}
.datatable tbody tr:last-child {
  border-bottom: 1px solid #eee;
}
.datatable tbody tr td:last-child {
  border-right: 1px solid #eee;
}

/* Hashtag ===================================================================== */
.hashtag-common {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  margin-top: 20px;
}
.hashtag-common-icon {
  position: absolute;
  left: 5px;
  top: 0px;
}
.hashtag-common ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 5px;
  margin-bottom: 5px;
}
.hashtag-common li {
  list-style: none;
}
.hashtag-common li a {
	display: block;
    font-size: 0.9rem;
    background-color: #528FCF;
    border: 1px solid #d9d9d9;
    padding: 5px 7px;
    margin-bottom: 10px;
    border-radius: 3px;
    margin-left: 10px;
    color: #ffffff;
	font-weight: 400;
    transition: all 0.5s;
}
.hashtag-common li a:hover, .hashtag-common li a.selected {
  background-color: #a3a3a3;
}
