/* =================================== */
/*	Basic Style 
/* =================================== */

@import url(https://fonts.googleapis.com/css?family=Volkhov:400italic);
@font-face {
    font-family:
'DIN-Condensed',
'PlusJakartaSans-Bold',
'PlusJakartaSans-BoldItalic',
'PlusJakartaSans-ExtraBold',
'PlusJakartaSans-ExtraBoldItalic',
'PlusJakartaSans-ExtraLight',
'PlusJakartaSans-ExtraLightItalic',
'PlusJakartaSans-Italic',
'PlusJakartaSans-Light',
'PlusJakartaSans-LightItalic',
'PlusJakartaSans-Medium',
'PlusJakartaSans-MediumItalic',
'PlusJakartaSans-Regular',
'PlusJakartaSans-SemiBold',
'PlusJakartaSans-SemiBoldItalic';
    src: 
         url('../font/DIN-Condensed.ttf') format('truetype'),
         url('../font/PlusJakartaSans-Bold.otf') format('opentype'),
         url('../font/PlusJakartaSans-BoldItalic.otf') format('opentype'),
         url('../font/PlusJakartaSans-ExtraBold.otf') format('opentype'),
         url('../font/PlusJakartaSans-ExtraBoldItalic.otf') format('opentype'),
         url('../font/PlusJakartaSans-ExtraLight.otf') format('opentype'),
         url('../font/PlusJakartaSans-ExtraLightItalic.otf') format('opentype'),
         url('../font/PlusJakartaSans-Italic.otf') format('opentype'),
         url('../font/PlusJakartaSans-Light.otf') format('opentype'),
         url('../font/PlusJakartaSans-LightItalic.otf') format('opentype'),
         url('../font/PlusJakartaSans-Medium.otf') format('opentype'),
         url('../font/PlusJakartaSans-MediumItalic.otf') format('opentype'),
         url('../font/PlusJakartaSans-Regular.otf') format('opentype'),
         url('../font/PlusJakartaSans-SemiBold.otf') format('opentype'),
         url('../font/PlusJakartaSans-SemiBoldItalic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

body {
    background-color: #fff;
    font-family: 'PlusJakartaSans-Regular', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(0,0,0,0.7);
    -webkit-font-smoothing: antialiased;
}

a {
    color: #222;
    -webkit-transition: all 0.4s ease-in-out 0s;
       -moz-transition: all 0.4s ease-in-out 0s;
         -o-transition: all 0.4s ease-in-out 0s;
            transition: all 0.4s ease-in-out 0s;
}

iframe {
    border: 0;
    width: 100%;
}

.btn:focus, .btn:hover,
a, a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus, a:hover {
    color: 555;
}

h1, h2, h3,
h4, h5, h6 {
    font-family: 'PlusJakartaSans-SemiBold','Roboto', sans-serif;
    font-weight: 700;
	margin: 0;
}

.list-none {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul {
    padding-left: 0;
}

.btn {
    border: 0;
    border-radius: 0;
}

.btn-theme-color {
    background-color: #ff2b4a;
    font-size: 16px;
    font-weight: 500;
    padding: 11px 70px 13px;
    transition: 0.5s;
    border: 1px solid;
}

button.btn.btn-theme-color:hover{
    border-color:  #323232;
    background: transparent;
    color: #323232;
}

.section {
    padding: 60px 0 0;
}

.title {
    text-align: center;
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
.title h2 {
    font-size: 21px;
    letter-spacing: 4px;
    line-height: 32px;
    color: #323232;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 600;
    padding: 0 0 0 4px;
    position: relative;
    display: inline-block;
}
.title h2:before {
    content: '';
    position: absolute;
    z-index: 99;
    background-color: #222;
    width: 20px;
    height: 1px;
    left: -30px;
    top: 15px;
}
.title h2:after {
  content: '';
  position: absolute;
  z-index: 99;
  background-color: #222;
  width: 20px;
  height: 1px;
  right: -30px;
  top: 15px;
}

.title p {
    font-style: italic;
    font-size: 12px;
    color: #8E8E8E;
    letter-spacing: .1rem;
    line-height: 25px;
}

/*=====================================================
    Header
======================================================*/

.site-header {
    padding: 20px 0;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}

.site-header.fixed {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
}

.site-header .container {
    position: relative;
}

.navbar-brand {
    height: auto;
    padding: 12px;
    width: 96px;
}

.logo {
    float: left;
    margin-top: 7px;
}

.nav-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}

.toggle-btn {
    background-color: transparent;
    border: 0 none;
    outline: none;
}

.toggle-btn .icon-bar {
    background-color: #222;
    display: block;
    height: 2px;
    margin-bottom: 8px;
    width: 24px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}

/* .toggle-btn.active .icon-bar:nth-child(2) {
    opacity: 0;
    visibility: hidden;
} */

.toggle-btn.active .icon-bar:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}

.toggle-btn.active .icon-bar:nth-child(2) {
    top: -5px;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.toggle-btn .icon-bar:last-child {
    margin-bottom: 0;
}

.nav-toggle + .navbar-collapse {
    margin-right: 43px;
}
.navbar-nav {
    padding: 0;
    
}

.site-header .navbar-nav > li > a {
    color: #222;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    color: #555;
}

/*=====================================================
    Home Banner
======================================================*/

.home-banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: auto;
    width: 100%;
    background-image: url('../img/banner.jpg');
}

.gradient {
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gradient {
    background: #D693A1;
    background: -moz-linear-gradient(45deg, #D693A1 0%, #E2F5FF 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#D693A1), color-stop(100%,#E2F5FF));
    background: -webkit-linear-gradient(45deg, #D693A1 0%,#E2F5FF 100%);
    background: -o-linear-gradient(45deg, #D693A1 0%,#E2F5FF 100%);
    background: -ms-linear-gradient(45deg, #D693A1 0%,#E2F5FF 100%);
    background: linear-gradient(45deg, #D693A1 0%,#E2F5FF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D693A1', endColorstr='#E2F5FF',GradientType=1 );
}

.dtable {
    display: table;
    vertical-align: middle;
    width: 100%;
}

.dtablecell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.content-inner {
    position: relative;
    z-index: 10;
}


.banner-content h1 {
    font-family: 'PlusJakartaSans-Light', 'Roboto', sans-serif;
    display: inline-block;
    font-size: 35px;
    padding: 0 0 0 30px;
    text-transform: uppercase;
    letter-spacing: 30px;
    font-weight: 200;
}
.banner-content h1 ::after{
  content: '';
  margin-left: -30px;
}

.banner-content p {
    font-size: 14px;
    margin: 23px 0 0;
    letter-spacing: 1px;
    word-spacing: 3px;
    font-weight: 200;
    text-transform: uppercase;
}

/*=====================================================
    About
======================================================*/

.about {
    background: #F7F7F7;
    padding: 100px 0 50px;
}
.about-img img{
    width: 210px;
  }
.about-intro {
  padding: 50px 0 0 0;
}
.about-intro img{
    width: 140px;
    padding:  0 0 10px;
  }
.about-intro h3 {
    font-size: 36px;
    font-weight: 400;
    color: #444;
    margin: 0;
}
.about-intro span {
  font-family: '全新硬笔行书简';
}
.about-intro p {
  margin: 12px 0;
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.about-intro .divider {
    display: block;
    margin: 20px 0px;
    width: 40px;
    height: 1px;
    background-color: #333;
}

/*=====================================================
    service
======================================================*/

.service-inner {
    width: 100%;
    text-align: center;
}

.service-inner .icon-holder {
    position: relative;
    display: inline-block;
}

.service-inner .heading {
    position: relative;
    padding: 0 0 10px ;
}
.service-inner .icon-holder > img.icon {
    width: 40px;
}

.service-inner .description {
    width: 90%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 24px;
    color: #666;
}

.service-block .service-inner {
    background-color: #fafafa;
    border-radius: 10px;
    color: #333;
    text-align: center;
    margin: 10px 0;
    padding: 10px 10px 25px;
}

.service-inner i {
  line-height: 80px;
    font-size: 48px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-inner h4 {
    letter-spacing: 3px;
}


/*=====================================================
    Portfolio
======================================================*/
.portfolio {
    margin:0 0 60px 0;
}
.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item a {
    display: block;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.portfolio-hover {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    left: 0;
    padding: 10%;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}

.portfolio-hover:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.portfolio-description h4 {
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.portfolio-item:hover .portfolio-hover {
    opacity: 1;
}

#mygallery div img {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
   
.item-caption {
    position: absolute;
    color: #222;
    bottom: -60px;
    left: 0px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    opacity: 0;

}
.item-caption h4 {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 23px;
    font-weight: 600;
    text-transform: uppercase;
}
.item-caption p {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 0;
    text-align: left;
    line-height: 20px;
    margin-top: 6px;
}
.item-musk {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
    height: 100%;
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
#mygallery div:hover .item-caption {
    bottom: 30px;
    opacity: 1;

}
#mygallery div:hover .item-musk {
    opacity: 1;
    visibility: visible;
}
#mygallery div:hover img {
        transform: scale(1.1);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    width: 100%;

}

/*=====================================================
    contact
======================================================*/

.contact {
    background: url('../img/contact.jpg') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding-bottom: 100px;
    position: relative;
    padding:40px 0;
    padding: 100px 0;
}
.dark-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
}
.contact-block {
    background-color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 40px 25px;
    margin: 10px auto;
    border-radius: 10px;
    color: #222;
    width: 50%;
}
.contact-block h3 {
    font-size: 21px;
    margin:0 0 30px;
    padding: 0 0 15px 0;
    border-bottom: .5px solid #333;
}
.contact-block h3 span{
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    color: #8E8E8E;
    letter-spacing: .1rem;
    line-height: 42px;
    float: right;
}
.contact-block  i {
    margin: 0 5px 0 0;
}

.contact-block li h4 {
    font-family: 'Roboto',sans-serif;
    margin-bottom: 7px;
    font-weight: 500;
}

.contact-block li p {
    font-size: 14px;
    line-height: 20px;
}

/*=====================================================
    Home Banner
======================================================*/

.footer {
    background-color: #F7F7F7;
}

.social-icons img {
  width: 200px;
    display: inline-block;
    margin:30px;
}


.footer .copyright {
    font-size: 12px;
    color: #777;
    margin: 0;
    padding:10px 0 5px;
    border-top: .5px solid #ccc;
}

.footer .copyright p {
  margin: 0;
}
.footer .beian {
    font-size: 12px;
    color: #777;
    margin: 0;
}
/*=====================================================
   live page
======================================================*/
.live h2{
    margin: 5px;
}
.countdown {
    font-size: 22px;
    color: #bf056e;
}
.highlight {
    color: red;
}
.grayed-out {
    color: #555;
}
.live-schedule{
    margin: 60px 0 0 0;
}
.schedule-item {
    font-size: 16px;
}
.schedule-item span{
    font-size: 13px;
    color: #777;
    margin: 10px;
}

/*============================================================
    Media Queries
============================================================*/

/*============================================================
	For Small Desktop
==============================================================*/

@media (min-width: 980px) and (max-width: 1150px) {
    .contact-block {
        width: 70%;
    }

}


/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {
    .contact-block {
        width: 80%;
    }

}


/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/

@media only screen and (max-width: 767px) {
    .site-header .navbar-collapse {
        margin: 0;
        opacity: 1;
        visibility: visible;
    }
    .navbar-collapse {
        border: none;
    }
    .navbar-brand {
        margin: 0 0 0 17px;
    }
    .navbar-toggle {
        border: 0;
        border-radius: 0;
    }
    .navbar-toggle:hover,
    .navbar-toggle:focus {
        background-color: transparent !important;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #222;
    }

    .banner-content h1{
        letter-spacing: 11px;
        padding: 0 0 0 11px;
    }

    .site-header.fixed .navbar-collapse{
        background: transparent;
    }
    .contact-block {
        width: 100%;
    }


}