html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a0a0a;
  --second-color: #383838;
  --one-color: #337ab7;
  --two-color: #ba1a1a;
}

ul,
ol {
  list-style: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  cursor: pointer;
}

html,
body {
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  height: inherit;
}

img {
  height: auto;
  max-height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.d-flex {
  display: flex;
}

.centerRow {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.centerbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_50 {
  overflow: hidden;
  position: relative;
  padding-bottom: 50%;
  height: 0;
}

.img_37 {
  overflow: hidden;
  position: relative;
  padding-bottom: 33%;
  height: 0;
}

.img_70 {
  overflow: hidden;
  position: relative;
  padding-bottom: 70%;
  height: 0;
}

.img_100 {
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
  height: 0;
}

.img_130 {
  overflow: hidden;
  position: relative;
  padding-bottom: 130%;
  height: 0;
}

.img_150 {
  overflow: hidden;
  position: relative;
  padding-bottom: 150%;
  height: 0;
}

.imgg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.imgg.hover:hover {
  transform: scale(1.1);
}

/* header */

#header {
  padding: 25px 0;
}

#logo {
  position: relative;
}

.header-search {
  margin-top: 8px;
}
.header-search form input {
  height: 44px;
  padding: 0 15px;
  border: 1px solid #ddd;
  font-size: 15px;
  border-radius: 0;
  max-width: 100%;
  width: 80%;
  vertical-align: middle;
  background-color: #fff;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  float: left;
  outline: none;
}
.header-search form button {
  border: none;
  outline: none;
  background: var(--one-color);
  padding: 0px 15px;
  height: 44px;
  float: left;
  vertical-align: middle;
}
.header-infor {
  text-align: center;
}
.header-infor a {
  padding: 8px 15px;
  background: #ba1a1a;
  border-radius: 20px;
  color: white;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}
.header-infor p {
  font-size: 13px;
  font-weight: 600;
}

/* menu */
#menu {
  position: relative;
  border-top: 1px solid #ccc;
  border-bottom: 3px solid var(--two-color);
  height: 50px;
}
body.fixed {
  margin-top: 50px;
}
body.fixed #menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
body.fixed.mb #header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

body.fixed.mb {
  margin-top: 77px;
}

.menu-drop {
  background-color: var(--two-color);
  height: 48px;
  padding: 10px 0 10px 15px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 29px;
  cursor: pointer;
}

.menu-drop svg {
  vertical-align: text-top;
  margin-right: 15px;
}

.pr-0 {
  padding-right: 0;
}
.pl-0 {
  padding-left: 0;
}
.menu-drop-list {
  border: 1px solid #ddd;
  display: none;
  width: 100%;
}

.menu-drop-list li {
  padding: 8px 15px;
  transition: 0.2s;
}
.menu-drop-list li:hover {
  background: #f5f5f5;
}
.menu-drop-list li a {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
}

.menu-drop-list li + li {
  border-top: 1px solid #ddd;
}
.menu-list {
}
.menu-list li {
  display: inline-block;
  line-height: 48px;
  transition: 0.2s;
}
.menu-list li:hover {
  background: var(--one-color);
}
.menu-list li a {
  font-size: 15px;
  font-weight: 600;
  padding: 0 20px;
  color: var(--primary-color);
  transition: 0.2s;
}
.menu-list li:hover a {
  color: white;
}

/* banner  */
.banner-home .owl-dots {
  position: absolute;
  z-index: 9;
  width: 100%;
  text-align: center;
  bottom: 10px;
}
.banner-home .owl-dots button {
  width: 50px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.2s;
}
.banner-home .owl-dots button.active {
  background: rgba(255, 255, 255, 0.8);
}

/*ctg-home*/
.ctg-home {
  margin-top: 20px;
}
.ctg-home .tieu-de h2 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--two-color);
  padding: 12px 15px;
  color: white;
}

.ctg-home-slider {
  margin-top: 15px;
}
.ctg-home-slider h3 {
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 15px;
  color: var(--primary-color);
}

/* service */
.service {
  padding-top: 15px;
}
.service__group {
  margin-top: 30px;
}
.box__heading {
  margin-bottom: 30px;
}

.heading {
  font-size: 26px;
  text-transform: uppercase;
}

.section__heading {
  line-height: 0;
  position: relative;
}

.section__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: 0;
  border-top: 1px solid #d0d2d3;
  z-index: 1;
  display: block;
  width: 100%;
}

.section__heading span {
  background-color: var(--one-color);
  line-height: 45px;
  padding: 0px 1%;
  position: relative;
  z-index: 2;
  text-align: center;
  display: inline-block;
  min-width: 260px;
  font-weight: 500;
  font-size: 15px;
  color: white;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section__heading span {
    font-size: 18px;
  }
}

.section__heading span::before,
.section__heading span:after {
  content: "";
  position: absolute;
  border-width: 0px;
  border-style: solid;
  border-color: #5c9efe transparent;
  display: block;
  width: 0;
  height: 0;
  bottom: 0px;
  border-top: 23px solid transparent;
  border-bottom: 22px solid transparent;
}

.section__heading span::before {
  left: -15px;
  border-right: 15px solid var(--one-color);
}

.section__heading span:after {
  right: -15px;
  border-left: 15px solid var(--one-color);
}

/* service item */
.service__item {
  margin-bottom: 15px;
  border: 2px solid #ebebeb;
  border-radius: 10px;
  display: block;
}

.product .pagination-build {
  margin-top: 0;
}
.congaf-sp-detail hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.extra-field {
  margin-top: 15px;
}
.extra-field li {
  margin-bottom: 5px;
  font-size: 15px;
}

.tab-content {
  font-size: 15px;
  line-height: 23px;
}
.tab-content p {
  margin-bottom: 10px;
}
.tab-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.tab-content h3,
.tab-content h4,
.tab-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.service__item .box-images {
  /* padding-bottom: calc(202 / 360 * 100%); */
  border-radius: 10px;
}

.service__item-body {
  padding: 0 15px 20px;
  color: var(--global-color-black);
}

.service__item-title {
  border-bottom: 1px solid #ebebeb;
  padding: 15px 0 10px;
  color: var(--primary-color) !important;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 64px;
}

/* .home .service__item-title,
.home .service__item-body,
.home .service__item-des {
  color: #fff;
} */

.home .service__item {
  border: 2px solid rgba(235, 235, 235, 0.5);
}

.service__item-des {
  margin-bottom: 10px;
  margin-top: 10px;
  color: var(--second-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-height: 22px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 66px;
}

.service__item-des * {
  margin-bottom: 0;
}

.service__item-created {
  font-weight: 500;
  color: var(--global-color-base);
}

.service__item:hover .service__item-title {
  color: var(--global-color-base);
}

.service .owl-carousel {
  /* padding: 0 18px; */
  /* padding-bottom: 40px; */
}

.service .service__group:not(:last-child) .owl-carousel {
  /* margin-bottom: 30px; */
}

.service .owl-nav button.owl-prev {
  left: 0;
}

.service .owl-nav button.owl-next {
  right: 0;
}

/* button */
.btn__white {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  padding: 8px 15px;
  min-width: 140px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s;
  background: #efefef;
  border-radius: 10px;
  color: var(--primary-color);
  width: 100%;
}
.btn__white:hover {
  background-color: #ba1a1a;
  color: white;
}

/* end service item */
.banner-home-mid {
  margin-top: 15px;
}
.banner-home-mid img {
  display: block;
}
.footer {
  background-color: #333;
  padding-top: 15px;
  padding-bottom: 30px;
}
.form-sub-title {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
}
.form-sub form {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.form-sub form {
  margin-top: 15px;
}
.form-sub form input {
  font-size: 14px;
  width: 100%;
  max-width: 340px;
  height: 40px;
  padding: 0 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.09);
  outline: none;
  border-radius: 20px;
  color: white;
}
.form-sub form input::placeholder {
  opacity: 0.5;
  color: white;
}
.form-sub form button {
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background-color: #446084;
}
.footer-title {
  margin-top: 35px;
}
.footer-title .title-1 {
  color: #00ffff;
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
}
.footer-title .title-2 {
  color: var(--one-color);
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-des {
  margin-top: 30px;
  color: white;
}
.footer-des ul li {
  font-size: 15px;
  margin-bottom: 5px;
}

/* home-new */
.home-new {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.home-new-title {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.new-item {
  background: white;
  overflow: hidden;
  border-radius: 10px;
}
.new-item .new-infor {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}
.new-item h3 {
  font-size: 15px;
  font-weight: 500;
  padding-top: 15px;
  margin-bottom: 10px;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
}
.new-des {
  color: var(--second-color);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* home-rate */
.home-rate {
  padding: 30px 0;
}
.home-rate-title {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.home-rate-des {
  font-size: 15px;
  margin-bottom: 30px;
  text-align: center;
}
.rate-item {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ccc;
}
.rate-item img {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
  float: left;
}
.rate-item .rate-infor {
  padding-left: 95px;
  font-size: 14px;
  color: var(--second-color);
}
.rate-item .rate-name {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.icon-mobile {
  display: none;
}

/*  */
/* home-session-4 */
.home-session-4 {
  padding-top: 30px;
  padding-bottom: 10px;
}

.home-session-4 .home-title {
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 630px;
}

.home-session-4 .home-title h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 13px;
  text-align: center;
}

.home-session-4 .home-title .faq-title-cus {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 13px;
  text-align: center;
  text-transform: uppercase;
}

.home-session-4 .home-title .faq-twmp-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 13px;
  text-align: center;
}

.home-session-4 .home-title p {
  font-size: 15px;
  line-height: 23px;
  text-align: center;
}

.home-session-4 .faq-list {
  max-width: 960px;
  margin: 0 auto;
}

.home-session-4 .faq-list .faq-item {
  margin-bottom: 20px;
  cursor: pointer;
}

.home-session-4 .faq-list .faq-item h4 {
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
}

.home-session-4 .faq-list .faq-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0px;
}

.faq-list .faq-title .doc {
  display: none;
}

.faq-list .faq-title.collapsed .doc {
  display: block;
}

.home-session-4 .faq-list .faq-item span {
  float: right;
  cursor: pointer;
  line-height: 23px;
}

.home-session-4 .panel {
  border: none;
  box-shadow: unset;
}

.home-session-4 .faq-item .faq-wrap {
  font-size: 16px;
  line-height: 24px;
}

.home-session-4 .faq-item .faq-wrap > div {
  margin-top: 15px;
  /* padding-bottom: 5px; */
}

.home-session-4 .faq-item .faq-wrap > div::after {
  content: "";
  position: absolute;
}
.page-detail {
  margin-top: 30px;
  margin-bottom: 30px;
}
.page-content h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.page-content h2,
.page-content h3,
.page-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.page-content p {
  font-size: 15px;
  margin-bottom: 10px;
}
.new-page {
  background-color: #f5f5f5;
  padding-top: 30px;
  padding-bottom: 30px;
}
.new-page .new-item {
  margin-bottom: 30px;
}
.new-detail-ctg a {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}
.news-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}
.news-content {
  margin-top: 15px;
}
.news-content p {
  margin-bottom: 10px;
  font-size: 15px;
}
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5 {
  margin-bottom: 10px;
  font-size: 15px;
}
.sp-sidebar .section__heading span {
  width: calc(100% - 30px);
  min-width: unset;
}

/* pagination-build */
.pagination-build {
  text-align: center;
}
.pagination-build li {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  margin: 0 3px;
  border: 1px solid var(--primary-color);
}
.pagination-build li.active {
  background-color: var(--two-color);
  border-color: var(--two-color);
}
.pagination-build li.active a {
  color: white;
}
.pagination-build li a {
  color: var(--primary-color);
  line-height: 33px;
}

/* menu-mobile */
.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  z-index: 9999;
  display: none;
}
.menu-mobile.active {
  display: block;
}
.menu-mobile .menu-mobile-list {
  width: 80%;
  height: 100%;
  background: white;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
.menu-mobile .menu-mobile-list ul {
  margin-top: 25px;
}
.menu-mobile .menu-mobile-list ul li {
  padding: 15px 15px;
}
.menu-mobile .menu-mobile-list ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}
.menu-mobile .menu-mobile-list ul li + li {
  border-top: 1px solid #ccc;
}
.menu-mobile-form {
  padding-left: 15px;
}
.close-menu-mobile {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  cursor: pointer;
}

/* producut */
.cspd-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.cspd-link {
  margin-top: 30px;
}
.cspd-link a {
  display: inline-block;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  background-color: var(--one-color);
  border-radius: 10px;
}
.cspd-link .link2 {
  background-color: #7a9c59;
  margin-left: 15px;
}
.cspd-ctg {
  margin-top: 5px;
}
.cspd-ctg a {
  color: var(--primary-color);
}
.social-share {
  margin-top: 20px;
  text-align: center;
  display: flex;
  gap: 10px;
}
.social-share li {
  width: 32px;
  height: 32px;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-share li a {
  color: #c0c0c0;
}
.social-share li:hover {
  border-color: #ba1a1a;
}
.social-share li:hover a {
  color: #ba1a1a;
}
.social-share li svg {
  margin-top: 5px;
}
.congaf-sp-detail {
  margin-top: 20px;
}
.cspd-img {
  position: relative;
}
.cspd-img svg {
  position: absolute;
  bottom: 10px;
  right: 5px;
  opacity: 0.5;
  transition: 0.2s linear;
  cursor: pointer;
  pointer-events: none;
}
.cspd-img:hover svg {
  opacity: 1;
}
.nav-tabs {
  margin-bottom: 15px;
}
.nav-tabs > li.active > a {
  background-color: var(--one-color) !important;
  color: white !important;
}
.nav-tabs > li > a {
  color: var(--primary-color);
}
.tab-content {
  margin-bottom: 50px;
}
.relate-title {
  font-size: 20px;
  margin-bottom: 30px;
}
.toi-uu.ctg-home-slider {
  display: flex;
  gap: 20px;
}
.toi-uu.ctg-home-slider .ctg-home-item {
  flex: 1;
}

/*  */

.exten {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  display: block;
  /* transform: translate(150%, 0); */
  transition: 0.5s;
}
.exten .enimation {
  transform: translate(150%, 0);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.exten.show {
  /* transform: translate(0, 0); */
  display: block;
}
.exten.show .enimation {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
  transition: 0.5s;
}
.exten__left {
  left: 20px;
  bottom: 20px;
  right: unset;
}

.exten__zalo {
  background: #2b66f6 !important;
}

.exten__image {
  height: 24px;
  transform: translateY(-2px);
  width: auto;
  vertical-align: middle;
}

.exten .button {
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  line-height: 40px;
  border: 0;
  background: #ba1a1a;
  border-radius: 10rem;
  margin-bottom: 15px;
  position: relative;
}
.phone-expan {
  position: absolute;
  right: 35%;
  padding: 10px 20px 8px 10px;
  text-align: center;
  color: white;
  font-weight: 600;
  border-radius: 20px 10px 10px 20px;
  top: 0;
  background: #ff9900;
  line-height: 16px;
}
.exten .zoom__infi:not(:last-child) {
  background: 0 0;
  box-shadow: unset;
}

.exten .zoom__infi:not(:last-child) .xxxx {
  width: 35px;
  height: 35px;
  background: #ff9900;
  position: relative;
  border-radius: 50%;
}

.exten .zoom__infi:not(:last-child) .xxxx::after {
  position: absolute;
  content: "";
  left: -7px;
  top: -7px;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #ff9900;
  opacity: 0.5;
  z-index: -1;
  animation: 1.75s infinite spread;
}

.exten .backtotop i {
  color: #fff;
  transform: rotate(-90deg);
  font-size: 20px;
}

.exten .zoom__infi:not(:last-child) .xxxx::before {
  position: absolute;
  left: -12px;
  top: -12px;
  background: 0 0;
  width: 59px;
  height: 59px;
  border: 0.5px solid #9aca3c;
  border-radius: 50%;
  animation: 1.2s infinite spread;
}

@keyframes spread {
  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }
}

.exten .zoom__infi:not(:last-child) svg {
  width: 16px;
  height: 35px;
}

.exten .button:hover {
  color: #210055;
  transform: scale(1.1);
}

.exten .button svg {
  position: relative;
  z-index: 2;
}

.exten .button:active {
  transform: scale(0.97);
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
/* reponsive */

/* lg */
@media screen and (min-width: 1440px) {
}

/* md */
@media screen and (min-width: 992px) {
}

/* sm */
@media screen and (min-width: 768px) {
}

/* xs */
@media screen and (max-width: 768px) {
  .d-xs-none {
    display: none;
  }

  .pl-0 {
    padding-left: 15px;
  }

  #header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  #menu {
    display: none;
  }

  #logo img {
    height: 40px;
    width: auto;
  }

  .banner-home {
    margin-top: 0;
  }

  .icon-mobile {
    position: absolute;
    z-index: 9;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .icon-mobile {
    display: block;
  }
  .header-search form input {
    width: 78%;
  }
  .cspd-title {
    margin-top: 15px;
  }
  .congaf-sp-tab {
    margin-top: 30px;
  }
  .congaf-sp-detail {
    margin-top: 0;
  }
}
