* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: normal;
  color: #3A3A3A;
  padding-top: 114px;
}
a{
  color: #3A3A3A;
  transition: ease 0.25s all;
  -webkit-transition: ease 0.25s all;
  -o-transition: ease 0.25s all;
  -moz-transition: ease 0.25s all;
  text-decoration: none;
}
a:hover, a:focus, a:active, a:visited{
  color: #3A3A3A;
  text-decoration: underline;
}
:focus {outline: none !important;}
::-moz-focus-outer, ::-moz-focus-inner {
  border: 0px !important;
  padding: 0;
}
input, textarea,input:active, textarea:active {outline:none;}
input[type="checkbox"]:focus, input[type="radio"]:focus {
  visibility: hidden;
}

.btn{
  background: #0A3886;
  border: 1px solid #0A3886;
  padding-left: 30px;
  padding-right: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  text-decoration: none;
  transition: ease 0.25s all;
  letter-spacing: 1%;
  cursor: pointer;
}
.btn:focus, .btn:active, .btn:visited{
  text-decoration: none;
  outline: none;
  color: #fff;
}
.btn:hover{
  color: #0A3886;
  text-decoration: none;
  background: #fff;
}

input[type=text]{
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #E4E5E6;
  padding-left: 20px;
  background: #F8F9FA;
  transition: ease 0.25s all;
  -webkit-transition: ease 0.25s all;
  -o-transition: ease 0.25s all;
  -moz-transition: ease 0.25s all;
}
input[type=text]:focus{
  border: 1px solid #E4E5E6;
}

.styledBox{
  display: none;
}
.styledBox + label{
  display: block;
  padding-left: 30px;
  color: #949596;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}
.styledBox + label a {
  color: #949596;
  text-decoration: underline;
}
.styledBox + label a:hover {
  text-decoration: none;
}
.styledBox + label:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #E4E5E6;
  background: #F8F9FA;
}
.styledBox.errorCheck + label:before {
  border: 1px solid red;
  background: #f0c2e8;
}
.styledBox:checked + label::after {
  position: absolute;
  left: 4px;
  top: 4px;
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/ico/checkbox.svg") center no-repeat;
}

.container {
  width: 100%;
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.flexRow {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  position: relative;
}

.header {
  height: 114px;
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  padding-top: 12px;
  padding-bottom: 25px;
  background: #fff;
  z-index: 1000;
  box-shadow: 0px 1px 5px 0px #6464641A;
}
.header .flexRow {
  justify-content: space-between;
  align-items: center;
}
.header .headerLogo {
  width: 140px;
  padding-top: 4px;
}
.header .headerLogo a {
  display: block;
}
.header .headerLogo a img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.header .headerNavigation {
  width: 100%;
  max-width: calc(100% - 540px);
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  padding-top: 31px;
}
.header .headerContacts {
  width: 400px;
  display: flex;
  flex-direction: column;
}
.header .headerContacts .headerContactsTop {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.header .headerContacts .headerContactsTop .headerContactsTopSocials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-right: 24px;
}

.phoneHed {
  background: url("../images/ico/phone.svg") left center no-repeat;
}

.headerContactsTopSocials a {
  font-size: 0;
    line-height: 0;
}

.header .headerContacts .headerContactsTop .headerContactsTopSocials a {}
.header .headerContacts .headerContactsTop .headerContactsTopSocials a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.header .headerContacts .headerContactsTop a.phoneLink {
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #000;
  padding-left: 26px;
  min-height: 22px;
  text-decoration: none;
    display:block!important;
}

.header .headerContacts .headerContactsTop p {
    margin: -8px 10px 0 0;
    font-size: 13px;
}


.header .headerContacts .headerContactsBottom {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
  gap: 14px;
}
.header .headerContacts .headerContactsBottom .btn {
  font-size: 12px;
  line-height: 12px;
  height: 34px;
}
.header .showMobileMenu {
  display: none;
}
.header .mobileControls {
  display: none;
}

.mobileMenu {
  display: none;
}

.mainSeo.seoText {
  padding-top: 20px;
  padding-bottom: 20px;
}
.seoText {}
.seoText h2 {
  padding: 0;
  margin: 0;
  font-family: Cormorant;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 40px;
}
.seoText p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 13px;
  line-height: 22.75px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #797979;
}

.footer {
  background: #6C757D;
  padding: 32px 0;
}
.footer .flexRow {

}
.footer .footerLogo {
  width: 175px;
}
.footer .footerLogo a {
  display: block;
}
.footer .footerLogo a img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 100%;
}
.footer .footerNavigation {
  padding-left: 120px;
}
.footer .footerContacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
  padding-left: 120px;
}
.footer .footerContacts .footerContactsLine {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .footerContacts a {
  color: #fff;
      font-family: Open Sans;
    font-size: 16px;
    line-height: 23px;
    vertical-align: middle;
}
.footer .footerContacts .phoneLink {
  font-weight: 700;
}

.innerPage {
  padding: 100px 0;
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 30px;
  width: auto;
  margin: 0px auto;
  border-radius: 5px;
}
.white-popup.longPopup {
  max-width: 710px;
}
.white-popup.shortPopup {
  max-width: 410px;
}
.white-popup .mfp-close {
  width: 16px;
  height: 16px;
  font-size: 0;
  opacity: 1;
  background: url("../images/ico/close.svg") center no-repeat;
  top: 10px;
  right: 10px;
}

.white-popup.shortPopup .orderProductInfo {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E4E5E6;
  border-top: 1px solid #E4E5E6;
  align-items: center;
}
.white-popup.shortPopup .orderProductInfo .orderProductImage {
  width: 67px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}
.white-popup.shortPopup .orderProductInfo .orderProductName {
  width: calc(100% - 70px);
  padding-left: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
}

.seo-text {
  padding:90px 0;
}

.seo-text h1 {
  font-family: Cormorant;
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom:60px;
  color: #0A3886;
}

.seo-text h1 span {
  color:#000;
  display:block;
}

.seo-text p {
  font-family: Raleway;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin-bottom:40px;
}

.seo-text p:last-child {
  margin-bottom:0;
}

.collection {
  background: #F7F7F7;
    font-size: 0;
}

.collection-block {
  display:flex;
  gap:0 96px;
  align-items: center;
}

.collection-block span {
  font-family: Raleway;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  display:block;
  margin-bottom:20px;
}

.collection-block h2 {
  font-family: Cormorant;
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom:40px;
}

.collection-block p {
  font-family: Raleway;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color:#000;
  margin-bottom:40px;
  max-width: 476px;
}

.collection-right a img {
    transition: 0.3s;
    transform: translateX(0px);
}

.collection-right a:hover img {
    transition: 0.3s;
    transform: translateX(5px);
}

#panel {
  position: relative;
    z-index: 10000000;
}

.brands {
  background: #F7F7F7;
  padding:66px 0;
}

.titled {
  font-family: Cormorant;
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #000000;
  margin-bottom:60px;
  text-transform: uppercase;
}

.mainSectionsList {
  display:flex;
  align-items: center;
  justify-content: center;
  list-style:none;
  margin-bottom:30px;
}

.mainSectionsList li {
  font-family: Raleway;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  cursor:pointer;
  border-bottom: 1px solid #C2CCD0;
  padding:0 31px 10px;
}

.mainSectionsList li:first-child {
  padding-left:0;
}

.mainSectionsList li:last-child {
  padding-right:0;
}

.mainSectionsList li:hover {
    color: #0A3886;
}

.brand-bottom {
  text-align: center;
  font-family: Raleway;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  margin-top:60px;
}

.brand-bottom a {
  text-decoration: none;
  display:flex;
  align-items: center;
  gap:0 10px;
  justify-content: center;
  transition: 0.3s;
}

.brand-bottom a:hover {
    gap:0 15px;
  transition: 0.3s;
}

.p_img {
    width: 194px;
    height: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p_img a {
  display:block;
}

.p_img a img {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.p_name {
  margin-bottom:12px;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p_name a {
  font-family: Cormorant;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  text-decoration: none;
}

.p_item {
  max-width:194px;
}

.p_price {
  font-family: Open Sans;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #EE6B6B;
  margin-bottom:20px;
}

.p_text {
  height:44px;
  font-family: Raleway;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2;
   -webkit-box-orient: vertical;
}

.p_btn {
  display:flex;
  gap:0 10px;
}

.p_btn .bty {
    background-color: transparent !important;
    height: 40px;
    border: 1px solid #1485CE;
    color: #1485CE !important;
    font-family: Raleway;
    font-weight: 300;
    font-size: 14px!important;
    max-width: 92px;
    width:calc(50% - 5px);
}

.p_btn .btz {
    background-color: #1485CE !important;
    height: 40px;
    border: 1px solid #1485CE;
    color: #fff !important;
    font-family: Raleway;
    font-weight: 300;
    font-size: 14px!important;
    max-width: 92px;
    width:calc(50% - 5px);
}

.product-flex {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 100px;
}

#cata {
  margin-bottom:30px;
}

.collection-list-block {
  display:flex;
  gap:0 145px;
}

.collection-list-left {
  min-width:210px;
}

.collection-list-left span {
  font-family: Raleway;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  margin-bottom:20px;
  max-width:210px;
  display:block;
}

.collection-list {
  padding:90px 0;
}

.collection-btn {
  display:flex;
  gap:0 10px;
}

.footer {
    font-family: Raleway;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
}

.promoSliderItemButtons a {
  font-family: Raleway;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
  display:flex;
  gap:0 10px;
  align-items: center;
}

.footerContactsLine span {
  display:block;
  margin-bottom:14px;
}

.footerContactsLine:nth-child(2) a {
  font-family: Raleway;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
}

.innerSectionItem.act {
  color: #0A3886;
}

.cata {
  display:none!important;
}

.bra {
  display:none!important;
}

.mb-title {
  display:none;
}


@media screen and (max-width:767px) {
  .collection-block {
    flex-wrap: wrap;
    padding-bottom: 44px;
  }



  .product-item-container {
    width: 194px;
}

  
  .collection-left img {
    width:100%;
    height:auto;
  }

  .collection-left {
    margin-bottom:40px;
  }

  .collection-block h2 {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
  }

  .collection-block p {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    max-width:100%;
}

.collection-list-block {
  display: block;
}

.clb2 .collection-right {
  order:2;
}

.clb2 .collection-left {
  order:1;
}

.mainSectionsList {
  display: block;
}

.footer .footerLogo {
  width: 175px!important;
  margin-bottom: 20px;
}

footer .flexRow {
  display: block;
}

.footer .footerNavigation {
  width: 100%;
  display: block;
}

.footer .footerContacts {
  width: 100%;
  margin-top:25px;
}

.footer .footerContacts .footerContactsLine {
  align-items: flex-start!important;
}

.seo-text h1 {
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.seo-text p {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.titled {
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom:40px;
  text-transform: uppercase;
}

.brand-bottom a {
  justify-content: flex-start;
  font-family: Raleway;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
}

.collection-list-left {
  margin-bottom: 20px;
}

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

.product-flex {
  flex-wrap:nowrap;
  gap: 0 0px;
  justify-content: flex-start;
}

.cata {
  display:flex!important;
}

.bra {
  display:flex!important;
}


.mainSectionsList li {
  font-size: 13px;
  border-bottom: 1px solid #C2CCD0;
  padding: 0 0 5px !important;
  text-align: left;
}

.cata .cata-prev {
  display:block!important;
}

.cata .cata-next {
  display:block!important;
}

.bra .bra-prev {
  display:block!important;
}

.bra .bra-next {
  display:block!important;
}

.mainPromo .promoSlider .promoSliderWrapper .promoSliderItem {
  height: 400px!important;
  align-items: center!important;
  background-size: auto 262px !important;
  background-repeat: no-repeat;
}

.promoSliderItemButtons a {
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.mainPromo .promoSlider .promoSliderWrapper .promoSliderItem .promoSliderItemInfo {
  max-width: 70%!important;
}

.mainPromo .promoSlider .promoSliderPagination {
  justify-content: center!important;
  left: 0!important;
}

.seo-text {
  padding: 50px 0;
}

/* #cata {
  width:100%;
  overflow: hidden;
}

#brand {
  width:100%;
  overflow: hidden;
} */

.mb-title {
  text-transform: uppercase;
  font-family: Raleway;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom:20px;
  display:flex;
  gap:0 15px;
  align-items: center;
}

.mainSectionsList {
  display:none;
}

.mainSectionsList.act {
  display:block;
}

}


@media screen and (min-width:768px) and (max-width:1024px) {
  .collection-block {
    gap: 0 35px;
    padding: 20px 0;
  }

  .collection-left {
    flex-basis: 45%;
  }

  .collection-right {
    flex-basis: 45%;
  }

  .collection-left img {
    width:100%;
    height:auto;
  }

  .collection-block h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .mainSectionsList li {
    font-size: 13px;
    line-height: 24px;
    padding: 0 15px 10px;
  }

  .footer .footerLogo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    max-width: 175px;
    margin-right: 30px;
}

footer .footerContacts .footerContactsLine {
  align-items: flex-start!important;;
}

.footer .footerContacts {
  padding-left: 0;
}
.footer .footerNavigation {
  padding-left: 50px;
  padding-right: 30px;
}

}