@import url(/css/fonts.css);

:root{
  --primary-color: rgb(44, 158, 9);
  --link-color: rgb(119, 119, 119);
  --white: #fff;
  --roboto: "Roboto";
  --title-color: rgb(75, 73, 73);
  --text-color:rgb(154, 149, 149);
}
*{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}

body{
    font-family: var(--roboto);
}
.all-btn{
    background: var(--primary-color);
    font-weight: 400;
    font-family: 24px;
    color: var(--white);
    padding: 15px 0;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    max-width: 200px;
    width: 100%;
}
.all-btn:hover{
    color: var(--white);
}
.title{
    color: var(--title-color);
    font-weight: 400;
    font-size: 35px;
}
.line{
    max-width: 80px;
    height: 2px;
    background: var(--primary-color)
}

/* ====== Header Starting ======*/

.header__nav-list{
    display: flex;
    column-gap: 30px;
}
.header__content-touche{
    /* position: fixed; */
    font-size: 40px;
    font-weight: 300px;
    color: var(--primary-color);
  
}
.header__content-touche:hover{
    color: var(--primary-color);
}
.header__menu{
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    padding: 0;
    border: none;
    position: relative;
}
.header__menu::before,
.header__menu::after{
  content: '';
  width: 100%;
  height: 100%;
 position: absolute;
 left: 0;
 background: var(--primary-color);
 transition: .5s;
}
.header__menu::before{
   top: -10px;
}
.header__menu::after{
    top: 10px;
 }
 .header__menu:not(.collapsed)::before{
    transform: rotate(45deg);
    top: 0;
 }
 .header__menu:not(.collapsed)::after{
    transform: rotate(-45deg);
    top: 0;
 }
 .header__menu:not(.collapsed){
    background: transparent;
 }
.header__content{
    position: sticky;
    top: 0;
}

.header__list-link{
    color: var(--white);
    font-size: 20px;
    font-size: 400;
    text-transform: uppercase;
    transition: .5s;
}
.header__list-link:hover{
    color: var(--primary-color);
}
.header__img{
    z-index: -1;
}
.header__content2{
   margin-top: -1900px;
   position: fixed;
   left: 10%;
   padding: 30px;
   transition: .5s;
}
.header__content3{
    
}
.header__content3-cont{
 margin-top: -700px;
}
.header__cont-title{
    color: var(--white);
    font-size: 70px;
    font-weight: 300;
}
.heder__cont-text{
    color: var(--white);
    font-size: 30px;
    font-weight: 300;
}


/* ====== Header End ======*/

/* ====== Main Startimg =======*/
  .main__contant{
     align-items: center;
    margin-top: 600px;
   
  }
 .main__col-father{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
   
 }
  .main__col-text{
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color);
   
  }
  .main__col-title{
    font-size: 20px;
    font-weight: 400;
    color: rgb(93, 90, 90);
  }
  .main__menu-img{
    width: 100%;
    height: 500px;
  }
  .main__menu-img{
    z-index: -1;
  }
  .main__menu-line{
    margin-left: 41%;
  }
  .main__content2{
    position: relative;
    margin-top: 100px;
    background: rgb(7, 15, 25, 0.75)
  }
  .main__menu-father{
    position: absolute;
    top: 45%;
    left: 30%;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    background: rgb(7, 15, 25, 0.75);
   padding: 50px;
  }
  .main__menu-title{
    color: var(--white);
    font-weight: 400;
    font-size: 30px;

  }
  .main__menu-text{
    color: var(--white);
    font-size: 17px;
    font-weight: 400;
  }
  .div{
    
  }
    
/* ====== Main End ====== */