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

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

/* Banner ===================================================================== */
.banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
	margin-top: 100px;
}
@media (max-width: 576px) {
  .banner {
    background-position: center top;
  }
}
.banner h1, .banner h2 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 2.9rem;
  font-weight: bold;
  text-shadow: 2px 2px 3px black;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 576px) {
  .banner h1, .banner h2 {
    margin-top: 90px;
    font-size: 2rem;
  }
}

/* Page Title ===================================================================== */
.page-title {
  max-width: 1000px;
  font-size: 18px;
  padding: 50px 0 50px 0;
  margin: 0 auto;
  text-align: center;
}
.page-title h1 {
  margin-bottom: 50px;
  position: relative;
  font-weight: 400;
  font-size: 35px;
  text-align: center;
}
.page-title h1:after {
  content: ". . .";
  display: block;
  color: #04caf7;
  font-size: 3rem;
  position: absolute;
  bottom: -35px;
  left: calc(50% - 25px);
}
.page-title h1 span {
  color: #04caf7;
}
.page-title p {
  font-weight: 200;
  font-size: 1rem;
  line-height: 2rem;
}

/* Breadcrumbs ======================================================================= */
.breadcrumbs {
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
}
.breadcrumbs ul {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}
.breadcrumbs ul li {
  position: relative;
  padding: 5px 0px 5px 30px;
  display: inline-block;
  font-size: 0.75rem;
  color: #eebc07;
}
.breadcrumbs ul li a {
  color: #333;
}
.breadcrumbs ul li a:hover {
  color: #106bb1;
  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;
}
.breadcrumbs ul li:last-child::before, .breadcrumbs ul li:last-child::after {
  display: none;
}

/* Pagination ======================================================================= */
.page-number {
  margin: 30px 0;
  text-align: center;
}
.page-number ul {
  list-style-type: none;
}
.page-number a {
  width: 30px;
  height: 30px;
  line-height: 22px;
  text-align: center;
  margin: auto 5px;
  display: inline-block;
  color: #000;
}
.page-number a li {
  position: relative;
}
.page-number a:hover {
  color: #04caf7;
}
.page-number a.page-active {
  border: 3px solid #04caf7;
  border-radius: 100%;
}
.page-number a.page-prev, .page-number a.page-next {
  border-radius: 100%;
  color: #fff;
  background-color: #04caf7;
}
.page-number a.page-prev li img {
  width: 15px;
  height: 15px;
  margin: 5px 0 0 2px;
}
.page-number a.page-next li img {
  width: 15px;
  height: 15px;
  margin: 5px 0 0 2px;
}

/* 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: linear-gradient(45deg, #106bb1, #2a91e1);
  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: linear-gradient(45deg, #106bb1, #2a91e1);
  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: #e7e7e7;
  border: 1px solid #d9d9d9;
  padding: 5px 7px;
  margin-bottom: 10px;
  border-radius: 3px;
  margin-left: 10px;
  color: #8b8b8b;
  transition: all 0.5s;
}
.hashtag-common li a:hover, .hashtag-common li a.selected {
  color: #fff;
  font-weight: bold;
  background-color: #a3a3a3;
}

.mail_btn{
	max-width: 320px;
    text-align: center;
	margin: 0px auto 16px auto;
}
.mail_btn a{
	width: 100%;
    min-height: 50px;
    margin: auto;
    color: #fff!important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mail_btn a::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #106bb1;
    transform: skew(-20deg);
    transition: all 0.5s;
}
.mail_btn a:hover::before {
    background: #000;
    transform: skew(0deg);
}
.mail_btn a img{
	width: 26px;
	height: 26px;
	margin-right: 10px;
}
@media (max-width: 430px) {
	.agent_warp p {text-align: left!important;}
}

