#footnote{
    background-color: rgb(19,20,22);
    color: white;
    padding: 100px 100px 80px 100px;
}
.footnote-arrow-right{
    width: 70px;
}
.summary-logo{
    width: 50px;
}
.social-media-icon{
    width: 50px;
    cursor: pointer;
   
}
.footnote-main-div{
    display: flex;
    flex-direction: column;
    
}
.footnote-top-div{
    display: flex;
    justify-content: space-between;
}
.footnote-description-div{
    display: flex;
    flex-direction: column;
    max-width: 950px;
}
.description-top-text{
    color: rgb(219, 36, 36);
    font-size: 25px ;
}
.description-middle-text{
     font-size: 70px;
}
.description-middle-div{
    display: flex;
    align-items: end;
}
.description-middle-span{
    color: rgba(255,255,255,0.50)
}
.description-bottom-text{
    color: rgba(255, 255, 255, 0.5);
   font-size: 25px;
   line-height: 40px;
}
.input-title{
    font-size: 20px
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}
.form-input{
    width: 600px;
    height: 80px;
    color: rgba(255, 255, 255, 0.50);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.50) ;
    border-radius: 10px;
    font-size: 20px;
    padding-left: 20px;
    

}
.form-input:focus, .form-textarea:focus{
    outline: 5px solid rgb(9, 74, 186);
}
textarea{
    width: 600px;
    height: 70px;
    color: rgba(255, 255, 255, 0.50);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.50) ;
    border-radius: 10px;
    font-size: 20px;
    padding-top: 20px;
    padding-left: 20px;
    

}
.submit-button{
      width: 190px;
    height: 60px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: white;
    background-color: rgb(219, 36, 36);
    margin-top: 30px;
}
.submit-button:hover{
    background-color:rgb(240, 58, 51);
}
.submit-button:active{
    background-color: rgb(250,68,61);
}
.footnote-summary{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.summary-top-div{
    display: flex;
    align-items: center;
    gap: 20px;
}
.summary-name{
    font-size: 30px;
}
.summary-text{
    color: rgba(255, 255, 255, 0.50);
    font-size: 20px;
}
.summary-bottom-div{
    display: flex;
    gap: 30px;
}
.summary-nav{
    color: white;
    font-size: 25px;
}
.business-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 22px;
   
}
.email-text{
    color: rgb(111, 128, 172) ;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 30px;
}
.social-media-div{
    padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.500) ;
     display: flex;
     justify-content: space-between;

     
}
.icons-div{
    display: flex;
    margin-bottom: 30px;
}
.license-text{
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}
.footnote-bottom-div{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 100px;
}

@media(max-width: 1000px ){
    .footnote-top-div{
        flex-direction: column;
        align-items: center;
    }
    .footnote-bottom-div{
        flex-direction: column;
        gap: 30px;
    }
    .social-media-div{
        flex-direction: column;
    }
}