body {
    margin: 0;

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #ffffff;
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px 0;
}

/*======CONTAINER=====*/

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    /*padding: 0 15px;*/
    justify-content: center;
    flex-wrap: wrap;
}




/*=====HEADER======*/
.header {
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #6B8E23;
    padding: 35px;
    align-items: center;
}

.header__logo {

}


/*nav
==============*/
.nav {
    display: flex;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav__link{
    margin-left: 50px;
    color: #fff;
    opacity: 0.60;
    text-decoration: none;
    transition: opacity 0.3s linear;
}

.nav__link:first-child{
    margin-left: 0;
}

.nav__link:hover {
    opacity: 1;

}

/*intro
==============*/

.intro{
    height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image:url("img/Ceylon.jpg");
    width: 1510px;
    padding-top: 100px;
    background-attachment: fixed;
}



.intro__inner {
    width: 100%;
    max-width: 970px;
    margin: auto;
    text-align: center;

}

.intro__title {
    line-height: 1.1;
    font-family: 'Open Sans', sans-serif;
    font-size: 65px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.intro__subtitle {
    font-size: 22px;
    color: white;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 60px;
}

/*Button
 ===============*/
.btn {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 3px;
    font-family: inherit;
    border: 0;
    cursor: pointer;
    transition: background 0.5s linear;
}

.btn--red {
    background-color: darkolivegreen;
}

.btn--red:hover {
    background-color: #385c16


}

/*Features
=================*/
.features {
    display: flex;
    flex-wrap: wrap;
    margin: 95px 0;
    justify-content: center;
}



.features__item {
    width: 100%;
    max-width: 160px;
    height: 160px;
    padding: 0 40px;
    margin: 25px 0;
    text-align: center;
    justify-content: space-between;
}


.features__icon {
    margin-bottom: 25px;
}

.features__title {
    margin-bottom: 20px;
    font-size: 14px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.features__text {
    font-size: 14px;
    line-height: 1.5;
    color: white;
    text-transform: lowercase;
}

/*WORKS
==========*/
.works {
    display: flex;
    flex-wrap: wrap;
}

.works__item {
    width: 500px;
    /*max-width: 500px;*/
    height: 300px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid white;
    border-right: 0.01px solid white;
    flex-wrap: wrap;
    justify-content: center;
}

.works__item:hover .works__content {
    opacity: 1;
}

.works__photo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate3d(-50%, -50%, 0);
    flex-wrap: wrap;
}
 .works__content{
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
     width: 100%;
     height: 100%;
     background-color: rgba(42, 117, 58, 0.9);
     position: absolute;
     top: 0;
     left: 0;
     z-index: 2;
     opacity: 0;
     transition: opacity 0.2s linear;
 }

 .works__title {
     margin-bottom: 5px;
     font-size: 14px;
     font-weight: 700;
     color: white;
     text-transform: uppercase;
 }

 .works__text {
     font-size: 14px;
     color: white;
 }

 /*TEAM*/
.team {
    margin: 100px 0 70px;
}

.team__inner {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.team__item {
    margin-bottom: 30px;
    width: 25%;
    padding: 0 15px;
}

.team__photo {
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
    height: auto;

}

.team__name {
    margin-bottom: 8px;
    font-size: 22px;
    color: white;

}

.team__prof {
    margin-bottom: 15px;
    font-size: 13px;
    color: lightgreen;
    text-transform: uppercase;
}

.team__text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: khaki;
}

/*social
==============*/
.social {
    display: flex;

}

.social__footer {
    justify-content: center;
}

.social__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 4px;
    background-color: #000;
    border: 1px solid #1f2626;
    transition: background 0.2s linear;
}

.social__item:hover {
    background-color: #0d2915;
}

.social__icon {
    display: block;
    height: 18px;

    fill: #c6cacc;
}

/*Reviews
==============*/
.reviews {
    overflow: hidden;
    background-color: #000000;
    flex-wrap: wrap;
}

.reviews__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews__photo {
    width: 80%;
    position: relative;
    height: 500px;
    justify-content: center;
    /*flex-wrap: wrap;*/
}

.reviews__img {
    /*position: absolute;*/
    top: 0;
    right: 1px;
    z-index: 1;
    justify-content: center;
    /*flex-wrap: wrap;*/
}

/*DownLoad
==============*/

.download {
    margin: 90px 0;
    text-align: center;

}

.download__title {
    margin-bottom: 10px;
    font-size: 28px;
    color: white;
    font-weight: 300;

}

.download__text {
    margin-bottom: 30px;
    font-size: 13px;
    color: khaki;
    font-weight: 300;
    text-transform: uppercase;
}

/*Footer
==============*/

.footer {
    padding: 70px 0;
    background-color: black;
    flex-wrap: wrap;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__block {
    width: 33.3%;
    text-align: center;
    justify-content: center;

}

.footer__title {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: khaki;
}

.footer__address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    color: white;
    opacity: 60%;
}

/*Copyright
-------------*/
.copyright {
    padding: 20px 0;
    background-color: black;
}
.copyright__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #0d2915;
}

.copyright__text span {
    color: white;
}

/*Burger
-------------*/
.burger {

}



/*Media
-------------*/
@media (max-width: 1200px) {
    .intro__title {
        font-size: 40px;
    }
}