:root {
  --theme_color: #004741;
  --title_color: #000
}
ul {
  list-style: none
}
a {
  color: #1c232f;
  text-decoration: none;
  font-size: 1rem
}
i {
  font-style: normal
}
.swiper_box {
  position: relative
}
.swiper_content {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden
}

input[type="submit"], button {
  cursor: pointer
}
textarea {
  resize: none
}
input[type="number"] {
  -moz-appearance: textfield
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset
}
.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
}
body {
  color: #000;
  font-family: arial;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px
}
.only_mobile {
  display: none
}
.content .content {
  padding: 0
}

@media only screen and (min-width: 1400px){
.head h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
	text-transform: capitalize;
}
}

@media screen and (max-width: 1410px){
.head h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 60px;
	text-transform: capitalize;
}
}
.button {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: var(--theme_color);
  border-radius: 8px;
  overflow: hidden;
  padding: 17px 86px 19px 35px;
  min-width: 248px;
  text-align: center;
  position: relative;
  transition: all 0.3s
}
.button::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 8px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s
}
.button::after {
  content: '';
  display: block;
  width: 1rem;
  height: 12px;
  background: url(../image/btn-arrow-b.svg) no-repeat center / contain;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s
}
.button:hover {
  padding: 17px 60.5px 19px
}
.button:hover::before, .button:hover::after {
  opacity: 0;
  right: 0;
  transform: translate(100%, -50%) scale(.8)
}


@media only screen and (min-width: 1400px){
.button_r {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: var(--theme_color);
  border-radius: 8px;
  overflow: hidden;
  padding: 17px 86px 19px 35px;
  min-width: 248px;
  text-align: center;
  position: relative;
  transition: all 0.3s
}
}

@media screen and (max-width: 1410px){
.button_r {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: var(--theme_color);
  border-radius: 8px;
  overflow: hidden;
  padding: 17px 86px 19px 35px;
  min-width: 248px;
  text-align: center;
  position: relative;
  transition: all 0.3s
}
}


.button_r::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 8px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s
}
.button_r::after {
  content: '';
  display: block;
  width: 1rem;
  height: 12px;
  background: url(../image/btn-arrow-r.svg) no-repeat center / contain;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s
}
.button_r:hover::after {
  transform: translate(0, -50%) rotate(45deg)
}
.button_more {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #242424;
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  padding: 17px 86px 19px 35px;
  min-width: 248px;
  text-align: center;
  position: relative;
  transition: all 0.3s
}
.button_more::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  background-color: var(--theme_color);
  border-radius: 8px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s
}
.button_more::after {
  content: '';
  display: block;
  width: 1rem;
  height: 12px;
  background: url(../image/btn-arrow-b.svg) no-repeat center / contain;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  filter: contrast(0) brightness(20)
}
.button_more:hover {
  background-color: var(--theme_color);
  padding: 17px 60.5px 19px;
  color: #fff
}
.button_more:hover::before, .button_more:hover::after {
  opacity: 0;
  right: 0;
  transform: translate(100%, -50%) scale(.8)
}
.swiper_btns {
  display: flex
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(../image/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer
}
.swiper_btns div.swiper-button-disabled {
  cursor: default;
  opacity: .68
}
.swiper_btns .btn_next {
  transform: rotate(180deg)
}
.swiper_btns.middle {
  max-width: 1430px;
  width: 98%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  justify-content: space-between
}
.swiper_btns.middle div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%)
}
.swiper_btns.middle .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg)
}
.swiper_btns.small {
  max-width: 1766px
}
.swiper_btns.small div {
  width: 12px;
  height: 22px
}
.swiper_btns.full {
  gap: 25px
}
.swiper_btns.full.middle {
  max-width: 1487px
}
.swiper_btns.full div {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: url(../image/arrow-w.svg) no-repeat center / 20%;
  background-color: var(--theme_color)
}
.swiper_btns.full div.swiper-button-disabled {
  background-image: url(../image/arrow-b.svg);
  cursor: default;
  background-color: #eee;
  opacity: 1
}
.swiper_btns.full div.swiper-button-disabled:hover {
  filter: none
}
.swiper_btns.full div:hover {
  filter: brightness(1.3)
}
.swiper_btns.black div {
  background-image: url(../image/arrow-b.svg)
}
.content_big {
  position: relative;
  margin: 0 auto;
  max-width: 1600px
}
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 998;
  transition: all 0.3s;
  pointer-events: none
}
header .content {
  max-width: 1730px;
  padding: 0
}
header.sticky {
  top: -28px
}
header.sticky .header_top {
  transform: translateY(-100%);
  pointer-events: none
}
header .header_top {
  padding: 9px 0 14px;
  transition: all 0.3s;
  width: calc(100% - 130px);
  margin: 0 auto
}
header .header_top.black p {
  color: #000
}
header .header_top.black ul li a {
  color: #424242;
  background-image: url(../image/email.svg)
}
header .header_top.black ul li a:hover {
  color: var(--theme_color)
}
header .header_top.black ul li:nth-child(2) a {
  background-image: url(../image/phone.svg)
}
header .header_top p {
  pointer-events: all;
  color: #fff
}
header .header_top ul {
  gap: 80px;
  pointer-events: all
}
header .header_top ul li a {
  color: #fff;
  transition: all 0.3s;
  display: block;
  padding-left: 26px;
  background: url(../image/email-w.svg) no-repeat left center / 14px
}
header .header_top ul li a:hover {
  color: var(--theme_color)
}
header .header_top ul li:nth-child(2) a {
  background-image: url(../image/phone-w.svg)
}
header .header_main {
  background-color: #fff;
  max-width: 1813px;
  width: calc(100% - 90px);
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  pointer-events: all
}
header .header_main .flex {
  gap: 1.2rem
}
header .header_main .left {
  flex: 1
}
header .header_main .left .logo {
  display: block;
  position: relative;
  top: 2px
}
header .header_main .left .logo img {
  display: block;
  width: auto;
  height: 49px
}
header .header_main nav div > ul {
  display: flex;
  gap: 30px
}
header .header_main nav div > ul > li {
  position: relative
}
header .header_main nav div > ul > li::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--theme_color);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2
}


@media only screen and (min-width: 1400px){

header .header_main nav div > ul > li > a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s;
  color: #424242;
  line-height: 84px;
  padding: 0 20px;
	text-transform: capitalize;
}
}

@media screen and (max-width: 1410px){

header .header_main nav div > ul > li > a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  color: #424242;
  line-height: 84px;
  padding: 0 5px;
	text-transform: capitalize;
}
}

header .header_main nav div > ul > li:hover ul {
  transform: translate(0);
  pointer-events: all;
  opacity: 1
}
header .header_main nav div > ul > li ul {
  left: -1.5rem;
  position: absolute;
  min-width: 10rem;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  display: block;
  transform: translateY(-1rem);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s
}
header .header_main nav div > ul > li ul li {
  margin-bottom: .2rem
}
header .header_main nav div > ul > li ul li a {
  white-space: nowrap;
  display: block;
  padding: .8rem 0;
  transition: all 0.2s ease;
  border-radius: .625rem;
  font-weight: 500
}
header .header_main nav div > ul > li ul li a:hover {
  color: var(--theme_color)
}
header .header_main nav div > ul > li.current-menu-item::before, header .header_main nav div > ul > li.current-menu-parent::before, header .header_main nav div > ul > li:hover::before {
  transform: translate(0);
  opacity: 1
}
header .header_main nav div > ul > li.current-menu-item > a, header .header_main nav div > ul > li.current-menu-parent > a, header .header_main nav div > ul > li:hover > a {
  color: #000
}
header .header_main .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  position: relative;
  top: 3px
}
header .header_main .right .icon_search {
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url(../image/search.svg) no-repeat center / contain
}
header .header_main .right .button_r {
  font-weight: 500;
  padding: 12px 68px 14px 35px;
  min-width: unset
}
header .header_main .right .button_r::before {
  width: 38px;
  height: 38px;
  right: 7px
}
header .header_main .right .button_r::after {
  width: 10px;
  height: 10px;
  right: 21px
}
footer {
  background-color: #f8f8f8;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1)
}
footer .cta {
  padding: 92px 0 70px
}
footer .cta .head {
  gap: 1.2rem
}
footer .cta .head h2 {
  max-width: 560px;
  font-weight: 600;
  line-height: 53px
}
footer .footer_main .wrap {
  gap: 3rem 1.2rem
}
footer .footer_main .slide_obj strong {
  display: block;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 17px
}
footer .footer_main .slide_obj li {
  margin-bottom: 18px
}
footer .footer_main .slide_obj li:last-child {
  margin-bottom: 0
}
footer .footer_main .slide_obj li a {
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s
}
footer .footer_main .slide_obj li a:hover {
  color: var(--theme_color)
}
footer .footer_main .subscribe {
  width: 318px
}
footer .footer_main .subscribe p {
  color: #262626;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500
}
footer .footer_main .subscribe form {
  margin-top: 28px;
  display: flex;
  border-bottom: 1px solid #545454;
  transition: all 0.3s
}
footer .footer_main .subscribe form:hover {
  border-color: var(--theme_color)
}
footer .footer_main .subscribe form input[type="email"] {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: var(--title_color);
  flex: 1;
  width: 0;
  padding: 0 0 1rem
}
footer .footer_main .subscribe form input[type="email"]::placeholder {
  color: #757575
}
footer .footer_main .subscribe form input[type="submit"] {
  width: 22px;
  background: url(../image/input-arrow.svg) no-repeat bottom 13px center / 14px;
  text-indent: 999px
}
footer .footer_bottom {
  padding: 182px 0 2rem
}
footer .footer_bottom .logo {
  display: block
}
footer .footer_bottom .logo img {
  display: block;
  width: 235px;
  height: auto
}
footer .footer_bottom ul {
  display: flex;
  gap: 2rem
}
footer .footer_bottom ul li {
  height: 50px
}
footer .footer_bottom ul li img {
  height: 100%;
  width: auto;
  max-width: 92px;
  object-fit: contain
}
footer .copyright {
  background-color: #f2f2f2;
  padding: 12px 0 1rem
}
footer .copyright p, footer .copyright a {
  color: #262626;
  font-weight: 500;
  line-height: 28px
}
footer .copyright a {
  transition: all 0.3s
}
footer .copyright a:hover {
  color: var(--theme_color)
}
footer .copyright ul {
  display: flex;
  gap: 50px
}
.posts .post {
  height: auto;
	width: 23.5%;
	margin: 0 auto;
}
.posts .post a {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 15px
}
.posts .post a:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  background-color: #fff
}
.posts .post a:hover img {
  transform: scale(1.05)
}
.posts .post a:hover .info strong {
  transform: translate(0)
}
.posts .post .img {
  height: 270px;
  overflow: hidden;
  position: relative
}
.posts .post .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s
}
.posts .post .img span {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  background-color: var(--theme_color);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px 0 0 0;
  display: block;
  padding: 5px 14px 6px
}
.posts .post .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 0 52px;
  margin: 0 6.35%;
  overflow: hidden
}
.posts .post .info span {
  color: #5e5e5e;
  font-size: 17px
}
@media only screen and (min-width: 1400px){
.posts .post .info p {
  flex: 1;
  color: #25292d;
  font-size: 25px;
  font-weight: 600;
  line-height: 31px;
  margin-top: 14px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}
}

@media screen and (max-width: 1410px){
.posts .post .info p {
  flex: 1;
  color: #25292d;
  font-size: 18px;
  font-weight: 600;
  line-height: 31px;
  margin-top: 14px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}
}

.posts .post .info strong {
  color: #25292d;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  margin-top: 50px;
  padding-right: 8px;
  position: relative;
  transition: all 0.3s;
  transform: translateX(-100%)
}
.posts .post .info strong::after {
  content: '';
  display: block;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 10px;
  background: url(../image/arrow-line-b.svg) no-repeat center / contain
}
.products .product a:hover img {
  transform: scale(1.05)
}
.products .product .img {
  padding-bottom: 101.398285%;
  position: relative;
  overflow: hidden;
  border-radius: 10px
}
.products .product .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0
}
.products .product .info span {
  color: var(--theme_color);
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin: 24px 0 14px
}
.products .product .info p {
  color: #242424;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}
.empty_img {
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%
}
.empty_img ~ p {
  font-size: 18px;
  margin: 0rem 0 3rem
}
body .contact_pop .wpcf7-not-valid-tip {
  margin-top: .5rem;
  font-size: 14px
}
body .wpcf7 form.invalid .wpcf7-response-output, body .wpcf7 form.unaccepted .wpcf7-response-output, body .wpcf7 form.payment-required .wpcf7-response-output {
  padding: 0;
  border: none;
  margin-top: 1rem;
  font-size: 16px
}
form .wpcf7-form-control-wrap[data-name="your-message"] {
  width: 100% !important
}
form span.wpcf7-spinner {
  width: 24px !important
}
.wpcf7-not-valid-tip {
  margin-top: 1rem
}
.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  font-size: 16px
}
.loading {
  position: relative
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/load.gif) no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, .3);
  z-index: 9
}
.center.loading {
  min-height: 40px
}
div.search-block {
  position: fixed;
  z-index: 999999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, .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(../image/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, .2);
  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
}
header div.main-menu div.main div.right {
  display: none
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333
}
.search-overlay {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  display: none;
  top: 0;
  background-color: rgba(0, 0, 0, .4)
}
.search-overlay.active {
  display: block
}
.privacy-policy .blog_details {
  padding: 90px 0 155px;
  background-image: linear-gradient(to bottom, #ecf1f7, #fff);
  background-size: 100% 200px;
  background-repeat: no-repeat
}
.privacy-policy .blog_details h1 {
  display: block;
  font-size: 38px;
  font-weight: 600;
  color: var(--title_color);
  margin: 20px 0 38px;
  line-height: 3rem
}
.privacy-policy .blog_details h2 {
  font-size: 30px;
  color: var(--title_color);
  padding-top: 35px;
  font-weight: 600
}
.privacy-policy .blog_details p, .blog_details li {
  color: #242424;
  font-size: 18px;
  line-height: 30px;
  padding-top: 1rem;
  opacity: .9
}
.page_banner {
  background: url(../image/blog-banner.jpg) no-repeat bottom center / cover;
  background-color: #b1dcff;
  padding: 200px 0 140px
}
.page_banner .head {
  max-width: 603px
}
.page_banner .head h1 {
  font-size: 2.6rem;
  color: #fff
}
.page_banner .head p {
  color: #fff;
  opacity: .8;
  line-height: 27px;
  margin-top: 15px;
  font-size: 18px
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  visibility: hidden
}
.modal-q .modal {
  visibility: visible
}
.modal .modalcontent {
  width: 1000px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  border-radius: 8px;
  top: -150%;
  transition: all 0.4s
}
.modal-q .modal .modalcontent {
  top: 50%
}
.modal .overlay {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, .6)
}
.modal-q .modal .overlay {
  visibility: visible;
  opacity: 1
}
textarea {
  font-family: inherit
}
.quote-content > .flex {
  align-items: stretch
}
.quote-content .left {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 3.5rem;
  background: url(../image/about-intro2.webp) no-repeat center/cover
}
.quote-content .left .logo {
  width: 265px;
  display: inline-block;
  height: 70px;
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  background: url(../image/logo.svg) no-repeat center/contain
}
.quote-content .left strong {
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  display: inline-block
}
.quote-content .right {
  width: 52%;
  padding: 4rem 3rem 4rem 0rem;
  padding-left: 4%;
  position: relative;
  max-height: 670px;
  overflow: auto
}
.quote-content form label, .quote-content form > p {
  width: 100%;
  display: block
}
.quote-content form label {
  font-size: 15px;
  display: flex;
  flex-flow: wrap
}
.quote-content form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: .5rem
}
form.wpcf7-form.submitting {
  position: relative
}
form.wpcf7-form.submitting:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../image/load.gif) no-repeat center/45px;
  background-color: rgba(255, 255, 255, .7)
}
.quote-content form input:not([type="checkbox"]) {
  border: 1px solid rgba(0, 0, 0, .1)
}
.quote-content form input:not([type="checkbox"]), .quote-content form select {
  width: 100%;
  font-size: .875rem;
  padding: .8rem 1.25rem;
  border-radius: .3125rem;
  font-size: 17px;
  margin-bottom: .6rem
}
.quote-content form .wpcf7-not-valid-tip {
  margin-top: 0rem;
  margin-bottom: .8rem;
  font-size: 14px
}
.quote-content form select {
  border: 1px solid rgba(0, 0, 0, .1);
  font-family: inherit;
  color: #777
}
.quote-content form textarea {
  width: 100%;
  font-size: 17px;
  padding: .8rem 1.25rem;
  height: 130px;
  margin-bottom: .5rem;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: .3125rem
}
.quote-content form .flex2 {
  display: flex;
  gap: 1rem;
  align-items: center
}
.quote-content form input[type="submit"] {
  background-color: var(--theme_color);
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0rem;
  font-size: 19px;
  transition: all 0.3s
}
.quote-content form input[type="submit"]:hover {
  filter: brightness(1.1)
}
.quote-content p.tip {
  font-size: 12px;
  margin-top: -.5rem;
  margin-bottom: 1rem
}
.quote-content .wpcf7-spinner {
  position: absolute;
  right: 2rem;
  bottom: 2rem
}
body .quote-content .wpcf7 form.invalid .wpcf7-response-output, body .quote-content .wpcf7 form.unaccepted .wpcf7-response-output, body .quote-content .wpcf7 form.payment-required .wpcf7-response-output {
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0
}
body .quote-content .wpcf7 form .wpcf7-response-output {
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
  margin: 0;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  color: #333;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: scale(0);
  text-align: center;
  z-index: 9
}
.modalcontent .wpcf7-response-output:before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%)
}
body .quote-content .wpcf7 form .wpcf7-response-output.active {
  transform: scale(1)
}
.modalcontent .sent .wpcf7-response-output:before {
  background-image: url(../image/duigou-bg.svg)
}
.modal .modalcontent:after {
  display: none;
  width: 500px;
  height: 250px;
  content: "";
  position: absolute;
  left: 0;
  transform: translate(-30%, 50%);
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(215deg, white, #036bc4);
  border-radius: 50%
}
.quote-content .right::-webkit-scrollbar {
  width: 14px;
  height: 14px
}
.quote-content .right::-webkit-scrollbar-track, .quote-content .right::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent
}
.quote-content .right::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px transparent inset
}
.quote-content .right::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #EBEBEB inset
}
.quote-content .right::-webkit-scrollbar-corner {
  background: transparent
}
.modalcontent .close {
  display: block;
  width: 20px;
  cursor: pointer;
  height: 20px;
  background: url(../image/cloes.svg) no-repeat center/contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  z-index: 9
}
body .wpcf7 form .wpcf7-response-output {
  border: none;
  padding: 0
}
.flex2 > p {
  font-size: 15px;
  min-width: 60px;
  margin-bottom: 1rem
}
body.modal-q {
  overflow: hidden
}
.postree {
  position: relative;
  max-width: 506px;
  margin: auto
}
form#sytech-newsletter-subscription p.failed.active, form#sytech-newsletter-subscription p.success.active {
  top: -4.6rem !important;
  max-width: unset !important;
  white-space: nowrap;
  font-size: 14px;
  background-color: var(--theme_color) !important
}
form#sytech-newsletter-subscription p.failed:after, form#sytech-newsletter-subscription p.success:after {
  bottom: -0.5rem !important;
  border-top: .6rem solid var(--theme_color) !important
}
form#sytech-newsletter-subscription p.failed:before, form#sytech-newsletter-subscription p.success:before {
  top: 1rem;
  width: 1rem !important;
  height: 1rem !important;
  filter: brightness(20)
}
div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center
}
@keyframes spin {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}
.pro-over {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgb(0, 0, 0, .65);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s
}
.pro-over.active {
  opacity: 1;
  visibility: visible
}
header .header_products {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  font-family: "Lora", sans-serif;
  pointer-events: none;
  transition: all 0.3s
}
header .header_products.active {
  pointer-events: all
}
header .header_products .con {
  display: none;
  max-width: 1813px;
  width: calc(100% - 90px);
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 80px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .05)
}
header .header_main nav div > ul > li ul {
  display: none
}
header .header_main.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px
}
header .header_products .con .left {
  width: 23%;
  margin-right: 5rem
}
header .header_products .con .right {
  flex: 1
}
header .header_products .con ul {
  display: flex;
  flex-wrap: wrap
}
header .header_products .con ul li {
  width: 49%
}
header .header_products .con .left > strong, header .header_products .con .right > strong {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  display: block;
  margin-bottom: 1rem
}
header .header_products .con .right > .flex {
  justify-content: space-between
}
header .header_products .con ul li a {
  padding: .3rem 0;
  display: block;
  font-size: 19px;
  font-family: 'EB Garamond', serif;
  color: #111
}
header .header_products .con .right > .flex > div {
  flex: 1
}
header .header_products .con .right > .flex > div strong {
  padding: .5rem 0;
  display: block;
  font-size: 19px;
  color: #111;
  font-family: 'EB Garamond', serif
}
.img-404 {
  width: 500px;
  display: block;
  margin-left: auto;
  max-width: 100%;
  margin-right: auto
}
.box404_content {
  text-align: center;
  margin: 3rem 0 7rem
}
.box404_content p {
  font-size: 18px;
  width: 80%;
  opacity: .9;
  line-height: 1.7;
  margin: 2rem auto
}
.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 0 2rem
}
.video_pop.active {
  opacity: 1;
  pointer-events: all
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
  position: relative
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../image/close.svg) no-repeat center / contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  max-height: 90vh
}
.video_pop .pop_content iframe {
  max-width: 100%;
  max-height: 100%;
  min-width: 1200px;
  min-height: 675px;
  object-fit: contain
}
.product_silder ul li {
  position: relative
}
.product_silder ul li::after {
  background-color: rgba(0, 0, 0, .4);
  content: "";
  display: block;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99
}
.product_silder ul li::before {
  position: absolute;
  content: url(../image/video.svg);
  width: 32px;
  height: 32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100
}
.product_preview .right a .open_more {
  width: 65px;
  height: 65px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  bottom: 7rem;
  right: 1rem;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center
}
.product_preview .right:hover .open_more {
  bottom: 1rem
}
.product_preview .right a .open_more img {
  width: 30px;
  position: unset;
  height: 30px;
  transform: scale(1) !important
}
.lightbox .lb-image {
  border: none !important
}
body .wpcf7 form .wpcf7-response-output {
  padding: 0;
  border: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none
}
body .wpcf7 form .wpcf7-response-output.active {
  opacity: 1;
  pointer-events: all
}
body .wpcf7 form .wpcf7-response-output:before {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: url(../image/fail.svg) no-repeat center/contain
}
body .wpcf7 form.sent .wpcf7-response-output:before {
  background: url(../image/duigou-bg.svg) no-repeat center/contain
}
.grecaptcha-badge {
  visibility: hidden
}