/*
Template Name: Madly OnePage Portfolio Template
Template URI: http://codiov.com
Descrition: Madly is modern html5 template with awesome features
Author: Codiov
Author URI: http: http://codiov.com
Version: 1.0.0
*/

/*-------------------------------------------------*/
/* =  Base CSS
/*-------------------------------------------------*/
.alignleft {
    float: left;
    margin-right: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 15px;
}
a:focus { text-decoration: none; }
img {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 400;
    color: #26282B;
    font-family: AvenirNextLTPro;
}
html,
body { 
    height: 100%;
	width: 100%;
}
body {
    color: #888888;
    font-size: 13px;
    font-weight: 300;
    line-height: 24px; 
    font-family: AvenirNextLTPro;
    min-height: 100%;
	margin: 0;
	position: relative;
	max-width: 100%;
}
a:hover { text-decoration: none }
p {
    margin: 0 0 20px 0;   
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*===== Typography =====*/

label {
    display: block;
    font-weight: 700;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"] {
    border-radius: 3px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    outline: none;
}
.section-padding { padding: 80px 0 }
.dark-bg { background-color: #F2F2F2 }
.section-title { margin-bottom: 60px }
.section-title h2 {
    font-size: 70px;
    position: relative;
    padding-bottom: 25px;
}
.white-section-text h2 {
    color: #fff;
}
.section-title h2 span {
    color: #1abc9c;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 16px;
}
.slider-text > a {
    margin: 0 15px;
}
a.home-button {
    background: transparent;
    border-radius: 3px;
    color: #1abc9c;
    display: inline-block;
    font-size: 16px;
    height: 50px;
    line-height: 48px;
    margin-top: 35px;
    width: 200px;
    border: 2px solid #1abc9c;
    position: relative;
    text-align: center;
    /*text-transform: uppercase;*/
    font-weight: 400;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
a.home-button:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #1abc9c;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all .4s cubic-bezier(0, 0.95, 0.96, 0.88) 0s;
    transition: all .4s cubic-bezier(0, 0.95, 0.96, 0.88) 0s;
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    z-index: -1;
}
a.home-button:hover {
    color: #044e84;
}
a.home-button:hover:before {
    -webkit-transform: scale(1);
            transform: scale(1);
}
a.btn-normal {
    background: #1abc9c;
    border-radius: 3px;
    color: #fff;
    margin: 20px 0;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    width: 120px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;  
}
a.btn-normal:hover, .home-contact-form input[type="submit"]:hover {
    background: #26282B;
    color: #fff;
    border: 0;
}

/*-------------------------------------------------*/
/* =  Preloader CSS 
/*-------------------------------------------------*/
.preloader-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    text-align: center;      
}
.spinner {
    width: 100px;
    height: 100px;
    background: #eee;
    border-radius: 50%;
    position: relative;
    margin: 50px;
    display: inline-block;
}
.spinner:after, .spinner:before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.spinner:before, .spinner:after {
    background: #1abc9c;
    left: 50%;
    top: 50%;
    -webkit-animation: pulse 3s linear infinite;
            animation: pulse 3s linear infinite;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
}
.spinner:after {
    -webkit-animation: pulse 2s linear 0.3s infinite;
            animation: pulse 2s linear 0.3s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        -webkit-transform: scale(1.3);
                transform: scale(1.3);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        -webkit-transform: scale(1.3);
                transform: scale(1.3);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}


/*-------------------------------------------------*/
/* =  Header & Slider Area CSS
/*-------------------------------------------------*/
#slider,
.slide-text-table,
#slider .container,
#slider .row,
#slider .col-md-8 { height: 100% }

#slider h2 {
    margin-top: 45vh;
    font-size: 95px;
    color: #fff;
    font-weight: bold;
}

#slider p {
    font-size: 25px;
    color: #fff;    
}

.slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-image: url('../assets/img/sight/backgrounds/top/6.jpg');
}
.center-slide-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.slide-bg:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
}
.slide-text-table {
    display: table;
    height: 100%;
    width: 100%;
}
.slide-text-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.slide-text {
    float: left;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
}
.slide-text h2 {
    font-size: 55px;
    margin-bottom: 25px;
    margin-top: 50px;
    color: #ffffff;
}
.slide-text h2 span {
    color: #1abc9c;
}
.slide-text p {
    color: #fff;
}
header.header,
.sticky-wrapper {
    position: absolute;
    left: 0;
    top: 74px;
    width: 100%;
    z-index: 999999;
    /*background: #F7F8F8;*/
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    /*font-size: 16px;
    font-weight: 400;*/
    padding: 40px 0;
    -webkit-transition: .4s;
    transition: .4s;
}

header.header,
.sticky-wrapper-funding {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999999;
    /*background: #F7F8F8;*/
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    /*font-size: 16px;
    font-weight: 400;*/
    padding: 40px 0;
    -webkit-transition: .4s;
    transition: .4s;
}

header.header a { 
    color: #fff;
}

.nav > li > a:hover,
.nav > li > a:focus { background-color: transparent }
.is-sticky header.header .nav > li.active a,
header.header a:hover,
.is-sticky header.header a:hover { color: #1abc9c }
.is-sticky header.header {
    padding: 10px 0;
    background: #fff;}
.header .nav > li > a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.header .nav > li > a:hover:before {
    width: 100%;
}
.is-sticky header.header a {  
    font-size: 15px;
    color: #000 
}

.logo h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    /*-webkit-transition: .4s;
    transition: .4s;*/
}
.about-text h2 { margin-bottom: 70px }
header.header ul.nav.navbar-nav { margin-right: -30px }

/*-------------------------------------------------*/
/* =  Funding Page CSS
/*-------------------------------------------------*/

.bold{
    font-weight: 700;
}

.infoblock-noborder {
    background-image: url('../assets/img/funding/kedvezmenyezetti-infoblokk.jpg');
    width: 100%;
    aspect-ratio: 320 / 83;
    max-width: 640px;
	background-repeat: no-repeat;
	background-size: contain;
}

.infoblock{
    width: 214px;
    height: 64px;
    background-image: url('../assets/img/funding/kedvezmenyezetti-infoblokk-keretes.jpg');
    background-repeat: no-repeat;
	background-size: contain;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/*-------------------------------------------------*/
/* =  About Area CSS
/*-------------------------------------------------*/
.single-about-block {
    text-align: center;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
}
.about-left {
    margin: 0 auto;
    width: 80%;
}
.single-about-block span {
    background: #1abc9c none repeat scroll 0 0;
    border-radius: 100%;
    color: #fff;
    font-size: 35px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    margin-bottom: 25px;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
.single-about-block h3 {
    text-transform: uppercase;
    position: relative;
}

.about-area {
    background-position: center center;
    background-size: 100% auto;
    background-image: url('../assets/img/sight/backgrounds/pattern/who-are-we-bg.png');
    background-attachment: scroll;
}


.about-area .carousel-inner {
    background-color: #F2F2F2;
    border-radius: 5px;
    box-shadow: 2px 2px 20px 2px rgba(0, 0, 0, 0.3);
}
.about-area .carousel-indicators {
    bottom: -50px;
}
.about-area .carousel-indicators li {
    border: 1px solid #1abc9c;
    height: 5px;
    width: 25px;
    border-radius: 0;
}
.about-area .carousel-indicators .active {
    background-color: #1abc9c;
    border: none;
    height: 5px;
    width: 25px;
    margin: 1px;
}

/*-------------------------------------------------*/
/* =  About Video Area CSS
/*-------------------------------------------------*/

.about-video-area {
    background: url('../assets/img/about-video.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.about-video-area:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0, .8);
}
.about-video-text {
    padding: 20px;
}
.about-video-text h3 {
    text-transform: uppercase;
    color: #fff;
}
.video-play-icon a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
.video-play-icon a i {
    font-size: 25px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #fff;
    border-radius: 100%;
    margin-right: 25px;
    color: #fff;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
.video-play-icon a:hover {
    color: #1abc9c;
}
.video-play-icon a:hover i {
    color: #1abc9c;
    border: 2px solid #1abc9c;
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
}

/*-------------------------------------------------*/
/* =  Services Area CSS
/*-------------------------------------------------*/

.service-area {
    background-image: url('../assets/img/sight/backgrounds/pattern/what-do-we-do-bg.png');
    background-position: center center;
    background-size: 100% auto;
    background-attachment: scroll;
}

.service-area .vert-align {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 69px;
}

.service-area h4 {
    font-size: 25px; 
    font-weight: bold;
}

.single-service {
    text-align: center;
    padding: 15px;
    /*margin-bottom: 25px;*/
    font-size: 19px;
    color: #000;
    min-height: 400px;
}

.single-service h4 {
    color: #044e84;
}

.pictogram-design {
    background-image: url('../assets/img/sight/piktogram_design.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    background-repeat: no-repeat;
    margin: 0px auto 18px auto;
}

.pictogram-digital-content {
    background-image: url('../assets/img/sight/piktogram_digital content and advertising.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    margin: 0px auto 18px auto;
}

.pictogram-digital-strategy {
        background-image: url('../assets/img/sight/piktogram_digital strategy.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    margin: 0px auto 18px auto;
}

.pictogram-measuring {
        background-image: url('../assets/img/sight/piktogram_measuring.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    margin: 0px auto 18px auto;
}

.pictogram-mobile {
        background-image: url('../assets/img/sight/piktogram_mobile.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    margin: 0px auto 18px auto;
}

.pictogram-video {
        background-image: url('../assets/img/sight/piktogram_video production.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    margin: 0px auto 18px auto;
}

.pictogram-vr {
        background-image: url('../assets/img/sight/piktogram_virtual reality.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
    margin: 0px auto 18px auto;
}

.pictogram-web {
        background-image: url('../assets/img/sight/piktogram_web.png');
	width: 156.5px;
    height: 95px;
	background-size: 156.5px 95px;
	    margin: 0px auto 18px auto;
}

/*-------------------------------------------------*/
/* =  Portfolio Area CSS
/*-------------------------------------------------*/
.portfolio-menu {
    margin-bottom: 25px;
    padding: 40px 0;
    padding-top: 0;
}
.portfolio-menu button {
    color: #26282b;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin-left: 5px;
    padding: 10px 15px;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border: none;
    background: transparent;
}
.portfolio-menu button:first-child {
    margin-left: 0;
}
.portfolio-menu button:hover {
    color: #1abc9c;
}
.portfolio-menu button:before {
    /*position: absolute;
    content: "";
    width: 0;
    height: 2px;
    left: 0;
    top: 0;
    background: #1abc9c;
    -webkit-transition: .4s;
    transition: .4s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);*/
    position: absolute;
    content: "";
    left: 0;
    top: -1px;
    width: 16px;     
    height: 0px;

    background-image: url('../assets/img/sight/decor_left.png');
    background-position: center center;
    background-size: 16px 44px;
    background-repeat: no-repeat;

    -webkit-transition: .4s;
            transition: .4s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg)
}
.portfolio-menu button:after {
    position: absolute;
    content: "";
    width: 16px;
    height: 0px;
    right: 0;
    bottom: 1px;

    background-image: url('../assets/img/sight/decor_right.png');
    background-position: center center;
    background-size: 16px 44px;
    background-repeat: no-repeat;

    -webkit-transition: .4s;
    transition: .4s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);    
}
.portfolio-menu button:hover:after {
    height: 44px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(0);
            transform: rotate(0);
}
.portfolio-menu button:hover:before {
    height: 44px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(0);
            transform: rotate(0);
}
.element-item {
    width: 25%;
    float: left;
    overflow: hidden;
    border: 2px solid #fff;
}
.element-item img {
    -webkit-transition: .5s;
    transition: .5s;
    width: 100%;
    height: auto;
}
.element-item:hover img {
    -webkit-transform: rotate(5deg) scale(1.2);
            transform: rotate(5deg) scale(1.2);
}
.element-item-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: scale(0);
            transform: scale(0);
    /*background: rgba(4,78,132, 0.5);*/
       
}

.element-item:hover .element-item-overlay {
    -webkit-transform: scale(1);
            transform: scale(1);
}
.portfolio-desc {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .7s;
    transition: .7s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.portfolio-desc h3{
    font-size: 45px;
    font-weight: bold;
    color: #fff;
}
.portfolio-desc h4 {
    font-size: 30px;
    color: #fff;
}

.element-item:hover .portfolio-desc {
    top: -100%;
}

.portfolio-logo {
   position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.2);
}

.element-item:after {
    position: absolute;
    top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    content: "";
    background: rgba(0,0,0,.8);
    transition: background 0.3s;
}

.element-item:hover:after {
    background: rgba(0,0,0,.0);
}

.portfolio-area {
    background-position: center center;
    background-size: 100% auto;
    background-image: url('../assets/img/sight/backgrounds/pattern/portfolio-bg.png');
    background-attachment: scroll;
}

.portfolio-area a.btn-normal {
    display: block;
    margin: auto;
    margin: 25px auto;

}

/*-------------------------------------------------*/
/* =  Team People Area CSS
/*-------------------------------------------------*/

.single-team-people {
    text-align: center;
    padding: 10px;
    border: 2px solid #ddd;
    position: relative;
    overflow: hidden;
}
.single-team-people h3 {
    padding-top: 25px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
}
.team-people-image {
    overflow: hidden;
}
.team-people-image img {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.single-team-people:hover .team-people-image img {
    -webkit-transform: rotate(10deg) scale(1.2);
            transform: rotate(10deg) scale(1.2);
}
.team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0) rotateX(360deg);
            transform: scale(0) rotateX(360deg);
    -webkit-transition: .5s;
    transition: .5s;
} 
.team-people-profile {
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
    width: 100%;
    margin-top: -20px;
    -webkit-transition: .5s;
    transition: .5s;
}
.team-people-profile a i {
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #fff;
    border-radius: 100%;
    font-size: 18px;
    margin: 0 5px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: .5s;
    transition: .5s;
}
.team-people-profile a i:hover {
    color: #1abc9c;
    border: 2px solid #1abc9c;
}
.single-team-people:hover .team-overlay {
    -webkit-transform: scale(1) rotateX(0deg);
            transform: scale(1) rotateX(0deg);
}
.single-team-people:hover .team-people-profile a i.fa-facebook {
    -webkit-animation-name: profile;
            animation-name: profile;
    -webkit-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.single-team-people:hover .team-people-profile a i.fa-twitter {
    -webkit-animation-name: profile;
            animation-name: profile;
    -webkit-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-delay: 700ms;
            animation-delay: 700ms;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.single-team-people:hover .team-people-profile a i.fa-linkedin {
    -webkit-animation-name: profile;
            animation-name: profile;
    -webkit-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-delay: 900ms;
            animation-delay: 900ms;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.single-team-people:hover .team-people-profile a i.fa-pinterest {
    -webkit-animation-name: profile;
            animation-name: profile;
    -webkit-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-delay: 1100ms;
            animation-delay: 1100ms;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
@-webkit-keyframes profile {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: rotateX(360deg);
                transform: rotateX(360deg);
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
    }
}
@keyframes profile {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: rotateX(360deg);
                transform: rotateX(360deg);
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
    }
}

/*-------------------------------------------------*/
/* =  Home Blog Area CSS
/*-------------------------------------------------*/
.home-blog-content {
    border: 2px solid #F2F2F2;
    border-top: 0;
    padding: 15px;
    background-color: #fff;
}
.home-blog-content h3 {
    margin-top: 15px;
    text-transform: uppercase;
    width: 90%;
}
.home-blog-content .post-details {
    color: #1abc9c;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 2px solid #F2F2F2;  
    position: relative;  
}
.home-blog-content .post-details span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 5px;
}
.home-blog-content .post-details span i {
    padding-right: 5px;
}
.author-bio img {
    position: absolute;
    height: 70px;
    width: 70px;
    top: -90%;
    right: 0;
    border-radius: 100%;
    border: 2px solid #1abc9c;
}

/*-------------------------------------------------*/
/* =  Pricing Area CSS
/*-------------------------------------------------*/
.single-pricing-table {
    text-align: center;
    background-color: #F2F2F2;
    box-shadow: 2px 2px 20px 2px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}
.pricing-header h4 {
    background: #1abc9c;
    color: #fff;
    padding: 15px 0;
    border-radius: 3px 3px 0 0;
}
.price-label h3 {
    font-size: 35px;
}
.price-label h3 span {
    font-size: 14px;
}

.pricing-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing-body ul li {
    padding: 10px;
    display: block;
}
.pricing-body ul li:nth-child(odd) {
    background: #fff;
}
/*-------------------------------------------------*/
/* =  Parallax divider top CSS
/*-------------------------------------------------*/
.parallax-divider-top {
    background: url('../assets/img/sight/bg-3-hd.jpg');
    background-size: cover;
        background-attachment: fixed;

    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 350px;
}
.parallax-divider-top:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background: rgba(0,0,0, 0.6);*/
}   

/*-------------------------------------------------*/
/* =  Parallax divider middle CSS
/*-------------------------------------------------*/
.parallax-divider-middle {
    background: url('../assets/img/sight/bg-3-hd.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 350px;
}
.parallax-divider-middle:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background: rgba(0,0,0, 0.6);*/
}   

/*-------------------------------------------------*/
/* =  Parallax divider bottom CSS
/*-------------------------------------------------*/
.parallax-divider-bottom {
    background: url('../assets/img/sight/bg-3-hd.jpg');
    background-size: cover;
    background-position: center;
        background-attachment: fixed;

    background-repeat: no-repeat;
    position: relative;
    height: 350px;
}
.parallax-divider-bottom:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background: rgba(0,0,0, 0.6);*/
}   

/*-------------------------------------------------*/
/* =  Clients Area CSS
/*-------------------------------------------------*/
.single-client {
    border: 2px solid #F2F2F2;
    margin: 0 5px;
}
/*-------------------------------------------------*/
/* =  Contact Area CSS
/*-------------------------------------------------*/
.home-contact-area {
    background-position: center center;
    background-size: 100% auto;
    background-image: url('../assets/img/sight/backgrounds/pattern/who-are-we-bg.png');
    background-attachment: scroll;
}


a.contact-button {
    background: transparent;
    border-radius: 3px;
    color: #1abc9c;
    display: inline-block;
    font-size: 16px;
    height: 50px;
    line-height: 48px;
    margin-top: 35px;
    width: 200px;
    border: 2px solid #1abc9c;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
a.contact-button:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #1abc9c;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all .4s cubic-bezier(0, 0.95, 0.96, 0.88) 0s;
    transition: all .4s cubic-bezier(0, 0.95, 0.96, 0.88) 0s;
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    z-index: -1;
}
a.contact-button:hover {
    color: #044e84;
}
a.contact-button:hover:before {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.home-contact-area .section-title {
    margin-bottom: 20px;
}

.home-contact-form input[type="text"],
.home-contact-form input[type="email"],
.home-contact-form textarea {
    border: none;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-bottom: 3px solid #ddd;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    width: 100%;
    border-radius: 3px;
}

.home-contact-form input[type="text"]:hover,
.home-contact-form input[type="email"]:hover,
.home-contact-form textarea:hover, 
.home-contact-form input[type="text"]:focus,
.home-contact-form input[type="email"]:focus,
.home-contact-form textarea:focus {
    border-bottom: 3px solid #1abc9c;
}

.home-contact-form input[type="submit"] {
    border: none;
    background: #1abc9c;
    color: #fff;
    text-transform: uppercase;
    display: block;
    width: 250px;
    padding: 10px 15px;
    border-radius: 3px;
    margin: auto;
    box-shadow: 0 11px 11px 0 rgba(0, 0, 0, 0.2);
    margin-top: 25px;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
.contact-info {
    margin-top: 50px;
}
.single-contact-info {
    padding: 15px;
}
.single-contact-info i {
    display: block;
    font-size: 35px;
    color: #1abc9c;
    margin-bottom: 15px;
}

.single-contact-info h4 span {
    display: block;
    font-size: 13px;
    margin-top: 10px;
}

.home-contact-area h4 {
    font-size: 25px;
}

/*-------------------------------------------------*/
/* =  Footer Widget Area
/*-------------------------------------------------*/
.footer-widget-area {
    background: #26282B;
}
.footer-widget {
    padding: 10px;
}
.footer-widget p {
    color: #F2F2F2;
}
.footer-widget h4 {
    padding-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid #F2F2F2;
    position: relative;
}
.footer-widget h4:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: -2px;
    background: #1abc9c;
}
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widget ul li {
    margin-bottom: 5px;
}
.footer-widget ul li a {
    color: #F2F2F2;
    display: block;
}
.footer-widget ul li a:hover {
    text-decoration: underline;
    color: #1abc9c;
}
.footer-widget .social-profile ul li a i {
    display: block;
    float: left;
    width: 35px;
    height: 35px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin-left: 8px;
    border: 2px solid #F2F2F2;
    border-radius: 100%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.footer-widget .social-profile ul li a i.first-child {
    margin-left: 0;
}
.footer-widget .social-profile ul li a i:hover {
    color: #1abc9c;
    border: 2px solid #1abc9c;
}
.footer-widget .social-profile ul li a i.fa-facebook:hover {
    color: #3b5998;
    border: 2px solid #3b5998;
}
.footer-widget .social-profile ul li a i.fa-twitter:hover {
    color: #4099ff;
    border: 2px solid #4099ff;
}
.footer-widget .social-profile ul li a i.fa-linkedin:hover {
    color: #0077B5;
    border: 2px solid #0077B5;
}
.footer-widget .social-profile ul li a i.fa-pinterest:hover {
    color: #c92228;
    border: 2px solid #c92228;
}
.footer-widget .social-profile ul li a i.fa-dribbble:hover {
    color: #ea4c89;
    border: 2px solid #ea4c89;
}
/*-------------------------------------------------*/
/* =  Footer Area
/*-------------------------------------------------*/
footer.footer-area {
    background: #000;
    text-align: center;
    padding: 20px;
}
footer.footer-area .copyright-text p {
    margin: 0;
    color: #fff;
}
/*-------------------------------------------------*/
/* =  Blog Page
/*-------------------------------------------------*/

/*===== Blog Content =====*/

.feature-image {
    display: table;
    width: 100%;
    padding: 80px 0;
    position: relative;
    margin-top: 50px;
}
.feature-image:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
}
.feature-image-default {
    background: url('../assets/img/feature-image-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center top;
}
.feature-image-default h1 {
    text-align: center;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-size: 50px;
    z-index: 1;
    position: relative;
}
#primary {
    padding: 60px 0;
}
article.post, aside > .widget {
    position: relative;
    background: #F2F2F2;
    border: 2px solid #ddd;
    margin: 0 0 40px;
    border-radius: 3px;
}
.post header, .post-excerpt, .post-body {
    padding: 20px;
}
.post header h2 {
    padding: 0 0 15px;
    border-bottom: 2px solid #ddd;
}
.post-image img {
    height: auto;
    width: 100%;
}
article .post-details i.fa {
    padding-left: 10px;
    font-size: 14px;
}
article .post-details i.fa:first-child {
    padding: 0;
}
article .post-details a {
    color: #1abc9c;
}
a.blog-read-more {
    color: #1abc9c;
    -webkit-transition: .4s;
    transition: .4s;
}
a.blog-read-more:hover {
    color: #1abc9c;
    padding-left: 5px;
}
.btn-normal.newer-post {
    float: right;
}
/*======= Widget =====*/
.widget {
    padding: 20px;
}
.widget h4 {
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 2px solid #ddd;
}
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget ul li {
    margin-bottom: 5px;
}
.widget ul li a {
    color: #1abc9c;
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
}
.widget ul li a:hover {
    padding-left: 4px;
}
.widget .search-form input[type="text"] {
    border: 2px solid #ddd;
    padding: 8px 12px;
}

.sight-logo-name {
    background-image: url('../assets/img/sight/sight-logo-white.png');
    width: 150px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: 150px 50px;
}

.is-sticky .sight-logo-name {
    background-image: url('../assets/img/sight/sight-logo-name.png');
}

.sight-logo-name-black {
    background-image: url('../assets/img/sight/sight-logo-name.png');
    width: 150px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: 150px 50px;
}

.align-center {
      display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 22px;
}


.is-sticky .navbar-toggle .icon-bar {
    background-color: #044e84;
}

.is-sticky .navbar-toggle {
    border-color: #044e84;
}

