*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header{
    width: 100%;
    height: 100vh;
    /* background-image:  url('17-min.jpg'); */
    background: linear-gradient(rgba(54, 55, 61, 0.7), rgba(226, 218, 218, 0.1))  , url('../image/17-min.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    width: 100%;
    background-color: transparent;
}


.logo{
    color: white;
    font-size: 40px;

}



.navbar_list{
    display: flex;
    list-style: none;
    margin-right: 40px;
    padding: 1rem;
    z-index: 1000;

}
.navbar_list-item{
    margin:0 20px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transition: all 0.3s linear;
}

.navbar_list-item:hover{
    border-bottom: 3px solid yellowgreen;
}

.list__item--active{
    color:yellow;
}

.nav__toggle-icon{
    display: none;
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.nav__toggle-line{
    background-color: #333;
    width: 3.5rem;
    height: 0.3rem;
    border-radius: 2rem; 
    position: relative;
    transition: all 100ms ease-in;
}

.nav__toggle-line:before , .nav__toggle-line:after{
    content: '';
    width: 3.5rem;
    background-color: #333;
    height: 0.3rem;
    border-radius: 2rem; 
    position: absolute;
    transition: all 200ms ease-in;
}

.nav__toggle-line:before{    
    top: 1rem;
    left: 0;
   
}

.nav__toggle-line:after{
    top: -1rem;
    left: 0;
}

.open  .nav__toggle-line:before{

     transform: translateY(-1rem) rotate(45deg)

}
.open .nav__toggle-line:after {
    transform: translateY(1rem) rotate(-45deg)

}
.open .nav__toggle-line {
    background-color: transparent;

}




/* ///////////////////////////////////////// */

.second_navbar{
    display: flex ;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    background-color: white;
   position: fixed ;
   width: 100%;
   box-shadow: 0 25px 50px rgb(0 0 0 / 5%);
   z-index: 100;
}
.second_navbar .navbar_list-item {
    color: black;
}


.second_navbar .logo {
    color: black;
}
.second_navbar .list__item--active{
    color: rgb(115, 255, 0);
}




/* //////////////////////////--  typewriter js --////////////////// */

.typewriter{
    position: absolute;
    top: 35%;
    left:15%;
    font-size: 70px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
}



.main{
    /* width: 75%;
    height: auto; */
    padding: 4rem 10rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.main__title{
    font-size: 40px;
    margin: 5rem 0 ;
    font-family: 'Hind', helvetica;
}

.main__content{
    color: rgb(149, 146, 146);
    font-family: 'Hind', helvetica;
    margin-bottom: 2rem;
   font-weight: 150;
    font-size: 17px;
    line-height: 30px;
}

.main__link{
font-size: 12px;
letter-spacing: 0.2em;
cursor: pointer;
}
/* ///////////////////////////////--- what to do --////////////// */

.whatdo{
   width: 100%;
   padding: 4rem 8rem;
    height: auto;
    background-color: #f9f9f9;
    margin: 0;
}

.whatdo h3{
    font-size: 35px;
    font-weight: 100;
  margin-top: 6rem;
    margin: 1rem;
}
.whatdo__wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.whatdo__box{
    width: 350px;
    margin:2rem 0rem;
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
}

.whatdo__box-content{
    color: #666;
    margin-top: 1rem;
    font-size: 18px;
    letter-spacing: 0.7px;
    opacity: 0.8;
    line-height: 25px;
}

/* ////////////////--- photo work --/////////// */
.work{
    width: 100%;
    height: auto;
    margin-top: 2rem;
    padding-top: 1rem;
}


.work__title{
    font-size: 35px;
    margin-top: 4rem;
    margin-left: 11.5rem;
}
.work ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-left: 11.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;

}
.work ul li{
    margin-right: 25px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

 .active{
    color: black !important;
    
}

.work__photo-wrapper{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}


.work__photo-box{
    width: 450px;
    height: 450px;
    margin: 1rem;
    cursor: pointer;
    transition: all 0.2s linear;
    display: block;
    animation: port 200ms ease-in-out forwards;  
    transition: all 200ms ease; 
}

.work__photo-box:hover{
    transform:translateY(-10px);
}


.work__photo-box img{
  width: 450px;
}

.work__photo-box-title{
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.work__photo-box-content{
  font-size: 25px;
  color: black;
}
@keyframes port{
    0%{
transform: scale(0.1) rotate(40deg);

    }
    100%{
        transform: scale(1) rotate(0);
    }
}
/* ///////////--blog --//// */

.blog{
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    padding: 1rem;
}

.blog__title{

font-size: 35px;
margin-top: 4rem;
margin-left: 9rem;
}

.wrapper__blog-box{
    margin: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.blog__box{
    width: 300px;
    min-height: 250px;
    margin-bottom: 2rem;
}
.blog__box img{
    width: 300px;
    cursor: pointer;
}

.blog__box-title{
margin-top: 15px;
cursor: pointer;
}

.blog__box-content{
    margin: 15px 0;
font-size: 13px;
color: #888;
}

.blog__box-date{
 font-size: 10px;
 color: #999;
}
 /* ///////////////////////////////// --- contact -- /////// */
/* .contact {
    margin-top: 20rem;
    margin-bottom: 10rem;
}

.contact{
    background-color: var(--app-bg-color);
    box-shadow: 0 0 4rem rgba(19, 182 ,255, 24%);
    max-width: 50rem;
    padding: 2rem 4.5rem;
    height: 100%;
    margin-left: auto;
 }
.contactus__wrapper{
    background-image: url('../map.jpg');
    background-size: cover;
       height: 65rem;
       
   }
   .contact__input{
    border: none;
    outline: none;
    padding: 1.5rem 2rem;
    box-shadow: 0 0 4rem rgba(96, 233 ,255, 24%);
    border-radius: 1rem;
    color: var(--text-color);
}
.contact__input::placeholder{
    color:inherit;
}

.contact__input--textarea{
    resize: vertical;
    max-height: 15rem;
    min-height: 8rem;
}

.contact__submit{
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1.5rem;
    border-radius: 5rem;
    font-family: 'Poppins-SemiBold';
    cursor: pointer;
} */

.contact {
    margin-top: 5rem;
    margin-bottom: 10rem;
    margin-left: 1rem;
}
.contact_title{
    margin-left: 4rem;
    font-size: 35px;
   
}
.form{
    display: flex;
    flex-direction: column;
}
.forminput{

    margin: 4rem;
    display: flex;
    flex-wrap: wrap;
}

.name{
 border: none;
 text-align: left;
 margin-bottom: 25px;
 width: 40%;
 height: 40px;
 border-bottom: 1px solid #666;

}
input{
    border: none;
    width: 40%;
    margin: 2rem;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    outline: 0;
}

.form_section{
    width: 100%;
    height: 80vh;
}
input:focus{
    border-bottom:1px solid #333;
}

.contact__submit{
    background-color: #333;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    width: 150px;
    margin-left: 6rem;
    font-family: 'Poppins-SemiBold';
    cursor: pointer;
    font-size: 18px;
}

/* input { */
    /* writing-mode: horizontal-tb !important; */
    /* text-rendering: auto;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    text-align: start;
    -webkit-rtl-ordering: logical;
    cursor: text;
} */
/* input, textarea, button {
    margin: 0 0 25px 0;
    padding: 0;
    display: block;
    width: 40%;
    height: 48px;
    font-size: 14px;
    color: #292929;
    letter-spacing: 0.03em;
    font-weight: 500;
    -webkit-appearance: none;
    resize: none;
    outline: 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   
    -webkit-transition: all 0.4s ease 0s;
   
} */

