        


.contact-info {
    height: 100%;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 8px;
    gap: 15px;
    align-items: center;
    transition: all .4s;
}

.contact-info .tp-icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    background-color: var(--tp-primary);
    border-radius: 50%;
    transition: all .4s;
}

.contact-info .tp-title {
    margin-bottom: 6px;
}

.contact-info:hover {
    background-color: var(--tp-primary);
    transition: all .4s;
}

.contact-info:hover .tp-icon {
    background-color: #0B0D17;
    color: #fff !important;
    transition: all .4s;
}

.contact-info:hover .tp-title,
.contact-info:hover .tp-body {
    color: #fff;
    transition: all .4s;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form form > .bp_form_field {
    width: calc(50% - 10px);
}

.contact-form form input.form-control,
.contact-form form textarea.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #0f172a33;
    outline: none;
    box-shadow: none !important;
    border-radius: 0;
    color: var(--tp-title-color);
}

.contact-form form textarea {
    min-height: 150px;
}


.contact-form .bp-btn-send {
    position: relative;
    border: none;
    outline: none;
    box-shadow: none !important;
    overflow: hidden;
    z-index: 1;
}
.contact-form .bp-btn-send::before {
    content: "";
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.contact-form .bp-btn-send::after {
    content: "";
    background-color: rgba(11, 13, 23, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.contact-form .bp-btn-send i {
    transform: rotate(-45deg);
    margin-left: 8px;
}

.contact-form .bp-btn-send:hover::before {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
    transition-delay: 200ms;
}

.contact-form .bp-btn-send:hover::after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.map-container,
.map-container iframe{
    height: 100% !important;
}


@media screen and (max-width: 768px) {
  .info-company ul li {
    display: block;
  }
  .info-company ul li:before {
    content: unset !important;
  }
  #frm_lienhe {
    padding: 30px;
  }
  #frm_lienhe > h2 {
    font-size: 22px;
  }
  
  .contact-form form > .bp_form_field {
      width: 100%;
  }
}
@media screen and (max-width:456px) {
    .content-contact p:last-child {
        font-size: 12px;
    }
}

