:root {
    --main-color: #F6718C;
    --logo-color: #CC0173;
}

body {
    font-family: "Source Han Sans CN", "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", 
    "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #F9F9F9;
    padding: 0px !important;
    margin: 0px !important;
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

::selection {
    background: var(--main-color);
    color: #fff;
}

::-moz-selection {
    background: var(--main-color);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    /*font-family: 'Open Sans', sans-serif;*/
}

a {
    color: #444e67
}

a:hover {
    color: var(--main-color)
}

p {
    line-height: 22px
}

html::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f1f1f1;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    border-radius: 0px;
    width: 5px;
    height: 5px;
    background-color: #acacac;
}

/*单行省略*/
.no-warp {
    display: block; 
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

/*多行行省略*/
.no-warp-line {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.je-flex {
    display: flex;
}

.je-flex-ct {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*header*/
.head-section {
    border-bottom: 0px solid #eeeeee;
    background-color: var(--main-color);
}

.head-section .navbar {
    margin-bottom: 0;
    z-index: 100;
}

.navbar-default {
    border: none
}

.navbar-brand {
    color: #bcc0cd;
    font-weight: 500;
    line-height: 30px;
    margin-top: 17px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

/*标题*/
.navbar-brand .logo {
    position: absolute;
    top: -5px;
    width: 100px;
}

.navbar-brand .text {
    color: #ffffff;
    display: none;
}

.navbar-header .text-logo {
    position: absolute;
    top: 33px;
    width: auto;
    left: 140px;
}

.navbar-header .phone-text {
    position: absolute;
    top: 64px;
    left: 600px;
    display: flex;
    align-items: center;
}

.search-li {
    position: absolute;
    left: 600px;
    top: 20px;
}

.navbar-header .phone-text img {
    height: 28px;
    width: 28px;
    margin-right: 10px;
}

.navbar-header .phone-text span {
    color: #ffffff;
    font-size: 23px;
}

/* 公众号、二维码 */
.qrcode-imgs {
    display: flex;
    position: absolute;
    right: 0;
    top: 12px;
}

.qrcode-div {
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}

.qrcode-div img {
    width: 80px;
    height: 80px;
}

.qrcode-div p {
    color: #e9e9e9;
    font-size: 12px;
    width: auto !important;
}

.navbar-collapse.fiexd {
    position: fixed;
    top: 0;
}

.navbar-collapse {
    position: absolute;
    top: 120px;
    width: 100%;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 1px #999999;
    /* background-image: radial-gradient(rgba(255, 255, 255, .6) 30%, transparent 0);
    background-size: 5px 5px; */
}

.head-section .navbar-collapse ul.navbar-nav {
    max-width: 1200px;
    margin: 0 auto;
    float: none;
    padding: 0 0 0 20px;
    z-index: 199;
}

.head-section .navbar-default {
    background-color: var(--main-color)
}

.head-section .nav li a,
.head-section .nav li.active ul.dropdown-menu li a {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 400;
    background: none;
}

ul.dropdown-menu {
    border: none
}

.head-section .nav li a:hover,
.head-section .nav li a:focus,
.head-section .nav li.active a,
.head-section .nav li.active a:hover,
.head-section .nav li a.dropdown-toggle:hover,
.head-section .nav li a.dropdown-toggle:focus,
.head-section .nav li.active ul.dropdown-menu li a:hover,
.head-section .nav li.active ul.dropdown-menu li.active a {
    color: #fff;
    background-color: var(--main-color);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.head-section .navbar-default .navbar-nav>.open>a,
.head-section .navbar-default .navbar-nav>.open>a:hover,
.head-section .navbar-default .navbar-nav>.open>a:focus {
    color: #fff;
    background-color: var(--main-color);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.head-section .navbar {
    min-height: 120px
}

.head-section .navbar-nav>li {
    padding-bottom: 10px;
    padding-top: 10px;
}

.head-section ul.navbar-nav li:last-child() {
    margin-left: 10px !important
}

.head-section .navbar-nav>li>a {
    padding-bottom: 5px;
    padding-top: 5px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin-left: 2px;
    line-height: 30px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

/*首页轮播图*/
.index_banner {
    width: 100%;
    min-height: 666px;
    overflow: hidden;
    position: relative;
    display: none;
}

.index_banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hy-next {
    right: 0 !important;
    width: 45px;
    height: 45px;
    border-radius: 50% 0 0 50% !important;
}

.hy-prev {
    left: 0 !important;
    width: 45px;
    height: 45px;
    border-radius: 50% 0 0 50% !important;
}


.hy-next,
.hy-prev {
    background: rgba(255, 255, 255, .8) !important;
}

.hy-next i,
.hy-prev i {
    -webkit-filter: invert(1);
    -moz-filter: invert(1);
    -ms-filter: invert(1);
    filter: invert(1);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    top: 36% !important;
    left: 44% !important;
}


.dropdown-menu li a:hover {
    color: #fff !important
}

.head-section .navbar-default .navbar-nav>.open>a .caret,
.navbar-default .nav li.dropdown>a:focus .caret {
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #fff;
}

.dropdown-menu {
    background-color: rgba(255, 255, 255, .9);
}

.head-section .nav li .dropdown-menu {
    margin-top: 0px;
    padding: 0;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

.head-section .nav li .dropdown-menu li a {
    line-height: 32px;
    padding: 6px 16px;
    border-bottom: 1px solid #F3E8E8;
    color: var(--main-color);
}

.copyrights {
    text-indent: -9999px;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}

/*search*/
.search {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background: url("../img/search-icon.png") no-repeat 10px 8px;
    padding: 0 5px 0 35px;
    color: #ffffff;
    width: 211px;
    border: 1px solid #ffffff !important;
    box-shadow: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 300;
}

.search::placeholder {
    color: #ffffff;
}

/*通知公告*/
.notice-div {
    background: #ffffff;
    border-radius: 8px;
    margin-top: 50px;
    padding: 14px 15px;
    box-shadow: 0px 0px 3px #e1e1e1;
    display: flex;
    align-items: center;
}

.notice-div > img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.notice-div > .ct {
    line-height: 16px;
    flex: 1;
}

.notice-div > .more {
    width: 50px;
    height: 24px;
    background-image: url("../img/more.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0px 3px;
}

/*首页五大块*/
.modules-box {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.modules-box img {
    width: 200px;
    height: 85px;
    border-radius: 8px;
}

.modules-box img:hover {
    box-shadow: 0px 0px 6px #c1c1c1;
    border-radius: 8px;
}

/*科室导航*/
.dept-nav.active, .info-ct.active {
    display: block !important;
    height: 382px;
    overflow-y: auto;
}

.dept-nav .nav-item img:hover, 
.dept-nav .nav-item img:active,
.my-nav .nav-item img:hover, 
.my-nav .nav-item img:active {
    box-shadow: 0px 0px 6px #c1c1c1;
    cursor: pointer;
}

.dept-nav .nav-item:hover > p,
.my-nav .nav-item:hover > p {
    color: var(--main-color);
}

.dept-nav .nav-item {
    width: 20%;
    float: left;
    padding: 20px 16px;
    min-height: 155px;
    padding-bottom: 0px !important;
}
.dept-nav .nav-item img {
    width: 100%;
    border-radius: 50%;
}

.dept-nav .nav-item > p,
.my-nav .nav-item > p {
    margin: 0;
    text-align: center;
    padding-top: 12px;
    cursor: pointer;
    color: #343434;
}

.my-nav .nav-item {
    width: 25%;
    float: left;
    padding: 8px 20px;
    min-height: 155px;
    padding-bottom: 0px !important;
}

.my-nav .nav-item img {
    width: 100%;
    border-radius: 8px;
}


/*首页新闻*/
.home-news {
    display: flex;
    height: 80px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.home-news:hover .home-news-ct .news-title,
.home-news:hover .home-news-date .date-t1,
.home-news:hover .home-news-arrow {
    color: var(--main-color);
}

.home-news-date {
    width: auto;
    padding-right: 10px;
    border-bottom: 2px solid #e1e1e1;
}

.home-news-date .date-t1 {
    color: #5c5c5c;
    font-size: 26px;
}

.home-news-date .date-y1 {
    color: #888888;
}

.home-news-ct {
    flex: 1;
    padding: 0 20px;
    width: 410px;
}

.home-news-ct .news-title {
    font-size: 20px;
    padding: 3px 0;
    color: #101010;
    font-weight: 500;
}

.home-news-ct .news-summary {
    font-size: 14px;
    padding-top: 5px;
    color: #b1b1b1;
}

.home-news-arrow {
    width: 50px;
    line-height: 80px;
    text-align: right;
    font-size: 26px;
    color: #b1b1b1;
}

/*咨询下方*/
.fb-header {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.fb-header .header-line {
    height: 20px;
    width: 5px;
    margin-right: 10px;
    background-color: var(--main-color);
}

.fb-header .header-title {
    color: var(--main-color);
    font-size: 18px;
    line-height: 18px;
}

.fb-header .header-desc {
    color: #c2c2c2;
    font-size: 14px;
    padding-top: 6px;
}

.fb-header .header-right {
    color: #868686;
    cursor: pointer;
}

.fb-header .header-right:hover {
    color: var(--main-color);
}

.fb-header .header-right > span {
    font-size: 15px
}

.fb-header .header-right > i {
    font-size: 18px;
    line-height: 18px;
}

.fb-content {
    padding-top: 20px;
    width: 100%;
}

.fb-content .fb-image > img {
    cursor: pointer;
    width: 370px;
    height: 102px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.f-box {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    min-height: 210px;
    margin-bottom: 20px;
    transition-duration: 500ms;
    transition-property: width, background;
    transition-timing-function: ease;
    -webkit-transition-duration: 500ms;
    -webkit-transition-property: width, background;
    -webkit-transition-timing-function: ease;
}

.f-box i {
    font-size: 50px;
    line-height: normal;
    margin-top: 40px;
    display: block;
    color: var(--main-color);
}

.f-box:hover,
.f-box.active {
    background: var(--main-color);
    padding: 20px;
    text-align: center;
    min-height: 210px;
    margin-bottom: 20px;
    transition-duration: 500ms;
    transition-property: width, background;
    transition-timing-function: ease;
    -webkit-transition-duration: 500ms;
    -webkit-transition-property: width, background;
    -webkit-transition-timing-function: ease;
}

.f-box:hover i,
.f-box.active i {
    font-size: 50px;
    line-height: normal;
    margin-top: 40px;
    display: block;
    color: #fff;
}

.f-box:hover h2,
.f-box.active h2 {
    color: #fff
}

.f-box h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.f-text {
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.fb-content.white-back {
    padding: 26px 20px;
    background-color: #ffffff;
    margin-top: 20px;
    height: 225px;
    border-radius: 8px;
    box-shadow: 0px -2px 5px #eeeeee;
}

.fb-content .entry-item {
    width: 25%;
    float: left;
    text-align: center;
    cursor: pointer;
}

.entry-item > div {
    padding-bottom: 6px;
}

.entry-item img {
    width: 45px;
}

.entry-item > span {
    font-size: 14px;
}

.view-more {
    display: inline-flex;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f9f9f9;
    cursor: pointer;
    color: #434343;
}
.view-more:hover {
    color: var(--main-color);
}

.view-more i {
    font-size: 22px;
    margin-left: 5px;
}

/*quote*/
.quote {
    margin: 40px 0 40px 0;
    display: inline-block;
    width: 100%;
}

.accordion {
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
}

/*tabs*/
.tab {
    background: #fff;
    border-radius: 8px;
    border: none !important;
    box-shadow: 0px 0px 6px #eee;
}

.tab .nav>li>a {
    padding: 10px 25px;
}

.tab-bg-dark-navy-blue {
    border-bottom: none;
    padding: 0;
}

.tab-bg-dark-navy-blue .nav>li>a:hover,
.tab-bg-dark-navy-blue .nav>li>a:focus {
    background-color: #f4f4f4;
    text-decoration: none;
    border-radius: 8px;
}

.panel-heading {
    border: none;
    padding: 25px;
    display: flex;
    justify-content: center;
}

.panel-heading .nav>li>a,
.panel-heading .nav>li.active>a,
.panel-heading .nav>li.active>a:hover,
.panel-heading .nav>li.active>a:focus {
    border-width: 0;
}

.panel-heading .nav>li>a {
    color: #434343
}

.panel-heading .nav>li.active>a {
    color: #ffffff;
    background: #87e4c0;
    border-radius: 8px;
}

.panel-heading .nav.right>li.active>a {
    background: var(--main-color);
}

.panel-heading .nav>li.active>a::after {
    content: "";
    position: absolute;
    display: inline-block;
	border-top: 20px #87e4c0 solid;
	border-right: 20px transparent solid;
	border-bottom: 20px transparent solid;
	border-left: 20px transparent solid;
    border-radius: 8px;
    left: calc(50% - 20px);
    top: 30px;
    bottom: -30px;
}

.panel-heading .nav.right>li.active>a::after {
	border-top: 20px var(--main-color) solid;
}

.tab .nav-tabs.nav-justified>li:last-child {
    border-right: none
}

/*暂无数据*/
.no-list {
    text-align: center;
    padding: 68px 0;
}

.no-list img {
    width: 130px;
}

.no-list p {
    font-size: 17px;
    color: #999999;
}

/*----image hove----*/
.mask a i {
    color: #fff !important;
    font-size: 16px;
}

/*imageview icon hover*/
[data-zlname] {
    position: relative;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*IMGS IN CONTAINER*/
[data-zlname]>img {
    display: block;
    max-width: 100%;
}

/*POP UP ELEMENTS*/
[data-zlname] [data-zl-popup] {
    position: absolute;
    display: block;
    padding: 1px;
    height: 40px;
    width: 40px;
    background: #323231;
    color: #fff;
    overflow: hidden;
    display: none;
    text-align: center;
}

/*OVERLAY*/
/*classic*/
[data-zl-overlay] {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    padding: inherit;
}

/*four*/
[data-zl-ovzoom0],
[data-zl-ovzoom1],
[data-zl-ovzoom2],
[data-zl-ovzoom3] {
    position: absolute;
    width: 25%;
    height: 100%;
}

/*rolling*/
[data-zl-ovrolling] {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
}

/*double*/
[data-zl-ovdouble0],
[data-zl-ovdouble1] {
    position: absolute;
    display: none;
}

/*-------*/
[data-zlname=reverse-effect] [data-zl-popup=link] {
    background: rgba(256, 256, 256, 1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

[data-zlname=reverse-effect] [data-zl-popup=link2] {
    background: rgba(256, 256, 256, 1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

[data-zlname=reverse-effect] [data-zl-popup=link]:hover,
[data-zlname=reverse-effect] [data-zl-popup=link2]:hover {
    opacity: .5
}

.content h3 {
    margin-top: 0;
    color: #475168;
    font-size: 20px;
}

.progress {
    background-color: #E1E1E1
}

.flexslider {
    background: none;
    border: none;
}

/*blog*/
.blog-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #ddd;
}

/*blog 2*/
.date-wrap,
.comnt-wrap {
    margin-bottom: 20px
}

.date-wrap span,
.comnt-wrap span {
    display: block;
    padding: 10px 0;
    text-align: center;
}

.date-wrap .date {
    font-size: 30px;
    font-weight: 300;
    background: var(--main-color);
    color: #fff;
    border-radius: 1px 1px 0 0;
    -webkit-border-radius: 1px 1px 0 0;
    -moz-border-radius: 1px 1px 0 0;
}

.date-wrap .month {
    font-size: 16px;
    font-weight: 300;
    background: #f6f5f0;
    color: #a19fa2;
    border-radius: 0 0 1px 1px;
    -webkit-border-radius: 0 0 1px 1px;
    -moz-border-radius: 0 0 1px 1px;
}

.comnt-wrap .comnt-ico {
    background: #efeee9;
    color: #a0a0a0;
    border-radius: 1px 1px 0 0;
    -webkit-border-radius: 44px;
    font-size: 20px;
}

.comnt-wrap .value {
    background: #f6f5f0;
    color: #a0a0a0;
    border-radius: 0 0 1px 1px;
    -moz-border-radius: 0 0 1px 1px;
    -webkit-border-radius: 0 0 1px 1px;
}

.blog-item h1,
.blog-item h1 a {
    font-size: 25px;
    color: var(--main-color);
    font-weight: 300;
}

.blog-item h1 {
    margin-bottom: 20px;
    line-height: 35px;
}

.blog-item h1 a:hover {
    text-decoration: none
}

.author {
    margin: 25px 0 30px 0;
    font-size: 16px;
}

.author a,
.st-view a {
    color: var(--main-color)
}

.st-view {
    margin-top: 20px
}

.st-view ul li {
    margin-bottom: 5px
}

.blog-side-item h3 {
    margin-top: 30px;
    color: #475268;
    font-size: 18px;
}

.blog-side-item ul li {
    margin-bottom: 5px;
    border-bottom: 1px solid #efefef;
    line-height: 35px;
}

.blog-side-item ul li a {
    display: inline-block;
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

ul.tag {
    display: inline-block;
    width: 100%;
}

ul.tag li {
    float: left;
    margin: 0px 5px 0 0;
    border-bottom: none;
    padding-top: ;
    list-style: none;
}

ul.tag li a {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    line-height: 15px;
    padding: 5px;
    border-radius: 1px 1px 10px 1px;
    -moz-border-radius: 1px 1px 10px 1px;
    -webkit-border-radius: 1px 1px 10px 1px;
}

.media img.media-object {
    border-radius: 3%;
    -moz-border-radius: 3%;
    -webkit-border-radius: 3%;
    height: 80px;
    width: 80px;
}

/*footer*/
.footer {
    background: var(--main-color);
    color: #ffffff;
    padding: 30px 0 0 0;
    display: inline-block;
    width: 100%;
    font-weight: 300;
}

.footer-link {
    background: var(--main-color);
    color: #ffffff;
    display: inline-block;
    border-bottom: 1px solid #ffffff;
    width: 100%;
}

.footer-link > .container {
    display: flex;
    align-items: center;
}

.footer-link img {
    width: 80px;
    height: 60px;
    float: left;
    margin-right: 40px;
}

.footer-link .link-item {
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    padding: 2px 24px;
    border-right: 2px solid #ffffff;
    cursor: pointer;
} 

.footer-link .link-item:last-child {
    border-right: none;
} 

.footer-link .link-item:hover,
.footer-ct .ct-div span:hover {
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.footer-logo .logo {
    width: 70px;
    height: 70px;
}

.footer-logo .text {
    height: 38px;
    margin-left: 10px;
}

.logo-desc {
    display: flex;
    justify-content: center;
    padding: 16px;
}

.logo-desc .desc-img {
    height: 20px;
}

.footer h1 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
}
.footer-ct {
    margin-bottom: 12px;
}
.footer-ct .ct-div {
    margin-left: 5px;
}
.footer-ct .ct-div img {
    width: 18px;
    height: 18px;
}

.footer-ct .ct-div span {
    color: #ffffff;
    cursor: pointer;
}

.footer-email {
    width: 126px;
    padding: 10px 12px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

.footer-email:hover {
    background-color: rgba(255, 255, 255, .1);
}

.footer-email img {
    width: 22px;
    margin-right: 8px;
}
.footer-email span {
    font-size: 15px;
}

.copyright {
    color: #fff;
    padding-top: 20px;
    font-size: 15px;
}

.footer-small {
    background-color: var(--main-color);
    margin-top: -6px;
    padding-top: 5px;
    text-align: center;
}

.bx-wrapper {
    position: relative
}

.bx-wrapper .bx-controls-direction a {
    background-color: #f7f7f7;
    position: absolute;
    top: 25px;
    outline: 0;
    width: 24px;
    height: 24px;
    z-index: 9;
    text-indent: -9999px;
}

.bg-lg {
    background: #f9f9f3
}

.gray-bg {
    background: #f9f9f3
}

/*portfolio*/

.image-caption a {
    padding: 10px 15px
}

.pad-ten {
    padding-bottom: 30px
}

.title {
    margin-top: 40px
}

.article-container img {
    width: 50%;
}
.yygk-container img {
    width: 100%;
    min-height: 207px;
}
.yygk-container td {
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
}


/*Photo Gallery*/
#gallery {
    margin: auto;
    position: relative;
    width: 100%;
}

#gallery h2 {
    color: #fff;
    padding-top: 30px;
}

.gallery-container {
    margin: 0 auto 40px auto;
    position: relative;
    width: 100%;
}

.col-4 .item {
    width: 23%;
    margin-right: 2%;
    margin-bottom: 2%;
}

.col-4 .item img {
    height: 230px
}

ul#filters {
    display: inline-block;
    width: 100%;
    margin: 25px 0 25px 0;
}

ul#filters li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

ul#filters li a {
    background: #E2E0E1;
    padding: 10px 15px;
    display: inline-block;
    color: #7D797A;
    outline: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition-duration: 500ms;
    transition-property: width, background;
    transition-timing-function: ease;
    -moz-transition-duration: 500ms;
    -moz-transition-property: width, background;
    -moz-transition-timing-function: ease;
    -webkit-transition-duration: 500ms;
    -webkit-transition-property: width, background;
    -webkit-transition-timing-function: ease;
}

ul#filters>li>a:hover,
ul#filters>li>a:focus,
ul#filters>.active>a,
ul#filters>.active>span {
    background: var(--main-color);
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition-duration: 500ms;
    transition-property: width, background;
    transition-timing-function: ease;
    -moz-transition-duration: 500ms;
    -moz-transition-property: width, background;
    -moz-transition-timing-function: ease;
    -webkit-transition-duration: 500ms;
    -webkit-transition-property: width, background;
    -webkit-transition-timing-function: ease;
}

.item img {
    width: 100%;
    height: 100%;
}

.text-grid a {
    color: #fff
}

.text-grid div {
    padding: 0 10px
}

.text-grid p {
    margin-bottom: 10px
}

/*parallax*/
.parallax1 {
    background-size: cover;
    width: 100%;
    min-height: 400px;
    background-color: var(--main-color);
    font-style: italic;
}

.parallax1 h1 {
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    line-height: 40px;
    margin-top: 160px;
}

.btn.btn-inverse {
    background-color: #475168;
    color: #fff;
    height: 45px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-inverse:hover {
    background-color: #415b76;
    color: #fff;
    height: 45px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.newsletter-input {
    height: 45px
}

.btn-nl {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.btn-nl:hover {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.wh-bg {
    background-color: #fff;
    padding: 15px;
    margin: 35px 0;
    border: 1px solid #eee;
    z-index: 20;
}

.position {
    text-align: center
}

.wh-bg h3 {
    text-align: center
}

#faq-other mark {
    background: var(--main-color);
    color: #fff;
}

.faq-square {
    margin: 40px 0 20px
}

/*registration*/
.registration-bg {
    margin-top: -40px;
    background-color: #f1f2f7;
}

/*login*/
.login-page {
    min-width: 25%;
    max-width: 25%;
    padding: 35px 30px 30px;
    background: #fcfcfc;
    border: solid 1px #eee;
    margin: 40px auto;
    border: 17px solid #eee;
}

.gr-bg {
    background-color: var(--main-color);
    margin-top: -40px;
    margin-bottom: -50px;
}

.panel {
    z-index: 100;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}

.panel-body {
    box-shadow: 0px -2px 5px #eee;
}

.form-control {
    border: 1px solid #ffffff;
    border-radius: 2px;
}

.form-control:focus {
    border: none;
    border: 1px solid #d9d9d9;
}

.btn-lg {
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
}

.modal-content {
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
}

#accordion .panel-heading-faq {
    border: 1px solid #c7c7c7
}

#accordion .panel-body {
    border-width: 0px 1px 1px 1px;
    border-color: #c7c7c7;
    border-style: solid;
    background-color: #fff;
}

#accordion .panel {
    box-shadow: none;
    border: none;
}

.panel-group .panel {
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
}

.margin {
    margin-bottom: 20px
}

.add li {
    margin-bottom: 6px
}

ul.unstyled,
ol.unstyled {
    margin-left: 0;
    list-style: none;
}

#heading {
    text-align: center
}

#heading p {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
}

.height {
    height: 40px
}

#progress {
    background: var(--main-color);
    /*-- Color of the bar --*/
    width: 0%;
    color: #fff;
    padding-left: 8px;
    max-width: 100%;
    float: left;
    -webkit-animation: progress 2s 1 forwards;
    -moz-animation: progress 2s 1 forwards;
    -ms-animation: progress 2s 1 forwards;
    animation: progress 2s 1 forwards;
}

@-webkit-keyframes progress {
    from {}
    to { width: 70% }
}

@-moz-keyframes progress {
    from {}
    to { width: 36% }
}

@-ms-keyframes progress {
    from {}
    to { width: 36% }
}

@keyframes progress {
    from {}
    to { width: 36% }
}

/* End carousel */
.item blockquote {
    border-left: none;
    margin: 0;
}

.item blockquote img {
    margin-bottom: 10px
}

.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}

#filters {
    margin: 1%;
    padding: 0;
    list-style: none;
}

#filters li {
    float: left
}

#filters li span {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: #666;
    cursor: pointer;
}

#filters li span.active {
    background: var(--main-color);
    color: #fff;
}

#portfoliolist .portfolio {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    width: 24%;
    margin-right: 1%;
    margin-bottom: 1%;
    display: none;
    float: left;
    overflow: hidden;
}

.portfolio-wrapper {
    overflow: hidden;
    position: relative !important;
    cursor: pointer;
    width: 273.6px;
}

.portfolio img {
    max-width: 100%;
    position: relative;
    max-height: 90%;
}

span.filter {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

/* #Tablet (Portrait) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .container {
        width: 768px
    }
}

/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {
    .container {
        width: 95%
    }

    #portfoliolist .portfolio {
        width: 97%;
        margin: 2%;
    }

    #portfoliolist-three .portfolio {
        width: 97%;
        margin: 2%;
    }
}

/* #Mobile (Landscape) - Note: Design for a width of 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 70%
    }
}

.portfolio-hover {
    position: relative;
    overflow: hidden;
    height: 200px;
    text-align: center;
}

.portfolio-hover .icon {
    background-color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    opacity: .7;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.image-caption {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding-top: 35%;
    display: none;
    text-align: center;
    color: #fff !important;
    z-index: 2;
}

.text-error {
    color: #e74c3c
}

.pr-10 {
    padding-right: 10px
}

.pr-5 {
    padding-right: 5px
}

.align-left {
    text-align: left
}

.owl-prev {
    float: left;
    padding: 8px 20px;
    margin-left: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    margin-top: 5px;
    background-color: #eee;
}

.owl-next {
    float: right;
    padding: 8px 20px;
    margin-right: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    margin-top: 5px;
    background-color: #eee;
}

/*submenu test*/
.dropdown-submenu {
    position: relative
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: -1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 9px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff
}

.dropdown-submenu.pull-left {
    float: none
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.jumbotron {
    margin-bottom: 0px
}

.mar-b-30 {
    margin-bottom: 30px
}

.mar-b-40 {
    margin-bottom: 40px
}

.mar-b-50 {
    margin-bottom: 50px
}

.mar-b-60 {
    margin-bottom: 60px
}

.mar-b-70 {
    margin-bottom: 70px
}

.btn {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

/*
    Component: Buttons
-------------------------
*/
.btn {
    font-weight: 500;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid transparent;
}

.btn.btn-default {
    background-color: #fafafa;
    color: #666;
    border-color: #ddd;
    border-bottom-color: #ddd;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-default:hover,
.btn.btn-default:active,
.btn.btn-default.hover {
    background-color: #f4f4f4 !important;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-default.btn-flat {
    border-bottom-color: #d9dadc;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-primary {
    background-color: #3bafda;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary.hover {
    background-color: #4fc1e9;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-success {
    background-color: #8cc152;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-success:hover,
.btn.btn-success:active,
.btn.btn-success.hover {
    background-color: #a0d468;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-info {
    background-color: #37bc9b;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-info:hover,
.btn.btn-info:active,
.btn.btn-info.hover {
    background-color: var(--main-color);
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-danger {
    background-color: #E74c3c;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-danger:hover,
.btn.btn-danger:active,
.btn.btn-danger.hover {
    background-color: #f4543c;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-warning {
    background-color: #f6bb42;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.btn-warning:hover,
.btn.btn-warning:active,
.btn.btn-warning.hover {
    background-color: #ffce54;
    border: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn-group .btn.btn-success {
    border: 1px solid #7ab03f
}

.btn-group .btn.btn-info {
    border: 1px solid #2fa084
}

.btn-group .btn.btn-danger {
    border: 1px solid #d13a24
}

.btn-group .btn.btn-warning {
    border: 1px solid #efa50b
}

.btn-group-vertical .btn.btn-success {
    border: 1px solid #7ab03f
}

.btn-group-vertical .btn.btn-info {
    border: 1px solid #2fa084
}

.btn-group-vertical .btn.btn-danger {
    border: 1px solid #d13a24
}

.btn-group-vertical .btn.btn-warning {
    border: 1px solid #efa50b
}

.open .dropdown-toggle.btn-warning {
    background-color: #f6bb42;
    border-color: #efa50b;
}

.open .dropdown-toggle.btn-info {
    background-color: var(--main-color);
    border-color: #2fa084;
}

.btn.btn-flat {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-width: 1px;
}

.btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:focus {
    outline: none
}

.btn.btn-file {
    position: relative;
    width: 120px;
    height: 35px;
    overflow: hidden;
}

.btn.btn-file>input[type='file'] {
    display: block !important;
    width: 100% !important;
    height: 35px !important;
    opacity: 0 !important;
    position: absolute;
    top: -10px;
    cursor: pointer;
}

.btn.btn-app {
    position: relative;
    padding: 15px 5px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    height: 60px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
    background-color: #fafafa;
    font-size: 12px;
}

.btn.btn-app>.fa,
.btn.btn-app>.glyphicon,
.btn.btn-app>.ion {
    font-size: 20px;
    display: block;
}

.btn.btn-app:hover {
    background: #f4f4f4;
    color: #444;
    border-color: #aaa;
}

.btn.btn-app:active,
.btn.btn-app:focus {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.btn-app>.badge {
    position: absolute;
    top: -3px;
    right: -10px;
    font-size: 10px;
    font-weight: 400;
}

.btn.btn-social-old {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    opacity: 0.9;
    padding: 0;
}

.btn.btn-social-old>.fa {
    padding: 10px 0;
    width: 40px;
}

.btn.btn-social-old>.fa+span {
    border-left: 1px solid rgba(255, 255, 255, 0.3)
}

.btn.btn-social-old span {
    padding: 10px
}

.btn.btn-social-old:hover {
    opacity: 1
}

.btn.btn-circle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Background colors */
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black {
    color: #f9f9f9 !important
}

.bg-gray {
    background-color: #eaeaec !important
}

.bg-black {
    background-color: #222222 !important
}

.bg-red {
    background-color: #f56954 !important
}

.bg-yellow {
    background-color: #f39c12 !important
}

.bg-aqua {
    background-color: #00c0ef !important
}

.bg-blue {
    background-color: #0073b7 !important
}

.bg-light-blue {
    background-color: #3c8dbc !important
}

.bg-green {
    background-color: #00a65a !important
}

.bg-navy {
    background-color: #001f3f !important
}

.bg-teal {
    background-color: #39cccc !important
}

.bg-olive {
    background-color: #3d9970 !important
}

.bg-lime {
    background-color: #01ff70 !important
}

.bg-orange {
    background-color: #ff851b !important
}

.bg-fuchsia {
    background-color: #f012be !important
}

.bg-purple {
    background-color: #932ab6 !important
}

.bg-maroon {
    background-color: #85144b !important
}

.tag-line-section {
    background: url("../img/tg-black-bg.png") no-repeat fixed top rgba(0, 0, 0, 0.7);
    height: 300px;
    margin-bottom: 30px;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}

/* Recent work hover effect */

.view-sixth img {
    -webkit-transition: all 0.4s ease-in-out 0.5s;
    -moz-transition: all 0.4s ease-in-out 0.5s;
    -o-transition: all 0.4s ease-in-out 0.5s;
    -ms-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;
}

.view-sixth .mask {
    background-color: rgba(0, 0, 0, 0.5);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in 0.4s;
    -moz-transition: all 0.3s ease-in 0.4s;
    -o-transition: all 0.3s ease-in 0.4s;
    -ms-transition: all 0.3s ease-in 0.4s;
    transition: all 0.3s ease-in 0.4s;
}

.view-sixth a.info {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    -moz-transition: all 0.3s ease-in-out 0.1s;
    -o-transition: all 0.3s ease-in-out 0.1s;
    -ms-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
}

.view-sixth:hover .mask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.view-sixth:hover img {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.view-sixth:hover a.info {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.view {
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

.view .mask,
.view .content {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

.view img {
    display: block;
    position: relative;
}

.view a.info {
    display: inline-block;
    text-decoration: none;
    position: relative;
    top: 35%;
    color: #fff;
}

.border-one {
    border: 1px solid #ffffff;
    padding: 5px 15px;
}

.border-one:hover {
    border: 1px solid #eee;
    padding: 5px 15px;
    opacity: .9;
}

/*  Back-to-top */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: var(--main-color);
    line-height: 1em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-image: url(../img/triangle.png);
    background-position: 12px 16px;
    background-repeat: no-repeat;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.5;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#back-to-top:hover {
    background-color: var(--main-color);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

div#logo a img {
    float: left;
    height: 75px;

}

div.header h3 {
    margin-left: 15px;
}

a.position {
    color: var(--main-color);
}