/* UPDATE */
.box-logo {
    width: 130px;
    padding: 4px;
}

.header-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.header-info a,
.header-info h1 {
  font-size: 1.6rem;
  color: var(--black-color);
}


.header-info h1 {
  text-transform: capitalize;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* SLIDE */
.silde {
  background-image: url('../../img/bg-home.jpg');
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.silde::before {
  content: '';
  background-image: url('../../img/slider2-bg-bottom1.png');
  bottom: -2px;
  position: absolute;
  z-index: 3;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 240px;
  background-position: bottom;
}

.silde h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 6px 12px rgba(0, 0, 0, 0.3);
    line-height: 45px;
}
/* LIST CATAGORY */

.list-catagory {
    background-image: linear-gradient(1deg, #f2f4f7, transparent);
    padding-bottom: 80px;
}

.list-catagory__item {
  border-top: 6px solid transparent;
  border-radius: 10px;
  padding: 15px 15px;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.list-catagory__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* .list-catagory .col-lg-4:nth-child(1) .list-catagory__item {
  background: linear-gradient(135deg, #7aa2ff, #4c77de);
} */

.list-catagory .col-lg-4:nth-child(1) .list-catagory__item {
  background: linear-gradient(135deg, #00e89a, #1e6840);
}

.list-catagory .col-lg-4:nth-child(2) .list-catagory__item {
  background: linear-gradient(135deg, #01acbd, #2cdad2);
}

.list-catagory .col-lg-4:nth-child(4) .list-catagory__item {
  background: linear-gradient(135deg, #ff4d4f, #b91c1c);
}

.list-catagory .col-lg-4:nth-child(3) .list-catagory__item {
  background: linear-gradient(135deg, #facc15, #ea5808);
}

/* .list-catagory .col-lg-4:nth-child(4) .list-catagory__item {
  background: linear-gradient(135deg,  #12d8d0, #16aed6);
} */

.list-catagory__image {
  border-radius: 50%;
  overflow: hidden;
  height: 150px;
  width: 150px;
  margin: 0 auto 20px auto;
  border: 2px solid #fff;
}

.list-catagory__item a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
}

.header-top>.container>.row {
  align-items: center;
}

.nav-main {
  display: flex;
  align-items: center;
}

.about-home {
    z-index: 1;
    position: relative;
    padding-top: 100px;
}

/* SLIDE */
.slide .container-fluid {
  padding:0;
}


/* ABOUT */
.about-box {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f1f5f9;
    -webkit-box-shadow: 0px 21px 35px 0px rgba(28, 58, 104, 0.1);
    box-shadow: 0px 21px 35px 0px rgba(28, 58, 104, 0.1);
    position: relative;
    z-index: 100;
    margin-top: -50px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.about-box::before,
.about-box::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: #f1f5f9;
    z-index: -1;
    border-radius: 20px;
}

.about-box::before {
    top: -15px;
    -webkit-transform: scaleX(0.948);
    transform: scaleX(0.948);
    opacity: .7;
}

.about-box::after {
    top: -30px;
    -webkit-transform: scaleX(0.897);
    transform: scaleX(0.897);
    opacity: .5;
}

.box-icon .icon-about {
    font-size: 3rem;
    color: var(  --yellow-color);
    margin-bottom: 20px;
}

.box-icon p {
    font-size: 2rem;
    font-weight: 500;
}

.box-check ul {
    padding-left: 0;
    font-size: 1.6rem;
}

.box-check ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.box-check ul li:before {
    content: '\f058';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-family: var(--font-awesome);
    font-weight: 900;
}

.icon-li {
  color: var(--main-color);
  margin-right: 6px;
}

.about-info p {
  text-align: justify;
}

/* CATAGORY */
.catagory-home {
  position:relative;
  background-color: #f2f4f7;
  padding-bottom: 80px;
}

.shape {
  position: absolute;
  content: '';
}

.shape-one {
  top: 30px;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.shape-tow {
  top: 0;
  right: 0;
  z-index: -1;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-25px);
  }
  100% {
      transform: translateY(0);
  }
}

.catagory-title {
  text-align: center;
}

/* WHY_US */



.why-us {
    padding: 100px 0;
    position: relative;
    background: url('../../img/bg12.webp');
    background-repeat: no-repeat;
    background-size: cover;

}
.why-item {
    padding-bottom: 30px;
    background: #fff;
    text-align: center;
    position: relative;
    transition: .4s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 20px;
    overflow: hidden;
}

.why-item>p {
    padding: 30px 20px 130px;
    margin: 0 0 30px;
    font-size: 25px;
    color: #fff;
    overflow: hidden;
    position: relative;
    /* background: linear-gradient(180deg, #7c96ff 10%, #4c77de 50%, #3c5dd0 90%); */
    background:#07693f;
}

.why-item>p::before,
.why-item>p::after {
  content: "";
    width: 280px;
    height: 200px;
    border-radius: 80px;
    background: #fff;
    position: absolute;
    bottom: -156px;
    left: -46px;
    transform: rotate(-85deg);
}

.why-item>p::after {
    border-radius: 100px;
    bottom: auto;
    top: 98px;
    left: auto;
    right: -32px;
    transform: rotate(-40deg);
}

.why-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(245, 191, 15, 0.3);
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s;
    overflow: hidden;
}

span.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* QR */
/* QR */
.qr-main {
    padding: 100px 0;
    position: relative;
}

.qr-content {
    width: 900px;
    margin: 0 auto;
    max-width: 90%;
}

.qr-main.landing .qr-content {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.qr-item h2 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
    padding: 30px 50px 30px 30px;
    position: relative;
}

.qr-item {
    border: 1px solid #a3a2a3;
    padding: 30px 30px 0;
    border-radius: 10px;
    margin-bottom: 30px;
}

.qr-main.landing .qr-item {
    width: calc(50% - 10px);
    margin-right: 10px;
}

.qr-des,
.qr-des p {
  padding: 0px 30px 0px 30px;
  opacity: 0;
  height: 0;
  transform: translateY(-120px);
}

.qr-item.active .qr-des,
.qr-item.active .qr-des p {
  opacity: 1;
  height: auto;
  transform: translateY(0);
  font-weight: 300;
}

.qr-item.active .qr-des p {
  padding: 0;
}

.qr-info {
    position: relative;
}

.qr-info span:before {
  content: '\2b';
  position: absolute;
  font-family: var(--font-awesome);
  font-weight: 900;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

.qr-item.active .qr-info span:before {
   content: '\f068';
}

.shape-qr {
    width: 162px;
    height: 162px;
    filter: blur(90px) blur(90px) blur(90px);
    position: absolute;
}

.shape-qr1 {
    background-color: #8cacff;
    top: 45%;
    right: 10%;
}


.shape-qr2 {
    background-color: #017534;
    top: 4%;
    left: 10%;
}


.testimonial-image {
    width: 100px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-bottom: 14px;
}

.testimonial {
    text-align: center;
}

.testimonial-desc {
    font-size: 16px;
    width: 500px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    font-style: italic;
}

/* CTA */
.cta-box {
  background-color: var(--main-color);
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
  padding: 80px;
  color: #fff;
  font-size: 16px;
  position: relative;
}

.cta-box button {
  font-size: 16px;
  background-color: #26a77d;
  color: var(--white-color);
  border: unset;
  transition: all .3s linear;
  border-radius: 6px;
}

.cta-box button:hover {
 background-color: #009baf;
}

.cta-des p {
    color: var(--yellow-color);
    font-size: 24px;
    text-transform: uppercase;
}

.cta-des {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-box input {}

.cta-box input {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-box .form-group small {
    display: block;
}

.cta-box label {
    font-size: 17px;
}

.cta-box form {
    width: 678px;
    margin: 0 auto;
    max-width: 90%;
}

.cta-des span {
    width: 630px;
    display: inline-block;
}

.cta-box .cta-avatar1,
.cta-box .cta-avatar2  {
  position: absolute;
}

.cta-box .cta-avatar1  {
  bottom: 0;
  left: 10px;
}

.cta-box .cta-avatar2  {
  top: 0;
  right: 0;
  left: unset;
}

/* SUPPORT */
.support-main {
  background-image: url('../../img/shape07.webp');
  background-size: cover;
  padding: 80px 0;
  background-repeat: no-repeat;
}
.support-content {
    /* width: 800px; */
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.support-content h2 {
  font-size: 30px;
  color: #303442;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding: 0 0 0 37px;
  margin: 0 0 23px 0;
  text-transform: none;
}

.support-content h2:before {
    content: '';
    width: 4px;
    height: calc(100% - 20px);
    background-color: #f47629;
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
}

.support-info p {
    color: #666666;
}

.support-contact .phone {
    background-color: #3f9d62;
    color: var(--white-color);
}

.support-contact .zalo {
    background-color: #1082b9;
    color: var(--white-color);
}
/* News */
.news {
  margin-bottom: 100px;
}
