.contact-us-form .pic {
    text-align-last: center;
}

.contact-us-form .pic img {
    width: 330px;
}

.contact-us-form .container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.contactss {
    background-color: #f7f7f7;
    align-content: center;
    width: 300px;
    height: 320px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    align-self: center;
    position: relative;
}

.contactss::before {
    position: absolute;
    content: "";
    width: 55px;
    height: 55px;
    border-radius: 50px;
    background-color: transparent;
    border: 4px solid #01bb0d;
    border-color: transparent transparent #01bb0d transparent;
    left: -10px;
    bottom: -10px;
    transform: rotate(45deg);
}

.contactss::after {
    position: absolute;
    content: "";
    width: 55px;
    height: 55px;
    border-radius: 50px;
    background-color: transparent;
    border: 4px solid #01bb0d;
    border-color: transparent #01bb0d transparent transparent;
    right: -10px;
    top: -10px;
    transform: rotate(-45deg);
}

.contactss p a i {
    color: rgb(0, 0, 0);
    padding: 5px;
}

.contactss p a {
    color: rgb(31, 31, 31);
}

.contactss p {
    margin: 0;
    padding: 0;
}

.contactss .info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    left: -50px;
}

.contactss .info i {
    color: #01bb0d;
    font-size: 25px;
}

.contactss .info .txt p {
    font-size: 17px;
}

.contactss .wrapper {
    padding-top: 25px;
}

.contactss .wrapper .icon {
    position: relative;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
    text-decoration: none;
    display: inline-grid;
    align-content: center;

}

.contactss .wrapper .tooltip {
    position: absolute;
    right: 50%;
    translate: 50% 0;
    top: 0;
    line-height: 1.5;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contactss .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contactss .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contactss .wrapper .icon:hover span,
.contactss .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.contactss .wrapper .twitter:hover,
.contactss .wrapper .twitter:hover .tooltip,
.contactss .wrapper .twitter:hover .tooltip::before {
    background-color: black;
    color: #ffffff;
}

.contactss .wrapper .whatsapp:hover,
.contactss .wrapper .whatsapp:hover .tooltip,
.contactss .wrapper .whatsapp:hover .tooltip::before {
    background-color: #01bb0d;
    color: #ffffff;
}

.contactss .wrapper .instagram:hover,
.contactss .wrapper .instagram:hover .tooltip,
.contactss .wrapper .instagram:hover .tooltip::before {
    background: (circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
}

.contactss {
    line-height: 30px;
}

.contactss .info .fa-instagram,
.contactss .info .fa-whatsapp,
.contactss .info .fa-x-twitter {
    line-height: 45px;
    font-size: x-large;
}

@media (max-width: 767px) {
    .contact-us-form .container {
        flex-direction: column-reverse !important;
        align-items: center;
        gap: 100px;
    }

    #contact input {
        width: 70vw !important;
    }
}

.contact-us-form{
    direction: rtl;
    margin-top: 56px;
  }
  #contact input {
    width: 40vw;
    height: 50px;
    background-color: #f7f7f7;
    color: #212741;
    border-radius: 5px;
    border: none;
    padding: 0px 15px;
    font-size: 14px;
    outline: none;
    margin-bottom: 20px;
  }
  
  #contact textarea {
    width: 100%;
    height: 180px;
    max-height: 24px;
    min-height: 150px;
    background-color: #f7f7f7;
    color: #212741;
    border-radius: 5px;
    border: none;
    padding: 15px 15px;
    font-size: 14px;
    outline: none;
    margin-bottom: 20px;
  }
  
  #contact input::placeholder, 
  #contact textarea::placeholder {
    color: rgba(0, 0, 0, 0.536);
  }
  label{
    display: block !important;
    margin-bottom: 7px;
  }
  #contact  button.orange-button {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background-color: red;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: none;
    transition: all .3s;
    margin-bottom: 20px;
  }
  
  #contact button.orange-button:hover {
    background-color: #8b322c;
  }
  