* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b28756;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 13px;
}





.banner {

    height: calc(100vh - 100px);
    background-color: #444;
    background-image: url('../images/photo2.jpg');
    background-size: cover;
    background-position:  center bottom ;
    overflow: hidden;
}

.banner .cover {
    width: 100vw;
    height: 100%;
    background-color: rgb(0, 0, 0,0.6);
    display: inline-block;
}

.banner .text-area {
    height: 100%;
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.text-area h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
}

.text-area h1 span {
    color: var(--primary-color);
    margin-bottom: 20px;
}




.section-aboutUs {
    display: flex;
}

.section-aboutUs-left {
    flex: 1;
}

.section-aboutUs-left p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
}

.section-aboutUs-right {
    width: 500px;
    background-color: #333;
}

.section-aboutUs-right img {
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 10px #333;
}





.section-services {
    display: flex;
    justify-content: space-around;
}

.section-services .service  {
    border-left: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding: 10px;
    height: 200px;

}

.section-services .service img  {
   width: 50px;
   margin-bottom: 25px;
}

.section-services .service h4 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.section-services .service p {
    font-size: 12px;
    color: #666;
}

.section-services .service h4, .section-services .service p {
    text-align: center;
}

.section-services .service:last-child {
    border-right: 3px solid #ddd;
}




.section-projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.section-projects-filters {
    border:1px solid #999;
    background-color: #ccc;
    border-radius: 30px;
    display: inline-block;
    padding: 0 20px;
}

.section-projects-filters ul,
.section-projects-filters li {
    list-style: none;
}

.section-projects-filters li {
    display: inline-block;
    padding: 10px;
    text-transform: uppercase;
    font-size: 13px;
    border-right: 1px solid #999;
    cursor: pointer;
    border-bottom: 3px solid #ccc;
}

.section-projects-filters li:last-child {
    border-right: none;
}

.section-projects-filters li:hover,
.section-projects-filters li.active {
    color: #777;
    border-bottom-color: var(--primary-color);
}



.section-projects-photos {
    width: 100vw;
    max-width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-projects-photo {
    width: 280px;
}

.section-projects-photoarea {
    margin: 10px;
    width: 260px;
    height: 160px;
}

.section-projects-photoarea img {
    width: inherit;
    height: inherit;
}

.section-projects-photoinfo {
    position: absolute;
    background-color: rgb(0, 0, 0,0.5);
    width: inherit;
    height: inherit;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.section-projects-photoinfo h5 {
    font-size: 18px;
    font-weight: 600;
}

.section-projects-photoarea:hover .section-projects-photoinfo {
    display: flex;
}



.bg-team {
    background: url('https://media.istockphoto.com/id/820815076/pt/foto/empty-wooden-and-blurred-nature-background.jpg?s=612x612&w=0&k=20&c=QsvkturOgt5zYb3iLgpR0sO6eOH216FWfyjqsV699uE=');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
}

.section-team-area {
    background-color: rgb(0, 0, 0,0.7);
    padding: 50px;   
}

.section-team {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.section-team .section-team-person {
    width: 250px;
    height: 100%;
    min-height: 300px;
    background-color: #fff;  
    display: flex;  
    flex-direction: column;
    justify-content:center;
    align-items: center;
    color: #000; 
    border-radius: 15px;
}

.section-team-img {
    border-radius: 50%;
    margin-bottom: 30px;
    width: 120px;
    height: 120px;
}

.section-team-name {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
}

.section-team-role {
    font-size: 14px;
    margin-top: 10px;
    color: #999;
}

.section-team-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.section-team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #ccc;
    border-radius: 50%;  
}

.section-team-social a:hover {
    background-color: var(--primary-color);
}



.section-happy-clients {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reviews .client-img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.reviews .client-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
}

.reviews .client-review {
    text-align: center;
    margin: 15px 0 25px;
    color: #777;
   
}

.slider-area {
    display: flex;
    gap: 5px;
}

.slider-area .slider {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.slider-area .slider:hover, .slider-area .slider.active{
    background-color: var(--primary-color);
}



.section-prices {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.section-prices .plan-prices {
    width: 260px;
    height: fit-content;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.plan-name {
    font-weight: 600;
    font-size: 20px;
    margin: 25px 0;
}

.plan-price {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

.plan-benefits ul, .plan-benefits li {
    list-style: none;
} 

.plan-benefits li {
    text-align: center;
    margin-bottom: 15px;
}

.plan-benefits li::after {
    content: '';
    display: block;
    margin:  15px auto;
    width: 30px;
    height: 2px;
    background-color: #000;
}

.plan-benefits li:last-child::after{
    display: none;
}

.plan-prices button {
    background-color: #333;
    width: 60%;
    margin-bottom: 30px;
}

.plan-prices button:hover {
    background-color: var(--primary-color);
}





.premium-description {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: self-start;
    padding: 15px;
}

.premium-description-icon {
    width: 100px;
}

.premium-description-features h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-description-features p {
    color: #666;
    text-align: justify;
    max-width: 80%;
    margin-bottom: 15px;
}

.premium-description-features ul {
    list-style: none;
}

.premium-description-features li {
    display: flex;
    align-items: center;
    color: #666;
    width: fit-content;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.premium-description-features li::before {
    content: '';
    width: 15px;
    height: 1px;
    margin-right: 5px;
    background-color: #777;
}



.section-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}


.fact {
    width: 200px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fact h4 {
    font-size: 30px;
    color: var(--primary-color);
    display: inline-flex;
    flex-direction: column;
}

.fact h4::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #999;
    margin-top: 10px;
    align-self: center;
}

.fact h5 {
    font-size: 15px;
}

.fact p {
    text-align: justify;
    font-size: 11px;
    color: #999;
}


#tell-about-us {
    border-bottom: 1px solid #bbb;
}
.section-tell-about-us {
    display: flex;
    gap: 20px;
    
}

.share {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
}

.links {
    flex: 1;
    
}

.links ul, .links li {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap:5px
}
.links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

a.twitter {background-color: lightseagreen;}

a.linkedin {background-color: #0a66c2;}

a.facebook {background-color:#1877f2;}

a.googleplus { background-color: #ff0000;}

a.pinterest { background-color: #cc0000;}


.section-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form-input {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form-input label {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.form-input input {
    height: 50px;
    width: 60%;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px;
    border-bottom: 2px solid #aaa;
}



