@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/NotoSans-Italic.woff2) format('woff2');
}

@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/NotoSans-Italic-Latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/NotoSans-Italic-LatinExt.woff2) format('woff2');
}

@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/NotoSans.woff2) format('woff2');
}

@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/NotoSans-Latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/NotoSans-LatinExt.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Montserrat.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Montserrat-Latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Montserrat-LatinExt.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Montserrat-Italic.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Montserrat-Italic-Latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Montserrat-Italic-LatinExt.woff2) format('woff2');
}

:root {
  --primary-color: #0B29AF;
  --secondary-color: #FFAC40;
  --font-family: "Noto Sans", sans-serif;
  --bs-gutter-x: 1.25rem;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: #0D0D1A;
  text-decoration: none;
  transition: all 0.3s;
}

h1, h2, h3, h4, h5, h6
b, strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #010000;
}

/*--------------------------------------------------------------
## Common
--------------------------------------------------------------*/

.section {
  padding: 80px 0;
  overflow: hidden;
}

.section-rounded {
  padding: 80px 0;
  border-radius: 80px;
  background-color: #FFF7EC;
}

.c-title {
  text-align: center;
  margin-bottom: 40px;
}

.c-title-sub {
  color: #08185B;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding: 0 16px;
}

.c-title-main {
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  color: #08185B;
}

.c-title-main span {
  color: #1338D9;
}

.c-title-sub::before,
.c-title-sub::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: block;
}

.c-title-sub::before {
  left: 0;
}

.c-title-sub::after {
  right: 0;
}
.c-title-white .c-title-sub,
.c-title-white .c-title-main,
.c-title-white .c-title-main span {
  color: #fff;
}

.c-news {
  border: 1px solid #CCCCCC;
  border-radius: 16px;
  overflow: hidden;
}

.c-news:hover .c-news-more {
  background-color: var(--primary-color);
}

.c-news .c-news-inner:hover {
  color: #010000;
}

.c-news .c-news-image {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #CCCCCC;
}

.c-news .c-news-image img {
  width: 100%;
  object-fit: cover;
}

.c-news .c-news-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.c-news .c-news-meta > span:first-child {
  padding: 10px 16px;
}

.c-news .c-news-author {
  font-weight: 600;
  text-transform: capitalize;
}

.c-news .c-news-date {
  margin-left: 8px;
}

.c-news .c-news-date::before {
  content: "\f133";
  color: var(--secondary-color);
  font-family: 'Font Awesome\ 6 Pro';
  margin-right: 8px;
  font-weight: 700;
}

.c-news .c-news-more {
  width: 56px;
  height: 56px;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.c-news .c-news-content {
  border-top: 1px solid #CCCCCC;
  padding: 16px;
}

.c-news .c-news-title {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-news .c-news-desc {
  color: #737373;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-feedback {
  box-shadow: 0px 4px 15px 0px #00000026;
  border-radius: 16px;
  padding: 24px;
  background-color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c-feedback::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #0A1F77;
  background-image: url(../images/icon-quotes.png);
  background-repeat: no-repeat;
  background-size: 50px 44px;
  background-position: bottom 40px left 30px;
}

.c-feedback-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ccc;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.c-feedback-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-feedback-name h4 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 0;
}

.c-feedback-name p {
  font-weight: 600;
  color: #0A1F77;
  margin-bottom: 0;
}

.c-feedback-star {
  margin-top: 24px;
  color: #FEC42D;
  font-size: 18px;
}

.c-feedback-desc {
  margin-top: 24px;
}

.c-package {
  border: 1px solid #FFAC40;
  border-radius: 20px;
  overflow: hidden;
}

.c-package .c-package-head {
  background: linear-gradient(131.77deg, #FFC67C 0%, #F48A00 100%);
  color: #fff;
  text-align: center;
  padding: 24px;
}

.c-package .c-package-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.c-package .c-package-name {
  padding-top: 16px;
  font-size: 14px;
}

.c-package .c-package-name h4 {
  font-size: 36px;
  line-height: 130%;
  margin-bottom: 0;
  text-transform: uppercase;
}

.c-package .c-package-price {
  background-color: #FFF7EC;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1338D9;
  padding: 6px 24px;
  margin-top: 10px;
  text-transform: uppercase;
}

.c-package .c-package-price span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  text-transform: none;
}

.c-package .c-package-bottom {
  padding: 24px;
}

.c-package .c-package-content ul {
  padding: 0;
}

.c-package .c-package-content ul li {
  list-style: none;
  position: relative;
  padding-left: 42px;
}

.c-package .c-package-content ul li+li {
  margin-top: 16px;
}

.c-package .c-package-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome\ 6 Pro';
  width: 26px;
  height: 26px; 
  border-radius: 50%;
  background-color: #DCFAE6;
  color: #17B26A;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

.c-package .c-package-button {
  border-top: 1px solid #B6C1F3;
  padding-top: 24px;
  margin-top: 24px;
}

.c-package .c-package-btn {
  border-radius: 50px;
  padding: 14px 20px;
  background-color: #EF6433;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  font-weight: 600;
  text-align: center;
}

.c-package .c-package-btn:hover {
  background-color: var(--primary-color);
}

.c-partner {
  box-shadow: 0px 4px 10px 0px #0000001A;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-partner .c-partner-image {
  width: 44px;
}

.c-partner .c-partner-text {
  font-weight: 600;
}

.c-tab {
  counter-reset: number;
  position: relative;
}

.c-tab .img-fb,
.c-tab .img-google,
.c-tab .img-tiktok {
  position: absolute;
  z-index: 1;
  display: none;
}

.c-tab .img-fb {
  bottom: 100%;
  left: -30px;
}

.c-tab .img-google {
  bottom: calc(100% + 10px);
  right: -70px;
}

.c-tab .img-tiktok {
  bottom: -40px;
  right: -70px;
}

.c-tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #E7EBFB;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding: 0;
}

.c-tab-nav .c-tab-link {
  color: #737373;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  list-style: none;
}

.c-tab-nav .c-tab-link.active {
  background: #FFAC40;
  color: #fff;
}

.c-tab .c-tab-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: -6px;
}

.c-tab .c-tab-content:not(.active) {
  display: none;
}

.c-tab .c-tab-content img {
  border-radius: 16px;
}

.c-tab .c-tab-content ul {
  padding: 0;
  margin-bottom: 0;
}

.c-tab .c-tab-content ul li {
  list-style: none;
  position: relative;
  display: flex;
  gap: 16px;
}

.c-tab .c-tab-content ul li+li {
  margin-top: 24px;
}

.c-tab .c-tab-content ul li div {
  flex: 1;
}

.c-tab .c-tab-content ul li::before {
  counter-increment: number;
  content: "0" counter(number);
  width: 74px;
  height: 74px;
  padding: 16px;
  border-radius: 50px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-project {
  padding: 16px;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px #0000001A;
}

.c-project:hover .c-project-more {
  background-color: var(--primary-color);
}

.c-project .c-project-image {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.c-project .c-project-image img {
  width: 100%;
  object-fit: cover;
}

.c-project .c-project-text {
  padding-top: 24px;
}

.c-project .c-project-title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}

.c-project .c-project-achievements {
  border: 1px solid #EEEEEE;
  border-radius: 50px;
  padding: 10px;
  color: #737373;
}

.c-project .c-project-achievements span {
  position: relative;
  padding-left: 42px;
  display: block;
}

.c-project .c-project-achievements span::before {
  content: '\f00c';
  font-family: 'Font Awesome\ 6 Pro';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #DCFAE6;
  color: #17B26A;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-project .c-project-meta {
  border-top: 1px solid #CCCCCC;
  margin-top: 16px;
  padding-top: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #0D0D1A;
}

.c-project .c-project-hot {
  font-weight: 700;
  font-size: 32px;
  color: var(--secondary-color);
  display: block;
}

.c-project .c-project-more {
  width: 56px;
  height: 56px; 
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.c-data {
  box-shadow: 0px 4px 10px 0px #0000000D;
  border-radius: 16px;  
  padding: 16px;
  background-color: #fff;
  display: flex;
  gap: 16px;
}

.c-data .c-data-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #E7EBFB;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.c-data .c-data-text {
  flex: 1;
  word-break: break-word;
}

.c-data .c-data-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  color: var(--secondary-color);
}

.c-data .c-data-title {
  font-weight: 600;
}

.c-service {
  position: relative;
}

.c-service:hover .c-service-more {
  background-color: var(--primary-color);
}

.c-service-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.c-service-text {
  padding-top: 24px;
}

.c-service-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.c-service-title span:last-child {
  flex: 1;
}

.c-service .c-service-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-service-logo {
  width: 46px;
  height: 46px;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF7EC;
  color: var(--secondary-color);
}

.c-service-date {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 55px;
  height: 55px;
  border-radius: 6px;
  background-color: #fff;
  color: #0D0D1A;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.c-service-date div:first-child{
  font-size: 22px;
  line-height: 22px;
}

.c-service-date div:last-child{
  font-size: 12px;
}

.c-service-more {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  text-transform: uppercase;
  background-color: var(--secondary-color);
  width: fit-content;
  margin-top: 16px;
  color: #fff;
}

.c-service-more i {
  margin-right: 4px;
}

.c-why {
  border: 2px solid #1338D9;
  border-radius: 16px;
  background-color: #fff;
  padding: 24px;
  text-align: center;
}

.c-why-image {
  max-height: 64px;
}

.c-why-title {
  margin-top: 24px;
  font-weight: 600;
}

.c-why-desc {
  margin-top: 16px;
}

.c-logo-brand {
  padding: 16px 24px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px #0000001A;
}

.c-breadcrumb {
  background-color: #fff0;
  background-image: linear-gradient(45deg, #FF785140 0%, #4786EE40 100%);
  padding: 0;
}

.c-breadcrumb .title {
  margin-bottom: 24px;
  font-size: 44px;
  font-family: "Montserrat", sans-serif;
}

.c-breadcrumb .title::first-letter {
  text-transform: uppercase;
}

.c-breadcrumb-left {
  position: relative;
  z-index: 1;
  width: 70%;
}

.c-breadcrumb-wrap {
  display: flex;
  gap: 16px;
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.c-breadcrumb-nav {
  font-size: 14px;
}

.c-breadcrumb-separator {
  margin: 0 4px;
}

.c-breadcrumb-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.c-breadcrumb-img img {
  max-height: 350px;
}

.c-faq {
  padding: 20px;
  background-color: #f6f6ff;
  border-radius: 12px;
}

.c-faq-item {
  border-radius: 8px;
  background-color: #fff;
  padding: 10px 16px;
}

.c-faq-item+.c-faq-item {
  margin-top: 16px;
}

.c-faq-item:hover .c-faq-head {
  color: #c4172c;
}

.c-faq-content {
  margin-top: 12px;
  font-size: 15px;
  display: none;
} 

.c-faq-title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.c-faq-head {
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  color: var(--primary-color);
}

.c-faq-head::before {
  content: '\f107';
  font-family: 'Font Awesome\ 6 Pro';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.c-faq-head.active::before {
  content: '\f106';
}

.hover-img {
  position: relative;
  overflow: hidden;
}

.hover-img img {
  transition: transform 0.5s;
}

.hover-img:hover img {
  transform: scale(1.1);
}

.slick-slider .slick-arrow {
  width: 48px;
  height: 48px;
  background-color: #fff; 
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px #0000001A;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.slick-slider .slick-arrow:hover {
  background-color: var(--secondary-color);
}

.slick-slider .slick-arrow:hover::before {
  color: #fff;
}

.slick-slider .slick-arrow::before {
  content: '\f104';
  color: #666666;
  font-family: 'Font Awesome\ 6 Pro';
}

.slick-slider .slick-arrow.slick-next::before {
  transform: rotate(180deg);
}

.slick-slider .slick-list {
  margin: 0 -20px;
}

.slick-slider .slick-slide {
  margin: 0 20px;
}

.slick-dotted.slick-slider {
  margin-bottom: 60px;
}

.slick-slider .slick-dots {
  bottom: -65px;
}

.slick-slider .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.slick-slider .slick-dots li.slick-active {
  background-color: var(--secondary-color);
}

.slick-slider .slick-dots button {
  display: none;
}

table {
  display: table;
  border: 1px solid #ccc;
  width: 100%;
}

table tr {
  border-bottom: 1px solid #ddd;
}

table td, table th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  display: table-cell;
}

table tbody tr:nth-child(odd) {
  background-color: #E7E9EB;
}

table tbody tr:nth-child(even) {
  background-color: #fff;
}

.btn-fix {
  position: fixed;
  bottom: calc(20% + 40px);
  right: 10px;
  z-index: 99;
}

.btn-fix ul {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.btn-fix ul li a {
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
  background-color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  color: #fff;
}

.btn-fix ul li a.phone,
.btn-fix ul li a.phone .title {
  background-color: #B42318;
}

.btn-fix ul li a.zalo,
.btn-fix ul li a.zalo .title {
  background-color: #095CD4;
}

.btn-fix ul li a.mess,
.btn-fix ul li a.mess .title {
  background-color: #0866FF;
}

.btn-fix ul li a.book,
.btn-fix ul li a.book .title {
  background-color: #027A48;
}

.btn-fix ul li a.book .title::after {
  border-left-color: #027A48;;
}

.btn-fix ul li a.mess .title::after {
  border-left-color: #0866FF;;
}

.btn-fix ul li a.zalo .title::after {
  border-left-color: #095CD4;;
}

.btn-fix ul li a.phone .title::after {
  border-left-color: #B42318;;
}

.btn-fix ul li a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, .15), 0 4px 15px rgba(0, 0, 0, .13);
  opacity: .9;
  text-decoration: none;
}

.btn-fix ul li a:hover .title {
  display: block;
  opacity: 1;
  visibility: visible;
}

.btn-fix ul li a>img {
  display: block;
  width: 100%;
  max-width: 28px;
}

.btn-fix ul li .title {
  background-color: var(--secondary-color);
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 12px;
  opacity: 0;
  padding: 5px 10px;
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  transition: all .2s linear;
  visibility: hidden;
  white-space: nowrap;
  width: auto;
  z-index: 9;
}

.btn-fix ul li .title::after {
  border: 5px solid transparent;
  border-left-color: var(--secondary-color);
  bottom: 0;
  content: "";
  height: 0;
  left: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  transition: all .2s linear;
  width: 0;
}

.heading {
  color: var(--primary-color);
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #ececec;
  display: flex;
  align-items: center;
}

.heading span {
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: -2px;
}

.heading-main {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
}

.heading-main span {
  color: var(--primary-color);
}

.heading-main .heading-line {
  position: relative;
  background-color: var(--primary-color);
  height: 5px;
  width: 100px;
  border-radius: 30px;
  margin-top: 10px;
}

.heading-main .heading-line:before {
  background-color: #ffc700;
  content: '';
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
  -webkit-animation-name: watermark-animate;
  animation-name: watermark-animate;
}

@keyframes watermark-animate {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

.modal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  z-index: 10;
  opacity: 1;
  padding: 12px;
}

.w-max-content {
  width: max-content;
}

.navigation-menu-mobile {
  height: 100px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 111;
}

.menu-mobile__container {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

.navigation-menu-mobile div,.navigation-menu-mobile li,.navigation-menu-mobile ul,div.navigation-menu-mobile {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: 0 0;
}

.menu-mobile__container .menu-mobile__icon {
  position: absolute;
  width: 66px;
  height: 66px;
  left: 50%;
  top: 0;
  box-shadow: 0 4px 10px rgb(146 55 73 / 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 2px solid #fff;
  background: var(--primary-color);
}

.navigation-menu-mobile ul {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  list-style: none;
  justify-content: center;
  align-items: flex-end;
  bottom: 0;
  left: 0;
  right: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 5px;
}

.navigation-menu-mobile ul li a {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.navigation-menu-mobile ul li a span.la {
  width: 72px;
  height: 20px;
  line-height: 20px;
  left: 0;
  top: 2px;
  position: relative;
  border-radius: 34px;
  color: #fff;
  text-align: center;
  background: var(--primary-color);
}

.navigation-menu-mobile ul li a span {
  display: block;
  margin: auto;
  font-size: 12px !important;
  color: #111;
  text-transform: capitalize;
}

.ul_menu-mobile__container svg {
  width: 25px;
  height: auto;
  fill: var(--primary-color);
}

.navigation-menu-mobile .custom-btn-1 {
  border-radius: 50%;
}

.menu-mobile__container:before {
  content: "";
  background-image: url(../images/mb-footer-bg.svg);
  width: 100%;
  height: 63%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.icon-nav-btn-message {
  width: 30px;
  height: 29px;
  background-position: center;
  background-size: contain;
}

.icon-nav-address,.icon-nav-calendar,.icon-nav-respon {
  width: 25px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.navigation-menu-mobile .custom-btn-1 {
  border-radius: 50%;
}

.ul_menu-mobile__container > li > a > span > i {
  font-size: 22px;
  color: var(--primary-color);
}

.navigation-menu-mobile li:nth-child(3) a .btn-frame {
  width: 50px;
  margin: 0 auto 8px;
  position: relative;
}

.navigation-menu-mobile li:nth-child(3) a .btn-frame span {
  background: #fff;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation-menu-mobile li:nth-child(3) a img {
  max-width: 40px;
}

.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: var(--primary-color);
  opacity: 0.5;
}

.btn-frame .zoomIn {
  animation-name: zoomIn;
}

.btn-frame .pulse {
  animation-name: pulse;
}

.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}

.img-ratio {
  display: block;
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.img-ratio.pt-62-5 {
  padding-top: 62.5%;
}

.img-ratio img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}
/*--------------------------------------------------------------
## Bootstrap
--------------------------------------------------------------*/

.container {
  max-width: 1320px;
}

.row {
  --bs-gutter-x: 2.5rem;
}

.row-gap-40 {
  row-gap: 40px;
}


@media (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.25rem;
  }
  .row-gap-40 {
    row-gap: 20px;
  }
}
/*--------------------------------------------------------------
## Form
--------------------------------------------------------------*/

.search-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 15px 30px;
  display: none;
  box-shadow: 0 4px 4px #3636361a;
}

.search-wrapper form {
  margin-left: auto;
  margin-right: auto;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
}

.search-form label {
  width: 100%;
}

.search-form .search-field {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 10px;
  color: #010000;
  outline: none;
  font-size: 16px;
  padding: 10px 48px 10px 10px;
  width: 100%;
  height: 50px;
}

.search-form .search-submit {
  border: 0;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 0px 10px 10px 0;
  font-size: 22px;
}

.contact-form {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 15px 15px 1px -3px #783A034D;
  padding: 50px 24px;
  position: relative;
}

.contact-form h3 {
  text-align: center;
  font-size: 24px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wpcf7 .wpcf7-form-control {
  border-radius: 50px;
  border: 1px solid #CCCCCC;
  padding: 8px 20px;
  height: 48px;
  width: 100%;
  font-size: 14px;
  outline: none;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 .wpcf7-form-control-wrap + .wpcf7-form-control-wrap{
  margin-top: 16px;
}

.wpcf7 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: right 20px center;
}

.wpcf7 .wpcf7-submit {
  height: 55px;
  background-color: var(--secondary-color);
  border-radius: 50px;
  border: 0;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px;
  margin-top: 16px;
}

.wpcf7 .wpcf7-submit i {
  position: relative;
  top: -2px;
} 

.comments-area {
  font-size: 14px;
}

.comments-area label {
  display: block;
  margin-bottom: 4px;
}

.comments-area input:not([type="checkbox"]):not([type="submit"]),
.comments-area textarea {
  background-color: #fff;
  border: 1px solid #cacaca;
  box-shadow: inset 0 1px 2px rgba(1, 0, 0, .1);
  border-radius: 8px;
  outline: none;
  padding: 8px 16px;
  width: 100%;
}

.comments-area input[type="submit"] {
  border: 0;
  background-color: var(--secondary-color);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  color: #fff;
  width: 100%;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/

.c-btn-more {
  grid-gap: .625rem;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 22px;
  color: #fff !important;
  display: -webkit-inline-flex;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  height: 38px;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 5px 0 15px;
  position: relative;
  transition: all .3s, background-color .1s;
  z-index: 1;
  overflow: hidden;
}

.c-btn-more:before {
  background-color: var(--primary-color);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: .5s;
  width: 0;
}

.c-btn-more:after {
  content: '\f061';
  font-family: 'Font Awesome\ 6 Pro';
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: var(--secondary-color);
  display: -webkit-flex;
  display: flex;
  font-weight: 400;
  height: 24px;
  width: 24px;
  font-size: 12px;
  -webkit-justify-content: center;
  justify-content: center;
}

.c-btn-more:hover {
  border-color: var(--primary-color);
}

.c-btn-more:hover:before {
  opacity: 1;
  width: 100%;
  z-index: -1;
}

.c-btn-more:hover:after {
  color: var(--primary-color);
}

.click-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 30px;
  text-align: center;
  transition: 0.35s;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.click-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.button-sale .btn-contact {
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
  background: #12ab49;
  border: none;
  padding: 12px 24px;
  border-radius: 3px;
  transition: all .3s;
}

.button-sale .btn-contact span {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.button-sale .button-baogia {
  background: #c8102e;
  background-image: linear-gradient(-180deg, #f14f6a 0%, #c8102e 100%);
}

.button-sale .btn-contact p {
  font-size: 12px;
  width: 100%;
}

.button-sale .btn-contact span::before {
  content: "\f2a0";
  font-family: 'Font Awesome\ 6 Pro';
  font-weight: 400;
  position: relative;
  left: -10px;
  bottom: 0;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
  display: inline-block;
}

.button-sale .btn-contact.button-baogia span::before {
  content: "\f0e0";
}

@keyframes phone-vr-circle-fill {
  0% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}

.read-more-back {
  background: linear-gradient(180deg, #fff0, hsl(0 0% 100% / .91) 50%, #fff 55%);
  border-radius: 10px;
  display: block;
  text-align: center;
  width: 100%;
}

.read-more-back a {
  color: #fff;
  background: var(--secondary-color);
  padding: 10px 20px;
  line-height: 5;
}

.term-description {
  margin-top: 30px;
}
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

header {
  position: relative;
  z-index: 10;
}

.top-header {
  background-color: #1338D9;
  overflow: hidden;
  color: #fff;
  padding: 12px 0;
}

.top-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-header .linkbox-inner {
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  font-size: 13px;
  font-weight: 400;
  gap: 8px;
  letter-spacing: .05em;
}

.header .logo {
  max-width: 180px;
}

.header-main {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.header-main .header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main ul.menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.header-main ul.menu>li {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  position: relative;
}

.header-main ul.menu>li>a:not(.click-btn) {
  color: #0D0D1A;
  position: relative;
}

.header-main ul.menu>li.menu-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background-color: #0D0D1A;
  transition: 0.3s;
}

.header-main ul.menu>li>a:not(.click-btn):hover {
  color: var(--primary-color);
}

.header-main ul.menu>li.current-menu-item>a::after,
.header-main ul.menu>li>a:not(.click-btn):hover::after {
  width: 100%;
  background-color: var(--primary-color);
}

.header-main ul.menu>li.menu-item-has-children>a {
  position: relative;
  padding-right: 20px;
}

.header-main ul.menu>li.menu-item-has-children>a:before {
  position: absolute;
  content: "\f107";
  top: calc(50% + 2px);
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Font Awesome\ 6 Pro';
}

.header-main ul.menu>li.menu-item-has-children>a:hover::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.header-main ul.menu>li.header-search .search-form {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
}

.header-main ul.menu>li .header-search-btn {
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.header-main ul.menu>li.menu-item-btn {
  padding-right: 0;
  display: flex;
  align-items: center;
}

.header-main ul.menu>li.menu-item-contact {
  text-align: center;
  border-style: solid;
  border-width: 0 2px;
  padding: 0 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.header-main ul.menu>li.menu-item-contact p {
  font-size: 13px;
}

.header-main ul.menu>li .btn-lx {
  font-weight: 500;
  color: var(--primary-color);
  background-color: #d5383800;
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary-color);
  border-radius: 5px;
  padding: 9px 15px;
}

.main-navigation ul {
  padding: 0;
  margin: 0;
}

.main-navigation ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.main-navigation ul ul {
  background-color: #fff;
  min-width: 320px;
  left: 0;
  top: 100%;
  position: absolute;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, .15);
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  list-style: none;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform: translate3d(0, 20px, 0);
  -moz-transform: translate3d(0, 20px, 0);
  -ms-transform: translate3d(0, 20px, 0);
  -o-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.main-navigation ul ul li:not(:last-child) {
  border-bottom: 1px solid #c4c4c4;
}

.main-navigation ul ul li a {
  padding: 12px 15px;
  display: block;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.main-navigation ul ul li a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.main-navigation ul ul li a:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5px;
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: all .3s ease-in-out;
}

.main-navigation ul ul li a:hover:after {
  width: 10px;
  background: #fff;
}

.main-navigation ul ul li a:hover {
  background: var(--primary-color);
  color: #fff;
}

.main-navigation ul ul li.menu-item-has-children > a {
  position: relative;
}

.main-navigation ul ul li.menu-item-has-children > a::before {
  content: '\f105';
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Font Awesome\ 6 Pro';
}

.main-navigation ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}

#mobilenav {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 9999999;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translate(110%, 0);
  -moz-transform: translate(110%, 0);
  -ms-transform: translate(110%, 0);
  -o-transform: translate(110%, 0);
  transform: translate(110%, 0);
  background-color: hsla(0, 0%, 100%, .96);
  box-shadow: 0 0 10px rgba(1, 0, 0, .7);
}

#mobilenav.opened {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  box-shadow: -3px 0 3px rgba(1, 0, 0, .1);
}

.mobilenav__inner {
  height: 100%;
  padding-top: 60px;
}

.mobilenav__inner .menu-top-menu-container {
  height: calc(100% - 128px);
  overflow: auto;
}

.mobilenav__inner .menu_close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 20px;
}

.mobilenav__inner .menu_close span {
  font-family: icomoon !important;
  font-size: 30px;
  color: #4d4d4d;
}

.mobilenav__inner .menu_close span:before {
  content: "\e5cd";
}

#mobilenav .mobile-menu {
  margin: 0;
  padding: 0;
}

#mobilenav .mobilenav__inner>div:not(.toplg) {
  overflow-y: auto;
  height: auto;
}

#mobilenav .mobilenav__inner .nav-info {
  background-color: #fafafa;
  margin: 0;
  padding: 15px;
  font-size: 14px;
  color: #666;
}

#mobilenav li {
  display: block;
  position: relative;
  margin-bottom: 0;
  transition: .3s;
}

#mobilenav li.header-search,
#mobilenav li.menu-item-btn {
  display: none;
}

#mobilenav li a {
  position: relative;
  display: block;
  padding: 12px 45px 12px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: .3s;
}

#mobilenav .arrow {
  position: absolute;
  top: 8px;
  right: 5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

#mobilenav ul ul.sub-menu {
  background: #fff;
  overflow: auto;
}

#mobilenav ul ul.sub-menu ul li {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

#mobilenav ul ul.sub-menu a {
  padding-left: 30px;
}

#mobilenav ul.sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobilenav .header-search-btn {
  display: none;
}

#mobilenav .mobilenav-form {
  margin: 0 20px;
  margin-bottom: 20px;
}

#showmenu {
  font-size: 29px;
  color: var(--primary-color);
  cursor: pointer;
}

.panel-overlay {
  opacity: 0;
}

.panel-overlay.active {
  background: #000;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999999;
  min-height: 100vh;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.fix-menu {
position: -webkit-sticky; 
    position: sticky;
  left: 0;
  width: 100%;
  z-index: 999;
  top: 0;
}
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer ul {
  padding: 0;
  margin-bottom: 0;
}

.footer ul li {
  list-style: none;
}

.footer ul li+li {
  margin-top: 8px;
}

.footer ul li a {
  color: #737373;
}

.footer ul.menu li a {
  background-image: linear-gradient(#fcfcff, #d8d8da), linear-gradient(#737373, #737373);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: .3s ease;
}

.footer ul.menu li a:hover {
  background-size: 0 1px, 100% 1px;
}

.footer .widget-ft {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer .footer-widgets-area:nth-child(1) ul li i {
  width: 20px;
  margin-right: 6px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-icons a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #3B5998;
  font-size: 32px;
}

.social-icons a.phone {
  background-color: #B42318;
}

.social-icons a.zalo {
  background-color: #095CD4;
}

.social-icons a.zalo img {
  max-width: 18px;
}

.social-icons a.youtube {
  background-color: #FF0000;
}

.social-icons a.instagram {
  background: linear-gradient(
    45deg,
    #FFD600,
    #FF7A00,
    #FF0069,
    #D300C5,
    #7638FA 
  );
}

.social-icons.share {
  gap: 8px;
}

.social-icons.share a {
  width: 42px;
  height: 42px;
  box-shadow: 0 0 0 0 rgb(0 0 0 / .5);
  background: #0000000A !important;
  font-size: 16px;
  color: #4786EE;
}

.social-icons.share a:hover {
  transform: translateY(-2px) scale(1.05);
}

.social-icons.share svg {
  width: 16px;
  fill: #4786EE;
}

.footer-main {
  padding: 74px 0 32px;
  background-image: url(../images/bg-footer.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-copy {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 8px 0;
  text-align: center;
}

/*--------------------------------------------------------------
## Homepage
--------------------------------------------------------------*/

.page-template-page-contact .home-contact {
  border-radius: 0;
}

.home-banner img {
  width: 100%;
}

.home-logo {
  overflow: hidden;
  padding-top: 32px;
}

.home-logo-item {
  padding: 10px 0;
}

.home-service {
  background-color: var(--primary-color);
  background-image: url(../images/bg-line-3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-service .c-service-text {
  color: #fff;
}

.home-service .slick-slider .slick-dots li:not(.slick-active) {
  background-color: #fff;
}

.home-service-box + .home-service-box {
  padding-top: 40px;
}

.home-service-box-title-container {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  margin-bottom: 40px;
}

.home-service-box-title {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 36px;
}

.home-service-box-title a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-service-box-title img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.home-turboads {
  padding: 32px 0;
  overflow: hidden;
}

.home-turboads-text {
  font-weight: 900;
  font-size: 72px;
  line-height: 120%;
  color: #E7EBFB;
}

.home-partner {
  background-image: url(../images/bg-line-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-partner .home-partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.home-marketing {
  background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 49.52%, #FFFFFF 100%);
  position: relative;
}

.home-marketing::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;  
  height: 100%;
  background-image: url(../images/bg-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.home-marketing .container {
  max-width: 1080px;
}

.home-package {
  background-color: #F3F7FF;
}

.home-procedure {
  background-image: url(../images/bg-line.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-procedure-item {
  position: relative;
  width: calc(50% - 64px);
} 

.home-procedure-item:nth-child(odd) {
  margin-left: auto;
}

.home-procedure-item:nth-child(even) {
  border-color: var(--secondary-color);
}

.home-procedure-item:nth-child(even) .home-procedure-item-num {
  left: calc(100% + 36px);
  right: auto;
}

.home-procedure-item:nth-child(even) .home-procedure-item-icon {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

.home-procedure-item:nth-child(even) .home-procedure-item-icon::before {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.home-procedure-item:nth-child(even) .home-procedure-item-num::after {
  background-color: var(--secondary-color);
}

.home-procedure-item .home-procedure-item-box {
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  background-color: #fff;
  padding: 16px;
  box-shadow: 0px 10px 25px 0px #0000001A;
}

.home-procedure-item .home-procedure-item-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-procedure-item .home-procedure-item-desc {
  color: #737373;
  margin-top: 16px;
}

.home-procedure-item:not(:first-child) .home-procedure-item-num {
  top: 10px;
  height: calc(100% - 10px);
}

.home-procedure-item .home-procedure-item-num {
  position: absolute;
  top: 0;
  right: calc(100% + 36px);
  height: 100%;
}

.home-procedure-item .home-procedure-item-num::after {
  content: '';
  width: 3px;
  height: calc(100% - 64px);
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home-procedure-item .home-procedure-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-procedure-item .home-procedure-item-icon i {
  color: #fff;
  font-size: 18px;
}

.home-procedure-item .home-procedure-item-icon::before {
  content: attr(data-num);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: #fff;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  position: absolute;
  top: -8px;
  right: -8px;
}

.home-feedback .home-feedback-item {
  padding-bottom: 15px;
}

.home-contact .site-logo {
  padding: 5px 18px;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  max-width: 180px;
}

.home-contact .html-desc .acf-txt {
  line-height: 1.8;
  margin-bottom: 30px;
}

.home-contact .html-desc .acf-txt:first-letter {
  font-weight: 600;
}

.home-contact .listbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  padding: 0;
}

.home-contact .listbox li {
  list-style: none;
}

.home-contact .listbox li.full {
  grid-column: 1 / -1;
  width: 100%;
}

.home-contact .listbox li.zalo-item a {
  background-color: #FFAC40;
}

.home-contact .listbox li.hotline-item a {
  background-color: #4B9EE2;
}

.home-contact .listbox li.full .icon-line {
  -webkit-align-items: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .251);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-direction: row-reverse;
  font-weight: 600;
  max-width: 100%;
  padding: 16px;
  color: #fff;
}

.home-contact .listbox li.full .icon-line .desc {
  font-size: 20px;
  text-transform: uppercase;
}

.home-contact .listbox li.full img {
  width: 42px;
}

.home-contact .listbox-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 6px;
}

.home-contact .listbox-inner span {
  width: 20px;
  display: inline-block;
}

/*--------------------------------------------------------------
## Page nav
--------------------------------------------------------------*/

.page_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}

.page_nav .page-numbers {
  position: relative;
  z-index: 1;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
  display: block;
  padding: 0;
  text-align: center;
  background: #f4f6fd;
  border-radius: 5px;
  transition: 0.4s;
}

.page_nav .page-numbers.current,
.page_nav .page-numbers:hover {
  background: var(--primary-color);
  color: #fff;
}
/*--------------------------------------------------------------
## Widget
--------------------------------------------------------------*/

.widget+.widget {
  margin-top: 50px;
}

.widget ul {
  margin: 0;
  padding: 0;
}

.widget-title ~ ul,
.widget-title ~ div {
  border-radius: 20px;
  background: #F8F8F9;
  padding: 25px 20px;
}

.widget-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
  text-transform: capitalize
}

.widget .widget-title .widget-title_dots {
  width: 23px;
  height: 3px;
  border-radius: 30px;
  display: block;
  margin: 0 auto 14px;
  position: relative;
  background-color: var(--secondary-color);
}

.widget .widget-title .widget-title_dots:before, 
.widget .widget-title .widget-title_dots:after {
  content: "";
  height: 3px;
  width: 7px;
  display: block;
  position: absolute;
  left: -15px;
  background-color: var(--secondary-color);
}

.widget .widget-title .widget-title_dots:after {
  margin-right: 0;
  margin-left: 0;
  left: auto;
  right: -15px;
}

.recent-posts li {
  list-style: none;
}

.recent-posts li+li {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(20, 21, 21, 0.1);
}

.recent-posts li a {
  display: flex;
  gap: 20px;
}

.recent-posts .recent-posts-image {
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recent-posts .recent-posts-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.recent-posts-title {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.recent-posts-text {
  flex: 1;
}

.recent-posts-desc {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.recent-posts-date {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 400;
}

.recent-posts-date i {
  color: var(--secondary-color);
}

.widget_categories ul li {
  list-style: none;
}

.widget_tag_cloud a,
.widget_categories ul li a {
  font-size: 12px !important;
  display: inline-block;
  padding: 6px 14px 8px;
  color: #fff;
  transition: 0.3s;
  border-radius: 8px;
  background: #4786EE;
  line-height: normal;
}

.widget_tag_cloud a:hover,
.widget_categories ul li a:hover {
  background: var(--secondary-color);
}

.widget_categories .widget-title ~ ul, .widget_tag_cloud .widget-title ~ div {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
/*--------------------------------------------------------------
## Single
--------------------------------------------------------------*/
div#ez-toc-container {
  padding: 30px;
  margin-bottom: 25px !important;
}

div#ez-toc-container .ez-toc-title {
  text-transform: uppercase;
  font-weight: 600 !important;
}

#ez-toc-container .ez-toc-title:before {
  background-color: #c4172c;
  border-radius: 50%;
  color: #fff;
  content: "\f303";
  font-family: 'Font Awesome\ 6 Pro';
  font-size: 16px;
  margin-right: 10px;
  padding: 8px;
  position: relative;
}

.ez-toc-sticky-fixed.show1.hide {
  -moz-transition: right .3s linear;
  -o-transition: right .3s linear;
  transition: right .3s linear;
  right: 0;
}

.ez-toc-counter nav {
  margin-top: 8px;
}

.ez-toc-counter nav ul li a::before {
  color: #010000;
}

div#ez-toc-container ul li+li {
  margin-top: 2px;
}

.ez-toc-sticky .ez-toc-sticky-list a.active span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.ez-toc-sticky .ez-toc-sticky-list a {
  position: relative;
}

.ez-toc-sticky .ez-toc-sticky-list a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: all .5s cubic-bezier(.52, 1.64, .37, .66);
  background: var(--primary-color);
  width: 0;
}

.ez-toc-sticky .ez-toc-sticky-list a.active::after {
  width: 100%;
}

.ez-toc-sticky .ez-toc-sticky-list a.active::before {
  color: #fff;
  z-index: 1;
}

#ez-toc-sticky-container a {
  padding: 2px 10px;
}

#ez-toc-sticky-container a:visited {
  color: #000 !important;
}

#ez-toc-sticky-container a.active,
#ez-toc-sticky-container a:hover {
  color: var(--primary-color) !important;
}

.ez-toc-sticky .ez-toc-open-icon {
  display: none;
  right: 120px;
  z-index: 99999 !important;
}

.ez-toc-sticky .ez-toc-open-icon .text,
.ez-toc-sticky .ez-toc-open-icon .arrow {
  display: none;
}

.ez-toc-sticky .ez-toc-open-icon.show {
  display: inline-grid;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  box-shadow: none;
  color: #333;
  background: rgba(243, 243, 243, 0.95);
  font-size: 30px;
}

.ez-toc-sticky .ez-toc-open-icon::before {
  content: '\f0ca';
  font-family: "Font Awesome\ 6 Pro";
}

#ez-toc-sticky-container ul.ez-toc-sticky-list > li > a {
  font-weight: 700;
}

.ez-toc-sticky-fixed .ez-toc-sidebar .ez-toc-sticky-title-container .ez-toc-sticky-title {
  font-weight: 700;
}

figcaption {
  background: rgba(0, 0, 0, .05);
  color: #010000;
  padding: 8px 12px;
  font-size: 14px;
  font-style: italic;
}

figure {
  text-align: center;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignright {
  margin-left: auto;
  display: block;
}

.single-gallery {
  overflow: hidden;
}

.single-gallery .slick-arrow {
  border-radius: 0;
  width: 45px;
  height: 45px;
}

.single-gallery .slick-arrow.slick-prev {
  left: -10px;
}

.single-gallery .slick-arrow.slick-next {
  right: -10px;
}

.single-gallery img {
  aspect-ratio: 16 / 9;
}

.single-thumb img {
  width: 100%;
  border-radius: 16px;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgb(114, 122, 133);
}

.single-meta-item {
  position: relative;
  padding-right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-meta-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #02010126;
  width: 1px;
  height: 10px;
}

.single-meta-item span:first-letter {
  text-transform: uppercase;
}

.single-content h2 {
  font-size: 22px;
}


.single-content h2.cs span.cs-text {
  background: #c4172c;
  color: #fff;
  padding: 10px 15px;
  display: block;
  text-transform: uppercase;
}

.single-content h3 {
  font-size: 20px;
}

.single-content h4 {
  font-size: 18px;
}

.single-content > *,
.single-content-box > * {
  margin-bottom: 20px;
}

.single-content > *:last-child {
  margin-bottom: 0;
}

.single-content blockquote {
  background: #ebf6e0;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.single-content blockquote>*:not(.anim) {
  margin-bottom: 16px;
}

.single-content blockquote>*:last-child {
  margin-bottom: 0;
}

.single-content blockquote .anim.anim-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #FFAC40, #0B29AF);
  animation: animate1 2s linear infinite;
}

.single-content blockquote .anim.anim-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #FFAC40, #0B29AF);
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}

.single-content blockquote .anim.anim-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #FFAC40, #0B29AF);
  animation: animate3 2s linear infinite;
}

.single-content blockquote .anim.anim-4 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, #FFAC40, #0B29AF);
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}

.single-service #ez-toc-container {
  display: none;
}

.single-tag {
  border: 1px solid #00000026;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 50px;
}

.single-tag span {
  font-size: 20px;
  font-weight: 600;
  margin-right: 16px;
}

.single-tag-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.single-tag-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.single-tag-item a {
  color: #fff;
  background-color: #4786EE;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 14px;
}

.single-tag-item a:hover {
  background-color: var(--secondary-color);
}

.post-navigation {
  margin-top: 50px;
}

.post-navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.eel-nav-label {
  display: inline-flex;
  font-size: 14px;
  align-items: center;
  gap: 4px;
  color: #727A85;
}

.eel-nav-title {
  display: block;
  font-size: 1em;
  color: #35404E;
  font-weight: 600;
}

.author-box {
  background-color: #0000000A;
  margin: 50px 0;
  padding: 30px;
  border-radius: 8px;
}

.author-infor {
  display: inline-flex;
  gap: 20px;
}

.author-avatar img {
  border-radius: 50%;
  width: 96px;
  height: 96px;
}

.author-desc {
  flex: 1;
}

.author-name {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 800;
}

.author-socials {
  margin: 10px 0;
}

.author-socials .social-icons {
  gap: 5px;
}

.author-socials .social-icons a {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.author-description {
  font-size: 15px;
}


/*--------------------------------------------------------------
## Responsive
--------------------------------------------------------------*/

@media (min-width: 1199px) {
  .c-tab .img-fb,
  .c-tab .img-google,
  .c-tab .img-tiktok {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .c-package .c-package-head,
  .c-package .c-package-bottom {
    padding: 16px;
  }
  .c-package .c-package-name h4 {
    font-size: 26px;
  }
  .c-package .c-package-price {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  #mobilenav li:hover {
    background-color: var(--primary-color);
  }

  #mobilenav li:hover > a,
  #mobilenav li:hover .arrow {
    color: #fff;
  }
}

@media (min-width: 600px) {
  #mobilenav {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }

  .section-rounded {
    border-radius: 48px;
  }

  .c-title {
    margin-bottom: 30px;
  }

  .c-title-main {
    font-size: 28px;
  }

  .c-news .c-news-image {
    height: 220px;
  }

  .c-news .c-news-meta {
    font-size: 14px;
  }

  .c-feedback::before {
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    background-size: 40px 34px;
    background-position: bottom 30px left 25px;
  }

  .c-tab-nav {
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
    overflow: auto;
  }

  .c-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .c-tab-nav .c-tab-link {
    font-size: 16px;
  }

  .c-tab .c-tab-title {
    font-size: 20px;
  }

  .c-tab .c-tab-content ul li::before {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .c-logo-brand {
    padding: 8px;
    border-radius: 8px;
  }

  .c-logo-brand img {
    max-height: 30px;
  }

  .c-service-more {
    font-size: 12px;
    padding: 6px 10px;
  }

  .c-service-title {
    font-size: 16px;
  }

  .c-service-logo {
    width: 40px;
    height: 40px;
  }

  .c-service-date {
    width: 50px;
    height: 50px;
  }

  .c-service-date div:first-child {
    font-size: 18px;
  }

  .c-service-date div:last-child {
    font-size: 12px;
  }

  .c-project .c-project-title {
    font-size: 20px;
  }

  .c-project .c-project-image {
    height: 220px;
  }

  .c-project .c-project-text {
    padding-top: 16px;
  }

  .c-project .c-project-more {
    width: 40px;
    height: 40px;
  }

  .c-project .c-project-hot {
    font-size: 28px;
  }

  .c-news .c-news-more {
    width: 40px;
    height: 40px;
  }

  .c-news .c-news-meta > span:first-child {
    padding: 6px 16px;
  }

  .c-breadcrumb-left {
    width: 100%;
  }

  .c-breadcrumb-img {
    display: none;
  }

  .wpcf7 .wpcf7-submit {
    font-size: 16px;
    gap: 8px;
  }
 
  .slick-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .slick-slider .slick-list {
    margin: 0 -10px;
  }

  .slick-slider .slick-slide {
    margin: 0 10px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 40px;
  }

  .slick-slider .slick-dots {
    bottom: -40px;
  }

  .slick-slider .slick-dots li {
    width: 8px;
    height: 8px;
  }

  .slick-prev {
    left: -15px;
  }

  .slick-next {
    right: -15px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .c-breadcrumb .title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .c-breadcrumb-wrap {
    padding: 70px 0;
  }

  .c-breadcrumb-img img {
    max-height: 180px;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .single-tag {
    flex-direction: column;
    padding: 24px;
  }

  #mobilenav li.current-menu-item > a {
    background: var(--primary-color);
    color: #fff;
  }

  #mobilenav li.current-menu-item > a + .arrow {
    color: #fff;
  }

  .heading {
    font-size: 24px;
  }

  .ez-toc-sticky .ez-toc-open-icon {
    right: 0;
  }

  /*--------------------------------------------------------------
  ## Home
  --------------------------------------------------------------*/

  .top-header {
    display: none;
  }

  .home-logo {
    padding-top: 10px;
  }

  .home-service-box-title-container {
    margin-bottom: 20px;
  }

  .home-service-box-title {
    font-size: 18px;
  }

  .home-service-box-title img {
    width: 36px;
    height: 36px;
  }

  .home-turboads {
    padding: 16px 0;
  }

  .home-turboads-text {
    font-size: 48px;
  }

  .home-partner .home-partner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .home-procedure-item {
    width: calc(100% - 70px);
  } 

  .home-procedure-item {
    margin-left: auto;
  }

  .home-procedure-item .home-procedure-item-num {
    right: calc(100% + 20px);
  }

  .home-procedure-item:nth-child(even) .home-procedure-item-num {
    right: calc(100% + 20px);
    left: auto;
  }

  .home-procedure-item + .home-procedure-item {
    margin-top: 24px;
  }

  .home-contact .listbox {
    grid-template-columns: 1fr;
  }

  .home-contact .listbox li.full .icon-line .desc {
    font-size: 16px;
  }

  .footer-main {
    padding: 48px 0 32px;
  }
  .footer .footer-widgets-area + .footer-widgets-area {
    margin-top: 20px;
  }
  .footer-copy {
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .c-title-main {
    font-size: 24px;
  }
  .single-content h2 {
    font-size: 20px;
  }
  .home-service-box-title-container .c-btn-more {
    display: none;
  }
  .home-turboads-text {
    font-size: 32px;
  }
  div#ez-toc-container {
    padding: 16px;
  }
  .author-box {
    padding: 20px;
  }
  .author-infor {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 500px) {
  .home-data-list > * {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 425px) {
  .home-partner .home-partner-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bottom-inf-single {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
}
.bottom-inf-single .logo {
  margin-bottom: 1.25rem;
}
.bottom-inf-single .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.bottom-inf-single .name-comp {
  text-align: center;
  font-weight: 700;
  color: #3cb44a;
  line-height: 1.4;
}
.bottom-inf-single .name-comp {
  font-size: 1.5rem;
}
.bottom-inf-single .inf-bottom {
  margin-top: 20px;
  color: #1E1E1E;
}
.bottom-inf-single .social-menu {
  justify-content: center;
  gap: 20px;
  justify-content: center;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  list-style: none;
  position: relative;
}
.bottom-inf-single .social-menu {
  margin-top: 1.25rem;
}

.bottom-inf-single .social-menu li {
  flex: auto;
}

.bottom-inf-single .social-menu li a {
  border-radius: 30px;
  background: #3cb44a;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.7rem 1rem;
}
.bottom-inf-single .social-menu li a:hover {
  background: #036608;
}
.bottom-inf-single .social-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 30px;
  border: 1px solid #ffffff;
}

.bottom-inf-single .social-menu li a i {
  font-size: 30px;
}
.bottom-inf-single .social-menu li a img {
  object-fit: contain;
}
.bottom-inf-single .social-menu li a img {
  width: 1.875rem;
  height: 1.875rem;
}
.bottom-inf-single .social-menu li a .sr-only {
  display: block;
  -webkit-clip-path: inset(0%);
  clip-path: inset(0%);
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
  opacity: 1;
  position: relative;
  text-decoration: underline;
  font-weight: 600;
}
.bottom-inf-single .social-menu li a .sr-only {
  padding-left: 0.625rem;
}
@media only screen and (min-width: 1024px) {
  .bottom-inf-single .name-comp {
    font-size: 2rem;
  }
  .bottom-inf-single .social-menu {
    margin-top: 1.875rem;
  }
  .bottom-inf-single .social-menu li a .sr-only {
    padding-left: 0.9375rem;
  }
  .bottom-inf-single .logo {
    margin-bottom: 1.875rem;
  }
}

@media only screen and (max-width: 768px) {
  .bottom-inf-single {
    padding: 30px 15px;
  }
  .bottom-inf-single .social-menu li {
    width: 100%;
  }
  .bottom-inf-single .logo {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}