@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,500;0,700;1,300;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:ital,wght@0,300;0,500;0,700;1,300;1,500;1,700&display=swap');

div {
  /* border:1px solid red; */
}

:root {
  --system-font: 'Caveat', sans-serif;
  --secondary-font: 'Jost', sans-serif;
  --primary: #FBF9FA;
  --accent: #FED330;
  --yellow: #FFF5DD;
  --shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  --silver: #FBF9FA;
  --black: #000;
  --white: #fff;
  --big-shadow: #C9D4D9 0 0 90px;
  --grey: #707070;
  --green: #ADBF81;
  --light-green: #EFEFE5;
}

/* white space */
.pre-line {
  white-space: pre-line;
}

.revert {
  white-space: revert;
}

iframe {
  vertical-align: middle;
}

body, html {
  overflow-x: hidden;
  color: #212B2A;
  font-family: var(--system-font);
  font-size: 16px;
  max-width: 2560px;
  margin: 0 auto;
}

body {
  margin: 0 auto;
}

.title {
  font-family: var(--system-font);
}

.flex-col {
  float: none !important;
  flex-direction: row;
}

.flex-row {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.v-center {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}

.primary-text {
  color: var(--primary);
}

.white-text {
  color: var(--white);
}

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

.accent {
  background-color: var(--accent);
}

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

.black {
  background-color: var(--accent);
}

.black-text {
  color: var(--accent);
}

.silver {
  background-color: var(--silver);
}

.green {
  color: var(--green);
}

.yellow {
  background-color: var(--yellow);
}

.light-green {
  background-color: var(--light-green);
}

.gray-color {
  color: var(--grey);
}

.font08 {
  font-size: 0.8em !important;
}

.primary-font {
  font-family: var(--system-font);
}

.secondary-font {
  font-family: var(--secondary-font);
}

body {
  font-family: var(--system-font);
  font-weight: 400;
  -webkit-animation: fadeinout .3s ease-in 1 forwards;
  animation: fadeinout .3s ease-in 1 forwards;
}

.lngbar{position:relative;z-index:30;-o-transition:all .2s linear;-moz-transition:all .2s linear;-webkit-transition:all .2s linear;transition:all .2s linear;margin-right: 15px;cursor: pointer;}
.lngbar .lng{width:30px;height:30px;text-align:center;line-height:30px;color:var(--black);font-weight:700;background-color:transparent; font-size: 16px;font-family: var(--secondary-font);text-transform: uppercase;}
.lngbar ul{list-style:none;position:absolute;top:30px;left:1px;background-color:#E8E8E8;text-align:center;opacity:0;height:0px;overflow:hidden;-o-transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease;}
.lngbar ul.open{opacity:100;-o-transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease;height:auto;}
.lngbar ul li{color:#000;cursor:pointer;height:30px;line-height:30px;-o-transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease;padding: 0;}
.lngbar ul li:hover{color:var(--black);background-color:var(--primary);-o-transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease;}
.lngbar ul li:hover a{color:var(--orange);}
.lngbar ul li a{text-decoration:none;color:#000;font-size:14px;font-family: var(--secondary-font);text-transform: uppercase;}
.lngbar .select{border-color:var(--black) transparent;border-style:solid solid none;border-width:5px 5px medium;height:5px;right:-12px;position:absolute;top:12px;width:0;text-decoration:none;color:var(--black);padding: 0;}

.lngbar-pc {
  height: 100%;
}

.wraper {
  margin: auto;
}

ul li span {
  font-size: 15px;
}

/* header */
header nav ul li span.material-symbols-outlined {
  display: none;
}

input::placeholder { 
  display: none;
}

input:-ms-input-placeholder { 
  display: none;
}

input::-ms-input-placeholder { 
  display: none;
}

footer nav * {
  vertical-align: middle;
}

.copyright {
  font-size: .8em;
}

header nav ul, footer nav ul {
  list-style: none;
  display: inline-block;
}

header nav ul li, footer nav ul li {
  display: inline-block;
}

header nav ul li a {
  text-decoration: none;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  text-transform: capitalize;
  line-height: 2rem;
  position: relative;
}


header a {
  text-decoration: none;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: capitalize;
  line-height: 2rem;
}

header nav ul li a:after {
  content: '';
  height: 7px;
  background-color: var(--accent);
  width: 0px;
  margin: auto;
    margin-top: auto;
  display: block;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 40px;
  position: absolute;
}

header nav ul li a:hover:after {
  width: 100%;
  -o-transition: 4px 0s 1.4s ease;
  -moz-transition: 4px 0s 1.4s ease;
  -webkit-transition:4px 0s 1.4s ease;
  transition: 4px 0s 1.4s ease;
}

header nav ul li ul {
  display: none;
}

#main-menu .menu ul li:hover ul {
  display: block;
}


header nav ul li:hover header nav ul li ul li {
  display: block;
}

header nav ul li ul {
  position: absolute;
  font-size: 16px;
  background: #FBF9FA;
  left: 0;
  right: 0;
  padding: 50px 0;
  top: 35px;
  z-index: 9999;
}

header nav ul li ul li a:hover {
  color: var(--accent);
}

header nav ul li ul li a::after {
  background-color: transparent;
}

header nav ul li ul li {
  margin-right: 20px;
}

header nav ul li ul li:last-of-type {
  padding-right: 0;
} 

#main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

header #main-menu button, .mobile-menu button {
  background-color: var(--green) !important;
}

.vertical-line {
  border: 2px solid var(--accent);
  height: 34px;
  margin: 0 10px;
}

.accent, h1, h4, p, span, button, footer nav {
  font-family: var(--secondary-font);
}

/* headings */
h1 {
  font-size: 50px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 40px;
}

.float-right {
  float: right !important;
}

.contact-elm button {
  margin-top: 10px !important;
}

article .date {
  display: none;
}

.sub-menu h2 {
  font-size: 35px;
}

.post-preview img, .post img {
  border-radius: 10px;
}

.post-preview a {
  text-decoration: none;
  font-size: 30px;
}

.single-post {
  color: var(--grey);
}

.single-post video {
  border-radius: 40px;
}

/* sections */
.technology p {
  font-size:  16px !important;
}

.section-block {
  font-family: var(--system-font);
  background-color: #FBF9FA;
}

.section-block h1 {
  font-family: var(--primary);
  padding-left: 40px;
}

.section-block-img img {
  border-radius: 20px;
}

.section-block-white {
  background-color: #fff;
  border-radius: 20px;
}

.section-for-us {
  font-family: var(--secondary-font);
  color: var(--grey);
  margin: 0 0 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-for-us h2 {
  font-size: 30px !important;
  padding: 0 0 20px 0 !important;
}

.section-for-us p {
  font-size: 16px;
}

.section-for-us img {
  max-width: 200px;
}

.products article {
  position: relative;
}

.products article::before {
  font-family: var(--secondary-font);
  z-index: 9;
  right: -8px;
  position: absolute;
  white-space: pre-wrap;
  text-align: center;
  top: -4px;
  font-size: 16px;
}

.products article::after {
  position: absolute;
  right: -20px;
  top: -20px;
  display: block;
  width: 84px;
  height: 80px;
  content: "";
}

.top-products article::before,
.top-products.product::before {
  content: "ТОП \A продукт";
}

.top-products-en article::before,
.top-products-en.product::before {
  content: "TOP \A product";
}

.top-products article::after,
.top-products.product::after,
.top-products-en article::after,
.top-products-en.product::after  {
  background: url("../images/top-ptoduct.svg") no-repeat;
}

.new-products article::before,
.new-products.product::before {
  content: "НОВ \A продукт";
  color: var(--primary);
}

.new-products-en article::before,
.new-products-en.product::before {
  content: "NEW \A products";
  color: var(--primary);
}

.new-products article::after,
.new-products.product::after,
.new-products-en article::after,
.new-products-en.product::after {
  background: url("../images/nov-product.svg") no-repeat;
}

.most-selling-products article::before,
.most-selling-products.product::before {
  content: "НАЙ- \A продаван";
  color: var(--primary);
  right: -13px;
}

.most-selling-products article::after,
.most-selling-products.product::after {
  background: url("../images/nai-prodavan.svg") no-repeat;
}

.products article img,
.product img {
  border-radius: 20px;
  width: 100%;
}

.products article img {
  border-radius: 20px;
  width: 100%;
}

.products article .title, .title {
  margin: 10px 0;
  font-family: var(--primary-font);
}

.products article .title a {
  font-family: var(--secondary-font);
  font-size: 1.6em;
  text-decoration: none;
}

.products article .descr {
  font-family: var(--secondary-font);
  font-size: 1.3em;
}

.testimonials p {
  font-size: 16px;
}

.testimonials .light-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* carousels */
.slider img {
  min-width: 100%;
}

.slider h2 {
  font-size: 50px;
  font-family: var(--secondary-font);
}

button.slick-prev, button.slick-next,
button.slick-prev, button.slick-next {
  display: none !important;
}

.slider button {
  background: var(--accent);
}

.slider-bottom .slick-track {
  display: flex;
}

.slider-bottom p {
  font-size: 35px;
}

.slide {
  max-height: 600px;
  overflow: hidden;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 10%;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.slick-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  padding: 0;
  position: absolute;
  top: 105%;
  left: 20%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
  transform: translateY(-25px);
  z-index: 10;
  text-align: left;
  transform: rotate(180deg);
  padding-left: 5px;
  opacity: 0.6;
}

.slick-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  padding: 0;
  position: absolute;
  top: 105%;
  left: 30%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
  text-align: left;
  padding-left: 5px;
  opacity: 0.6;
}

.slider button {
  background-color: var(--primary);
}

.slick-next img, .slick-prev img {
  width: 60%;
}

.slick-dots li {
  padding-left: 0 !important;
}

.slick-dots {
  text-align: center;
  list-style: none;
  margin-top: 20px;
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.slick-dots li.slick-active button {
  background-color: #CDAF66;
}

.slider-bottom .slick-dots li.slick-active button {
  background-color: var(--green);
}

.slider-bottom .slick-dots li:not(.slick-active) button {
  background-color: var(--black);
}

/* images */
.xy-center {
  margin: auto;
  justify-content: center;
  display: flex;
}

/* paragraphs */
p {
  line-height: 1.5;
  font-size: 16px
}

/* sections */
.light-section {
  background: var(--primary);
  z-index: -2;
}

section h2:first-letter {
  text-transform: uppercase;
}

/* boxes */
.white-box {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--secondary-font);
  padding: 60px 40px 20px 40px;
  position: relative;
}

.white-box p, .boxes p {
  font-size: 16px;
}

.white-box img, .light-box img {
  border-radius: 2em;
}

.white-box img.call-icon,
.white-box img.mail-icon {
  position: absolute;
  top: -40px;
  left: 42%;
}

.light-box {
  background: #FBF9FA;
  position: relative;
  border-radius: 1em;
  max-width: 440px;
  height: 245px;
  width: 100%;
}

.gray-box {
  background: #FBF9FA;
  font-family: var(--secondary-font);
  border-radius: 10px;
  padding: 20px
}

.circle-label {
  position: absolute;
  right: -20px;
  top: -20px;
}

.circle-label span {
  position: absolute;
  text-align: center;
  left: 12px;
  top: 15px;
}

.circle-label-center {
  position: absolute;
  top: -40px;
  left: 40%;
  width: 80px;
}

.check {
  margin-right: 10px;
}

/* contact form elements */
.contact-elm {
  font-family: var(--secondary-font);
}

.contact-elm [humge-type="text"],
.contact-elm [humge-type="email"] {
  background: transparent;
  border-bottom: 2px solid #516355;
}

.contact-elm [humge-type="email"]::after {
content: "" !important;
}

.contact-elm [humge-type="textarea"]  {
  border-radius: 10px;
}

.contact-elm [humge-type="textarea"] textarea {
  border-bottom: 0;
}

/* buttons */
button {
  background-color: var(--primary);
  color: var(--black);
  border-radius: 4px;
}

button:hover {
  background-color: var(--accent);
}

.section-block .section-block-button a{
  background-color: var(--green);
  color: var(--primary);
  border-radius: 4px;
  text-decoration: none;
  border: none;
  display: inline-block;
  text-decoration: none;
  color: var(--primary);
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: var(--secondary-font);
  font-size: 16px;
}

.section-block .section-block-button a:active,
.section-block .section-block-button a:focus,
.section-block .section-block-button a:hover {
  background-color: var(--accent);
  color: var(--black);
}

.section-block-box ul {
  display: flex;
  justify-content: end;
}

.section-block p, ol {
  font-family: var(--secondary-font);
  margin-top: 10px;
}


.partnes-logo {
  display: flex;
  justify-content: center;
}

.bg-img {
  z-index: -1;
  position: absolute;
  max-width: 500px;
}

.bg-img-tl {
  left: -160px;
  top: -15px;
}

.bg-img-tr {
  right: -160px;
  top: 15px;
}

.bg-img-bl {
  left: -206px;
  bottom: -15px;
}

.bg-img-br {
  right: 160px;
  bottom: 15px;
}

/* lists */
ul li {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 2em;
}

footer ul li {
  font-size: 16px;
}

/* borders */
.br20p {
  border-radius: 20px;
}

/* hamburger button */
.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.menu-call {
  display: none !important;
}

.menu-call {
  width: 30px;
  position: absolute;
  z-index: 99999;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  display: block;
  right: 20px;
}

.menu-call span {
  width: 100%;
  height: 2px;
  background-color: var(--black);
  display: block;
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear
}

.menu-call span:before {
  content: '';
  height: 2px;
  width: 100%;
  margin-bottom: 5px;
  display: block;
  background-color: var(--black);
  position: absolute;
  top: 0;
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear
}

.menu-call span:after {
  content: '';
  height: 2px;
  width: 100%;
  margin-top: 5px;
  display: block;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear
}

.menu-call.open span {
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  width: 0
}

.menu-call.open span:before {
  content: '';
  height: 2px;
  width: 100%;
  margin-bottom: 5px;
  display: block;
  background-color: var(--black);
  position: absolute;
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear
}

.menu-call.open span:after {
  content: '';
  height: 2px;
  width: 100%;
  margin-top: 5px;
  display: block;
  background-color: var(--black);
  position: absolute;
  bottom: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear
}

/* footer */
footer {
  font-size: 1.1em;
  color: #000;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

footer ul a {
  text-decoration: none;
}

footer nav.menu {
  justify-content: center;
  display: flex;
  align-items: center;
  font-weight: bold;
}

footer input[type="email"] {
  border: 1px solid #516355;
  border-radius: 4px;
  padding: 8px !important;
}

footer [humge-type="email"]::after {
  content: '' !important;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-grid {
  display: grid;
  justify-content: center;
}

/* mobile view */
.mobile-logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu {
  display: none;
}

.mobile-menu li {
  margin-bottom: 10px;
}

#main-menu-mb {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 45px;
  left: 40px;
  background-color: var(--white);
  padding: 30px;
  padding-right: 30px;
  padding-left: 30px;
  text-align: center;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  box-shadow: var(--shadow);
  text-align: left;
}

#main-menu-mb {
  right: 1.2rem;
  z-index: 1;
  z-index: 9999;
}

/* video player */
.videowraper video {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.partnes-logo img {
  filter: grayscale(100%);
  transition:.5s ease-in-out;
  padding: 20px;
}

.partnes-logo img:hover {
  filter: grayscale(0%);
}

header .nav-left {
  position: absolute;
  left: 10%;
}

header .nav-right {
  position: absolute;
  right: 6%;
}

header nav ul li:nth-of-type(4) a {
  text-transform: none;
}

[humge-type="text"] span,
[humge-type="email"] span,
[humge-type="textarea"] span {
  background-color: var(--accent);
}

.post a {
  text-decoration: none;
}

.post-heading {
  font-family: var(--system-font);
}

.post-body h3, .post-body p, .post-body span {
  color: var(--grey);
}

.single-post li::marker {
  font-family: var(--secondary-font);
}

.single-post img {
  border-radius: 20px;
}

.partner-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-box img {
  max-width: 130px;
  margin-left: 20px;

}


.section-block-white h2 {
  font-family: var(--secondary-font);
  font-size: 30px !important;
}

.section-block-white p {
  font-family: var(--secondary-font);
  margin-top: 20px;
  /* font-size: 20px; */
}



/* media queries */
@media screen and (min-width:1440px) and (max-width:1920px) {
  header .nav-left {
    left: 20px;
  }
  
  header .nav-right {
    right: 20px;
  }
}

@media screen and (min-width:1360px) and (max-width:1440px) {
  header .nav-left {
    left: 20px;
  }
  
  header .nav-right {
    right: 20px;
  }

  .slider-bottom p {
    font-size: 22px;
  }
}

@media screen and (min-width:900px) and (max-width:1360px) {
  .slider-bottom p {
    font-size: 20px;
  }

  header .nav-left {
    left: 2px;
  }

  header .nav-left a{
    font-size: 20px;

  }
  
  header .nav-right {
    right: 2px;
  }

  header .nav-right a, header a{
    font-size: 20px;
    padding-left: 6px;
    padding-right: 6px;
  }

  header a.btn-link {
    font-size: 14px;
  }

  header button strong {
    vertical-align: baseline;
  }

  header .logo {
    width: 100px;
  }


}

@media (max-width:900px) {
  html {
    overflow-x: hidden;
  }

  html, body {
    min-width: inherit !important;
  }

  .flex-row {
    display: block !important;
  }

  .row [class*=col-] {
    float: none !important;
    width: 100% !important;
    margin: 0;
    clear: left !important;
    margin-bottom: 20px
  }

 

  .wraper {
    max-width: inherit;
    min-width: inherit;
    width: 100%;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-call {
    display: block !important;
  }

  #main-menu, #main-menu-mb {
    display: none;
  }

  #main-menu {
    position: relative;
  }

  #main-menu .menu ul li:hover ul {
    display: block;
  }

  .submenu {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  header nav.open {
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  }

  header nav ul li {
    display: block;
  }

  .logo img {
    max-width: 100px;
  }
  
  .info-section h2 {
    padding-right: 0;
  }

  .white-box, .light-box {
    height: auto;
    max-width: 100%;
  }

  .light-box {
    margin-bottom: 100px;
  }

  .white-box {
    margin-top: 50px;
  }

  .d-flex {
    display: block;
  }

  footer nav.menu, footer nav ul li {
    display: block;
  }

  .section-block-box ul {
    display: block;
  }

  .partnes-logo {
    display: block;
  }

  .slider h1 {
    font-size: 20px;
  }

  .slider h2 {
    font-size: 17px;
  }

  .slider P {
    font-size: 15px;
  }

  .slider-bottom p {
    font-size: 18px;
  }

  .section-block-button a{
    width: 100%;
    text-align: center;
  }

  header nav ul li a::after {
    margin-top: 0px;
  }

  #main-menu-mb button {
    width: 90%;
  }

  .partner-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section-for-us {
    display: block;
  }

  .section-for-us img {
    max-width: 100%;
  }
}