﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Noto Sans TC', sans-serif;
  color: #555555;
  background: #e6e6e6;
}

a {
  text-decoration: none;
  color: #555555;
  cursor: pointer;
}

a:hover {
  color: #333;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}
h2 span.en-title{ 
  color: #aeaeae; 
  font-size: 50%; 
  font-weight: normal;
}
.text-right{
  text-align: right;
}
.small, small {
  font-size: 50%;
}
@media screen and (max-width: 768px) {
  h2 span.min-title{
    display: none;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f44336;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #97d193;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .back-to-top{
    bottom: 100px;
  }
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 90px; */
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

#header .logo a span{
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
}
#header .logo{
  text-align: center;
}
#header .logo img {
  padding: 0;
  /* margin: -6px 10px 0 0; */
  max-height: 80px;
}
.heard-top{
  padding: 0.5rem;
}
.heard-top h2{
  /* font-size: 24px; */
  font-weight: 900;
  padding-top: 20px;
  text-align: center;
  color: #333333;
}
.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 1410px) {
  #header .logo a span{
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  #header {
    /* height: 70px; */
  }
  #header .logo img {
    padding: 0;
    max-height: 70px;
  }
  #header .logo{
    flex: none;
  }
}
@media (max-width: 960px) {
  .scrolled-offset {
    margin-top: 72px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar-bg {
  background: #a8132e;
}
.navbar {
  padding: 0;
  margin: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 2.2rem;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar a span{
  color: #b9b5b3;
  font-size: 12px;
}

.btn-login {
  background: #a8002f;
  color: #fff;
  padding: 6px 20px;
  border: 2px solid #a8002f
}
.btn-login:hover {
  color: #a8002f;
  border: 2px solid #a8002f;
  background: #fff;
}
.btn-register {
  background: #e78c04;
  color: #fff;
  padding: 6px 20px;
  border: 2px solid #e78c04;
}
.btn-register:hover {
  color: #e78c04;
  border: 2px solid #e78c04;
  background: #fff;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #151515;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: transparent;
  padding: 10px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
    margin: 0;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    flex-direction: row;
    justify-content:center;
  }
  .navbar a span{ margin-left: .8rem;}
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(0 0 0 / 85%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  /* background-color: #3a0211; */
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 1rem;
  color: #FFF;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #f44336;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #f44336;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: whitesmoke;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #3d392e;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 0;
  background: #000;
  border-top: solid 2px #acacac;
  /*padding-top: 140px;*/
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-title {
  position: absolute;
  left: 25%;
  top: 25%;
  transform: rotate(-4deg);
  -webkit-filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
  display:none;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 7rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  background-image: linear-gradient(180deg,#ffffff 20%,#f3efb3 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.testimonials .testimonial-item h4 {
  font-size: 4rem;
  color: #ddd;
  margin: 0 0 15px 0;
  background-image: linear-gradient(180deg,#ffffff 20%,#f3efb3 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  margin-top: 0;
  position: absolute;
  bottom: 1%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f44336;
}

@media (max-width: 768px) {
  .testimonials {
    background: transparent;
    padding-top: 80px;
  }
  .testimonials .testimonial-item .testimonial-img {
    border-radius: 20px;
  }
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sport
--------------------------------------------------------------*/
.sport {
  background: #fff;
  padding: 375px 0;
  background-position: top;
  background-image: url(/assets/www/images/sport-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 0;
}
.sport .section-title h2{
  color: #fff;
  padding-bottom: 0;
  display: none;
}
.sport .section-title{
  padding-bottom: 0;
}
.sport .member .member-img {
  position: relative;
  overflow: hidden;
}

.sport .member .member-info {
  text-align: center;
  position: absolute;
  bottom: 10%;
  right: 0;
}
.sport .member .member-info-r{
  right: auto;
  left: 0;
}
.sport .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  color: #fff;
  font-size: 30px;
  text-shadow: 0 0 7px #a8132e;
}

.sport .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 7px rgb(0 0 0 / 48%);
}

.sport .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}
.button-red{
  background: url(/assets/www/images/button-red.png) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 200px;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 400 !important;
  text-shadow: none;
  margin: 0 -15px;
}
.product-item p {
  margin: 0 16px;
}

@media screen and (min-width: 1921px){
  .sport{
    padding: 200px 0;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .sport{
    padding: 120px 0 0 0;
    background-size: cover !important;
  }
  .sport .member .member-img{
    margin-bottom: -11px;
    z-index: -1;
    max-width: 190px;
  }
  .sport .member {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 0px 0px 12px;
    background-size: cover;
  }
  .sport .member .member-info{
    padding: 12px;
  }
  .sport .container{
    padding-bottom: 60px;
  }
  .sport .section-title h2 {
    color: #3d392e;
  }
  .sport .member {
    margin-bottom: 20px;
    overflow: hidden;
  }

  .sport .member .member-info{
    clear: both;
    position: inherit;
    padding: 12px;
  }
  .sport .member .member-info h4 {
    font-size: 22px;
    text-shadow: 0 0 7px #000000;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: contents;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
.faq .faq-list .btn {
  display: initial;
  padding: 6px 24px;
  font-size: 1rem;
}
.faq .faq-list img{
  position: relative;
}
.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 1rem 3rem;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #f44336;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq.news .container{
  /* max-width: 80%; */
}
@media (max-width: 768px) {
  .faq .faq-list p {
    padding: 1rem 1rem;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("/assets/www/images/footer-bg.png") #000 repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  /* content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1; */
}
#footer ul{margin: 30px 0 0 0;}

#footer ul li{
  list-style: none;
  margin: 10px;
  display: inline-block;
}
#footer a {color: #fff;}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .footer-logo img {
  height: 80px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 1rem;
  margin-top: 30px;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f44336;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #5ab652;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}


/*--------------------------------------------------------------
# SEO
--------------------------------------------------------------*/
.product-item h3{
  font-size: 1.2rem;
  font-weight: 600;
}

section.seo {
  border-top: 3px solid #eee;
  background: #e5e5e5;
  padding: 60px 0;
}
section.seo .container{
  padding-bottom: 0;
}
/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/
.modal-header {
  background: #a8002f;
  color: #fff;
  font-weight: 900;
}
.modal-header .close {
  color: #FFF;
  font-weight: 400;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.login_form .form-control {
  font-size: 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid;
  background: 0 0;
}
.login_form label {
  margin: 10px 6px;
  font-size: 18px;
  color: #a8002f;
}

#notice li{
  margin-bottom: 12px;
  border-bottom: 1px dotted #d5d5d5;
}
/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
section#register {
  margin-top: 10%;
  min-height: 60vh;
  padding: 60px 40px;
}
.gamebreadcrumbs{padding: 40px 0;}
.gamebreadcrumbs .active{
  color: #f44336;
  font-weight: 600;
}

/*-----------------------------------
    ft_menu
------------------------------------*/

.ft-navbar {
  background: rgb(242,246,248);
  /* border-top: solid 1px #c5c5c5; */
  padding: 2px 0 18px 0;
  box-shadow: 0px -6px 8px 0px rgb(181 198 208 / 41%);
}

.ft-navbar ul {
  margin: auto;
  height: 40px;
}
.ft-navbar ul li {
  list-style: none;
  padding: 6px 10px;
  text-align: center;
  min-width: 46px;
}
.ft-link-home {
  position: relative;
  bottom: 17px;
  width: 120px;
  height: 54px;
  z-index: 10;
  text-align: center;
}
.ft-link-home .home {
  text-align: center;
  margin: auto -7.7px;
}
.ft-link-home .home img{
  margin: 4px 0px;
}
.ft-link-home .home div{
  font-size: .6em;
  line-height: 2.4;
  width: 50px;
  margin: -26px 14px;
}
a.ft-link {
  line-height: 0;
  font-size: .6em;
}
.ft-link img {
  margin-bottom: 4px;
}
a.ft-link div{
  margin: 4px auto;
    text-align: center;
}

/*---------------------
    Blog
-----------------------*/
.blog {
  padding: 40px 0;
}
.blog-mt{
  margin-top: 12em;
}
.blog .section-title {
  text-align: center;
  padding-bottom: 0;
}
.blog__item {
  border: 1px solid #222222;
  /* padding: 40px 48px 35px 30px; */
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.blog__item_body {
  position: relative;
  z-index: 1;
  padding: 40px 48px 35px 30px;
}
.blog__item::before {
  content: " ";
  background: #000;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  opacity: .8;
}
.blog__item:hover.blog__item::before{
  opacity: .5;
}
.blog__item:hover {
  border: 1px solid #a8132e !important;
  background-repeat: no-repeat;
  background: url(/assets/www/img/blog/blog-2.jpg) no-repeat;
  background-size: cover;
}
.blog_item_img {
  display: flex;
  align-content: center;
  align-items: stretch;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.blog_item_img:before {
  content: " ";
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  opacity: .6;
}
.blog__item:hover ul li {
  color: #a8132e;
}
.blog__item:hover p {
  color: #ffffff;
}
.blog__item h4 {
  color: #333;
  font-weight: 700;
  line-height: 31px;
  margin-bottom: 18px;
}
.blog__item ul {
  margin-bottom: 20px;
}
.blog__item ul li {
  color: #777777;
  list-style: none;
  font-size: 14px;
  font-weight: 300;
  margin-right: 25px;
  margin-left: -32px;
  position: relative;
  display: inline-block;
}
.blog__item ul li:after {
  position: absolute;
  right: -16px;
  top: 0px;
  content: "/";
}
.blog__item ul li:last-child {
  margin-right: 0;
}
.blog__item ul li:last-child:after {
  display: none;
}
.blog__item p {
  font-weight: 300;
  line-height: 29px;
  margin-bottom: 22px;
}
.blog__item a {
  font-size: 16px;
  color: #e6e6e6;
  background: #a8132e;
  padding: 6px 10px;
}
.blog__item a span {
  font-size: 16px;
  color: #a8132e;
  opacity: 0.5;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

/*---------------------
  Blog Details Hero
-----------------------*/
.blog-hero {
  padding: 240px 0 60px;
  background: url(/assets/www/images/blog/blog-hero.jpg);
}

.blog__hero__text {
  text-align: center;
}
.blog__hero__text h2 {
  color: #ffffff;
  font-weight: 700;
  line-height: 47px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog__hero__text ul li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  position: relative;
}
.blog__hero__text ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "/";
}
.blog__hero__text ul li:last-child {
  margin-right: 0;
}
.blog__hero__text ul li:last-child:after {
  display: none;
}
.blog__hero__text ul li span {
  text-transform: uppercase;
}

/*---------------------
  Blog Details
-----------------------*/
.blog-details {
  /* background: #333; */
}
.blog__details__text {
  margin-bottom: 30px;
}
.blog__details__text p {
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
  margin-bottom: 20px;
}
.blog__details__text p:last-child {
  margin-bottom: 0;
}

.blog__details__quote {
  border: 1px solid #333;
  padding: 35px 90px 35px 40px;
  position: relative;
  margin-bottom: 35px;
}
.blog__details__quote p {
  font-size: 22px;
  font-weight: 300;
  line-height: 35px;
  font-style: italic;
  margin-bottom: 10px;
}
.blog__details__quote h6 {
  font-size: 15px;
  color: #adadad;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}
.blog__details__quote i {
  font-size: 36px;
  color: #00bfe7;
  position: absolute;
  right: 30px;
  bottom: 25px;
}

.blog__details__desc {
  margin-bottom: 50px;
}
.blog__details__desc p {
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
  margin-bottom: 20px;
}
.blog__details__desc p:last-child {
  margin-bottom: 0;
}

.blog__details__tags {
  padding-bottom: 60px;
  border-bottom: 1px solid #9e9e9e;
  margin-bottom: 65px;
}
.blog__details__tags span {
  display: inline-block;
  font-size: 15px;
  color: #a8132e;
  font-weight: 300;
  margin-right: 25px;
}
.blog__details__tags a {
    font-size: 16px;
    font-weight: 300;
    color: #e6e6e6;
    display: inline-block;
    margin-right: 11px;
    padding: 8px 15px 7px;
    margin-bottom: 5px;
    background: rgb(168 19 46);
}

.blog__details__option {
  margin-bottom: 40px;
}

.blog__details__option__item {
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
}
.blog__details__option__item h5 {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.blog__details__option__item h5 i {
  font-size: 18px;
  margin-right: 5px;
}
.blog__details__option__item.blog__details__option__item--right h5 {
  text-align: right;
}
.blog__details__option__item.blog__details__option__item--right h5 i {
  margin-right: 0;
  margin-left: 5px;
}
.blog__details__option__item.blog__details__option__item--right .blog__details__option__item__img {
  float: right;
  margin-right: 0;
  margin-left: 25px;
}
.blog__details__option__item.blog__details__option__item--right .blog__details__option__item__text {
  margin-right: 25px;
  text-align: right;
  float: none;
}

.blog__details__option__item__img {
  float: left;
  margin-right: 25px;
}

.blog__details__option__item__text {
  overflow: hidden;
}
.blog__details__option__item__text h6 {
  color: #333;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}
.blog__details__option__item__text span {
  font-size: 14px;
  color: #777777;
  font-weight: 300;
}

.blog__details__recent {
  margin-bottom: 60px;
}
.blog__details__recent h4 {
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.blog__details__recent__item {
  margin-bottom: 30px;
}
.blog__details__recent__item img {
  max-width: 100%;
  margin-bottom: 20px;
}
.blog__details__recent__item h5 {
  color: #333;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 4px;
}
.blog__details__recent__item span {
  color: #777777;
  font-size: 14px;
  font-weight: 300;
}

.blog__details__comment h4 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}
.blog__details__comment form textarea {
  height: 120px;
  width: 100%;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-top: 12px;
  padding-left: 20px;
  font-weight: 300;
  margin-bottom: 14px;
  resize: none;
}
.blog__details__comment form textarea:placeholder {
  color: #adadad;
}

.input__list {
  margin-right: -20px;
  overflow: hidden;
}
.input__list input {
  height: 50px;
  width: calc(33.33% - 20px);
  float: left;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-left: 20px;
  font-weight: 300;
  margin-right: 20px;
  margin-bottom: 20px;
}
.input__list input:placeholder {
  color: #adadad;
}
@media (max-width: 768px) {
  .blog-mt{
    margin-top: 6em;
  }
  .blog__item_body {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
  }
  .blog_item_img {
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
  }
  .blog_item_img img{
    width: 100%;
  }
  .blog__item {
      border: 1px solid #222222;
      padding: 0;
      position: relative;
      z-index: 1;
      margin-bottom: 16px;
  }
  .blog__item h4{
    line-height: normal;
  }
  .blog__item a {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 30px;
  }
  .blog__item ul {
    position: absolute;
    margin: 0px 10px;
    top: 0;
    right: 0;
  }
}
/*---------------------
  Portfolio
-----------------------*/
.pagination__option {
  text-align: center;
  padding-top: 20px;
}
.pagination__option.blog__pagi {
  padding-top: 5px;
}
.pagination__option .arrow__pagination {
  font-size: 15px;
  color: #a8132e;
  display: inline-block;
  text-transform: uppercase;
}
.pagination__option .arrow__pagination.left__arrow {
  margin-right: 26px;
}
.pagination__option .arrow__pagination.right__arrow {
  margin-left: 18px;
}
.pagination__option .arrow__pagination span {
  opacity: 0.5;
}
.pagination__option .number__pagination {
  font-size: 18px;
  color: #e6e6e6;
  height: 50px;
  width: 50px;
  background: #a8132e;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 6px;
}
#main{
  margin-top: 152px;
}
#main2{
  margin-top: 190px;
}
@media (max-width: 768px) {
  #main{
    margin-top: 0;
  }
  #main2{
    margin-top: 152px;
  }
}