* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --theme_color: #5f548d;
  --subtheme_color: #d4674a;
  --hover_color: #000;
  --title_color: #150f35;
  --content_color: #2d2d2d;
  
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.522vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 124rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 125rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
  font-family: inherit;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
  font-family: inherit;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: 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 {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  color: var(--title);
}
.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;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Roboto', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .head h2 {
    font-size: 22px;
    line-height: 1.5;
  }
  .head .desc,
  .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 10px;
  }
  .video_pop .pop_content {
    height: auto;
    width: 90vw;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .head .subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .head h1 {
    font-size: 34px;
    line-height: 1.5;
  }
  .head h2 {
    font-size: 28px;
    line-height: 1.5;
  }
  .head .desc,
  .head p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
}
.header_top{
  padding: 1.7rem 0;
  background-color: var(--theme_color);
}
.header_top .logo img{
  width: 15.1rem;
}
.header_top .search_block{
  width: 64.11%;
  background-color: white;
  border-radius: 5px;
  position: relative;
}
.header_top .search_block input[type="text"]{
  padding: 1.45rem 1.2rem;
  border-radius: 5px;
  background-color: white;
  font-size: 1.6rem;
  width: 100%;
}
.header_top .search_block input[type="submit"]{
  width: 4rem;
  height: 4rem;
  border-radius: 4px;
  background: url('../img/search-icon.svg') no-repeat center/44%;
  background-color: var(--subtheme_color);
  text-indent: -99999px;
  display: inline-block;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.header_top .search_block:hover input[type="submit"]{
  background-color: var(--theme_color);
}
.header_top .icons_con .icon_item{
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  background: url('../img/question-icon.svg') no-repeat center/contain;
  text-indent: -99999px;
}
.header_top .icons_con .flex{
  gap: 3.6rem;
}
.header_top .icons_con .icon_item.account_icon{
  background-image: url('../img/account-icon.svg');
}
.header_top .icons_con .icon_item.cart_icon{
  background-image: url('../img/cart-icon.svg');
}
.header_bottom{
  padding: 1.2rem 0;
  background-color: white;
  border-bottom: 1px solid #e2e2e2;
}
.header_bottom .center>div>ul{
  display: flex;
  
  justify-content: center;
}
.header_bottom .center>div>ul>li{
  position: relative;
}
.header_bottom .center>div>ul>li>a{
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.5rem 1.8rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.header_bottom .center>div>ul>li .sub-menu::before{
  content: "";
  width: 100%;
  height: 1rem;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.header_bottom .center>div>ul>li .sub-menu{
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  top: calc(100% + 1rem);
}

.header_bottom .center>div>ul>li .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
.header_bottom .center>div>ul>li .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
.header_bottom .center>div>ul>li .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--subtheme_color);
  transition: all 0.3s;
}
.header_bottom .center>div>ul>li .sub-menu > li > a:hover::after {
  width: 100%;
}

.header_bottom .center>div>ul>li.current-menu-item>a, .header_bottom .center>div>ul>li.current-menu-parent>a, .header_bottom .center>div>ul>li>a:hover{
  background-color: var(--theme_color);
  color: white;
}
.header_bottom .center>div>ul>li:hover ul.sub-menu  li{
  transform: translate(0);
}
.header_bottom .center>div>ul>li:hover ul.sub-menu {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
  z-index: 9;
}
.header_bottom .center>div>ul>li{
  padding: 0 0.6rem;
  position: relative;
}
.header_bottom .center>div>ul>li:after{
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 1.2rem;
  width: 1px;
  background-color: rgba(21, 15, 53, 0.36);
}
.header_bottom .center>div>ul>li.current-menu-item:after, .header_bottom .center>div>ul>li.current-menu-parent:after, .header_bottom .center>div>ul>li>a:hover:after{
  opacity: 0;
}
.header_bottom .center>div>ul>li:last-of-type:after{
  display: none;
}

.footer_advantage{
  padding: 2.9rem 0;
  background-color: #f7f6f9;
}
.footer_advantage ul{
  display: flex;
  justify-content: space-between;
}
.footer_advantage ul li .icon{
  width: 4.7rem;
  height: 4rem;
  min-width: 4.7rem;
  transform: translateY(1rem);
}
.footer_advantage ul li .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_advantage ul li .flex{
  gap: 2.1rem;
}
.footer_advantage ul li strong{
  font-size: 1.8rem;
  font-weight: 500;
  color: #150f35;
  display: block;
  margin-bottom: 0.8rem;
}
.footer_advantage ul li p{
  font-size: 1.5rem;
  line-height: 2.0rem;
  color: var(--content_color);
}
.footer_advantage ul li{
  max-width: 28rem;
}
.footer_main{
  padding: 5.5rem 0 9rem;
  background: url('../img/footer-bg.jpg') no-repeat center/cover;
  color: white;
}
.footer_main .object_col strong{
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 500;
}
.footer_main .object_col{
  flex: 1;
}
.footer_main .object_col.contact_col{
  flex: 2.5;
  margin-right: 6rem;
}
.footer_main .object_col p{
  font-size: 1.5rem;
  line-height: 2.8rem;
  font-weight: 300;
}
.footer_main .object_col.contact_col strong{
  margin-bottom: 0.5rem;
}
.footer_main .object_col.contact_col form{
  margin-top: 1.6rem;
  margin-bottom: 2.7rem;
}
.footer_main .object_col.contact_col form input[type="email"]{
  padding: 1.4rem;
  background-color: white;
  font-size: 1.6rem;
  color: #37393a;
  border-radius: 4px;
  width: 30rem;
}
.footer_main .object_col.contact_col strong + p{
  opacity: 0.64;
}
.footer_main .object_col.contact_col form input[type="submit"]{
  display: inline-block;
  padding: 1.4rem 3.5rem;
  font-size: 1.6rem;
  border-radius: 4px;
  margin-left: 0.2rem;
  background-color: var(--subtheme_color);
}
.footer_main .object_col.contact_col .contact_infos a{
  font-size: 1.7rem;
  opacity: 0.64;
  font-weight: 300;

}
.footer_main .object_col.contact_col .contact_infos li{
  margin-top: 0.2rem;
}
.footer_main .object_col.contact_col .contact_infos{
  margin-right: 3.3rem;
  padding: 0 !important;
}
.footer_main .object_col.contact_col .socials{
  transform: translateY(-5px);
}
.footer_main .object_col.contact_col .socials ul{
  display: flex;
  gap: 3.8rem;
}
.footer_main .object_col.contact_col .socials ul li a{
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  background: url('../img/linkedin.svg') no-repeat center/contain;
  text-indent: -99999px;
}
.footer_main .object_col.contact_col .socials ul li a.facebook{
  background-image: url('../img/facebook.svg');
}
.footer_main .object_col.contact_col .socials ul li a.youtube{
  background-image: url('../img/youtube.svg');
}
.footer_main .object_col.contact_col .socials ul li a.twitter{
  background-image: url('../img/twitter.svg');
}

.footer_main .object_col div>ul>li>a{
  font-size: 1.5rem;
  line-height: 3rem;
  opacity: 0.64;
  font-weight: 300;
}
.footer_main .object_col a{
  transition: all 0.3s;
  
}
.footer_main .object_col a:hover{
  color: var(--subtheme_color);
  opacity: 1 !important;
}
.footer_main .object_col:not(.contact_col) strong{
  margin-top: 3rem;
  margin-bottom: 1.8rem;
}
.footer_copyright{
  background-color: white;
  padding: 1.8rem 0;
  font-size: 1.4rem;
}
.footer_copyright ul{
  display: flex;
  gap: 3.7rem;
}
.footer_copyright a{
  transition: all 0.3s;
}
.footer_copyright a:hover{
  color: var(--subtheme_color);
}

.white_btn{
  background-color: white;
  border-radius: 4px;
  padding: 2rem 4.5rem;
  color: #150f35;
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}
.white_btn:hover{
  background-color: var(--theme_color);
  color: white;
}

.swiper_btns {
  display: flex;
}
.swiper_btns div {
  width: 1.3rem;
  height: 2.3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url(../img/arrow-left.svg) no-repeat center / contain;

}
.swiper_btns div.btn_next{
  background: url(../img/arrow-right.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  filter: unset;
}

.swiper_btns .swiper-button-disabled {
  opacity: 0.68;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 165.9rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  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;
}

.circle_btn{
  display: flex;
  align-items: center;
  color: var(--subtheme_color);
  font-size: 1.8rem;
  font-weight: 500;
  background: transparent;
}
.circle_btn:before{
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  display: inline-block;
  background: url('../img/circle_btn.svg') no-repeat center/cover;
  width: 0;
  transition: all 0.3s;
  margin-right: 0;
}
.circle_btn:hover:before{
  width: 3.6rem;
  margin-right: 1.1rem;
}

.head h2{
  font-size: 3.2rem;
  color: #150f35;
  font-weight: 500;
  margin-bottom: 3rem;
}
.head p{
  font-size: 1.6rem;
  color: #2d2d2d;
  line-height: 2.4rem;
}
.circle_icon{
  width: 3.2rem;
  height: 3.2rem;
  background: url('../img/circle_purple.svg') no-repeat center/contain;
  display: inline-block;
  transition: all 0.3s;
}
.btn{
  padding: 1.4rem 3.5rem;
  color: white;
  font-size: 1.6rem;
  display: inline-block;
  border-radius: 4px;
  background-color: var(--subtheme_color);
  transition: all 0.3s;
  cursor: pointer;
}
.btn:hover{
  background-color: var(--theme_color);
}

.breadcrumb a, .breadcrumb span{
  font-size: 1.7rem;
}
.breadcrumb a{
  transition: all 0.3s;
}
.breadcrumb a:hover{
  color: var(--subtheme_color);
}
.breadcrumb>span > span:nth-of-type(1) a{
  display: inline-block;
  text-indent: -99999px;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}
.breadcrumb>span > span:nth-of-type(1) a:after{
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: url('../img/home-icon.svg') no-repeat center/contain;
}
.breadcrumb>span{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-flow: wrap;
}
.breadcrumb>span > span{
  display: flex;
  align-items: center;
}
.breadcrumb span.breadcrumb_last{
  color: #150f35;
  opacity: 0.75;
}




.breadcrumbs a, .breadcrumbs span{
  font-size: 1.7rem;
}
.breadcrumbs a{
  transition: all 0.3s;
}
.breadcrumbs a:hover{
  color: var(--subtheme_color);
}
.breadcrumbs>span > span:nth-of-type(1) a{
  display: inline-block;
  text-indent: -99999px;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}
.breadcrumbs>span > span:nth-of-type(1) a:after{
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: url('../img/home-icon.svg') no-repeat center/contain;
}
.breadcrumbs>span{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-flow: wrap;
}
.breadcrumbs>span > span{
  display: flex;
  align-items: center;
}
.breadcrumbs span.breadcrumb_last{
  color: #150f35;
  opacity: 0.75;
}



.page_banner{
  padding: 2.8rem 0 9.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}
.page_banner .breadcrumb, .page_banner .breadcrumb span, .page_banner .breadcrumb a{
  color: white;
}
.page_banner .breadcrumb a:after{
  filter: contrast(0) brightness(100);
}
.page_banner .head{
  margin-top: 6rem;
  max-width: 51rem;
}
.page_banner .head h1{
  font-size: 3.6rem;
  line-height: 4.1rem;
  font-weight: 500;
}
.page_banner .head p{
  color: white;
  margin-top: 3rem;
  font-weight: 300;
  line-height: 2.8rem;
  opacity: 0.85;
  font-size: 1.8rem;
}

.syselect{
  width: max-content;
  cursor: pointer;
  position: relative;
}
.syselect>p{
  border: 1px solid #dadadd;
  border-radius: 3px;
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
  min-width: 19rem;
  background: url('../img/select.svg') no-repeat right 1.5rem center/1.3rem;
}
.syselect ul{
  position: absolute;
  left: calc(100% + 1.6rem);
  top: 0;
  width: max-content;
  padding: 1.4rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  min-width: 19rem;
  display: none;
}
.syselect ul li{
  font-size: 1.5rem;
  line-height: 2.6rem;
  color: #161616;
  transition: all 0.3s;
}
.syselect ul li.active, .syselect ul li:hover{
  color: var(--subtheme_color);
  text-decoration: underline;
}


.btn_more{
  padding: 1.7rem 3.3rem;
  border: 1px solid var(--subtheme_color);
  border-radius: 4px;
  color: var(--subtheme_color);
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn_more:hover{
  background-color: var(--subtheme_color);
  color: white;
}
.account_icon_con{
  position: relative;
}

.login_pop{
  position: absolute;
  left: 50%;
  transform: translate(-50%,-10px);
  top: calc(100% + 2.4rem);
  width: 34rem;
  background-color: white;
  padding: 2.6rem 2.6rem 3rem;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.account_icon_con.active .login_pop{
  transform: translate(-50%,-10px);
  opacity: 1;
  pointer-events: all;
}
.login_pop:before{
  content: "";
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.login_pop:after{
  content: "";
  height: 2.4rem;
  width: 100%;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 100%;
}

.login_pop .title{
  font-size: 2.2rem;
  font-weight: 500;
  color: #150f35;
  display: block;
  margin-bottom: 2.2rem;
}
.login_pop form label{
  color: #757575;
  display: block;
  margin-bottom: 0.8rem;
}
.login_pop form input{
  font-size: 1.7rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  width: 100%;
}
.login_pop form > p + p{
  margin-top: 1.3rem;
}
.login_pop .forget_con{
  margin-top: 2rem;
}

.login_pop .forget_con p{
  color: #757575;
  cursor: pointer;
}
.login_pop .forget_con p:hover{
  color: var(--subtheme_color);
}
.login_pop .forget_con input{
  padding: 0.8rem 1.4rem;
  font-size: 1.4rem;
  width: auto;
}

.login_pop .others{
  padding-top: 1.8rem;
  margin-top: 3rem;
  border-top: 2px solid rgba(0, 0, 0, 0.14);
}
.login_pop .others strong{
  font-size: 1.8rem;
  font-weight: 500;
  color: #150f35;
  display: block;
  margin-bottom: 0.5rem;
}
.login_pop .others p{
  font-size: 1.4rem;
  line-height: 2rem;
  opacity: 0.65;
  margin-bottom: 1.8rem;
}
.login_pop .others .btn{
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
}

.logged_block p{
  font-size: 1.8rem;
  color: #757575;
  margin-bottom: 2.5rem;
  line-height: 3rem;
}
.logged_block ul li a{
  font-size: 1.6rem;
  font-weight: 500;
  color: #150f35;
}
.logged_block ul li + li{
  margin-top: 1.5rem;
}
.logged_block ul li a:hover{
  color: var(--subtheme_color);
  text-decoration: underline;
}

.text_btn{
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--subtheme_color);
  background-color: transparent;
}



.model_popup{
    position: relative;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.model_popup.active{
    opacity: 1;
    visibility: visible;
}

.model_popup .model_popup_content{
    position: fixed;
    top: -550%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    padding: 4rem 3rem;
    border-radius: 5px;
    min-width: 660px;
    background-color: #fff;
    transition: all .3s;
}
.model_popup.active .model_popup_content{
    top: 50%;
}

.model_popup .model_popup_over{
    background-color: rgba(0,0,0,.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}
.model_popup .head{
    margin-bottom: 3rem;
}
.model_popup .head strong{
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #150F35;
    display: block;
}
.model_popup .head span{
    display: block;
    opacity: .85;
    color: #2d2d2d;
}
.model_popup .form span{
    display: block;
    width: 100%;
}
.model_popup .form span label{
    font-size: 1.6rem;
    color: #150f35;
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.model_popup .form input{
    padding: 1.3rem 1.5rem;
    background-color: white;
    border: 1px solid #dadadd;
    border-radius: 4px;
    width: 100%;
    font-size: 1.6rem;
}
.model_popup .form span + span{
    margin-top: 2.4rem;
}
.model_popup .form select{
    padding: 1.3rem 1.5rem;
    border: 1px solid #dadadd;
    border-radius: 4px;
    width: 100%;
    font-size: 1.6rem;
    background: url('../img/select.svg') no-repeat right 1.4rem center/1.3rem;
    background-color: white;
}
.model_popup .form input[type='submit']{
    background-color: var(--subtheme_color);
    display: inline-block;
    width: auto;
    padding: 1.5rem 3.6rem;
    color: white;
    transition: all 0.3s;
}
.model_popup .form input[type='submit']:hover{
    background-color: var(--theme_color);
}
.model_popup .form textarea{
    padding: 1.3rem 1.5rem;
    background-color: white;
    border: 1px solid #dadadd;
    border-radius: 4px;
    width: 100%;
    font-size: 1.6rem;
    min-height: 14rem;
}
.model_popup .form-close{
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer; 
}
.model_popup .form-close img{
    width: 1.5rem;
}




.cart_popup{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.show_cart_popup .cart_popup{
  opacity: 1;
  pointer-events: all;
}
.cart_popup .cart_popup_overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.44);
  z-index: 1;
}
.cart_popup .cart_popup_con{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: white;
  transition: all 0.3s;
  z-index: 9;
  width: 60rem;
  border-radius: 4px;

  opacity: 0;
  transform: translate(-50%,-60%);
}


.show_cart_popup .cart_popup .cart_popup_con{
  opacity: 1;
  transform: translate(-50%,-50%);
}


.cart_popup .cart_popup_con .head{
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.cart_popup .cart_popup_con .head span.close{
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url('../img/form-close.svg') no-repeat center/contain;
  cursor: pointer;
  transition: all 0.3s;
}
.cart_popup .cart_popup_con .head span.close:hover{
  transform: rotate(180deg);
}
.cart_popup .cart_popup_con .head strong{
  font-size: 2.2rem;
  color: #150f35;
  font-weight: 500;
}
.cart_popup .cart_popup_con .cart_popup_main{
  padding: 2.8rem 3rem;
}
.cart_popup .cart_popup_con .cart_popup_main .img{
  width: 12rem;
  aspect-ratio: 1;
  border-radius: 10px;
  margin-right: 1.9rem;
}
.cart_popup .cart_popup_con .cart_popup_main li{
  display: flex;
  align-items: center;

}
.cart_popup .cart_popup_con .cart_popup_main li strong{
  font-size: 1.8rem;
  font-weight: 500;
  color: #150F35;
  display: block;
  margin-bottom: 1.5rem;
}
.cart_popup .cart_popup_con .cart_popup_main li + li{
  margin-top: 3rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .infos span{
  display: block;
  color: #2d2d2d;
  font-size: 1.4rem;
  opacity: 0.64;
}
.cart_popup .cart_popup_con .cart_popup_main li .infos .price, .cart_popup .cart_popup_con .cart_popup_main li .infos .price span{
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d !important;
  margin-top: 0.6rem;
  opacity: 1;
  display: inline-block;
}
.cart_popup .cart_popup_con .cart_popup_main li .infos span + span{
  margin-top: 0.8rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions{
  margin-left: auto;
  padding-bottom: 2.5rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .delete{
  display: block;
  width: 2.1rem;
  height: 2.4rem;
  margin-left: auto;
  background: url('../img/trash.svg') no-repeat center/contain;
  margin-bottom: 3.5rem;
  cursor: pointer;
}



.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity{
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    border: 1px solid #a3a3a3;
    overflow: hidden;
    margin-top: 2.3rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity button{
    width: 3.1rem;
    height: 3.1rem;
    background: url('../img/num_plus.svg') no-repeat center/1.2rem;
    background-color: white;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity button.minus{
    background-image: url('../img/num_minus.svg');
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity input{
    width: 3.1rem;
    height: 3.1rem;
    background-color: white;
    border-left: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
}
.cart_popup .cart_popup_con .cart_popup_main ul + p{
  font-size: 2rem;
  color: #150f35;
  font-weight: 500;
  margin-top: 3rem;
}
.cart_popup .cart_popup_con .cart_popup_main a{
  font-size: 1.6rem;
  color: #150F35;
  text-decoration: underline;
  display: block;
  margin-top: 0.7rem;
}

 
.cart_popup .cart_popup_con .others{
  padding: 2rem 3rem 3rem;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}
.cart_popup .cart_popup_con .others .total{
  font-size: 1.8rem;
  color: #150F35;
  font-weight: 500;
  margin-bottom: 1.9rem;
}
.cart_popup .cart_popup_con .others .total strong{
  font-size: 2.2rem;

}
.cart_popup .cart_popup_con .others .btn{
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border: 2px solid var(--subtheme_color);
}
.cart_popup .cart_popup_con .others button.btn, .cart_popup .cart_popup_con .others .btn_d.btn{
  background-color: transparent;
  color: var(--subtheme_color);
  border: 2px solid var(--subtheme_color);
  font-weight: 500;
  margin-right: 1rem;
}
.cart_popup .cart_popup_con .others .btn_d.btn:hover{
  background-color: var(--subtheme_color);
  color: white;
  border-color: var(--subtheme_color);
}
.cart_popup .cart_popup_con .others a.btn:hover{
  border-color: var(--theme_color);
}
.only_mobile{
  display: none !important;
}

.promotion_banner{
    padding: 2.5rem 0 2rem;
    background-color: #edebf7;
}
.promotion_banner .head{
    margin-top: 6.3rem;
    max-width: 117rem;
}
.promotion_banner .head h1{
    font-size: 3.6rem;
    line-height: 4.4rem;
    margin-bottom: 2.2rem;
    font-weight: 600;
    color: rgb(21,15,52);
}
.promotion_banner .head p{
    font-size: 1.8rem;
    line-height: 3rem;
}
.promotion_banner .head p + p{
    margin-top: 1rem;
}
.promotion_banner .head p a{
    font-weight: 500;
    font-size: 1.9rem;
    text-decoration: underline;
} 
.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}



.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: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body p a{
  color: var(--subtheme_color);
}
.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: '';
}



form#sytech-newsletter-subscription p.failed, form#sytech-newsletter-subscription p.success{
  background-color: #d4674a !important;
}
form#sytech-newsletter-subscription p.failed:after, form#sytech-newsletter-subscription p.success:after{
  border-top: 0.6rem solid #d4674a !important;
}

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 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(../img/mobile-menu/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: 766px;
  min-height: 431px;
  object-fit: contain;
}
.about_us .left .desc li{
  list-style: disc;
  margin-left: 2rem;
  
}

.page_banner .breadcrumb span.breadcrumb_last{
  color: white;
}


.blog_posts .left{
    max-width: 25rem;
    min-width: 20rem;
}


.blog_categorys .category_list ul {
    display: flex; 
    justify-content: space-between;
    gap: 6rem;
    display: grid !important;
    grid-template-columns: repeat(3,1fr) !important;
    gap: 3rem 6rem !important;
}
.cart-items-list{
  max-height: 50rem;
  overflow: auto;
}

.service_main .table_nav {
    position: sticky;
    top: 14rem;
    z-index: 9;
}

.service_main .table_nav.fixed{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 122rem;
  max-width: 100%;
}
section .box_content p>a{
  color: var(--subtheme_color);
}

.header_menu{
  position: fixed;
  top: 14rem;
  z-index: 9;
  width: 100%;
}

.header_menu .main{
  background-color: white;
  width: max-content;
  max-width: 124rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}
.header_menu .main .cols{
  display: flex;
}
.header_menu .main .cols .col{
  flex: 1;
  border-right: 1px solid #eee;
  padding-right: 5rem;
  padding-left: 2rem;
  padding-top: 3rem;
  padding-bottom: 8rem;
}

.header_menu .main .cols .col strong{
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 1rem;
}
.header_menu .main .cols .col ul li a{
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s;
}
.header_menu .main .cols .col ul li + li{
  margin-top: 0.5rem;
}
.header_menu .main .cols .col div + strong{
  margin-top: 3rem;
}
.header_menu .main .cols .col ul li a:hover{
  color: var(--subtheme_color);
}
.header_menu .main .item{
  max-width: 30rem;
}
.header_menu .main .item .img{
  width: 30rem;
  aspect-ratio: 1/0.7;
  border-radius: 0;
}
.header_menu .main .item .infos{
  padding: 2rem;
}
.header_menu .main .item .infos strong{
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  color: #000;
}
.header_menu .main .item .infos p{
  font-size: 1.5rem;
  line-height: 1.5;
  color: #666;
}
.header_menu{
  display: none;
}


.header_bottom .center>div>ul>li.blog_menu_btn .sub-menu, .header_bottom .center>div>ul>li.product_menu_btn .sub-menu, .header_bottom .center>div>ul>li.app_menu_btn .sub-menu{
  display: none;
}

.search .pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  gap: 1.5rem;
  margin-top: 3rem;
}
.search .pagination span{
  text-decoration: underline;
  color: var(--theme_color);
}


.quote_modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  align-items: center;
  overflow-y: auto;
  display: none;
  opacity: 0;
}
.quote_modal .quote_box {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 103.5rem;
  margin: 5rem auto;
  border-radius: 1.6rem;
  background-color: #fff;
  display: flex;
}
.quote_modal .quote_box .close {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  content: '';
  transition: all 0.3s;
  cursor: pointer;
  z-index: 2;
  top: 2.1rem;
  right: 2rem;
  background: url("../img/close.svg") no-repeat center / contain;
}
.quote_modal .quote_box .close:hover {
  transform: rotate(360deg);
}
.quote_modal .img {
  width: 44.681%;
  border-radius: 1.6rem;
  --h: 147.84%;
}
.quote_modal .img:hover img {
  transform: scale(1.02);
}
.quote_modal .rt {
  flex: 1;
  width: 100%;
  align-self: center;
}
.quote_modal form {
  display: grid;
  padding: 4.8% 9.5% 4% 10.1222%;
  gap: 1.5rem;
}
.quote_modal form .title {
  font-size: 3.6rem;
  font-weight: 600;
  color: #161616;
  margin-bottom: 1.1rem;
  letter-spacing: 0.7px;
}
.quote_modal form span {
  width: 100%;
}
.quote_modal form input {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #161616;
  border-radius: 0.8rem;
  border: 1px solid #cecece;
  background-color: transparent;
  height: 5.5rem;
  padding: 0 1.9rem;
}
.quote_modal form input::placeholder {
  color: #161616;
}
.quote_modal form input:focus {
  border-color: var(--primary);
}

.quote_modal form textarea{
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #161616;
  border-radius: 0.8rem;
  border: 1px solid #cecece;
  background-color: transparent;
  height: 12rem;
  padding: 1.6rem 1.9rem;
}
.quote_modal form textarea::placeholder {
  color: #161616;
}
.quote_modal form textarea:focus {
  border-color: var(--primary);
}

.quote_modal form .drop_area {
  position: relative;
  background-color: var(--bg);
  border-radius: 1.1rem;
  padding: 1.8rem 2rem 1.8rem;
  margin-top: 0.5rem;
  cursor: pointer;
}
.quote_modal form .drop_area input[type=file] {
  display: none;
}
.quote_modal form .drop_area .text {
  text-align: center;
}
.quote_modal form .drop_area .text strong {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
}
.quote_modal form .drop_area .text p {
  font-size: 1.3rem;
  color: #878787;
  margin-top: 1.1rem;
}
.quote_modal form .drop_area .text .btn {
  font-size: 1.2rem;
  font-weight: 500;
  border: none;
  line-height: 2.7rem;
  border-radius: 100px;
  color: #191919;
  background-color: #fff;
  margin-top: 1rem;
  min-width: unset;
  padding: 0 2rem;
}
.quote_modal form .drop_area .text .btn:hover {
  background-color: var(--theme_color);
  color: #fff;
}
.quote_modal form span:has(input[type=submit]) {
  margin-top: 1.5rem;
}
.quote_modal form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  border-radius: 0.6rem;
  background-color: var(--theme_color);
  border-color: var(--theme_color);
  color: #fff;
  font-weight: 500;
  height: auto;
  line-height: 6.2rem;
}
.quote_modal form input[type=submit]:hover {
  background-color: transparent;
  color: var(--theme_color);
}
.quote_modal form .wpcf7-spinner{
  width: 24px !important;
}