:root {
  --main-color: #0092de;
  --second-color: #f4892b;
  --font-family: "SVN-Poppins";
  --font-family-l: "SVN-Poppins L";
  --font-family-s: "SVN-Poppins S";
  --font-family-m: "SVN-Poppins M";
  --font-family-b: "SVN-Poppins B";
  --font-family-sb: "SVN-Poppins Sb";
  --font-title: "PlayfairDisplay";

  --text-color: #3b3b3b;
  --text-gray: #ababab;
  --background: #f4fafe;
  --background-2: #efeee5;

  --border-color: #dbe2ec;
}
body {
  font-size: 15px;
  background-color: #fff;
  color: var(--text-color) !important;
  font-family: var(--font-family);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-sb);
  font-weight: 600;
  color: var(--text-color);
}
.text_center {
  text-align: center;
}
.text_white * {
  color: #fff !important;
}
.d_none {
  display: none;
}
.item_post .item_img {
  position: relative;
  overflow: hidden;
}
.item_post:hover .item_img img {
  transform: scale(1.2);
  transition: all 0.5s;
}
.item_post:hover .item_title {
  color: var(--second-color);
  transition: all 0.5s;
}
.item_post .item_img img {
  transform: scale(1);
  transition: all 0.5s;
}

.item_post .item_img img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}
.item_post .item_content .item_date {
  position: absolute;
  top: -40px;
  right: 20px;
  background-color: var(--background-2);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: var(--font-family-m);
  font-size: 18px;
  line-height: 1;
  color: var(--text-color);
  gap: 7px;
  transition: all 0.5s;
}
.item_post:hover .item_date {
  background-color: var(--main-color);
  color: #fff;
  transition: all 0.5s;
}
.item_post .item_img .year {
  font-size: 20px;
  line-height: 1.5;
}
.item_post .item_content {
  padding: 20px;
  position: relative;
}
.item_post .item_title {
  font-size: 18px;
  font-family: var(--font-family-sb);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 15px 0;
  transition: all 0.5s;
}
.item_post .item_excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.item_post .item_meta {
  font-size: 14px;
  color: var(--text-gray);
}
.item_post .item_meta span {
  margin: 0 10px;
}
.widget_post .item_post {
  margin-bottom: 15px;
}
.wrapper {
  position: relative;
}
.wrapper a {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.title_section {
  color: var(--main-color);
  font-size: 35px;
  font-family: var(--font-title);
  font-weight: 400;
}
.hot_news {
  background-color: var(--background);
}
.list_hot {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}

.list_hot_news_1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.item_post_2 .item_title {
  font-size: 16px;
  margin-top: 0;
}
.item_post_2 {
  border-left: 2px solid var(--main-color);
}
.item_post_2:hover {
  background-color: var(--main-color);
}
.item_post_2:hover * {
  color: #fff !important;
  transition: all 0.5s;
}
.list_hot_news_2 {
  display: grid;
  gap: 30px;
}
.item_post {
  background-color: #fff;
}
.list_hot_news_1 .item_post {
  height: 100%;
}
section {
  padding: 30px 0;
  z-index: 3;
  position: relative;
}
ul.df_ul {
  list-style: none;
  margin-bottom: 0;
}
ul.df_ul li {
  /* margin-bottom: 0; */
}
.news_page .group_title {
  display: flex;
  align-items: center;
  gap: 52px;
}
.news_page .group_title .title_section {
  width: max-content;
}
.list_category {
  display: flex;
  align-items: center;
  gap: 65px;
}
.list_category li a {
  font-size: 16px;
  transition: all 0.5s;
  position: relative;
}
.list_category li.active a,
.list_category li:hover a {
  transition: all 0.5s;
  color: var(--second-color);
}
.list_category li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--second-color);
  bottom: 0;
}
.list_category li.active a::before,
.list_category li:hover a::before {
  width: 100%;
}
.list_news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cus_pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  list-style: none;
}
.cus_pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 5px 10px;
  padding: 0;
  transition: all 0.5s;
  border-radius: 50%;
}
.cus_pagination li.active a,
.cus_pagination li:hover a {
  color: #fff;
  background-color: var(--main-color);
}
.cus_pagination li path {
  transition: all 0.5s;
}
.cus_pagination li:hover path {
  transition: all 0.5s;
  fill: #fff;
}
.title_form {
  padding: 0 10px;
  font-size: 24px;
}

.inner_form .title_form {
  margin-bottom: 30px;
  font-family: var(--font-family-sb);
}
.method_contact li {
  display: flex;
  gap: 20px;
}

.method_contact li p {
  margin-bottom: 0;
}
.btn_submit {
  text-align: right;
}
.btn_submit input {
  border-radius: 20px 20px 20px 0 !important;
  background: var(--second-color) !important;
  color: #fff;
  margin: 0 !important;
  min-width: 120px;
}
span.wpcf7-spinner {
  position: absolute;
}
.map_iframe iframe {
  width: 100%;
}

.map_iframe {
  border-radius: 10px;
  overflow: hidden;
}
.swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
}
.swiper-grid-column > .swiper-wrapper .swiper-slide {
  margin-top: 0 !important;
}
.section_da_1 .list_item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.section_da_1 .list_item img {
  width: 100%;
}
.section_da_1 .list_item .item {
  position: relative;
}

.section_da_1 .list_item .item_content {
  position: absolute;
  bottom: 10px;
  background: var(--second-color);
  width: 100%;
}

.section_da_1 .list_item .item_content h3 {
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  margin-bottom: 0;
  font-family: var(--font-family-m);
  font-weight: 500;
}
.slide_da .item_slide .item_title {
  font-size: 15px;
}

.slide_da .item_slide .item_content {
  text-align: center;
  padding: 10px;
}

.slide_da .item_slide .item_des {
  font-size: 14px;
}
.slide_da img {
  width: 100%;
}
.section_contact .box_contact {
  position: relative;
}

.section_contact .box_contact .box_form {
  background: var(--main-color);
  max-width: 75%;
  margin-left: auto;
  padding: 40px;
}
.section_contact .box_contact .img_contact {
  position: absolute;
  bottom: -1px;
  left: 0;
}
.section_contact .box_contact .box_form .inner_form {
  max-width: 75%;
  margin-left: auto;
}
.section_contact .box_contact .box_form .inner_form input[type="email"] {
  margin: 30px 0;
  height: 50px;
  outline: none;
  border: none;
}
.section_contact .box_contact .box_form .btn_submit {
  text-align: center;
}
.section_contact {
  padding-top: 50px;
}
.slide_dt {
  padding: 60px 20px;
  margin: -20px;
}
.slide_dt .item_img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.content p:last-of-type {
  margin-bottom: 0;
}
img.size-full.alignnone {
  margin-bottom: 0 !important;
}
.about_us_2 .des_section {
  max-width: 75%;
  margin: 40px auto;
}
.about_us_2 .list_item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.section_file + .section_contact:before {
  display: none;
}
.section_file .des_section {
  max-width: 75%;
  margin: 0 auto 40px;
}
blockquote {
  font-size: 15px !important;
  font-family: var(--font-family-sb);
  font-style: normal !important;
  color: var(--text-color) !important;
}
.btn_main {
  display: flex;
  background: var(--second-color);
  width: max-content;
  padding: 5px;
  padding-left: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 20px 20px 20px 0;
  color: #fff;
}
.banner_home img {
  width: 100%;
  object-fit: cover;
}
.btn_main .icon_btn {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 50% 50% 50% 0;
}
.sec_home_2 .content {
  margin-bottom: 30px;
}
.sec_home_2 {
  background-image: url("../images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_home_3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_home_3 .list_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}

.sec_home_3 .list_grid .item_icon {
  border: 1px solid #fff;
  width: 220px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_home_3 .list_grid .item:nth-child(1) .item_icon,
.sec_home_3 .list_grid .item:nth-child(2) .item_icon {
  border-radius: 20px 20px 0 20px;
}
.sec_home_3 .list_grid .item:nth-child(3) .item_icon,
.sec_home_3 .list_grid .item:nth-child(4) .item_icon {
  border-radius: 20px 20px 20px 0;
}
.sec_home_3 .list_grid .item_cont {
  color: #fff;
  font-size: 15px;
  text-align: center;
}
.sec_home_3 .list_grid .item_title {
  color: var(--second-color);
  font-size: 18px;
  margin: 25px 0 15px;
}
.sec_home_3 {
  padding: 50px 0;
}
.sec_home_4 {
  padding: 60px 0 80px;
}
.sec_home_4 .col_content {
  margin-top: 60px;
}
.sec_home_4 .content {
  max-width: 75%;
  margin-bottom: 30px;
}
.sec_home_4 .col_slide img {
  width: 100%;
  max-height: 400px;
}
.sec_home_4 .col_slide {
  position: relative;
}
.sec_home_4 .col_slide .swiper {
  position: unset;
}
.sec_home_4 .col_slide .swiper-pagination {
  bottom: -35px !important;
}
.section_footer a {
  color: #fff !important;
}
.footer_map iframe {
  height: 210px;
  border-radius: 10px;
}
.section_footer .col {
  padding-bottom: 0 !important;
}
.footer-primary {
  width: 100%;
  text-align: center;
}
.absolute-footer {
  border-top: 1px solid #fff;
}
.inner_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec_home_1 {
  padding: 0;
}
.bot_header .company_name {
  color: var(--second-color);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  margin-left: 15px;
}
.top_header {
  background-color: var(--main-color);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  padding: 7px 0;
}
.bot_header .phone {
  font-size: 15px;
  color: var(--second-color);
  background: #fff;
  padding: 0 7px;
  padding-left: 15px;
}
div#logo a {
  width: 90px;
  margin-right: 15px;
}

div#logo a img {
  width: 90px;
  height: 85px;
}

.bot_header {
  height: 70px;
}

div#logo {
  width: max-content;
  padding-top: 8px;
}

.custom_content_header {
  margin-top: 23px;
  position: relative;
  left: -15px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
  position: relative;
  top: -11px;
}

.header-wrapper .group_fix {
  display: flex;
  align-items: center;
  gap: 40px;
}

header#header {
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 13.23%, rgba(0, 0, 0, 0.3) 82.28%, rgba(0, 0, 0, 0) 100%); */
  position: fixed;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
header#header ul li.current-menu-item a ,header#header ul li:hover a{
  color: var(--main-color) !important;
}
header#header .wrapper_header {
  position: relative;
}
.nav-column > li > a,
.nav-dropdown > li > a,
.nav-vertical-fly-out > li > a,
.nav > li > a {
  color: var(--text-color) !important;
}
.item_post .item_content .year {
  font-size: 20px;
  line-height: 1.5;
}
.header_mb {
  display: none;
}
main#main {
  padding-top: 72px;
}

.contact_page_1 {
  padding: 50px 0;
}
main#main section:first-of-type {
  padding-top: 50px;
}
ul.sub_nav {
  display: flex;
  list-style: none;
  align-items: center;
  /* position: absolute; */
  right: calc(calc(100vw - 1400px) / 2);
  top: 0;
  left: 0;
  margin: 0;
  height: 60px;
}

ul.sub_nav li {
  /* border-right: 1px solid #EBEBEC; */
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.sub_nav .btn_search {
  /* position: absolute; */
  /* width: 20px; */
  /* float: right; */
  /* right: 43px; */
  /* top: 18px; */
}
.sub_nav input#search {
  width: 401px;
  background-color: #fff;
  border: none;
  font-family: "Google Sans";
}
li.search_item.search_open {
  /* border-left: 1px solid #EBEBEC; */
}
.sub_nav input#searchsubmit {
  /* position: absolute; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}
ul.sub_nav li.custom_link a {
  font-family: "Google Sans Medium";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 28px;
}
ul.sub_nav li.header_email a {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  margin: 0 28px;
}

ul.sub_nav li.header_email a svg {
  margin-right: 10px;
}

ul.sub_nav li.hotline_header a {
  font-family: "Google Sans Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  color: var(--main-color);
  display: flex;
  align-items: center;
  margin: 0 30px;
}

div#page {
  margin-top: 91px;
}
.sub_nav input#search {
  width: 401px;
  background-color: #fff;
  border: none;
  font-family: "Google Sans";
}
.sub_nav input#search {
  position: relative;
  width: 100vw;
  top: 50px;
  right: 0;
  transform: translateX(51px);
}
li.search_item.search_open input#search {
  display: none;
  transition: all 0.5s;
}
.wrap_search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s all;
  pointer-events: none;
}

.wrap_search_popup.show {
  opacity: 1;
  pointer-events: unset;
}

.wrap_search_popup .inner {
  background: #353535e8;
  padding: 20px calc(calc(100vw - 900px) / 2) 20px;
  position: relative;
  z-index: 2;
  transform: translateY(-120%);
  transition: 0.3s all;
}

.wrap_search_popup.show .inner {
  transform: translateY(0%);
  transition-delay: 0.3s;
}

.wrap_search_popup .inner .button_close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
  cursor: pointer;
}

.wrap_search_popup .inner .button_close path {
  fill: white;
}

.wrap_search_popup .inner h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.wrap_search_popup input::placeholder {
  font-size: 25px;
  color: #929292 !important;
}

.wrap_search_popup input#s {
  margin-bottom: 0;
  height: 50px;
  width: 100%;
  margin-right: 10px;
  outline: none;
  background-color: #232323;
  border-radius: 0;
  border: 1px solid transparent;
  color: white;
  font-size: 16px;
  transition: 0.5s all;
  padding: 0 20px;
}

.wrap_search_popup input#s:focus {
  border-color: #3877c8;
}

.wrap_search_popup input#s::placeholder {
  font-size: 18px;
}

.wrap_search_popup input#searchsubmit {
  height: 50px;
  width: 240px;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  flex: 0 0 auto;
  background: var(--main-color);
  border-radius: 5px;
  position: unset;
  opacity: 1;
}

.wrap_search_popup form {
  display: flex;
  margin-bottom: 0;
}
.wrap_search_popup form input {
  margin-bottom: 0;
}
.bg_close {
  position: absolute;
  inset: 0;
}
.search_item.search_open {
  margin-right: 30px;
  position: relative;
  top: 5px;
}
.wrap_search_popup h2 {
  color: #fff;
}
.toggle_menu {
  height: 32px;
  width: 40px;
  cursor: pointer;
  margin-top: 8px;
}

.toggle_menu span,
.toggle_menu span::before,
.toggle_menu span::after {
  background: var(--main-color);
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  margin-top: 13px;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  -moz-transition: 0.3s ease-in-out 0.3s;
  -o-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
  opacity: 1;
}
.toggle_menu.active span,
.toggle_menu.active span::before,
.toggle_menu.active span::after {
  -webkit-transition: 0.5s ease-in-out 0.5s;
  -moz-transition: 0.5s ease-in-out 0.5s;
  -o-transition: 0.5s ease-in-out 0.5s;
  transition: 0.5s ease-in-out 0.3s;
}
.toggle_menu span::before {
  margin-top: -12px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.toggle_menu span::after {
  margin-top: 12px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.toggle_menu.active span {
  background: transparent;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.toggle_menu.active span::before {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.toggle_menu.active span::after {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.5s;
}
div#menu_mobi {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s all;
  width: 100%;
  background: var(--main-color) !important;
}
div#menu_mobi .toggle_menu span::before,
div#menu_mobi .toggle_menu span::after {
  background: #fff;
}
div#menu_mobi.active {
  transform: translateX(0%);
}
#menu_mobi .toggle_menu {
  border-radius: 50%;
  border: 3px solid #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 40px;
  top: 20px;
}
div#menu_mobi .toggle_menu span {
  margin-top: 0;
}
div#menu_mobi div#primary-menu {
  padding: 70px 40px;
}
div#menu_mobi div#primary-menu a {
  color: #fff;
}
div#menu_mobi div#primary-menu > ul {
  list-style: none;
  margin: 0;
  overflow: auto;
  height: 100vh;
}
div#menu_mobi div#primary-menu > ul ul {
  list-style: none;
}
@media only screen and (max-width: 1199px) {
  header .top-divider.full-width {
    display: none;
  }
  .custom_content_header {
    display: none;
  }
  .sec_home_3 .list_grid {
    gap: 20px;
  }
  .sec_home_3 .list_grid .item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sec_home_3 .list_grid .item_icon {
    width: 85%;
  }
  .sec_home_4 .col_content {
    margin-top: 40px;
  }
  .list_hot_news_2 {
    gap: 10px;
  }
  .item_post_2 .item_title {
    margin: 0;
    font-size: 15px;
  }

  .item_post .item_title {
    font-size: 16px;
  }
  .section_contact .box_contact .img_contact {
    width: 45%;
  }

  .section_contact .box_contact .box_form .inner_form {
    font-size: 14px;
  }

  .inner_form .title_form {
    margin-bottom: 15px;
  }

  .section_contact .box_contact .box_form .inner_form input[type="email"] {
    margin: 15px 0;
  }

  .section_contact .box_contact .box_form {
    padding: 20px 30px;
  }
  .slide_dt {
    padding: 30px;
  }
  main#main {
    padding-top: 104px;
  }
  .sec_home_2 .grid-container > * {
    width: 100%;
  }
  section.section_file {
    padding-bottom: 60px;
  }
  .section_da_1 .list_item {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section_da_1 .list_item .item_content h3 {
    padding: 15px 10px;
  }
  .wrap_search_popup .inner {
    padding: 20px 15px;
  }
  .item_post .item_content .item_date {
    top: -79px;
    right: 0;
  }
  .list_news {
    gap: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header-wrapper .group_fix a.btn_main {
    display: none;
  }
  .post_page .grid-container > * {
    width: 100% !important;
  }
  .post_page .col_content {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-wrapper {
    display: block;
  }
  .header_pc {
    display: none;
  }
  main#main {
    padding-top: 79px;
  }
  section.sec_home_1 {
    padding-top: 0 !important;
  }
  .header_mb {
    display: block;
  }
  .sec_home_4 .col_content {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .title_section {
    font-size: 28px;
  }
  .sec_home_4 {
    padding: 20px 0
  }
  .list_hot {
    flex-direction: column;
  }
  .section_contact {
    padding-top: 0;
  }
  .section_da {
    padding-bottom: 0;
  }
  .list_hot_news_1 {
    grid-template-columns: 1fr;
  }
  header#header .header_mb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }
  .about_us_2 .des_section {
    max-width: 100%;
  }

  .about_us_2 .list_item {
    gap: 10px;
  }

  .section_contact .box_contact .box_form {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }

  .section_contact .box_contact .box_form .inner_form {
    max-width: 100%;
  }

  .section_contact .box_contact .img_contact {
    position: relative;
    bottom: -20px;
    width: 80%;
  }

  .section_footer .col {
    padding-bottom: 20px !important;
  }
  .section_da_1 .list_item {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .wrap_search_popup input#searchsubmit {
    width: auto;
    margin-right: 0;
  }
  .wrap_search_popup .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
