*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Libertinus Serif Display", system-ui;
    
}
.contaner{
    margin: 0px 90px;
}
header{
    width: 100%;
    height: 100vh;
    background-image: url("../photo/hero_1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
}
/* header::before{
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
} */
nav{
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid gray;
    background-color: transparent;
    position: flex;
    z-index: 100;
}
nav .logo{
    display: flex;
    font-size: 30px;
    color: #fff;
    justify-content: center;
    align-items: center;
}
nav ul{
    display: flex;
    gap: 38px;
    align-items: center;
}
nav ul li{
    list-style: none;
}
nav ul li a{
    text-decoration: none;
    font-size: 17px;
    color: rgb(201, 198, 198);
    font-family: "Libertinus Serif Display", system-ui;
    transition: all .3s;
}
nav ul li a:hover{
    color: #fff;
}
nav ul li a span{
    color: #fff;
}
.cont{
    width: 80%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
header .contaner .pragraph{
    width: 100%;
    height:80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
header .contaner .pragraph p{
    font-size: 50px;
    color: #fff;
    font-weight: 900;
}
header .contaner .pragraph button{
    padding: 15px 40px;
    background-color: rgb(83, 83, 248);
    color: #fff;
    border-radius: 22px;
    border: 1px solid rgb(83, 83, 248);
    transition: all .3s;
    font-size: 16px;
    cursor: pointer;
}
header .contaner .pragraph button:hover{
    background-color: #111;
    border: 1px solid #111;
}

#sec_1{
    width: 100%;
    height: 100vh;
}
#sec_1 h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
#sec_1 .title .img img{
    width: 60px;
}
#sec_1 .about{
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#sec_1 .about h1{
    color: rgb(83, 83, 248);
    font-size: 44px;
}
#sec_1 .title{
    display: flex;
    justify-content: space-between;

}
#sec_1 .title .img{
    width: 50%;
    height: 60vh;
    background-image: url("../photo/hero_1.jpg");    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#sec_1 .title .get{
    width: 40%;
    height: 60vh;
    line-height: 30px;
}
#sec_1 .title .get h2{
    color: #111;
    font-size: 30px;
}
#sec_1 .title .get p{
    color: gray;
    font-size: 20px;
}
#sec_1 .title .get h3,h4,h5,h6{
    color: gray;
    font-size: 15px;
}
.h3{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px 0 0;
}
.h4{
     display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px 0 0;
}
.h5{
     display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px 0 0;
}
.h6{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px 0 0;
}



.dropdown{
    position: relative;
    /* display: block; */
    cursor: pointer;
   
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(199, 193, 193);
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    right: -50px;
  }
 .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: gray;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

.dropdown{
    /* display: none; */
}

@media (max-width:909px) {
    nav{
        display: flex;
        justify-content: space-between;
    }
    nav .link{
        display: none;
    }

    /* .dropdown{
        display: block;
    } */

    header .contaner .pragraph p{
        text-align-last: center;
        text-align: center;
    }

    #sec_1 .title .get{
        width: 80%;
    }

    #sec_1 .title{
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }
    #sec_1 .title .img{
        width: 80%;

    }

    
}


@media (max-width:909px){

}

@media (max-width:520px){
    nav{
        overflow: hidden;
    }

    header{
        height: 120vh;
    }


    #sec_1 .title .img{
        width: 100%;
    }

    #sec_1 .title .get{
        width: 100%;
    }

}