/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.block-left {
    border: 1px solid #ccc;
    background: var(--white);
}

.block-left .title-section {
    font-size: 1.8rem;
    padding: .8rem;
    background: var(--color-highlight);
    color: white;
    margin: 0;
}

article.article-title a {
    padding: 1rem;
    display: block;
    color: black;
}

article.article-title a:hover {
    color: var(--color-highlight);
}

.hotline-847zr9b {
    padding: .5rem;
    border: 1px solid #ccc;
}

.phone-hotline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.phone-hotline a {
    display: flex;
    flex-direction: column;
    color: red;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
}

.phone-hotline a span {
    font-size: 1.4rem;
    color: black;
}

.title-section {
    background: var(--color-highlight);
    color: white;
    padding: .8rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.article-home .article-description {
    margin: 0;
    -webkit-line-clamp: 7;
}

.home-art .title-section {
    background: no-repeat;
    color: var(--color-highlight);
    font-size: 2.8rem;
    padding: 0;
}

.description-cv {
    border: 1px dashed #bbb;
    padding: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    min-height: 64px;
}

.bottom-content .inter-img img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    padding: .5rem;
    margin: 0 auto;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0px 2px 2px 0px #ccc;
}

.bottom-content .name {
    font-weight: bold;
}
/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
footer {
    background: var(--color-highlight);
}

.name-cop.text-white {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
}

.social-section .list-inline li {
    margin: 0 !important;
}

.social-section .list-inline li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--color-highlight);
    height: 3rem;
    width: 3rem;
    border-radius: .5rem;
}
/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
/*CSS by quyettq*/
.block-left .wrap-suggestion > ul > li > a > div:first-child {
    flex: 0 0 25%;
    max-width: 25%;
}.block-left .wrap-suggestion > ul > li > a > div:last-child {
    flex: 0 0 75%;
    max-width: 75%;
}

.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}.box-shadow .name-cop {
    transition: all .25s ease;
    overflow: hidden;
}.box-shadow:hover .name-cop {
    transform: scale(1.05);
}

.contact-buttons-group {
    display: flex;
    gap: 1.5rem;
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    z-index: 1000;
    flex-direction: column;
}

.btn-zalo, .btn-phone-toggle {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 50%;
}

.icon-zalo, .icon-phone {
    width: 4rem;
    height: 4rem;
    animation: phonering-alo-circle-img-anim 1.2s infinite;
}

.icon-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d70400;
    border-radius: 50%;
    font-size: 2rem;
}

.btn-phone-wrapper {
    position: relative;
}

.dropdown-phone-list {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    list-style: none;
    padding: 0;
    min-width: 15rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    margin: 0;
}

.dropdown-phone-list li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}.dropdown-phone-list li a:hover {
    background-color: var(--gray);
}

.btn-phone-wrapper.active .dropdown-phone-list {
    display: block;
}

.btn-phone-wrapper.active .btn-phone-toggle .icon-phone::before {
    content: "\f00d";
}

@keyframes phonering-alo-circle-img-anim {
    0% { transform: rotate(0) scale(1) skew(1deg); }
    10% { transform: rotate(-25deg) scale(1) skew(1deg); }
    20% { transform: rotate(25deg) scale(1) skew(1deg); }
    30% { transform: rotate(-25deg) scale(1) skew(1deg); }
    40% { transform: rotate(25deg) scale(1) skew(1deg); }
    50% { transform: rotate(0) scale(1) skew(1deg); }
    100% { transform: rotate(0) scale(1) skew(1deg); }
}

.box-hover::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.box-hover:hover::before {
  -webkit-animation: hoverShine 1.2s;
  animation: hoverShine 1.2s;
}
@-webkit-keyframes hoverShine {
  100% {
    left: 125%;
  }
}
@keyframes hoverShine {
  100% {
    left: 125%;
  }
}

.highlight_item {
    height: 100%;
    border: 1px solid var(--red);
    background-color: #fff;
    border-radius: 18px;
    text-align: center;
    padding-bottom: 15px;
}

.highlight_image {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    margin: 0 auto -12px;
    transform: translateY(-50%);
    box-shadow: 0 0 13px 0 rgb(0 0 0 / 30%);
}

.highlight_image img {
    height: 35px;
    filter: brightness(0) saturate(100%) invert(33%) sepia(70%) saturate(1473%) hue-rotate(185deg) brightness(91%) contrast(83%);
}

.highlight_content h4 {
    font-size: 20px;
    color: var(--color-highlight);
    font-weight: 600;
    margin-bottom: 15px;
}

.bn_service_image img {
    height: 60px;
    filter: brightness(0) saturate(100%) invert(33%) sepia(70%) saturate(1473%) hue-rotate(185deg) brightness(91%) contrast(83%);
}

.bn_service_content a {
    color: var(--color-highlight);
}

@media (max-width: 768px) {
    .highlight_container > .row > div[class*="col-"]:nth-child(-n + 2) {
        margin-bottom: 50px;
    }
    
    .bn_service_container > .row > div[class*="col-"]:not(:last-child) {
        margin-bottom: 30px;
    }
}

.is-mobile .setting-menu > .container > .row > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}











