.banner-con{
    background: url(../images/contact-bg.jpg) no-repeat;
    background-size: cover;
}
.banner-con .banner .b1 {
    color: var(--yellow-color);
    background: rgba(34, 25, 5, 0.5);
    border: 1px solid var(--yellow-color);
    width: fit-content;
    margin: 100px auto 20px;
    font-size: 14px;
    padding: 5px 30px;
    border-radius: 30px;
}
.banner-con .banner h1{
    text-align: center;
}
.banner-con .banner h1 span{
    color: var(--yellow-color);
}
.banner-con .banner>.desc{
    color: var(--font-gray);
    text-align: center;
}
.message-contact{
    gap: 30px;
}
.message-contact .message{
    background: #161b22;
    padding: 30px var(--gap50);
    border-radius: 20px;
    max-width: 944px;
}

.message-contact .message .form-title{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
}
.message-contact .message .desc{
    color:  var(--font-gray);
}
.message-contact .message form{
    gap: 30px;
    color: var(--font-gray);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.message-contact .message form .input-form{
    width: calc((100% - 60px) / 3);
}
.message-contact .message form .input-form input,.message-contact .message form .textarea-form textarea{
    background: #18202c;
    border: 1px solid #29414e;
    border-radius: 15px;
    outline: none;
    padding: 10px;
    color: var(--font-gray);
}
.message-contact .message form .textarea-form{
    width: 100%;
}
.message-contact .message form input[type=submit]{
    background: var(--yellow-color);
    width: 140px;
    height: 40px;
    outline: none;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    color: #0d1016;
    border: none;
}
.contact{
    flex-shrink: 0;
    max-width: 50%;
}
.contact ul{
    gap: 20px;
    color: var(--font-gray);
}
.contact ul li{
    padding: 30px;
    display: flex;
    background: #161b22;
    border-radius: 20px;
    align-items: center;
    gap: 20px;
}
.contact ul li:nth-child(1):before{
    content: url(../images/phone-small.png);
    background: #282827;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.contact ul li:nth-child(2):before{
    content: url(../images/email-small.png);
    background: #282827;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.contact ul li:nth-child(3):before{
    content: url(../images/address.png);
    background: #282827;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.contact ul li span{
    color: var(--yellow-color);
    font-size: 20px;
    font-weight: bold;
}
.contact ul li p{
    margin-bottom: 0;
}
.small-title{
    text-align: center;
}
.small-title .small{
    color: var(--yellow-color);
    margin-bottom: 0;
}
.promise ul{
    gap: var(--gap80);
}
.promise ul li{
    width: calc((100% - var(--gap80)*2) / 3);
    background: #1c232c;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
}
.promise ul li i{
    /* position: relative; */
}
.promise ul li:nth-child(1) i:before{
    content: "";
    background: url(../images/24-hours-fill.png) no-repeat;
    width: 28px;
    height: 28px;
    background-size: contain;
    object-fit: contain;
    display: block;
     margin: 0 auto;
}
.promise ul li:nth-child(2) i:before{
    content: "";
    background: url(../images/one-to-one.png) no-repeat;
    width: 31px;
    height: 26px;
    background-size: contain;
    object-fit: contain;
    display: block;
     margin: 0 auto;
}
.promise ul li:nth-child(3) i:before{
    content: "";
    background: url(../images/file.png) no-repeat;
    width: 28px;
    height: 28px;
    background-size: contain;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.promise ul li p:nth-of-type(1){
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
}
.promise ul li p:nth-of-type(2){
    margin-bottom: 0;
    color: var(--font-gray);
}

@media (max-width:1080px){
    .message form .input-form{
        width: 100%;
    }
     .promise ul li{
        width: calc((100% - 30px) / 3);
    }
}

@media (max-width:768px){
    .message-contact{
        flex-direction: column;
    }
    .contact{
        max-width: 100%;
    }
    .promise ul{
        gap: 15px;
    }
   
}

@media (max-width:500px){
    .promise ul{
        flex-direction: column;
    }
    .promise ul li{
        width: 100%;
    }
}