.sec1{
display: flex;
height: 90vh;
align-items: center;
gap: 60px;
}
.sec-1-1{
margin-left: 100px;
}
.sec-1-1 img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
}
.sec-1-2{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sec-1-2-1{
    font-weight: 700; 
}
h1{
    font-size: 50px;
    color: darkorange;
}
p{
    font-weight: 400;
    font-size: 18px;
    width: 80%;
}
.btns{
    display: flex;
    gap: 20px;
}
.btns >:nth-child(1){
    padding: 10px 20px;
    background-color: transparent;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid black;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btns >:nth-child(1):hover{
    background-color: darkorange;
    color: white;
    border-color:darkorange;
}
.btns >:nth-child(2){
    padding: 10px 20px;
    background-color: black;
    color: white;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid black;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btns >:nth-child(2):hover{
   background-color: darkorange;
   color: white;
   border-color:darkorange;
}
.sec-1-2-2{
    font-weight:700; 
    font-size: 22px;
}
.social{
    display: flex;
    gap: 20px;
}
.social img{
    width: 30px;
    margin-top: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.social img:hover{
    transform: scale(0.9);
    
}

@media(max-width:1024px){
    .sec1{
        display: flex;
        flex-direction: column;
        height: auto; 
        min-height: 90vh; 
        padding-top: 50px; 
        margin-bottom: 50px;
    }
    .sec-1-2{
    align-items: center;
}
.sec-1-1{
margin-left: 0px;
}
p{
    text-align: center;
}
}

@media(max-width:767px){
    .sec1{
        display: flex;
        flex-direction: column;
       height: auto; 
        gap: 30px; 
        padding-bottom: 40px;
    }
    .sec-1-2{
    align-items: center;
}
.sec-1-1 img{
width: 300px;
}
p{
    text-align: center;
}
h1{
    text-wrap: nowrap;
    font-size: 25px;
}
.sec-1-1{
    margin-top: 50px;
}

}
