*
{
    font-family: Arial, tahoma, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

/* start header */
.header
{
    background-image: url('../images/header.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
}

.header .navbar
{
    overflow: hidden;
    padding: 20px 0;
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.header .navbar .logo
{
    font-size: 24px;
}
.header .navbar .links
{
    float: right;
}
.header .navbar .links i
{
    margin-left: 5px;
}
.header .intro h1
{
    margin: 0;
    font-size: 50px;
    font-weight: 800;
}
.header .intro p
{
    margin: 5px 0 40px;
    line-height: 1.9;
    font-size: 20px;
    color: #E2E2E2;
}
.header .buttons button
{
    background: transparent;
    color: #fff;
    padding: 10px 0;
    width: 180px;
    font-size: 14px;
    border: 1px solid #909090;
    margin: 0 8px;
    border-radius: 10px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    outline: none;

}
.header .buttons button:hover
{
    background-color: #f7600e;
    border: 1px solid #f7600e;
    color: #fff;
    cursor: pointer;
}
.header .buttons button:last-of-type
{
    background-color: #f7600e;
    border: 1px solid #f7600e;
    color: #fff;
    cursor: pointer;
}
.header .arrow
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 40px 0;
}
.header .arrow i
{
    border: 2px solid #7b7b7b;
    border-radius: 50%;
    height: 33px;
    width: 33px;
    line-height: 35px;
    cursor: pointer;
}
/* end header */

/* start features */
.features
{
    padding: 80px 0;
    overflow: hidden;
}
.features .box
{
    width: 22%;
    float: left;
    margin-right: 4%;
}
.features .box:last-child
{
    margin-right: 0;
}
.features .box i
{
    color: #f7600e;
    border: 1px solid #ccc;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    line-height: 120px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.features .box i:hover
{
    background-color: #f7600e;
    color: #fff;
    border: 1px solid #f7600e;
}
.features .box:first-of-type i
{
    background-color: #f7600e;
    color: #fff;
    border: 1px solid #f7600e;
}
.features .box h3
{
    text-transform: uppercase;
    font-weight: normal;
    color: #505050;
}
.features .box p
{
    line-height: 2;
    color: #888;
}
/* end features */

/* start subscribe */
.subscribe
{
    background-image: url('../images/subscripe.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.subscribe form
{
    padding: 100px 0;
    width: 700px;
    margin: auto;
    text-align: center;
}
.subscribe form input[type="email"]
{
    padding: 0 10px;
    width: 320px;
    font-size: 20px;
    border-radius: 10px;
    position: relative;
    top: 2px;
    border: none;
    height: 37px;
    line-height: 37px;
    outline: none;
}
.subscribe form button
{
    padding: 10px;
    width: 200px;
    background-color: #f7600e;
    border: none;
    color: #fff;
    border-radius: 10px;
    margin-left: 20px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}
/* end subscribe */

/* start our work */
.our-work
{
    padding: 50px 0;
}
.our-work h2
{
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 0;
}
.our-work ~ p
{
    line-height: 2;
    margin: 10px 0 40px;
}
.our-work .show-more
{
    background: transparent;
    border: 1px solid #ccc;
    width: 180px;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    color: #555;
    -webkit-transition: all .5 ease-in-out;
    -moz-transition: all .5 ease-in-out;
    transition: all .5s ease-in-out;
    outline: none;
    cursor: pointer;
}
.our-work .show-more:hover
{
    background-color: #f7600e;
    color: #fff;
    border: 1px solid #f7600e;
}
.our-work .items-box
{
    overflow: hidden;
}
.our-work .items-box .item
{
    float: left;
    overflow: hidden;
    width: 30%;
    height: 300px;
    margin-left: 1.33333%;
    margin-bottom: 12px;
    border-radius: 10px;
    position: relative;
}
.our-work .items-box .item img
{
    width: 100%;
    height: 100%;
}
.our-work .items-box .item .over
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 97, 14, .9);
    color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    display: none;
}
.our-work .items-box .item:hover .over
{
    display: block;
}
.our-work .items-box .item:first-of-type .over
{
    display: block;
}
.our-work .items-box .item .over h4
{
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 0;
}
.our-work .items-box .item .over p
{
    margin-top: 10px;
    margin-bottom: 50px;
    line-height: 2;
}
.our-work .items-box .item .over button
{
    background-color: transparent;
    border: 1px solid #fff;
    width: 180px;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    cursor: pointer;
    outline: none;
}
.our-work .items-box .item .over button:hover
{
    background-color: #fff;
    color: #f7600e;
    border: 1px solid #fff;
}

/* end our work */

/* start testemonials */
.testemonials
{
    background-image: url('../images/testemonial.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.testemonials .client
{
    padding: 50px 0;
    color: #fff;
    font-size: 18px;
}
.testemonials .client img
{
    width: 110px;
    height: 110px;
    border-radius: 50%;
}
.testemonials .client p
{
    line-height: 2;
    font-style: italic;
}
.testemonials .fa-chevron-right,
.testemonials .fa-chevron-left
{
    position: absolute;
    top: 45%;
    color: #999;
    cursor: pointer;
}
.testemonials .fa-chevron-right:hover,
.testemonials .fa-chevron-left:hover
{
    color: #f7600e;
}
.testemonials .fa-chevron-right
{
    right: 0;
}
.testemonials .fa-chevron-left
{
    left: 0;
}
/* end testemonials */

/* start our team */
.our-team
{
    padding: 50px 0;
}
.our-team .the-team
{
    overflow: hidden;
}
.our-team h2
{
    font-size: 35px;
    margin-bottom: 0;
}
.our-team .main
{
    margin: 10px 0 40px;
    line-height: 2;
    color: #666;
    font-size: 20px;
}

.our-team .the-team .person
{
    float: left;
    width: 24%;
    margin-left: 1%;
    color: #888;
}
.our-team .the-team .person img
{
    width: 100%;
    height: 100%;
    width: 265px;
    height: 290px;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.our-team .the-team .person:hover img
{
    filter: none;
    -webkit-filter: grayscale(0);
}
.our-team .the-team .person:nth-of-type(2) img
{
    filter: none;
    -webkit-filter: grayscale(0);
}
.our-team .the-team .person:hover
{
    color: #555;
}
.our-team .the-team .person:nth-of-type(2)
{
    color: #555;
}
.our-team .the-team .person:hover .fa-facebook
{
    color: #3b5998;
}
.our-team .the-team .person:hover .fa-twitter
{
    color: #55acee;
}
.our-team .the-team .person:hover .fa-google-plus
{
    color: #dc4e41;
}
.our-team .the-team .person:nth-of-type(2) .fa-facebook
{
    color: #3b5998;
}
.our-team .the-team .person:nth-of-type(2) .fa-twitter
{
    color: #55acee;
}
.our-team .the-team .person:nth-of-type(2) .fa-google-plus
{
    color: #dc4e41;
}
.our-team .the-team .person p
{
    font-size: 15px;
}
/* end our team */

/* start contact form */
.contact
{
    background-image: url('../images/contactbackground.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.contact .overlay
{
    padding: 50px 0;
    color: #fff;
}
.contact h2
{
    font-size: 35px;
}
.contact form
{
    width: 700px;
    margin: 50px auto;
    text-align: center;
    overflow: hidden;
}
.contact form input[type="text"],
.contact form input[type="email"]
{
    width: 48%;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.contact form input[type="text"]
{
    float: left;
}
.contact form input[type="email"]
{
    float: right;
}
.contact form textarea
{
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    height: 140px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.contact form .info
{
    margin-top: 10px;
}
.contact form .info .form-icons
{
    float: right;
}
.contact form .info button
{
    float: left;
    padding: 10px;
    width: 200px;
    background-color: #f7600e;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.contact form .info .form-icons .fa-facebook
{
    color: #3b5998;
}
.contact form .info .form-icons .fa-twitter
{
    color: #55acee;
}
.contact form .info .form-icons .fa-google-plus
{
    color: #dc4e41;
}
/* end contact form */

/* start footer */
.footer
{
    background-color: #3b434c;
    color: #fff;
    overflow: hidden;
    padding: 30px 0;
}
.footer .copyright
{
    float: left;
}
.footer .design
{
    float: right;
}
/* end footer */




















/* start our framework */
.container
{
    width: 1200px;
    margin: auto;
    position: relative;
}
.overlay
{
    background-color: rgba(49, 55, 61, .9);
    width: 100%;
    height: 100%;
}
.table
{
    height: 100%;
    display: table;
}
.table-row
{
    display: table-row;
}
.upper
{
    text-transform: uppercase;
}
.text-center
{
    text-align: center;
}
.main-color
{
    color: #f7600e;
}
.main-background
{
    background-color: #f7600e;
}
::-webkit-input-placeholder
{
    font-size: 14px;
}
::-moz-placeholder
{
    font-size: 14px;
}
::-ms-input-placeholder
{
    font-size: 14px;
}
.hidden
{
    display: none;
}
.active
{
    display: block;
}
/* end our framework */