* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #336FBD;
  --secondary: #083791;

}

html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}

.content {
  max-width: 120rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0 auto;
  position: relative;
}
.full-content{
  max-width: 192rem;
  margin: 0 auto;
}

.content .content {
  padding: 0;
}

.swiper_box {
  position: relative;
}

.swiper_content {
  max-width: 183rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

li {
  list-style: none;
}

div .swiper-slide {
  height: auto;
}

a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}

i,
em {
  font-style: normal;
}

input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}

select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}

textarea {
  resize: none;
}

button,
input[type="submit"] {
  cursor: pointer;
}

input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  width: 100%;
  word-break: normal;
  border-collapse: collapse;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.flex3 {
  flex: 3;
}

.between {
  justify-content: space-between;
}

.center {
  text-align: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_center {
  justify-content: center;
}

.flex_end {
  justify-content: flex-end;
}

.flex_top {
  align-items: flex-start;
}

.flex_middle {
  align-items: center;
}

.flex_bottom {
  align-items: flex-end;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.swiper_btns {
  gap: 3.4rem;
  display: flex;
}

.swiper_btns div {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper_btns div::after {
  content: "prev";
  display: block;
  transition: all 0.3s;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-family: swiper-icons;
  color: white;
}
.swiper_btns div.btn_next::after{
  content: "next";
}

.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  opacity: .5;
}

.swiper_btns .swiper-button-disabled::after {
  filter: none;
}

.swiper_btns .swiper-button-lock {
  display: flex;
  opacity: 0;
  pointer-events: none;
}

.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}

.swiper_btns.middle div {
  pointer-events: all;
}

.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}

body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Barlow', Arial, sans-serif;
}

body.fixed {
  overflow: hidden;
  padding-right: 17px;
}

body [data-wpr-lazyrender] {
  content-visibility: unset;
}

.only_mobile {
  display: none;
}

.gap {
  gap: 3rem;
}

.grecaptcha-badge {
  visibility: hidden;
}


#fullscreen-loader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 999;
}
#fullscreen-loader > span {
  width: 56px;
  height: 56px;
  display: grid;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, #0000 40%, #336fbd 41%);
  background: linear-gradient(0deg, rgba(51, 111, 189, 0.5) 50%, rgba(51, 111, 189, 1) 0) center/4.5px 100%,
    linear-gradient(90deg, rgba(51, 111, 189, 0.25) 50%, rgba(51, 111, 189, 0.75) 0) center/100% 4.5px;
  background-repeat: no-repeat;
  animation: spinner-d3o0rx 1s infinite steps(12);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -28px;
  margin-top: -28px;
}

#fullscreen-loader > span::before,
#fullscreen-loader > span::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}

#fullscreen-loader > span::after {
  opacity: 0.83;
  transform: rotate(60deg);
}

@keyframes spinner-d3o0rx {
  100% {
    transform: rotate(1turn);
  }
}


.img.img_cv {
  overflow: hidden;
}

.img.img_cv img {
  object-fit: cover;
}

.img.img_ct img {
  object-fit: contain;
}

.img.img_ab {
  position: relative;
}

.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}

.img.img_aba {
  position: relative;
}

.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}

.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}

.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}

.svg svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@font-face {
  font-display: block;
  font-family: bootstrap-icons;
  src: url(../font/dea24bf5a7646d8b84e7.woff2) format("woff2")
}

.head span {
  font-size: 2rem;
  line-height: 2.8rem;
  color: rgb(0 20 46 / 1);
}

.head h2 {
  font-size: 3.2rem;
  color: var(--secondary);
}

.head p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgb(86 80 105 / 1);
}
.bi {
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
    line-height: 0 !important;
}
.bi:before, [class^=bi-]:before, [class*=" bi-"]:before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header .header_top {
  padding: 1.2rem 0;
  background-color: var(--primary);
}

.header_top .links a {
  color: white;
  text-decoration: underline;
  display: flex;
  align-items: center;
}

.header_top .links a:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url('../img/phone-icon.svg') no-repeat center/contain;
  display: inline-block;
  transform: translateY(2px);
  margin-right: 2px;
}

.header_top .links a.email:before {
  background-image: url('../img/email-icon.svg');
  width: 1.8rem;
  height: 1.8rem;
}

.header_top .links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header_top .right {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  color: white;
}

.header_top .right .icon_search {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url('../img/search-icon.svg') no-repeat center/contain;
  cursor: pointer;
}

.header_top .right .lang_btn {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-right: 1.5rem;
  cursor: pointer;
}

.header_top .right .lang_btn img {
  width: 2.4rem;
  height: auto;
  display: inline-block;
}

ul.socials {
  display: flex;
  gap: 0.8rem;
}

ul.socials li a {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  background: white;
  border-radius: 4px;
  text-indent: -99999px;
  position: relative;
}

ul.socials li a:after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url('../img/facebook.svg') no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

ul.socials li.twitter a:after {
  background-image: url('../img/twitter.svg');
}

ul.socials li.instagram a:after {
  background-image: url('../img/instagram.svg');
  width: 2rem;
  height: 2rem;
}

ul.socials li.youtube a:after {
  background-image: url('../img/youtube.svg');
  width: 1.8rem;
  height: 1.8rem;
}
body .swiper-pagination{
  position: unset;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
body .swiper-pagination .swiper-pagination-bullet{
  width: 1.5rem;
  height: 0.75rem;
  background-color: #98B6DD;
  opacity: 1;
  border-radius: 0;
  margin: 0 !important;
}
body .swiper-pagination .swiper-pagination-bullet-active{
  background-color: #336FBD;
}
header{
  position: sticky;
  top: 0;
  z-index: 99;
  top: -4.8rem;
  transition: all 0.3s;
}
header.sticky {
  top: 0;
}
header .header_main {
  background-color: #ffffffe6;
}

header .header_main .logo img {
  width: 21.3rem;
}

header .header_main nav .con>div>ul>li>a {
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
  padding: 1rem 0;
}

header .header_main nav .con>div>ul>li>a:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  transition: all 0.4s;
}

header .header_main nav .con>div>ul>li>a:hover:after {
  width: 100%;
}

header .header_main nav .con>div>ul>li>a:hover {
  color: var(--primary);
}

header .header_main nav .con>div>ul {
  display: flex;
  gap: 4.7rem;
}

header .header_main .btn {
  margin-left: 5.5rem;
}

header li.menu-item-has-children{
  position: relative;
}
header li.menu-item-has-children .sub-menu{
  position: absolute;
  left: -4rem;
  top: calc(100% + 2rem);
  background-color: white;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  transform: translateY(-3rem);
}
header li.menu-item-has-children:hover .sub-menu{
  opacity: 1;
  pointer-events: all;
  transform: translateY(0rem);
}
header li.menu-item-has-children:before{
  content: "";
  width: 100%;
  height: 2.2rem;
  position: absolute;
  left: 0;
  top: 100%;
}
header li.menu-item-has-children .sub-menu li a{
  display: block;
  padding: 1.1rem 0.9rem;
  border-radius: 5px;
  background-color: white;
  transition: all 0.3s;
  color: rgb(0 20 46);
  min-width: 22.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
header li.menu-item-has-children:after{
  content: "\f282";
  font-family: bootstrap-icons;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: inline-block;
}
header li.menu-item-has-children:hover:after{
  transform: rotate(180deg);
  color: var(--primary);
}
header li.menu-item-has-children .sub-menu li a:hover{
  color: white;
  background-color: var(--primary);
}
.btn {
  padding: 1.6rem 4.5rem;
  background-color: #336FBD;
  color: white;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s !important;
  display: inline-block;
}

.btn:hover {
  background-color: var(--secondary);
}

.btn.white {
  background-color: white;
  color: var(--primary);
}

.btn.white:hover {
  background-color: var(--secondary);
  color: white;
}


footer {
  padding: 8rem 0 0;
  background-color: #00142E;
  color: white;
}

footer .footer_main {
  padding-bottom: 7.6rem;
}

footer .footer_main .col {
  flex: 1;
}

footer .footer_main .content>.flex {
  gap: 8rem;
}

footer .footer_main strong {
  font-size: 2.5rem;
  line-height: 3.2rem;
  display: block;
  margin-bottom: 2.3rem;
}

footer .footer_main ul li a,
footer .footer_main ul li span {
  font-size: 1.6rem;
  line-height: 1.5;
}

footer .footer_main ul li+li {
  margin-top: 1rem;
}

footer .footer_main .contact_col ul li {
  padding-left: 2.7rem;
  position: relative;
}

footer .footer_main .contact_col ul li:before {
  display: inline-block;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url('../img/position.svg') no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.3rem;
}

footer .footer_main .contact_col ul li.phone:before {
  background-image: url('../img/phone-icon.svg');
}

footer .footer_main .contact_col ul li.email:before {
  background-image: url('../img/email-icon.svg');
}

footer .footer_main .contact_col ul li a {
  text-decoration: underline;
}

footer .footer_main ul li a:hover {
  text-decoration: underline;
}

footer .footer_bottom {
  border-top: 1px solid #ffffff1a;
  padding: 1.8rem 0;
}

footer .footer_bottom p, footer .footer_bottom a {
  font-size: 1.4rem;
}
footer .footer_bottom a:hover{
  text-decoration: underline;
}

footer .footer_bottom ul {
  display: flex;
  gap: 1rem;
}

.page_provide {
  padding: 3.8rem 0 4rem;
  background-color: var(--primary);
}

.page_provide .head h2 {
  font-size: 3.2rem;
  color: white;
}

.page_provide .left {
  max-width: 77.5rem;
}
.page_banner{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.page_banner:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 1;
}
.page_banner .content{
  z-index: 9;
}
.page_banner .head{
  height: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_banner .breadcrumbs{
  color: white;
}
.page_banner .breadcrumbs span, .page_banner .breadcrumbs a{
  color: white;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.page_banner .breadcrumbs a:hover{
  color: var(--secondary);
}
.page_banner .head h1{
  color: white;
  margin-bottom: 1.1rem;
  font-size: 3.5rem;
}


.home_nums{
    padding: 6.5rem 0 6rem;
    background-color: var(--primary);
}
.home_nums ul{
    display: flex;
    justify-content: space-between;
}
.home_nums ul li{
    color: white;
}
.home_nums ul li .num{
    font-size: 3.6rem; 
    line-height: 4rem; 
    display: block;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.home_nums ul li .text{
    font-size: 1.8rem;
    font-weight: 700;
}
.about_intro{
  padding: 8rem 0 10.5rem;
}
.swiper_exhibition{
  overflow: hidden;
}

.product_item{
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.product_item .img{
  aspect-ratio: 363/257;
  position: relative;
}
.product_item:hover .img img{
  transform: scale(1.1);
}
.product_item strong{
  display: block;
  padding: 1.3rem;
  text-align: center;
}
.product_item .img:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s;
}
.product_item:hover .img:after{
  opacity: 1;
}

.c-pagination .c-pagination__list{
    display: flex;
    gap: 1.2rem;
    justify-content: center;

}
.c-pagination .c-pagination__list .c-pagination__link, .c-pagination .c-pagination__list .c-pagination__item span{
    min-width: 3.5rem;
    min-height: 3.8rem;
    display: inline-block;
    padding: 0 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.c-pagination .c-pagination__list .c-pagination__item span.current{
  color: var(--primary);
}
.c-pagination .c-pagination__list .c-pagination__link:hover{
  color: var(--primary);
  border-color: var(--primary);
}

.products_main .c-pagination{
  margin-top: 4rem;
}

.post_item .infos{
    padding: 4rem 2rem;
}
.post_item .img{
    aspect-ratio: 363/272;
    
}
.post_item{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}
.post_item .infos .metas{
    color: var(--primary);
    display: flex;
    gap: 1.8rem;
    align-items: center;
    margin-bottom: 2.3rem;
}
.post_item .infos .metas span{
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.bi-person-fill:before {
    content: "\f4da";
}
.bi-calendar:before {
    content: "\f1f6";
}
.post_item .infos h3{
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}
.post_item .infos p{
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}
.post_item .infos .btn{
    margin-top: 4rem;
    padding: 1.5rem 5.5rem;
}
.post_item:hover .img img{
    transform: scale(1.1);
}
.sidebar:not(.sidebar_left){
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}
.sidebar:not(.sidebar_left) a, .sidebar:not(.sidebar_left) span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  background-color: var(--primary);
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s;
  cursor: pointer;
}
.sidebar:not(.sidebar_left) a:hover, .sidebar:not(.sidebar_left) span:hover{
  background-color: var(--secondary);
}
.animate-whatsapp {
    animation: whatsapp 1s backwards infinite;
}
.bi-envelope:before {
    content: "\f32f";
}
.bi-whatsapp:before {
    content: "\f618";
}
.bi-chevron-up:before {
    content: "\f286";
}

@keyframes whatsapp {
  0% {
      transform: scale(1) translate(0);
  }
  20% {
      transform: scale(1.2) translate(0);
  }
  40% {
      transform: scale(1.2) translate(-.1rem);
  }
  50% {
      transform: scale(1.2) translate(.1rem);
  }
  60% {
      transform: scale(1.2) translate(-.1rem);
  }
  70% {
      transform: scale(1.2) translate(.1rem);
  }
  80% {
      transform: scale(1.2) translate(0);
  }
  100% {
      transform: scale(1) translate(0);
  }
}
.about_future .head h2{
  color: white;
}
.about_future .head p{
  color: white;
}

body form .wpcf7-spinner{
  width: 24px !important;
  margin: 0;
  margin-top: 1.5rem;
}

.search .blog_main .left{
  width: 100%;
}
.search .blog_main .left > ul{
  grid-template-columns: repeat(3,1fr);
}

.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: var(--theme_color);
  content: '';
}

div.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
.lang-icon{
  display: none;
}


@media screen and (max-width: 767.98px) {
  .header_top .links{
    display: none;
  }
  .header_top .right{
    margin-left: auto;
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  header .header_main .logo img{
    width: 12.5rem;
  }
  ul.socials li a{
    width: 2rem;
    height: 2rem;
  }
  .header_top .right .lang_btn{
    margin-right: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
    opacity: 1;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children > a::after {
    display: none;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
    width: auto;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .header_main .btn{
    display: none;
  }
  header .header_main nav .con>div>ul{
    display: block;
  }
  header .header_main nav .con>div>ul>li>a{
    display: block;
    padding: 15px 30px;
  }
  header .header_main nav .con>div>ul>li.menu-item-has-children>a{
    display: inline-block;
  }
  header li.menu-item-has-children:after{
    position: absolute;
    right: 15px;
    top: 20px;
  }
  header .header_main nav .con>div>ul>li>a:after{
    display: none;
  }
  header nav .con .sub-menu li a, header nav .con .sub-menu li a:hover{
    background-color: transparent;
    color: rgb(0 20 46);
  }
  
  .btn_menu{
    width: 2.5rem;
    height: 2.5rem;
    background: url('../img/menu_mobile.svg') no-repeat center / contain;
  }
  .btn{
    padding: 10px 30px;
    font-size: 14px;
  }
  .head span{
    font-size: 14px;
  }
  .head p{
    font-size: 14px;
    line-height: 1.5;
  }
  .head h2{
    font-size: 22px;
  }
  footer{
    padding: 50px 0 0;
  }
  footer .footer_main .content>.flex{
      flex-flow: wrap;
      gap: 10px;
  }
  footer .footer_main .col{
      width: 100%;
      flex: unset;
  }
  footer .footer_main strong{
    font-size: 15px;
    padding: 5px 20px;
    background-color: white;
    color: #333;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
  }
  footer .footer_main strong:after{
    content: "";
    width: 20px;
    height: 20px;
    background: url('../img/plus.svg') no-repeat center / contain;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: all 0.3s;
  }
  footer .footer_main strong.active:after{
    transform: rotate(135deg);
  }
  footer .footer_main strong + div{
    padding: 10px 20px;
    display: none;
  }
  footer .footer_main ul li a, footer .footer_main ul li span{
    font-size: 14px;
  }
  footer .footer_main{
    padding-bottom: 50px;
  }
  footer .footer_bottom .content>.flex{
    flex-flow: wrap;
    text-align: center;
  }
  footer .footer_bottom .content>.flex .left{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  footer .footer_bottom .content>.flex .right{
    width: 100%;
    
  }
  footer .footer_bottom ul{
    justify-content: center;
  }
  .post_item .infos{
        padding: 15px;
    }
    .post_item .infos .metas{
        margin-bottom: 1rem;
    }
    .post_item .infos h3{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .post_item .infos p{
        font-size: 14px;
        line-height: 1.5;
    }
    .post_item .infos .btn{
        margin-top: 20px;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    .page_banner .head{
      height: 20rem;
    }
    .page_banner .breadcrumbs span, .page_banner .breadcrumbs a{
      font-size: 1.5rem;
    }
    .page_banner .head h1{
      font-size: 25px;
      text-align: center;
    }

    .default_head{
    padding: 5rem 0;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }
  .default_body ul li::before {
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
    border-radius: 50%;
    background-color: var(--theme_color);
    content: '';
  }
  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  div.search-block input[type='text'] {
    flex: 1;
  }

  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    background: url(../img/page_home-header_search.svg) no-repeat center;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }

  div.search-block div.content {
    position: unset;
  }

  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }

  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }

  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    display: none;
  }

  div.search-block.active {
    top: 20%;
    display: block;
    height: 80%;
    transform: translateY(0);
  }

  .search-block input[type="submit"]:not(:disabled):hover { 
    background-size: 1.4rem;
    border: none;
  }
}