@font-face {
    font-family: "avenir-next";
    src: url("../fonts/avenir-next/avenir-next-regular.woff") format('woff');
}
body,
html {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'avenir-next', sans-serif;
    color: #6f6f6f;
    font-size: 18px;
}
::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1200px) {
    .container {
        width: 1100px
    }
}
h1 {
    font-weight: 600;
}
h2 {
    line-height: 24px;
    font-size: 1.33em;
}
h5 {
    font-size: 18px;
}
a {
    color: inherit;
    transition: all 0.5s;
}
a:hover,
a:focus {
    text-decoration: none;
    color: #ffcc33;
}


/**************/
/* navigation */
/**************/
#menu {
    margin-bottom: 0;
    background-color: #38A5DB;
    padding: 10px 0;
    height: auto;
    border: 0px;
}
.navbar-brand {
    height: inherit;
    padding: 0 0 0 20px;
    margin-left: 0 !important;
}
.navbar-brand > img {
    height: 30px;
    width: auto;
    position: relative;
    display: inline-block;
}
.navbar-brand > span {
    font-size: 1.2em;
    position: relative;
    margin-left: 10px;
    margin-right: 0;
    display: inline-block;
    color: #FFF;
    top: 8px;

    /* -moz-transform: scale(1) rotate(0deg) translate(0px, 0px) skew(-22deg, 0deg);
    -webkit-transform: scale(1) rotate(0deg) translate(0px, 0px) skew(-22deg, 0deg);
    -o-transform: scale(1) rotate(0deg) translate(0px, 0px) skew(-22deg, 0deg);
    -ms-transform: scale(1) rotate(0deg) translate(0px, 0px) skew(-22deg, 0deg);
    transform: scale(1) rotate(0deg) translate(0px, 0px) skew(-22deg, 0deg); */
}
.navbar-toggle {
    padding: 7px 10px 0 0;
}
.navbar-nav > li > a {
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    padding: 6px 12px 0 12px;
    margin: 8px 4px 4px 4px;
    text-transform: uppercase;
    transition: all 0.5s;
    color: #fff !important;
}
.navbar-default .navbar-nav > li > a.active,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333;
    border: 1px solid #EFECE6;
}
.navbar-default .navbar-toggle {
    border-color: transparent
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent
}
.navbar-default .navbar-toggle:hover>.navbar-default .navbar-toggle .icon-bar,
.navbar-default .navbar-toggle:focus>.navbar-default .navbar-toggle .icon-bar {
    color: #FFCC33
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #FFF;
}


/********/
/* home */
/********/
#home {
    background: url(../img/bg/01.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #828282;

    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}
#home .overlay {
    background-color: rgba(0, 0, 0, 0.33);
    padding: 20% 0;
    background-attachment: fixed;
}
#home h1 {
    color: #FFFFFF;
    line-height: 64px;
}
.content-heading p.lead {
    margin-bottom: 80px;
    color: #FFF;
}


/************/
/* sections */
/************/

.section-header {
    padding: 40px 0;
    text-align: center;
}
.section-header h2 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.section-header h5 {
    letter-spacing: 1px;
}

.fancy {
    line-height: 0.5;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}
.fancy span {
    display: inline-block;
    position: relative;
}
.fancy span:before,
.fancy span:after {
    content: "";
    position: absolute;
    height: 5px;
    border-bottom: 1px solid #E4E4E4;
    top: 15px;
    width: 400px;
}
.fancy span:before {
    right: 100%;
}
.fancy span:after {
    left: 100%;
}
h4.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 20px;
}


/*******************/
/* service section */
/*******************/

#service {
    background: #38A5DB;
    color:#FFF;
    padding: 60px 0;
}
.service {
    color:#FFF;
}
.service img {
    width: 75px;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}


/**********************/
/* experience section */
/**********************/

#experience {
    background: url(../img/bg/02.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
#experience .overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 0;
    background-attachment: fixed;
}
.experience .fancy span:before,
.experience .fancy span:after {
    border-bottom: 1px solid #999;
}
.experience {
    color: black;
}
.experience img {
    width: 75px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.experience ul {
    padding-inline-start: 13px;
    list-style-type: '— ';
}

/*****************/
/* about section */
/*****************/

#about {
    background: #38A5DB;
    color:#FFF;
    padding: 60px 0;
}
.about {
    color:#FFF;
}
.about .media-body {
    text-align: justify;
}


/*************************/
/* sustainablity section */
/*************************/
#sustainability {
    background: url(../img/bg/03.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}
#sustainability .overlay {
    background-color: rgba(0, 0, 0, 0.66);
    padding: 20% 0;
    background-attachment: fixed;
}
.sustainability {
    color: #fff;
}
.sustainability .media-body {
    text-align: justify;
}


/*****************/
/* works section */
/*****************/

#works {
    background: #38A5DB;
    color:#FFF;
    padding: 60px 0 20px 0;
}
#works h2, #works h5 {
    color:#FFF;
}


/*******************/
/* contact section */
/*******************/

#contact {
    padding: 60px 0;
    background-color: #EAEAEA;
}
.contact-detail {
    text-align: center;
    margin: 0px 0;
}
.contact-detail i.fa {
    text-align: center;
    font-size: 30px;
    background-color: #333;
    color: #FFFFFF;
    padding: 25px 0;
    border-radius: 5px;
    margin: 0 10px;
    margin-right: 20px;
    width: 82px;
    height: 80px;
    transition: background-color 0.5s;
}
div.contact {
    text-align: right;
}
.contact img {
    width: 50px;
    filter: opacity(0.15);
}
form#contact-form { padding: 40px 0 }
.form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
p.help-block.text-danger ul li {
    display: block;
    margin-left: -20px;
    color: #FFCC33;
}
#success .alert-danger {
    color: #FFCC33;
    background-color: #FDFDFD;
    border-color: #FFCC33;
    margin-bottom: 10px;
}
.btn {
    font-size: 14px;
    word-spacing: 2px;
    font-weight: 700;
    padding: 15px 20px 10px 20px;
    background-color: #38A5DB;
    text-transform: uppercase;
    border-color: #333333;
    transition: all 0.5s;
    border-radius: 5px;
    border: 0;
    color: #FFF;
}
.color {
    background-color: #38A5DB;
    border-color: #38A5DB;
}


/**********/
/* footer */
/**********/

#footer {
    padding: 35px 0 10px;
    background-color: #333;
    color: #ffffff;
}
