@import url(fonts.css);
*{
  margin: 0;
  padding: 0;
  font-weight: 400;
  list-style: none;
  text-decoration: none;
  font-family: 'Inter';
  box-sizing: border-box;
  -ms-overflow-style: none;
  transition: all 0.3s ease;
}

/* COLORS */
:root{
  --white: #ffffff;
  --black: #000000;
  --grey-light: #F3F4F7;
  --grey: #DADEE6;
  --red: #E31613;
  --red-dark: #C6001C;
  --red-light: #FFB3AF;
  --green: #08AD58;
  --yellow: #FFDEA9;
  --yellow-light: #FFF2DD;
  --hint: #80848C;
  --dark: #414141;
}
.white{
  color: var(--white) !important;
}
.black{
  color: var(--black) !important;
}
.red{
  color: var(--red) !important;
}
.green{
  color: var(--green) !important;
}
.dark{
  color: var(--dark) !important;
}
.hint{
  color: var(--hint) !important;
}
.yellow-border{
  border: 1px solid var(--yellow);
}

/* scrollbar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border-radius: 40px;
}
/* Edge */
*::-webkit-scrollbar {
  width: 3px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border-radius: 40px;
}
/* Firefox */
*{
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--white);
}

/* CONTAINER */
.container{
  max-width: 1340px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.distance{
  margin-top: 80px !important;
}
.big-distance{
  margin-top: 100px !important;
}
.under-space{
  padding: 80px 0;
}

/* BUTTONS */
button{
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn{
  font-weight: 600;
  padding: 6px 19px 9px 19px;
  font-size: 15px;
  line-height: 150%;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  display: inline-block;
  border-radius: 8px;
  white-space: nowrap;
  height: max-content;
  text-align: center;
}
.btn:hover{
  background: #FF0000;
  border-color: #FF0000;
}
.btn-border{
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}
.btn-border:hover,
.btn-order:hover{
  color: var(--white);
}
.btn-red-dark{
  border-color: var(--red-dark);
  background: var(--red-dark);
}
.btn-order{
  border-radius: 4px;
  padding: 4px 9px 6px 9px;
  border: 1px solid var(--grey);
  background: var(--white);
  color: var(--red);
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  white-space: nowrap;
}

/* BODY */
body{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  background-color: var(--grey-light);
}
body.noscroll{
  overflow: hidden;
}
main{
  padding-top: 152px;
}
.white-bg{
  background-color: var(--white);
}
.red-bg{
  background-color: var(--red);
}
.grey-bg{
  background-color: var(--grey);
}
.yellow-bg{
  background-color: var(--yellow);
}
.yellow-light-bg{
  background-color: var(--yellow-light);
}
.grey-light-bg{
  background-color: var(--grey-light);
}
.shadow{
  box-shadow: 0px 4px 20px 0px #E0E2E5;
}
.white-box{
  padding: 80px 0 100px 0;
}

/* INPUTS */
input{
  outline: unset;
}
input[type="checkbox"] {
  appearance: none;
  border: 1px solid var(--black);
  min-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  border-radius: 2px;
  background-color: var(--white);
}
input[type="checkbox"]:checked{
  background-image: url('../images/icons/checked.svg');
  background-color: var(--red);
  border-color: var(--red);
}
.checkbox,
.radio{
  cursor: pointer;
}
.checkbox:hover input[type="checkbox"]{
  border-color: var(--red);
}
.radio{
  display: flex;
  gap: 8px;
}
.radio p{
  font-size: 15px;
  color: var(--black);
}
input[type="radio"]{
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--black);
}
input[type="radio"]:checked{
  border: 5px solid var(--red);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="text"],
input[type="password"],
textarea{
  border: 1px solid var(--hint);
  background: var(--white);
  padding: 6px 19px 9px 19px;
  resize: unset;
  font-size: 15px;
  line-height: 150%;
  border-radius: 8px;
  color: var(--black);
  outline: unset;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder{
  color: var(--hint);
}
input[type="text"].disabled,
input[type="password"].disabled,
textarea.disabled{
  border-color: var(--grey);
  color: var(--grey);
  pointer-events: none;
}
.input input,
.input textarea{
  width: 100%;
}
.input input.filled,
.input textarea.filled{
  border-color: var(--black);
}
.input.invalid textarea,
.input.invalid input{
  border-color: var(--red);
  color: var(--red);
}
.input.invalid textarea::placeholder,
.input.invalid input::placeholder{
  color: var(--red);
}

/* attach file */
.file-attach-button{
  padding: 8px 16px;
  background: var(--grey-light);
  border-radius: 10px;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.file-attach-button svg{
  min-width: 24px;
}

/* form policy */
.form-policy{
  display: flex;
  cursor: pointer;
  gap: 8px;
  font-size: 15px !important;
  line-height: 150% !important;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
}
.form-policy p{
  font-size: 15px !important;
  line-height: 150% !important;
}
.form-policy a{
  font-size: 15px !important;
  line-height: 150% !important;
  color: var(--red) !important;
}

/* TITLES */
.big-title,
.title{
  font-weight: 800;
  color: var(--black);
}
.big-title{
  font-size: 44px;
  line-height: 100%;
}
.big-title span{
  color: var(--red-dark);
  font-style: italic;
  font-weight: 900;
}
.title{
  font-size: 32px;
  line-height: 120%;
}
.small-title{
  font-size: 24px;
  line-height: 130%;
  font-weight: 600;
}
.link{
  display: inline-block;
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
  padding: 4px 20px 5px 20px;
  background-color: var(--white);
  border-radius: 4px;
  text-align: center;
}
.link:hover{
  color: var(--red);
  box-shadow: 0px 4px 20px 0px #E0E2E5;
}
p{
  font-size: 16px;
  line-height: 150%;
  color: var(--dark);
}
s{
  text-decoration: line-through;
}
img{
  display: block;
  object-fit: cover;
}

/* HEADER */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-top{
  padding: 8px 20px;
  height: 48px;
}
.header-top a{
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
}
.header-top a:hover{
  color: var(--red);
}
.header-top_links a{
  padding: 4px 20px 5px 20px;
  display: inline-block;
}
.header-contact{
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-contact p{
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.header-lang a{
  color: var(--dark);
  padding: 3px 19px 4px 19px;
  border: 1px solid transparent;
  border-radius: 50px;
  display: inline-block;
  font-size: 15px;
  line-height: 150%;
}
.header-lang a.active{
  background-color: var(--white);
}
.header-lang a:hover{
  border-color: var(--white);
}


.header-lang button{
  color: var(--dark);
  padding: 3px 19px 4px 19px;
  border: 1px solid transparent;
  border-radius: 50px;
  display: inline-block;
  font-size: 15px;
  line-height: 150%;
}
.header-lang button.active{
  background-color: var(--white);
}
.header-lang button:hover{
  border-color: var(--white);
}

.header{
  padding: 8px 20px;
}
.menu-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 150%;
  color: var(--dark);
}
.menu-btn.active{
  color: var(--black);
}
.menu-btn.active svg path:first-of-type{
  fill: var(--red);
}
.menu-btn .relative,
.menu-btn.active .menu-btn_count{
  display: flex;
}
.menu-btn_count{
  position: absolute;
  left: 8px;
  bottom: 4px;
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  z-index: 1;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background-color: var(--green);
  border: 1px solid var(--white);
}
.navbar{
  max-width: 710px;
}
.header-contact:hover p{
  color: var(--red) !important;
}


/* Catalog */
.header-catalog_btn{
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 150%;
  font-weight: 500;
  border-radius: 4px;
}
.header-catalog_btn.active{
  color: var(--red);
}
.header-catalog_btn--close,
.header-catalog_btn.active .header-catalog_btn--dots{
  display: none;
}
.header-catalog_btn.active .header-catalog_btn--close{
  display: block;
}
.header-catalog{
  padding: 20px;
  border-radius: 8px;
  background-color: var(--white);
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  display: none;
  gap: 20px;
}
.header-catalog_sidebar{
  min-width: 310px;
  max-width: 310px;
}
.header-catalog_sidebar button,
.search-result_categories a,
.burger-modal_body a{
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
  font-weight: 500;
  padding: 9px 20px 11px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border-radius: 4px;
}
.header-catalog_sidebar button{
  text-align: left;
}
.header-catalog_sidebar button::after,
.search-result_categories a::after,
.burger-modal_body a::after{
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 7L15 12L10 17" stroke="%23DADEE6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.header-catalog_sidebar button:hover,
.search-result_categories a:hover,
.header-catalog_sidebar button.active,
.burger-modal_body a:hover{
  color: var(--red);
  background-color: var(--grey-light);
  border-color: transparent;
}
.header-catalog_sidebar button:hover::after,
.search-result_categories a:hover::after,
.header-catalog_sidebar button.active::after,
.burger-modal_body a:hover::after{
  background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 7L15 12L10 17" stroke="%23E31613" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.header-catalog_sidebar--top{
  border-bottom: 1px solid var(--grey);
}
.header-catalog_sidebar--parent__categories{
  max-height: 452px;
  overflow: auto;
}
.header-catalog_parent--category__title{
  font-size: 20px;
  line-height: 130%;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-catalog_categories{
  max-height: 557px;
  overflow: auto;
}
.header-catalog_categories a{
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
  display: flex;
  padding: 8px 0;
  width: 100%;
}
.header-catalog_categories a:hover{
  color: var(--red);
}
.header-catalog_content--back__btn{
  width: 32px;
  height: 32px;
  background-color: var(--white);
}

/* Search */
.search{
  width: 100%;
  border-radius: 4px;
  display: flex;
  position: relative;
}
#searchInput,
#searchReview{
  border: unset;
  padding: 7px 16px;
  width: 100%;
  border: 1px solid var(--red);
  border-radius: 4px 0 0 4px;
}
#searchInput.filled,
#searchReview.filled{
  border-width: 2px;
  padding: 6px 16px;
}
#searchBtn,
#searchReviewBtn{
  background-color: var(--red);
  min-width: 60px;
  height: 40px;
  border-radius: 4px;
  margin-left: -4px;
}
#searchClearBtn{
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.search-result{
  position: absolute;
  top: 56px;
  border-radius: 8px;
  padding: 20px 20px 45px 20px;
  display: none;
  flex-direction: column;
  gap: 30px;
  overflow: auto;
  width: 100%;
  max-height: 555px;
  height: 80vh;
}
.search-result.show,
.header-catalog.show{
  display: flex;
}
.search-result a:hover,
.search-result_options p:hover{
  color: var(--red);
}
.search-result_options p{
  font-size: 15px;
  padding: 4px 20px 5px 20px;
  background-color: var(--grey-light);
  border-radius: 50px;
  cursor: pointer;
}
.search-result_links{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-result_links a{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
}
.search-result_links a::before{
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 21L16.7 16.7M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="%23C6CAD2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* Categories links */
.header-categories_links{
  padding-top: 16px;
}
.header-categories_links a{
  border-radius: 40px;
  color: var(--black);
  font-size: 15px;
  line-height: 150%;
  padding: 4px 20px 5px 20px;
  display: inline-block;
}
.header-categories_links a:hover{
  color: var(--red);
  background-color: var(--grey-light);
}

/* Burger */
.burger{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--grey);
}
.burger span{
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 5px;
  background: var(--black);
}
.burger-modal{
  position: fixed;
  top: 0;
  z-index: 12;
  right: -100%;
  width: 100%;
  max-width: 360px;
  padding: 10px 20px 20px 20px;
  overflow: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
}
.burger-modal.show{
  right: 0;
}
.burger-modal_body a{
  padding: 9px 10px 12px 10px;
}
.burger-modal_body a div{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.burger-modal_body .line{
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--grey);
  margin: 10px 0;
}
.burger-modal_footer{
  border-radius: 8px;
  padding: 20px;
}
.burger-modal_footer .bot{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
}

/* Navabr mobile */
nav{
  padding: 0 20px;
  position: relative;
  position: fixed;
  bottom: 10px;
  width: 100%;
  z-index: 10;
}
.navbar-mobile{
  background-color: var(--white);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* MODAL */
.background{
  background: var(--grey);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}
.background.show{
  opacity: 0.9;
  pointer-events: all;
}
.background.over-header{
  z-index: 11;
}

/* TOP BTN */
#top,
#bot{
  position: fixed;
  right: 30px;
  z-index: 10;
  bottom: 190px;
  border-radius: 50%;
  background-color: var(--white);
  width: 80px;
  height: 80px;
  display: none;
  justify-content: center;
  align-items: center;
}
#top:hover{
  background-color: var(--red);
}
#top:hover svg path{
  stroke: var(--white);
}
#top.show{
  display: flex;
}
/* Bot */
#bot{
  display: flex;
  bottom: 90px;
  background-color: var(--red);
  z-index: 9;
}

/* OWL CAROUSEL */
.owl-stage-outer{
  z-index: 1;
}
.owl-nav{
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: -52px;
  right: 0;
}
.owl-nav button{
  width: 32px;
  height: 32px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.owl-nav button:hover{
  box-shadow: 0px 4px 20px 0px #E0E2E5;
}
.owl-nav button:hover svg path{
  stroke: var(--red);
}
.owl-prev.disabled,
.owl-next.disabled{
  pointer-events: none;
}
.owl-prev.disabled svg path,
.owl-next.disabled svg path{
  stroke: var(--grey);
}
.owl-carousel .owl-stage{
  display: flex;
}
.owl-dots{
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}
.owl-dot{
  width: 4px;
  height: 4px;
  border-radius: 40px;
  background-color: #C6CAD2;
}
.owl-dot.active{
  width: 30px;
  background-color: var(--red);
}

/* BREADCRUMBS */
.breadcrumbs{
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb{
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb::after{
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
  background-color: #C6CAD2;
  content: '';
}

/* PAGINATION */
.pagination-prev,
.pagination-next{
  width: 32px;
  height: 32px;
  background-color: unset !important;
}
.pagination-prev:hover,
.pagination-next:hover{
  box-shadow: 0px 4px 20px 0px #E0E2E5;
}
.pagination-prev.disabled,
.pagination-next.disabled{
  pointer-events: none;
}
.pagination-prev.disabled svg path:last-of-type,
.pagination-next.disabled svg path:last-of-type{
  stroke: var(--grey);
}
.pagination-btn{
  border-radius: 4px;
  font-size: 15px;
  line-height: 150%;
  color: var(--dark);
  font-weight: 500;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a.active,
.pagination a:hover{
  color: var(--white);
  background-color: var(--red);
}

/* SOCIALS */
.socials a{
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials a:hover{
  background-color: var(--red);
}
.socials a:hover svg path{
  fill: var(--red);
}
.socials a:hover svg path:first-of-type{
  fill: var(--white);
}

/* FOOTER */
footer{
  padding: 80px 0 90px 0;
}
footer a:hover,
footer a:hover p{
  color: var(--red);
}
.footer-contacts_info *{
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
}
.footer-bottom *{
  font-size: 15px;
  line-height: 150%;
  color: var(--hint);
}
.footer{
  margin: 30px 0;
  padding: 30px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}
.footer a{
  display: block;
  font-size: 15px;
  line-height: 150%;
}
.footer *{
  color: var(--black);
}
.footer h6{
  font-size: 18px;
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links{
  width: 25%;
}
.footer-links div a:not(:last-child){
  margin-bottom: 16px;
}
.footer-catalog_list div{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* SHARE */
.share,
.share-btn,
.product-favorite{
  height: 24px;
}
.share.active .share-btn svg path{
  stroke: var(--red);
}
.share-menu{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 20px);
  transform: translate(-50%);
  background-color: var(--white);
  padding: 10px;
  border-radius: 4px;
  z-index: 1;
  display: none;
}
.share.active .share-menu{
  display: block;
}
.share-menu .socials{
  z-index: 1;
  position: relative;
}
.share-triangle{
  display: block;
  width: 27px;
  height: 27px;
  background-color: var(--white);
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  border-radius: 4px;
}

.tab{
  display: none;
}

@media(max-width: 1399px){
  .header-categories_links a{
    padding: 4px 15px 5px 15px;
  }
}
@media(max-width: 1199px){
  #top{
    display: none !important;
  }
  #bot{
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 64px;
  }
  #bot svg,
  .burger-modal_footer .bot svg{
    width: 36px;
    height: 36px;
  }
  main{
    padding-top: 110px;
  }
  .header{
    padding: 10px 20px;
  }
  .header-top{
    padding: 10px 20px 0 20px;
    height: 50px;
  }
  header .grey-light-bg{
    background-color: var(--white);
  }
  .navbar{
    max-width: unset;
  }
  .header-catalog,
  .search-result{
    position: fixed;
    box-shadow: unset;
    z-index: 1;
    top: 110px;
    border-radius: unset;
    padding: 10px 20px;
  }
  .search-result{
    max-height: unset;
    height: 100%;
    padding-bottom: 190px;
    left: 0;
  }
  .header-catalog_sidebar {
    height: 100vh;
    padding-bottom: 190px;
  }
  .header-catalog_sidebar--parent__categories{
    max-height: unset;
    height: calc(100% - 140px);
  }
  .header-catalog_categories{
    max-height: unset;
    height: calc(100% - 35px);
  }
  .header-catalog_content{
    padding-bottom: 190px;
    height: 100vh;
  }
  footer{
    padding: 40px 0 134px 0;
  }
  .distance{
    margin-top: 60px !important;
  }
  .white-box{
    padding: 60px 0 80px 0;
  }
  .under-space{
    padding: 60px 0;
  }
  .breadcrumbs{
    display: none;
  }
  .share-menu{
    left: unset;
    transform: unset;
    right: 0;
  }
  .share-triangle{
    left: unset;
    right: 4px;
    transform: rotate(45deg);
  }
}
@media(max-width: 959px){

}
@media(max-width: 767px){
  .header-catalog_content{
    position: absolute;
    right: -100%;
    background-color: var(--white);
    padding-left: 20px;
  }
  .header-catalog_content.show{
    right: 0;
  }
  .header-catalog_categories a{
    padding: 10px 20px;
  }
  .header-catalog_sidebar {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .header-catalog_categories {
    height: calc(100% - 88px);
  }
  .title{
    font-size: 28px;
  }
  .white-box{
    padding: 60px 0 70px 0;
  }
  .big-distance{
    margin-top: 70px !important;
  }
}
@media(max-width: 575px){
  .big-title{
    font-size: 28px;
    line-height: 120%;
  }
  #bot{
    right: 10px;
  }
  nav{
    padding: 0 10px;
  }
  footer{
    padding: 60px 0 134px 0;
  }
  .owl-dots{
    margin-top: 10px;
  }
}
